@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;
}
