/* ==========================================================================
   CHATA CERÁMICA - ESTILOS ESTRUCTURALES MAESTROS
   ========================================================================== */

   * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* EL CUERPO DE LA PÁGINA AHORA PERMITE VER EL FONDO */
body {
    color: #1d1d1d; /* Tu tipografía oscura */
    font-family: 'Arial', sans-serif; 
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    padding: 2rem 5rem;
    background-color: #e9e3d9 !important; /* El color de marca va aquí */
}

/* LA IMAGEN GIGANTE DE FONDO DETRÁS DEL VIDRIO - SÓLO EN PÁGINA DE INICIO */
body.home-page::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;  
    height: 100vh; 
    background-image: url('fondo.jpg');
    background-size: cover; 
    background-position: center 35%; 
    background-repeat: no-repeat;
    opacity: 0.35; 
    z-index: -1;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
}

/* EL FONDO GIGANTE FIJO PARA LA PÁGINA "CREA LA TUYA" (CON LA CLASE DE TU BODY) */
body.store::before {
    content: "";
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('refugio.jpg') !important; 
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    opacity: 0.35;
    z-index: 1; /* Cambiado a 1 positivo para que flote por encima del fondo beige sólido */
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
}

/* ==========================================================================
   NAVEGACIÓN MUNDIAL
   ========================================================================== */

        /* Desactivamos los paddings y posiciones fijas viejas del style.css */
        .main-nav, .footer-nav {
            position: static !important;
            width: auto !important;
            padding: 0 !important;
            background: transparent !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
        }

        /* 2. EL MENÚ FIJO ARRIBA QUE SE QUEDA CON EL FONDO BEIGE CON BLUR AL DESLIZAR */
        .unified-nav-bar {
            position: fixed !important;
            top: 0 !important; /* <--- RESTAURADO: Se queda pegado arriba */
            bottom: auto !important;
            left: 0 !important;
            width: 100% !important;
            height: 5rem !important; 
            padding: 0 5rem !important; 
            display: flex !important;
            justify-content: space-between !important; 
            align-items: center !important;
            z-index: 9999 !important;
            background-color: transparent !important; 
            transition: all 0.4s ease-in-out !important; 
        }

/* Ajustamos el contenedor interno para que el logo/links no se peguen a la orilla */
.nav-links-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
}

.footer-nav {
    position: fixed;
    bottom: 2.5rem;
    left: 0;
    width: 100%;
    padding: 0 5rem;
    display: flex;
    justify-content: flex-end;
    z-index: 100;
    pointer-events: none;
}

.footer-nav .nav-links-center {
    display: flex;
    align-items: center;
    gap: 2rem;
    pointer-events: auto;
}

.nav-links-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo-home {
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}

.logo-icon {
    height: 20px;
    width: auto;
    display: block;
    opacity: 0.8;
}

a {
    color: #1d1d1d;
    text-decoration: none;
    font-size: 0.8rem;
    font-family: inherit;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1;
    transition: color .3s ease;
}


a:hover,
a.active {
    color: #e35a40 !important; /* Tu color rojito */
    font-weight: bold;       /* Opcional: para que resalte más */
}

.instagram-link {
    display: flex;
    align-items: center;
}

.insta-icon {
    width: .85rem;
    height: .85rem;
}

/* ==========================================================================
   PÁGINA 1: INDEX / INICIO (DISTRIBUCIÓN HORIZONTAL CENTRADA)
   ========================================================================== */

.main-layout {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin: 0; /* Centrado absoluto */
}

.left-text {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    font-size: 0.85rem;
    line-height: 1.6;
    letter-spacing: 0px;
    white-space: nowrap; 

}

.right-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.right-text h2 {
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0px;
    margin-bottom: 0.2rem;
    color: #7e3129; 
}

.right-text h3 {
    font-size: 0.85rem;
    font-weight: normal;
    color:#1d1d1d; 
}

.center-piece {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 140px;
    height: 190px;
    background-color: transparent; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceramic-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   PÁGINA 2: SOBRE MÍ - COMPOSICIÓN EDITORIAL SUPERPUESTA
   ========================================================================== */

.canvas-about {
    position: relative;
    width: 100%;
    min-height: 65vh;
    margin: 0;
}

.canvas-text {
    position: absolute;
    font-size: 0.8rem;
    line-height: 1.6;
    letter-spacing: 0px;
    color: #1d1d1d;
    z-index: 5;
}

.text-1-top-left {
    top: 2rem;
    left: 0;
    width: max-content;
}

.greeting {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    display: block; 
}

.text-chata-top-right {
    top: 4rem; 
    right: 0;
    width: max-content;
    text-align: left;
}

.text-3-bottom-left {
    bottom: 6rem;
    left: 0;
    width: max-content;
}

.text-4-bottom-right {
    bottom: 2rem;
    right: 0;
    width: max-content;
}

.canvas-photo-wrapper {
    position: absolute;
    top: 45%;
    left: 45%;
    opacity: 0.9;
    transform: translate(-50%, -50%);
    width: 280px;  
    height: 380px; 
    z-index: 1;
}

.vanesa-large-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-2-star-fucsia {
    top: 55%;
    left: 55%; 
    transform: translateY(-50%);
    width: max-content; 
    text-align: left;
    z-index: 10; 
}

.creation-wrapper {
    display: flex;
    width: 100%;
    gap: 4rem;
    padding-top: 4rem; /* El formulario empuja su propio espacio hacia arriba */
    padding-bottom: 15rem; /* Margen para que no tape el formulario el menú inferior */
}

.form-container {
    width: 65%;
}

.form-intro h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 0px;
}

.sub-manifesto {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.form-section {
    margin-bottom: 3.5rem;
}

.form-section h2 {
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding-bottom: 0.5rem;
}

.form-section h2 .sub-title {
    font-size: 0.8rem;
    color: #7d776d;
    display: block;
    font-weight: normal;
    margin-top: 0.2rem;
}

/* SISTEMA INTERACTIVO DE TARJETAS */
.interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 23px
}

.grid-card {
    cursor: pointer;
    display: block;
}

.grid-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.card-content img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    margin-bottom: 0.5rem;
    
    /* ESTAS TRES LÍNEAS MATAN EL BORDE BLANCO */
    display: block;      /* Elimina espacios extra de línea */
    border: none !important; 
    outline: none !important;
    box-shadow: none !important;
    
    transition: all 0.3s ease;
}

/* Control de tamaño y escala para las imágenes de función */
.funcion-img {
    width: 100% !important;      /* Ancho de la tarjeta */
    height: 140px !important;    /* Alto de la tarjeta */
    
    /* Modifica este valor a tu gusto: 
       - 'cover' recorta la imagen para llenar el espacio sin deformarse.
       - 'contain' muestra la imagen completa añadiendo espacios si es necesario.
       - 'scale-down' reduce el tamaño si la foto es muy grande. */
    object-fit: contain !important; 
    
    /* Control de zoom manual (Modifica el 1.0 para agrandar o achicar el dibujo interno) */
    transform: scale(1.0); 
    
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.texto-destacado {
    font-weight: bold;
}


/* Ocultamos la presionada por defecto */
.img-pressed {
    display: none !important;
}

/* Forzamos que las imágenes se superpongan en el mismo punto */
.card-content img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 140px;
    object-fit: cover;
}

/* Cuando se selecciona, intercambiamos la visibilidad */
.grid-card input:checked ~ .card-content .img-normal {
    display: none !important;
}

.grid-card input:checked ~ .card-content .img-pressed {
    display: block !important;
    transform: scale(0.95);
}
/* Efecto de "luz degradada" al seleccionar en USO */
.light-effect {
    transition: all 0.3s ease;
    border: 2px solid transparent !important;
}

/* Cuando se selecciona la tarjeta de USO, añadimos un brillo (glow) */
.grid-card input:checked ~ .card-content.light-effect {
    /* Un borde degradado que simula luz */
    border: 2px solid #e35a40 !important; 
    box-shadow: 0 0 15px rgba(227, 90, 64, 0.4);
    transform: scale(0.98);
}

/* Asegurar que las imágenes de Uso no se distorsionen */
.light-effect img {
    border-radius: 4px; /* Un toque suave */
}

.field-desc {
    font-size: 0.8rem;
    color: #7d776d;
    margin-bottom: 0.8rem;
}

textarea {
    width: 100%;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 1rem;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 0.8rem;
    resize: none;
}

.input-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.input-group input {
    background-color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.8rem;
    width: 100%;
    font-size: 0.8rem;
    box-sizing: border-box;
}

.privacy-checkbox {
    margin: 1.5rem 0;
    font-size: 0.75rem;
}

.privacy-checkbox a {
    font-size: 0.75rem;
    text-decoration: underline;
}

.submit-btn {
    background-color: #1d1d1d;
    color: #e9e3d9;
    border: none;
    padding: 0.8rem 2.5rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: opacity 0.2s;
    letter-spacing: 0px;
}

.submit-btn:hover {
    opacity: 0.85;
}
/* Botón especial: Azul con letras blancas, ignora el rojo global */
.btn-crear { 
    display: inline-block !important; 
    padding: 12px 30px !important; 
    background-color: #5074bf !important; 
    color: #ffffff !important; /* Letras siempre blancas */
    border-radius: 20px !important; 
    text-decoration: none !important; 
    margin-top: 20px !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

/* Forzamos que, al pasar el mouse, el color siga siendo blanco y no rojo */
.btn-crear:hover, 
.btn-crear:active, 
.btn-crear:visited {
    color: #ffffff !important; 
    background-color: #5074bf !important;
    text-decoration: none !important;
    opacity: 0.9; /* Un pequeño efecto visual sin cambiar el color */
}
.hidden-alert {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1d1d1d;
    color: #e9e3d9;
    padding: 1rem 3rem;
    font-size: 0.8rem;
    z-index: 200;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hidden-alert.show-alert {
    bottom: 40px;
}

/* COLUMNA DERECHA EDITORIAL (Referencia de orden.jpg) */
.reference-gallery {
    width: 35%;
    border-left: 1px solid rgba(0,0,0,0.05);
    padding-left: 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.gallery-title {
    font-size: 1.2rem;
    letter-spacing: 0px;
    margin-bottom: 3rem;
    font-weight: 300;
}

.vertical-strip {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 180px;
}

.vertical-strip img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.vertical-strip img:hover {
    filter: grayscale(0%);
}

/* ==========================================================================
   RESPONSIVO PARA MÓVILES (ESTABILIDAD EN PANTALLAS CHICAS)
   ========================================================================== */

@media (max-width: 768px) {
    body {
        padding: 2rem 1.5rem; 
        height: 100vh;
        overflow: hidden;
    }

    .main-nav {
        position: static;
        padding: 0 0 1rem 0;
        z-index: 1000; /* Aumenté el z-index para asegurar que esté encima */
    background-color: #e9e3d9; /* Esto hará que tape lo que pase detrás */
    }

    .footer-nav {
        position: static;
        padding: 1rem 0 0 0;
        justify-content: center; 
        margin-top: 0;
            position: fixed;
            bottom: 2.5rem;
            left: 0;
            width: 100%;
            padding: 0 5rem;
            display: flex;
            justify-content: flex-end;
            z-index: 1000; /* Aumenté el z-index */
            pointer-events: none;
            background-color: #e9e3d9; /* Esto hará que tape lo que pase detrás */
    }
    
    .nav-links-left {
        width: 100%;
        justify-content: space-between;
           background-color: #e9e3d9; /* Esto hará que tape lo que pase detrás */
    }

    .logo-home { margin-right: 0; }
    .logo-icon { height: 18px; }
    .nav-links-left a:not(.logo-home) { font-size: 0.72rem; }

    .main-layout {
        display: flex;
        flex-direction: row; 
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }

    .left-text {
        font-size: 0.68rem; 
        line-height: 1.5;
        white-space: normal; 
        padding-right: 0.5rem; 
    }

    .center-piece { flex: 1; }
    .image-container { width: 95px; height: 130px; }
    .right-text { flex: 1; padding-left: 0.5rem; }
    .right-text h2 { font-size: 0.72rem; }
    .right-text h3 { font-size: 0.65rem; color: #7e3129}

    .canvas-about {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
        margin: 1rem 0;
    }

    .canvas-text {
        position: static;
        max-width: 100% !important;
        text-align: center !important;
        transform: none !important;
    }

    .canvas-photo-wrapper {
        position: static;
        transform: none;
        width: 200px;
        height: 270px;
        margin: 0 auto;
    }

    .creation-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    .form-container, .reference-gallery {
        width: 100%;
    }
    .reference-gallery {
        border-left: none;
        padding-left: 0;
        align-items: center;
    }
    .vertical-strip {
        flex-direction: row;
        max-width: 100%;
        overflow-x: auto;
    }
}
/* ==========================================================================
   MENÚ SUPERIOR: TRAZO DELINEADO GLOBAL CON MATIZ BEIGE REVERSIBLE
   ========================================================================== */
.social-menu-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    
    /* Este gris grafito (#55524c) al ser delineado, absorbe el beige de fondo y da el efecto opaco */
    color: #7c776e !important; 
    transition: color 0.3s ease !important;
}

.social-menu-link svg {
    width: 14px !important;
    height: 14px !important;
    vertical-align: middle !important;
}

/* Al pasar el mouse, dan el salto nítido al negro editorial */
.social-menu-link:hover {
    color: #1d1d1d !important;
}
/* ==========================================================================
   SEPARACIÓN EXCLUSIVA PARA LOS ÍCONOS (Las letras no se mueven)
   ========================================================================== */

   .social-menu-link + .social-menu-link {
    /* CONTROL MANUAL: Sube este número (ej: 20px o 24px) si quieres que se separen más */
    margin-left: 2px !important; 
}

/* ==========================================================================
   FORMATO EDITORIAL AUTOMÁTICO: MAYÚSCULA AL INICIO Y MINÚSCULAS EL RESTO
   ========================================================================== */

/* 2. Truco mágico: Obliga a que la primerísima letra de cada párrafo o título sea Mayúscula */
p::first-letter, 
h1::first-letter, 
h2::first-letter, 
h3::first-letter, 
button::first-letter,
.canvas-text::first-letter {
    text-transform: uppercase !important;
}

/* ==========================================================================
   ELIMINAR INTERLETRAJE (SEPARACIÓN DE LETRAS) EN TEXTOS Y ENLACES
   ========================================================================== */

/* 1. Aplica un interletraje normal y compacto a "Ver el proceso" y todos los links */
.link-proceso, 
.text-link, 
.main-nav a, 
.unified-nav-bar a, 
.social-menu-link {
    letter-spacing: normal !important; /* Quita cualquier separación extra entre letras */
}

/* 2. Aplica lo mismo para todos los párrafos y textos descriptivos en minúsculas */
p, 
span, 
#desc-pieza, 
.canvas-text p {
    letter-spacing: 0 !important; /* Fuerza a que las letras se junten de forma natural */
}

/* 3. Opcional: Si tus botones también tienen las letras muy separadas y los quieres normales */
.action-btn, 
.btn-crear, 
.submit-btn {
    letter-spacing: normal !important;
}
/* ==========================================================================
   [DISEÑO RESPONSIVE]: AJUSTES EXCLUSIVOS PARA MÓVILES (PANTALLAS CHICAS)
   ========================================================================== */
   @media (max-width: 768px) {
    
    /* 1. EL MENÚ SUPERIOR EN CELULARES */
    .main-nav, .unified-nav-bar {
        padding: 0 1.5rem !important; /* Reducimos los márgenes de los lados para que quepa todo */
        height: 4.5rem !important;
    }
    .main-nav nav, .unified-nav-bar .nav-left-group {
        gap: 0.8rem !important; /* Juntamos un poco más los enlaces (piezas, sobre mí) */
    }
    .main-nav a, .unified-nav-bar a {
        font-size: 0.85rem !important; /* Letra ligeramente más pequeña para que no se encime */
    }

    /* 2. LA TARJETA CENTRAL DE LA PÁGINA DE PIEZAS */
    .tarjeta-info {
        width: 90% !important; /* Ya no mide 600px fijos, ahora usa el 90% del ancho del celular */
        min-height: auto !important;
        padding: 20px !important;
        margin: 5.5rem auto 20px auto !important; /* Espacio para que el menú no la tape */
    }
    #detalle-pieza {
        flex-direction: column !important; /* La foto grande y el texto ya no van de lado, van uno abajo del otro */
        align-items: center !important;
        text-align: center !important;
        gap: 15px !important;
    }
    #img-grande {
        width: 180px !important; /* Foto de detalle más pequeña para pantallas de celular */
        height: 180px !important;
    }

    /* El Grid inicial cambia de 3 columnas a 2 columnas para que las fotos no se vean diminutas */
    .galeria-estilo {
        grid-template-columns: repeat(2, 1fr) !important; 
        max-width: 100% !important;
        gap: 10px !important;
    }
    .galeria-estilo img {
        width: 100% !important; /* Se adaptan al ancho de la columna del celular */
        height: 85px !important;
    }

    /* 3. PÁGINA DE CONTACTO (FORMULARIO) */
    .canvas-about {
        padding-top: 5.5rem !important;
        max-width: 90% !important;
    }
    textarea, input {
        padding: 12px !important;
        font-size: 0.9rem !important;
    }

    /* 4. PÁGINA DE SOBRE MÍ (DISEÑO EDITORIAL ABSOLUTO) */
    /* En celulares quitamos las posiciones fijas raras y amontonadas para poner el texto fluido en fila */
    .canvas-about {
        height: auto !important;
        overflow-y: auto !important; /* Habilitamos scroll vertical SOLO en el contenido de sobre mí en celular */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        padding-bottom: 40px !important;
    }
    .text-1-top-left, .text-chata-top-right, .text-3-bottom-left, .text-4-bottom-right, .text-2-star-fucsia {
        position: static !important; /* Desactivamos el acomodo manual de la computadora */
        transform: none !important;
        max-width: 90% !important;
        margin: 15px auto !important; /* Les damos un espacio limpio uno abajo del otro */
        text-align: center !important; /* Todo centrado para mejor lectura en pantallas verticales */
    }
    .canvas-photo-wrapper {
        position: static !important;
        transform: none !important;
        margin: 20px auto !important;
        width: 250px !important;
        height: 250px !important;
    }
}
/* ==========================================================================
   BASE DEL TRADUCTOR GLOBAL (El color se personaliza en cada HTML)
   ========================================================================== */
   .traductor-flotante { 
    position: fixed !important; 
    bottom: 20px !important; 
    right: 20px !important; 
    z-index: 99999 !important; 
}
.traductor-flotante button { 
    background-color: transparent !important; /* Totalmente hueco y vacío por defecto */
    padding: 8px 15px !important; 
    border-radius: 15px !important; 
    font-size: 0.75rem !important; 
    font-family: inherit !important; 
    cursor: pointer !important; 
    transition: all 0.3s ease !important; 
}
/* ==========================================================================
   ESTILOS BASE DEL MENÚ HAMBURGUESA (Para Computadora)
   ========================================================================== */
   .menu-hamburger-btn {
    display: none; /* Escondido por defecto en computadoras */
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100000;
}
.menu-hamburger-btn span {
    width: 100%;
    height: 1.5px;
    background-color: #1d1d1d;
    transition: all 0.3s ease;
}
.nav-menu-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    margin-left: 2rem;
}

/* ==========================================================================
   COMPORTAMIENTO EXCLUSIVO EN CELULARES (MÓVIL)
   ========================================================================== */
@media (max-width: 768px) {
    .menu-hamburger-btn {
        display: flex !important; /* Activamos las 3 rayitas en celular */
    }
    
    /* El contenedor se transforma en un telón que baja flotando sobre la página sin mover tus tarjetas */
    .nav-menu-container {
        position: fixed !important;
        top: -100vh; /* Escondido arriba del techo de la pantalla */
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(231, 227, 218, 0.98); /* Tu beige lechoso cubriendo la pantalla */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 3rem !important;
        margin: 0 !important;
        transition: top 0.4s cubic-bezier(0.1, 0.7, 0.1, 1) !important; /* Animación fluida de cortina */
        z-index: 99998;
    }

    /* Cuando el menú se activa, se desliza hacia abajo ocupando la pantalla */
    .nav-menu-container.open {
        top: 0 !important;
    }

    /* Convertimos las listas de texto e iconos en columnas verticales limpias */
    .nav-menu-container .nav-links-left {
        flex-direction: column !important;
        align-items: center !important;
        gap: 2rem !important;
    }
    .nav-menu-container .nav-links-center {
        display: flex !important;
        gap: 1.5rem !important;
        justify-content: center !important;
        margin-top: 1rem;
    }

    /* Animación del botón de hamburguesa transformándose en una X fina al abrir */
    .menu-hamburger-btn.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .menu-hamburger-btn.open span:nth-child(2) {
        opacity: 0;
    }
    .menu-hamburger-btn.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}
