@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 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;
			text-align: left;
        }

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

@media (max-width:768px){
	.video-container {
		width: 80%;
	}
}

/* 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;
}
a {
    text-decoration: none;
    color: #182065;
	font-family: Roboto, "Roboto Black", "Roboto Light", "Roboto Medium", "Roboto Thin";
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

 /*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);
            }
