@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 para los artículos */
.container {
    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 Medium";
	font-size: 12pt;
}

h1 {
    color: #02306b;
    text-align: center;
	font-family: "Optima LT Pro Light";
	margin-top: 100px;
	font-size: 24pt;
	margin-bottom: 10px;
}

h2 {
	color: #02306b;
	font-family: "Optima LT Pro Light";
	font-size: 20pt;
}

h3 {
	color: #02306b;
	font-family: "Optima LT Pro Light";
	font-size: 14pt;
}

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

p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    text-align: justify;
	}

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

       

.navigation {
    margin: 100px;
    text-align: center;
	font-family: "Optima LT Pro Light";
}

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

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

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




/* 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;
	}
}
@media (max-width: 768px){
	.floating-menu {
		position: relative;
		align-items: center;
	}
	.menu-item {
		width: 100%;
	}
}

/*Estilo para el footer*/

footer {
    		width: 100%;
    		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;
            }
        }
