/* Estilos generales, no necesitan cambio */
body {
    font-family: sans-serif;
    margin: 0;
}

.header-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/*
.header-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}
*/
/* */

.header-nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between; /* logo a la izq, menú a la der */
    align-items: center;            /* centra verticalmente */
    padding: 0 20px;                /* espacio horizontal */
    margin: 0;
}

.header-nav .logo img {
    max-height: 50px; /* ajusta el tamaño del logo */
}

.menu-items {
    display: flex;
    gap: 30px; /* espacio armonioso entre los menús */
}

.nav-link {
    text-decoration: none;
    color: #808080;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}


/**/

.header-nav li {
   padding: 1em;
}

/* El enlace en su estado normal (gris) */
.nav-link {
    text-decoration: none;
    color: #808080; /* Color inicial: gris */
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}


/* El enlace cuando está activo (fondo azul, letras blancas) */



/* El enlace cuando está activo (amarillo) */

.nav-link.active {
    background-color: #ffeb3b; /* Color de fondo: amarillo */
    color: #212121; /* Color de texto para que se vea bien sobre el amarillo */
}



.content-wrapper {
    padding-top: 80px;
}

.page-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2em;
    border-bottom: 1px solid #ddd;
}