@charset "utf-8";
/* CSS Document */

.head {
	width: 98%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	}

 header {
            background-image: linear-gradient(#02306c, #001c34); /* Color de fondo azul oscuro */
            color: #fff; /* Color del texto */
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
	 		margin-bottom: 50px;
        }

        /* Estilos para el logo */
        .logo {
            font-size: 24px;
            font-weight: bold;
        }

/* Estilos para el menú hamburguesa */
      
.dropdown {
    Position: relative;
    display: inline-block;
	font-family: "Roboto Thin";
}

.dropdown-btn {
    background-color: #182065; /* Color del botón */
    color: #ffd500;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown-btn span {
    font-size: 24px; /* Tamaño del icono */
}

.dropdown-content {
    display: none;
    position: relative;
    background-color: rgba(39, 45, 94, 0.8); /* Fondo gris con baja opacidad */
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Mostrar el menú cuando el botón es clicado */
.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 768px){
	.dropdown {
		padding-right: 40px;
	}
}


/* Contenedor de la imagen */
        .image-container {
            position: relative;
            display: inline-block;
			padding-top: 50px;
        }

        /* Imagen base */
        .image-container img {
            display: block;
            width: 100%; /* Ajusta el tamaño de la imagen */
            height: auto;
        }
.article .texto p {
    margin-top: -10px;
}


        /* Recuadro con fondo azul */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(24, 32, 101, 0.7); /* Azul con 70% de opacidad */
        }


/* Mostrar el menú cuando el botón es clicado */
.dropdown:hover .dropdown-content {
    display: block;
}


/* Contenedor de la imagen */
        .image-container {
            position: relative;
            display: inline-block;
			padding-top: 50px;
        }

        /* Imagen base */
        .image-container img {
            display: block;
            width: 100%; /* Ajusta el tamaño de la imagen */
            height: auto;
        }
.article .texto p {
    margin-top: -10px;
}


        /* Recuadro con fondo azul */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(24, 32, 101, 0.7); /* Azul con 70% de opacidad */
        }



/* Menú flotante */
.floating-menu {
    position: fixed;
    top: 100px; /* Puedes ajustar la posición del menú verticalmente */
    right: 20px; /* Posiciona el menú a la derecha */
    display: flex;
    flex-direction: column;
	font: 12pt "Optima LT Pro Medium";
}

.menu-item {
    display: block;
    color: white;
    text-align: center;
    padding: 15px;
    margin-bottom: 1px;
    font-weight: bold;
    text-decoration: none;
    width: 180px;
}

.menu-item:hover {
    opacity: 0.8;
}

@media (max-width: 1200px){
		.floating-menu {
			position: relative;
			align-items: center;
			margin-top: -100px;
		}
	}
	@media (max-width: 768px){
		.floating-menu {
			position: relative;
			align-items: center;
		}
		.menu-item {
			width: 100%;
		}
	}


body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1 {
    font-family: "Optima LT Pro Medium";
	text-align: center;
    color: #182065;
	margin-top: 60px;
	margin-bottom: 5px;
}

hr {
		width: 50%;
		height: 0%;
		margin-bottom: 50px;
		}

#documentList {
    margin-top: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 10px 0;
    background-color: #e9e9e9;
    padding: 10px;
    border-radius: 4px;
}

@media (max-width: 768px){
	.container {
		margin-top: 110px;
	}
}

/*
.primariajm {
    background-image: linear-gradient(#ac5ecf, #7423a8); 
} 

.primariajt {
    background-image: linear-gradient(#ffbc00, #ff8b00); 
}

.bachillerjm {
    background-image: linear-gradient(#3ebef6, #0f8eed); 
}

.bachillerjt {
    background-image: linear-gradient(#00cf9b, #00a85e); 
} 
*/


a {
    text-decoration: none;
    color: #182065;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

@charset "utf-8";
/* CSS Document */

.head {
	width: 98%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	}

 header {
         	background-image: linear-gradient(#02306c, #001c34); /* Color de fondo azul oscuro */
            color: #fff; /* Color del texto */
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
	 		margin-bottom: 50px;
        }

        /* Estilos para el logo */
        .logo {
            font-size: 24px;
            font-weight: bold;
        }

/* Estilos para el menú hamburguesa */
      
.dropdown {
    Position: relative;
    display: inline-block;
	font-family: Roboto, "Roboto Thin";
}

.dropdown-btn {
    background-color: #182065; /* Color del botón */
    color: #ffd500;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown-btn span {
    font-size: 24px; /* Tamaño del icono */
}

.dropdown-content {
    display: none;
    position: relative;
    background-color: rgba(39, 45, 94, 0.8); /* Fondo gris con baja opacidad */
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Mostrar el menú cuando el botón es clicado */
.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 768px){
	.dropdown {
		padding-right: 40px;
	}
}




/* Contenedor de la imagen */
        .image-container {
            position: relative;
            display: inline-block;
			padding-top: 50px;
        }

        /* Imagen base */
        .image-container img {
            display: block;
            width: 100%; /* Ajusta el tamaño de la imagen */
            height: auto;
        }
.article .texto p {
    margin-top: -10px;
}


        /* Recuadro con fondo azul */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(24, 32, 101, 0.7); /* Azul con 70% de opacidad */
        }



/* Contenedor de cada sede, solo para la pagina de sedes */
        .sede {
            margin-bottom: 50px;
			margin-top: 0px;
        }

        /* Estilo del banner con la imagen */
        .banner {
            position: relative;
            margin: 0 auto;
            width: 80%;
            max-width: 800px;
            height: 200px;
            overflow: hidden;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        }

        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Estilo del texto sobrepuesto */
        .banner h2 {
            position: relative;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 72px;
            color: white;
            background-color: rgba(0, 0, 0, 0.7);
            padding: 10px 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
			font: 16pt "Optima LT Pro Medium";
        }

		/* imgen de cada sede */
		.fotos {
            display: flex;
            justify-content: center;
            gap: 1px;			
		}
		

        /* Contenedor de los botones de cada sede */
        .button-container {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 1px;
			padding-top: 30px;
			padding-bottom: 80px;
        }

        /* Botones de cada jornada */
        .button {
            width: 150px;
            height: 150px;
            background-color: #307ad5; /* Color por defecto */
            color: white;
            font-size: 14px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
			font: 16pt "Optima LT Pro Medium";
		}

        .button:hover {
            transform: translateY(-5px);
        }

        /* Colores específicos para cada botón */
        .btn-primary-morning { background-color: #10c45c; } /* Verde */
        .btn-primary-afternoon { background-color: #f9c301; } /* Amarillo */
        .btn-secondary-morning { background-color: #fa327b; } /* Rosa */
        .btn-secondary-afternoon { background-color: #9c54e6; } /* Morado */

		.infografia {
    position: relative;
    margin: 0 auto;
    width: 0%;
    max-width: 800px;
    height: auto;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 50px;
		}

		.infografia img {
            width: 100%;
            height: 100%;
            object-fit: cover;
		}


/* Contenedor para los artículos */
	.principal {
		max-width: 800px;	
		margin: 40px auto;
		padding: 20px;
		background-color: white;
		border-radius: 10px;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		font-family: Roboto, "Roboto Thin";
		font-size: 16px;
    	line-height: 1.6;
    	color: #555;
		}
	
	.article {
		padding: 20px;
		}

	h1 {
		color: #182065;
		font: 24pt "Optima LT Pro Medium";
		text-align: center;
		padding-bottom: 0px;
		margin-bottom: -10px;
		margin-top: 30px;
		}
	hr {
		width: 80%;
		height: 0%;
		margin-bottom: 50px;
		}

	h2 {
    	text-align: center;
    	color: #02306c;
		font: 18pt "Optima LT Pro Medium";
		padding-top: 0px
		}

	h3 {
    	color: #02306b;
    	margin-top: 0;
		font-size: 14pt;
		}
	
	p {
    	font-size: 16px;
    	color: #555;
    	line-height: 1.6;
    	text-align: justify;
		}

	.article-container .article img {
		width: 48%;
		height: auto;
		float: left;
		margin-right: 25px;
		margin-bottom: 25px;
		}

	.navigation {
    	margin-top: 30px;
    	text-align: center;
		}

	.navigation a {
    	color: #02306b;
    	font-weight: bold;
    	text-decoration: none;
		}

	.navigation a:hover {
    	text-decoration: underline;
		}

	@media (max-width: 768px){
		.principal {
			margin-top: 110px;
		}
	
	}


/* Menú flotante */
	.floating-menu {
    	position: fixed;
    	top: 100px; /* Puedes ajustar la posición del menú verticalmente */
    	right: 20px; /* Posiciona el menú a la derecha */
    	display: flex;
    	flex-direction: column;
		font: 12pt "Optima LT Pro Medium";
	}

	.menu-item {
    	display: block;
    	color: white;
    	text-align: center;
    	padding: 15px;
    	margin-bottom: 1px;
    	font-weight: bold;
    	text-decoration: none;
    	width: 180px;
	}

	.menu-item:hover {
    	opacity: 0.8;
	}

	@media (max-width: 1200px){
		.floating-menu {
			position: relative;
			align-items: center;
			margin-top: -100px;
		}
	}
	@media (max-width: 768px){
		.floating-menu {
			position: relative;
			align-items: center;
		}
		.menu-item {
			width: 100%;
		}
	}


/*estilo para insertar video de youtube */

.video-container {
            margin: auto;
			width: 100%;
            max-width: 900px;
            text-align: center;
            background: white;
            padding: 20px;
            border-radius: 10px;
          
        }

        .video-container iframe {
            width: 100%;
            height: 450px; /* Ajusta la altura según sea necesario */
            border-radius: 10px;
        }

        .video-title {
            font-size: 20px;
            margin-top: 15px;
        }

        .video-title a {
            text-decoration: none;
            color: #182065;
            font-weight: bold;
			font-family: "Optima LT Pro Light";
        }

        .video-title a:hover {
            color: #0056b3;
            text-decoration: underline;
        }

/* imagen de tamaño completo */

.imagen-container {
            width: 80%;
            max-width: 900px;
			margin: auto;
            text-align: center;
            background: white;
            padding: 20px;
            border-radius: 10px;
            padding-top: 50px;
        }

        .imagen-container img {
            width: 100%;
            border-radius: 10px;
        }

/* lista de botones */

.documentList {
	width: 100%;
	max-width: 900px;
	margin: auto;
    margin-top: 20px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 10px 0;
    background-color: #e9e9e9;
    padding: 10px;
    border-radius: 4px;
}



 /*Estilo para el footer*/

footer {
    		width: 100%;
			margin-top: 100px;
    		position: relative;
			justify-content: center;        
			background-image: linear-gradient(#02306c, #001c34);
            color: white;
            padding: 40px 20px;
			font-family: "Optima LT Pro Light";
        }

        .footer-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
            padding: 10px;
        }

        .footer-column h3 {
            font-size: 14pt;
            margin-bottom: 15px;
            color: #ffd500;
        }

        .footer-column p {
            font-size: 10pt;
            color: white;
            line-height: 1.6;
        }

        /* Estilos para los íconos de redes sociales */
        .social-icons {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .social-icons a {
            color: white;
            font-size: 24px;
            text-decoration: none;
        }

        .social-icons a:hover {
            color: #ffd500;
        }

        /* Responsividad */
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
            }

            .footer-column {
                margin-bottom: 30px;
            }
        }



.chatbot-button {
                position: fixed;
                bottom: 20px;
                right: 20px;
                background-color: #007BFF;
                color: white;
                border: none;
                padding: 15px;
                border-radius: 50%;
                cursor: pointer;
                font-size: 16px;
                z-index: 1000;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            }
