    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: 'Grenze', serif;
        background-color: #fdfdfb;
        color: #0b2c16;
        line-height: 1.6;
        padding-top: 80px;
    }

    header {
        background-color: #e3e2da;
        padding: 1rem 2rem;
        border-bottom: 1px solid #ccc;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    header h1 {
        font-weight: 700;
        font-size: 2rem;
    }

    nav {
        display: flex;
        gap: 1.5rem;
    }

    nav a {
        text-decoration: none;
        color: #0b2c16;
        font-weight: 600;
    }

    .menu-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }

    .menu-toggle span {
        height: 3px;
        width: 25px;
        background: #0b2c16;
        margin: 4px 0;
        border-radius: 2px;
    }

    @media (max-width: 768px) {
        nav {
            display: none;
            flex-direction: column;
            background: #fff;
            position: absolute;
            top: 60px;
            right: 0;
            width: 200px;
            border: 1px solid #ccc;
            padding: 1rem;
        }

        nav.show {
            display: flex;
        }

        .menu-toggle {
            display: flex;
        }
    }

    .banner {
        background: url('https://revistasantiago.cl/cms/wp-content/uploads/2021/07/Stella-Diaz-Varin.jpg') center/cover no-repeat;
        width: 100%;
        aspect-ratio: 16/9;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 2rem;
        font-weight: 700;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    }


    section {
        padding: 3rem 1rem;
        max-width: 800px;
        margin: auto;
    }

    section h2 {
        font-weight: 700;
        margin-bottom: 1rem;
    }

    footer {
        text-align: center;
        padding: 2rem;
        background-color: #e3e2da;
        font-size: 0.9rem;
    }

    /* Estilos para el menú principal con submenús */
    .nav-item {
        position: relative;
    }

    .submenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #e3e2da;
        min-width: 200px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
        z-index: 1;
    }

    .nav-item:hover .submenu {
        display: block;
    }

    .submenu a {
        display: block;
        padding: 0.5rem 1rem;
        color: #0b2c16;
        text-decoration: none;
    }

    .submenu a:hover {
        background-color: #d1d0c8;
    }

    /* Ajustes para la versión móvil */
    @media (max-width: 768px) {
        .nav-item {
            width: 100%;
        }

        .submenu {
            position: static;
            display: none;
            width: 100%;
            box-shadow: none;
            padding-left: 1rem;
        }

        .nav-item:hover .submenu {
            display: none;
        }

        /* Opcional: añadir clase para mostrar submenús en móvil */
        .submenu.show-mobile {
            display: block;
        }
    }

    .cita {
        max-width: 800px;
        margin: 2rem auto 4rem auto;
        padding: 0 1rem;
        text-align: center;
        font-family: 'Grenze', serif;
        color: #4A5A4F;
        /* verde musgo */
    }

    .cita blockquote {
        font-size: 2.5rem;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 1rem;
        font-style: italic;
    }

    .cita cite {
        font-size: 1.2rem;
        font-weight: 500;
        color: #7B8379;
        /* gris verdoso */
    }

    .recursos {
        padding: 2rem;
        background-color: #F9F9F6;
        /* blanco natural */
    }

    .recursos h2 {
        font-family: 'Grenze', serif;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: #4A5A4F;
        /* verde musgo */
    }

    .cita-lista {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .cita {
        margin-bottom: 0.8rem;
        border-left: 4px solid #4A5A4F;
        padding-left: 0.8rem;
    }

    .cita a {
        font-family: 'Grenze', serif;
        font-size: 1rem;
        text-decoration: none;
        color: #4A5A4F;
        transition: color 0.3s ease;
    }

    .cita a:hover {
        color: #7B8379;
        /* gris verdoso */
    }

    /* Fondo preloader */
    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 0.5s ease, visibility 0.5s ease;
    }

    /* Animación de salida */
    #preloader.oculto {
        opacity: 0;
        visibility: hidden;
    }

    /* Loader original */
    .line-wobble {
        --uib-size: 80px;
        --uib-speed: 1.55s;
        --uib-color: black;
        --uib-line-weight: 5px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: var(--uib-line-weight);
        width: var(--uib-size);
        border-radius: calc(var(--uib-line-weight) / 2);
        overflow: hidden;
        transform: translate3d(0, 0, 0);
    }

    .line-wobble::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: var(--uib-color);
        opacity: 0.1;
    }

    .line-wobble::after {
        content: '';
        height: 100%;
        width: 100%;
        border-radius: calc(var(--uib-line-weight) / 2);
        animation: wobble var(--uib-speed) ease-in-out infinite;
        transform: translateX(-90%);
        background-color: var(--uib-color);
    }

    @keyframes wobble {

        0%,
        100% {
            transform: translateX(-90%);
        }

        50% {
            transform: translateX(90%);
        }
    }

    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        transition: opacity 0.5s ease;
    }

    #preloader.hidden {
        opacity: 0;
        pointer-events: none;
    }

    /* Fondo difuminado para el popup */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(6px);
        background-color: rgba(0, 0, 0, 0.4);
        display: none;
        /* oculto por defecto */
        justify-content: center;
        align-items: center;
        z-index: 10000;
        /* por encima del preloader y header */
    }

    /* Caja del popup */
    .popup {
        background: white;
        padding: 20px;
        border-radius: 10px;
        max-width: 400px;
        text-align: center;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
        animation: fadeIn 0.4s ease;
    }

    .popup img {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: scale(0.8);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* Redes sociales en el menú */
    .social-icons {
        display: flex;
        gap: 1rem;
        margin-left: 1rem;
    }

    .social-icons a {
        font-size: 1.5rem;
        /* más grande que antes */
        color: #333;
        /* gris oscuro */
        transition: color 0.3s ease, transform 0.2s ease;
    }

    .social-icons a:hover {
        color: #7B8379;
        /* gris verdoso */
        transform: scale(1.1);
    }
    }

    .social-icons a:hover {
        color: #7B8379;
        /* gris verdoso sobrio */
        transform: scale(1.1);
    }

    /* Noticias tipo afiches */
    .noticias {
        max-width: 1100px;
        margin: auto;
        padding: 3rem 1rem;
        text-align: center;
    }

    .noticias h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        color: #4A5A4F;
    }

    .afiches-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .afiche {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .afiche:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .afiche img {
        width: 100%;
        height: auto;
        display: block;
    }

    .afiche p {
        padding: 1rem;
        font-size: 1rem;
        color: #0b2c16;
    }