
        /* ==========================================================================
           1. SISTEMA DE DISEÑO (OBSIDIANA Y ORO LÍQUIDO)
           ========================================================================== */
        :root {
            --color-fondo-base: #030508; /* Obsidiana / Negro muy profundo */
            --color-card-glass: rgba(10, 15, 20, 0.7); /* Cristal oscuro */
            --color-oro: #D4AF37;       
            --color-oro-brillante: #FCE181;
            --color-oro-oscuro: #9A7B26;
            --color-terciopelo: #1a0505; /* Rojo/Negro profundo para el estuche */
            --color-texto-principal: #F8FAFC;
            --color-texto-secundario: #CBD5E1;
            
            --fuente-titulos: 'Cinzel', serif;
            --fuente-textos: 'Montserrat', sans-serif;

            --sombra-suave: 0 15px 35px rgba(0, 0, 0, 0.8);
            --sombra-oro: 0 5px 25px rgba(212, 175, 55, 0.25);
            --borde-radio: 16px;
        }

        /* ==========================================================================
           2. RESET, UTILIDADES Y TEXTURAS (GPU)
           ========================================================================== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        
        body { 
            font-family: var(--fuente-textos); background-color: var(--color-fondo-base); 
            color: var(--color-texto-principal); line-height: 1.6; overflow-x: hidden;
            -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
        }

        #vanta-bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; }

        h1, h2, h3 { font-family: var(--fuente-titulos); font-weight: 600; color: var(--color-oro); }
        .contenedor { max-width: 850px; margin: 0 auto; padding: 0 6%; position: relative; z-index: 10; }
        .seccion-padding { padding: 100px 0; }
        a { text-decoration: none; color: inherit; outline: none; }

        /* Glassmorphism Premium */
        .glass-card {
            background: var(--color-card-glass);
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(212, 175, 55, 0.15); border-top: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: var(--borde-radio); padding: 40px 30px;
            box-shadow: var(--sombra-suave); will-change: transform, opacity;
        }

        /* Botones de Lujo */
        .btn-oro {
            display: inline-flex; align-items: center; justify-content: center; gap: 10px;
            background: linear-gradient(135deg, var(--color-oro-brillante), var(--color-oro-oscuro)); 
            color: var(--color-fondo-base); padding: 16px 40px; border-radius: 50px; border: none; cursor: pointer;
            font-family: var(--fuente-textos); font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px;
            box-shadow: var(--sombra-oro); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative; overflow: hidden;
        }
        .btn-oro::after {
            content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
            background: rgba(255,255,255,0.3); transform: rotate(45deg) translate(-50%, 100%); transition: transform 0.6s ease;
        }
        .btn-oro:hover { transform: translate3d(0, -5px, 0.1px); box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5); }
        .btn-oro:hover::after { transform: rotate(45deg) translate(50%, -100%); }

        .btn-outline {
            display: inline-flex; align-items: center; justify-content: center; gap: 8px;
            background: rgba(212, 175, 55, 0.05); color: var(--color-oro); border: 1px solid var(--color-oro); 
            padding: 12px 25px; border-radius: 50px; font-weight: 500; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
            transition: all 0.3s ease; cursor: pointer; backdrop-filter: blur(4px);
        }
        .btn-outline:hover { background: var(--color-oro); color: var(--color-fondo-base); transform: translate3d(0, -3px, 0.1px); }

        .btn-calendario {
            background: transparent; border: 1px solid var(--color-oro); color: var(--color-oro);
            padding: 12px 30px; border-radius: 50px; font-weight: 600; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
            animation: latidoCalendario 3s infinite; transition: all 0.3s;
        }
        .btn-calendario:hover { background: var(--color-oro); color: var(--color-fondo-base); animation: none; transform: scale(1.05); }
        @keyframes latidoCalendario { 0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); } 50% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); } }

        /* ==========================================================================
           3. PRELOADER Y ESTUCHE 3D (EL UNBOXING VIP DE ANIVERSARIO)
           ========================================================================== */
        #preloader { 
            position: fixed; inset: 0; background: var(--color-fondo-base); z-index: 99999; 
            display: flex; flex-direction: column; justify-content: center; align-items: center; 
        }
        .anillos-loader { font-size: 4.5rem; color: var(--color-oro); margin-bottom: 20px; animation: pulse 1.5s infinite; }
        @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.95); } }

        #pantalla-unboxing { 
            position: fixed; inset: 0; background: rgba(0, 0, 0, 0.95); z-index: 99998; 
            display: flex; flex-direction: column; justify-content: center; align-items: center; 
            backdrop-filter: blur(20px); perspective: 1500px;
        }
        
        .estuche-vip { 
            position: relative; width: 320px; height: 280px; cursor: pointer; transform-style: preserve-3d;
        }
        
        /* Base de Terciopelo */
        .estuche-base { 
            position: absolute; inset: 0; background: var(--color-terciopelo); border-radius: 12px;
            box-shadow: 0 40px 80px rgba(0,0,0,0.9), inset 0 0 60px rgba(0,0,0,0.9);
            border: 2px solid #3a0a0a; border-top: none;
            display: flex; justify-content: center; align-items: center;
        }
        
        /* La Invitación Interna */
        .carta-interior {
            width: 85%; height: 85%; background: #FCFBF8; border-radius: 4px;
            padding: 30px 20px; text-align: center; position: relative;
            box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.15), 0 5px 15px rgba(0,0,0,0.5);
            border: 1px solid rgba(212, 175, 55, 0.5);
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
        }
        .carta-interior h2 { font-family: var(--fuente-titulos); color: #0A192F; font-size: 1.8rem; margin-bottom: 5px; line-height: 1.1;}
        .carta-interior p { font-family: var(--fuente-textos); color: #64748B; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 4px;}
        
        /* Tapa de Terciopelo 3D */
        .estuche-tapa { 
            position: absolute; inset: 0; border-radius: 12px; background: var(--color-terciopelo);
            transform-origin: top; transform-style: preserve-3d;
            box-shadow: inset 0 2px 5px rgba(255,255,255,0.1), 0 10px 30px rgba(0,0,0,0.8); 
            border: 2px solid #3a0a0a; border-bottom: 2px solid var(--color-oro);
            display: flex; justify-content: center; align-items: center;
        }

        /* Emblema Dorado 50 Años */
        .emblema-50 {
            width: 90px; height: 90px; border-radius: 50%; background: linear-gradient(135deg, var(--color-oro-brillante), var(--color-oro-oscuro));
            display: flex; justify-content: center; align-items: center; flex-direction: column;
            box-shadow: 0 10px 20px rgba(0,0,0,0.8), inset 0 0 10px rgba(255,255,255,0.5); border: 2px solid rgba(255,255,255,0.3);
            font-family: var(--fuente-titulos); color: var(--color-fondo-base); text-shadow: 1px 1px 0 rgba(255,255,255,0.4);
        }
        .emblema-50 span.num { font-size: 2.8rem; font-weight: 800; line-height: 0.9; }
        .emblema-50 span.txt { font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; font-family: var(--fuente-textos); font-weight: bold;}

        .instruccion-unboxing { position: absolute; bottom: -60px; font-size: 0.85rem; color: var(--color-oro); text-transform: uppercase; letter-spacing: 3px; animation: latidoCalendario 2s infinite; text-align: center; width: 100%; }

        /* Botón Audio Flotante */
        #btn-musica { 
            position: fixed; bottom: 25px; right: 25px; width: 55px; height: 55px; 
            background: rgba(10, 15, 20, 0.8); backdrop-filter: blur(10px);
            border: 1px solid rgba(212, 175, 55, 0.4); border-radius: 50%; 
            display: flex; justify-content: center; align-items: center; z-index: 9990; 
            cursor: pointer; font-size: 1.4rem; color: var(--color-oro); box-shadow: var(--sombra-oro);
        }
        .girar { animation: girarDisco 4s linear infinite; }
        @keyframes girarDisco { 100% { transform: rotate(360deg); } }

        /* ==========================================================================
           4. PORTADA HERO Y ANILLOS 3D CSS
           ========================================================================== */
        .hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; flex-direction: column; }
        .hero-content { position: relative; z-index: 2; width: 100%; max-width: 700px; text-align: center; margin-top: 40px;}
        
        /* Objeto 3D CSS: Anillos Entrelazados */
        .contenedor-anillos-3d {
            width: 150px; height: 150px; margin: 0 auto 30px; position: relative;
            transform-style: preserve-3d; animation: rotacion3D 15s infinite linear;
        }
        .anillo-obj {
            position: absolute; inset: 0; border: 15px solid var(--color-oro-brillante); border-radius: 50%;
            box-shadow: inset 0 0 15px rgba(154, 123, 38, 0.8), 0 0 20px rgba(212, 175, 55, 0.4);
            border-top-color: var(--color-oro-oscuro); border-bottom-color: var(--color-oro-oscuro);
        }
        .anillo-1 { transform: rotateY(45deg); }
        .anillo-2 { transform: rotateX(45deg) translateZ(-20px); border-color: var(--color-oro); border-left-color: #fff; }
        @keyframes rotacion3D { 0% { transform: rotateX(0deg) rotateY(0deg); } 100% { transform: rotateX(360deg) rotateY(360deg); } }

        .hero-grado { font-family: var(--fuente-textos); font-size: 1.2rem; letter-spacing: 8px; text-transform: uppercase; color: var(--color-oro); margin-bottom: 20px; font-weight: 500; }
        .hero-nombre { font-family: var(--fuente-titulos); font-size: 4.8rem; line-height: 1.1; color: var(--color-texto-principal); margin-bottom: 20px; text-shadow: 0 10px 30px rgba(0,0,0,0.9); }
        .hero-generacion { font-family: var(--fuente-textos); font-size: 1.2rem; color: var(--color-texto-secundario); letter-spacing: 5px; font-weight: 300; }
        
        .titulo-seccion { font-size: 2.6rem; text-align: center; margin-bottom: 20px; color: var(--color-oro); text-shadow: 0 4px 10px rgba(0,0,0,0.5); line-height: 1.2;}
        .subtitulo-seccion { text-align: center; font-size: 1.1rem; color: var(--color-texto-secundario); margin-bottom: 50px; font-weight: 300; letter-spacing: 1px;}

        /* ==========================================================================
           5. INVITACIÓN FORMAL Y AGRADECIMIENTOS (EDITORIAL)
           ========================================================================== */
        .texto-protocolo {
            font-size: 1.15rem; line-height: 2.2; color: var(--color-texto-secundario); text-align: center; font-weight: 300;
        }
        .nombres-destacados { font-family: var(--fuente-titulos); font-size: 1.8rem; color: var(--color-oro); display: block; margin: 20px 0; }
        
        .editorial-text { position: relative; margin-top: 30px;}
        .editorial-text::first-letter {
            float: left; font-family: var(--fuente-titulos); font-size: 5.5rem; line-height: 0.8;
            padding-right: 18px; padding-top: 8px; color: var(--color-oro); text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }
        .editorial-text p { font-size: 1.1rem; line-height: 2.1; color: var(--color-texto-secundario); margin-bottom: 25px; text-align: justify; font-weight: 300; }
        .firma { font-family: var(--fuente-titulos); font-size: 1.8rem; color: var(--color-oro); text-align: right; margin-top: 40px; font-style: italic; }

        /* ==========================================================================
           6. LÍNEA DE TIEMPO (8 HITOS CON FOTOS - SCROLL DRAWN)
           ========================================================================== */
        .trayectoria-wrapper { position: relative; max-width: 800px; margin: 0 auto; padding: 40px 0; }
        
        .trayectoria-linea {
            position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; 
            background: rgba(212, 175, 55, 0.15); transform: translateX(-50%); z-index: 0;
        }
        .trayectoria-progreso {
            position: absolute; left: 0; top: 0; width: 100%; height: 0%; 
            background: var(--color-oro); box-shadow: 0 0 15px var(--color-oro);
            will-change: height; transition: height 0.2s ease-out;
        }

        .hito-item { display: flex; justify-content: space-between; align-items: center; margin-bottom: 80px; position: relative; width: 100%; z-index: 2; opacity: 0; }
        .hito-item:nth-child(even) { flex-direction: row-reverse; }
        
        .hito-punto { 
            position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(0); 
            width: 24px; height: 24px; background: var(--color-fondo-base); 
            border: 4px solid var(--color-oro); border-radius: 50%; box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
        }
        .hito-item.activado .hito-punto { transform: translate(-50%, -50%) scale(1); transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        
        .hito-content { width: 44%; text-align: right; background: rgba(10, 15, 20, 0.8); padding: 25px; border-radius: 16px; border: 1px solid rgba(212,175,55,0.2); backdrop-filter: blur(10px); box-shadow: var(--sombra-suave);}
        .hito-item:nth-child(even) .hito-content { text-align: left; }
        
        /* Foto dentro del hito */
        .hito-foto { width: 100%; height: 160px; border-radius: 8px; object-fit: cover; margin-bottom: 15px; border: 1px solid rgba(212, 175, 55, 0.3); filter: sepia(0.3) contrast(1.1);}
        
        .hito-ano { font-family: var(--fuente-titulos); font-size: 2.5rem; color: var(--color-oro); margin-bottom: 5px; line-height: 1; text-shadow: 0 2px 10px rgba(0,0,0,0.8);}
        .hito-titulo { font-size: 1.2rem; color: var(--color-texto-principal); margin-bottom: 8px; font-weight: 600;}
        .hito-texto { font-size: 0.95rem; color: var(--color-texto-secundario); line-height: 1.7;}

        /* ==========================================================================
           7. IN MEMORIAM (BRINDIS AL CIELO)
           ========================================================================== */
        .seccion-memoriam { 
            background: radial-gradient(circle at center, rgba(10,15,25,1) 0%, var(--color-fondo-base) 100%); 
            text-align: center; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .luz-cielo {
            width: 1px; height: 100px; background: linear-gradient(to top, var(--color-oro), transparent);
            margin: 0 auto 20px; position: relative; animation: destelloCielo 3s infinite alternate;
        }
        .luz-cielo::after {
            content: ''; position: absolute; top: 0; left: -10px; width: 20px; height: 20px; background: radial-gradient(circle, var(--color-oro-brillante) 0%, transparent 70%); border-radius: 50%;
        }
        @keyframes destelloCielo { 0% { opacity: 0.5; filter: blur(2px); } 100% { opacity: 1; filter: blur(0px); box-shadow: 0 0 30px var(--color-oro); } }
        
        .texto-memoriam { font-size: 1.1rem; line-height: 2; color: #A0AEC0; font-style: italic; max-width: 600px; margin: 0 auto; font-weight: 300;}

        /* ==========================================================================
           8. GALERÍA 3D COVERFLOW CON LIGHTBOX (ZOOM VIP)
           ========================================================================== */
        .seccion-galeria { perspective: 1200px; }
        .swiper { width: 100%; padding-top: 50px; padding-bottom: 80px; }
        .swiper-slide {
            background-position: center; background-size: cover;
            width: 280px; height: 380px; border-radius: 12px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.9); border: 2px solid rgba(212, 175, 55, 0.3);
            -webkit-transform-style: preserve-3d; transform-style: preserve-3d; cursor: pointer;
        }
        .swiper-slide img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
        /* Reflejo estilo mesa de cristal */
        .swiper-slide::after {
            content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 100px;
            background: inherit; transform: scaleY(-1); opacity: 0.2; filter: blur(4px);
            mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, transparent 100%);
        }
        
        /* Lightbox Oculto para ver foto en grande */
        #lightbox-vip {
            position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 999999;
            display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden;
            transition: opacity 0.4s ease, visibility 0.4s ease; backdrop-filter: blur(15px);
        }
        #lightbox-vip.activo { opacity: 1; visibility: visible; }
        #lightbox-img { max-width: 90%; max-height: 85vh; border-radius: 8px; border: 2px solid var(--color-oro); box-shadow: 0 0 50px rgba(212, 175, 55, 0.2); transform: scale(0.9); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);}
        #lightbox-vip.activo #lightbox-img { transform: scale(1); }
        .cerrar-lightbox { position: absolute; top: 30px; right: 30px; color: #fff; font-size: 2.5rem; cursor: pointer; transition: color 0.3s; }
        .cerrar-lightbox:hover { color: var(--color-oro); }

        /* ==========================================================================
           9. PROTOCOLO: DRIVE, UBICACIONES Y DRESS CODE CSS
           ========================================================================== */
        .grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
        .ubicacion-icono { font-size: 3rem; color: var(--color-oro); margin-bottom: 15px; }
        .ubicacion-hora { display: inline-block; background: rgba(212, 175, 55, 0.1); color: var(--color-oro-brillante); padding: 8px 25px; border-radius: 50px; font-size: 0.95rem; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(212, 175, 55, 0.3);}

        .arte-vestimenta { display: flex; justify-content: center; align-items: center; height: 120px; margin-bottom: 20px; }
        .css-vestido { width: 70px; height: 100px; background: linear-gradient(to bottom, var(--color-oro-brillante), var(--color-oro-oscuro)); clip-path: polygon(30% 0%, 70% 0%, 80% 30%, 60% 40%, 100% 100%, 0% 100%, 40% 40%, 20% 30%); position: relative; }
        .css-vestido::after { content: ''; position: absolute; top: 38%; left: 35%; width: 30%; height: 4px; background: #fff; box-shadow: 0 0 10px rgba(255,255,255,0.8); }
        .css-traje { width: 70px; height: 100px; background: #111; position: relative; border-radius: 8px 8px 0 0; border: 1px solid var(--color-oro); box-shadow: inset 0 0 20px rgba(0,0,0,0.8); }
        .css-traje::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 60px; background: #fff; clip-path: polygon(0 0, 100% 0, 50% 100%); }
        .css-traje::after { content: ''; position: absolute; top: 25px; left: 50%; transform: translateX(-50%); width: 24px; height: 10px; background: var(--color-oro); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); border-left: 10px solid #111; border-right: 10px solid #111; background-color: transparent; border-top: 5px solid var(--color-oro); border-bottom: 5px solid var(--color-oro); }

        /* ==========================================================================
           10. SÚPER FORMULARIO VIP (BUZÓN + DJ)
           ========================================================================== */
        .seccion-rsvp { 
            position: relative; background: #060a12; color: var(--color-texto-principal); 
            border-radius: 24px; margin: 0 20px; padding: 80px 20px; text-align: center; 
            overflow: hidden; border: 1px solid rgba(212, 175, 55, 0.2); box-shadow: var(--sombra-suave); z-index: 10;
        }
        .seccion-rsvp::before, .seccion-rsvp::after {
            content: ''; position: absolute; width: 600px; height: 600px;
            background: linear-gradient(135deg, var(--color-oro) 0%, transparent 60%);
            border-radius: 43% 57% 65% 35% / 45% 55% 45% 55%;
            animation: liquidFlow 20s linear infinite; opacity: 0.1; z-index: 0; pointer-events: none; will-change: transform;
        }
        .seccion-rsvp::before { top: -250px; left: -250px; }
        .seccion-rsvp::after { bottom: -250px; right: -250px; background: linear-gradient(315deg, var(--color-oro-brillante) 0%, transparent 60%); animation-direction: reverse; animation-duration: 25s; }
        @keyframes liquidFlow { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

        .rsvp-content {
            position: relative; z-index: 1; background: rgba(3, 5, 8, 0.85); backdrop-filter: blur(16px);
            padding: 50px 40px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.05); max-width: 600px; margin: 0 auto; box-shadow: 0 20px 40px rgba(0,0,0,0.6);
        }
        
        .form-vip { display: flex; flex-direction: column; gap: 25px; margin-top: 40px; }
        .input-group { display: flex; flex-direction: column; gap: 10px; text-align: left; }
        .input-group label { font-family: var(--fuente-titulos); color: var(--color-oro); font-size: 1.1rem; }
        .input-vip { 
            width: 100%; padding: 16px 20px; background: rgba(0,0,0,0.6); 
            border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 8px; 
            color: #fff; font-family: var(--fuente-textos); font-size: 1.05rem; transition: border 0.3s, box-shadow 0.3s;
        }
        .input-vip:focus { outline: none; border-color: var(--color-oro-brillante); box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
        .input-vip::placeholder { color: rgba(255,255,255,0.3); }
        textarea.input-vip { resize: vertical; min-height: 100px; }

        .footer-comercial { padding: 80px 20px 40px; text-align: center; color: var(--color-texto-secundario); position: relative; z-index: 10;}
        .social-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 25px; }
        .social-link { font-size: 1.8rem; color: var(--color-oro); transition: transform 0.3s; }
        .social-link:hover { transform: translate3d(0, -5px, 0.1px); color: var(--color-oro-brillante); }

        .reveal-item { opacity: 0; transform: translateY(50px); }

        /* Contadores */
        .contador-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px;}
        .contador-box { background: rgba(255,255,255,0.02); width: 100px; height: 110px; display: flex; flex-direction: column; justify-content: center; align-items: center; border-radius: 15px; border: 1px solid rgba(212, 175, 55, 0.2); backdrop-filter: blur(8px); box-shadow: inset 0 0 20px rgba(0,0,0,0.5);}
        .contador-numero { font-family: var(--fuente-titulos); font-size: 2.8rem; color: var(--color-texto-principal); line-height: 1; font-weight: 600; text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);}
        .contador-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; margin-top: 5px; color: var(--color-oro); font-weight: 600; }

        @media (max-width: 768px) {
            .hero-nombre { font-size: 3.2rem; }
            .grid-2 { grid-template-columns: 1fr; }
            .trayectoria-linea { left: 30px; }
            .hito-item { flex-direction: column !important; align-items: flex-start; padding-left: 60px; margin-bottom: 50px;}
            .hito-punto { left: 30px; }
            .hito-content { width: 100%; text-align: left !important; }
            .seccion-padding { padding: 80px 0; }
            .rsvp-content { padding: 40px 20px; }
            .editorial-text::first-letter { font-size: 4rem; padding-right: 12px;}
            .contador-grid { gap: 10px; } .contador-box { width: 75px; height: 85px; } .contador-numero { font-size: 1.8rem; } .contador-label { font-size: 0.55rem; }
        }
