* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;*/
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    background: #ffffff;
    padding-top: 100px; /* Ajusta según la altura del menú */
}

/* Navbar */
.navbar {
    position: fixed; /* Fija el menú en la parte superior */
    top: 0; /* Se asegura de que esté en la parte superior */
    left: 0;
    width: 100%; /* Ocupar todo el ancho */
    display: flex;
    align-items: center;
    background: #004a95;
    padding: 0;
    color: white;
    height: 60px; /* Altura fija */
    z-index: 1000; /* Asegura que el menú esté por encima de otros elementos */
}

.logo {
    padding: 0 20px;
    font-size: 20px;
    font-weight: bold;
}

.menu {
    display: flex;
    list-style: none;
    flex-grow: 1;
    height: 100%;
}

.menu li {
    flex-grow: 1;
    position: relative;
    height: 100%;
}

/* Estilos de los enlaces */
.menu a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-left: 1px solid white;
    border-right: 1px solid white;
    transition: all 0.5s ease-in-out;
}

.menu li:first-child a {
    border-left: none;
}

.menu li:last-child a {
    border-right: none;
}

.menu a:hover {
    color: #004a95;
    background-color: white;
    transition: all 0.5s ease-in-out;
}

/* Submenú */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #004a95;
    list-style: none;
    width: 100%;
    text-align: center;
}

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 10px;
    border-left: none;
    border-right: none;
}

/* Mostrar submenú al pasar el ratón */
.menu li:hover .submenu {
    display: block;
}

/* Menú móvil */
.menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    padding: 10px;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: auto;
    }
    .logo{
        display: none;
    }
    .menu {
        flex-direction: column;
        width: 100%;
        display: none;
    }

    .menu li {
        width: 100%;
    }

    .menu a {
        width: 100%;
        border-left: none;
        border-right: none;
        border-top: 1px solid white;
    }

    .menu li:first-child a {
        border-top: none;
    }

    .menu-btn {
        display: block;
        align-self: flex-end;
        margin: 10px;
    }

    .submenu {
        position: relative;
        width: 100%;
    }
}
/* Contenido de la página */
.contenido {
    max-width: 1200px; /* Ajusta el ancho según necesites */
    margin: 0 auto; /* Centra el contenido */
    padding-left: 10%; /* Agrega un poco de espacio interno */
    padding-right: 10%;
    padding-bottom: 50px;
    min-height: 100%;
}

.contenido h1,h2,h3{
    padding-bottom: 20px;
    padding-top: 20px;
    font-variant: small-caps;
}

h1{
    font-size: 48px;
}

p {
    font-size: 16px; /* Tamaño de fuente estándar para buena lectura */
    line-height: 1.6; /* Espaciado entre líneas para mejorar la legibilidad */
    color: #333; /* Un gris oscuro que es más suave para la vista que el negro puro */
    /*font-family: "Georgia", "Times New Roman", serif; *//* Tipografía elegante y profesional */
    text-align: justify; /* Justifica el texto para una apariencia más formal */
    margin-bottom: 15px; /* Espacio entre párrafos para mejorar la estructura */
}

li {
    font-size: 16px; /* Tamaño de fuente estándar para buena lectura */
    line-height: 1.6; /* Espaciado entre líneas para mejorar la legibilidad */
    color: #333; /* Un gris oscuro que es más suave para la vista que el negro puro */
    /*font-family: "Georgia", "Times New Roman", serif; *//* Tipografía elegante y profesional */
    text-align: justify; /* Justifica el texto para una apariencia más formal */
    margin-bottom: 15px; /* Espacio entre párrafos para mejorar la estructura */
}

.seccion{
    height: 60px;
}
.subrayado {
    color: blue; /* Cambia el color del texto */
    text-decoration: underline; /* Asegura que el texto esté subrayado */
    text-decoration-color: blue; /* Cambia el color del subrayado */
    text-decoration-thickness: 1px; /* Cambia el grosor del subrayado */
    font-weight: 500; /* Hace la letra más gruesa */
}

.view{
    color: blue;
    text-decoration: underline; /* Asegura que el texto esté subrayado */
    text-decoration-color: blue; /* Cambia el color del subrayado */
    text-decoration-thickness: 1px; /* Cambia el grosor del subrayado */
    font-weight: 500;
}

/* Imagenes */
.centro {
    display: block;
    margin: 0 auto;
}

.izquierda {
    display: block;
    margin: 0;
    padding-right: 5%;
    float: left;
    width: 25%;
    height: auto; 
}

/* Footer */
footer {
    background: rgb(49, 49, 49);
    color: white;
    padding: 40px 20px;
    text-align: left;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
}

.footer-container {
    max-width: 1000px;
    margin: auto;
}

.footer-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    text-align: left;
    flex-wrap: wrap;
}

footer h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.footer-columns p {
    font-size: 16px;
    margin: 5px 0;
    color: white;
}

.footer-columns a {
    font-size: 16px;
    margin: 5px 0;
    color: white;
}