
        /* ==========================================================================
           1. SISTEMA DE DISEÑO (DARK ACADEMIA VIP)
           ========================================================================== */
        :root {
            --color-fondo-base: #040914; /* Navy Abisal */
            --color-card-glass: rgba(12, 20, 35, 0.65);
            --color-navy: #0A192F;      
            --color-oro: #D4AF37;       
            --color-oro-brillante: #FCE181;
            --color-oro-oscuro: #9A7B26;
            --color-texto-principal: #F8FAFC;
            --color-texto-secundario: #CBD5E1;
            
            --fuente-titulos: 'Cinzel', serif;
            --fuente-textos: 'Montserrat', sans-serif;

            --sombra-suave: 0 10px 30px rgba(0, 0, 0, 0.5);
            --sombra-oro: 0 5px 20px rgba(212, 175, 55, 0.2);
            --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); 
            /* Textura de pergamino oscuro / cuero fino */
            background-image: 
                radial-gradient(circle at 20% 40%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
                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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
            color: var(--color-texto-principal); 
            line-height: 1.6; 
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        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(16px); -webkit-backdrop-filter: blur(16px);
            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: 15px 35px; border-radius: 50px; border: none; cursor: pointer;
            font-family: var(--fuente-textos); font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px;
            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.2); transform: rotate(45deg) translate(-50%, 100%);
            transition: transform 0.6s ease;
        }
        .btn-oro:hover { transform: translate3d(0, -5px, 0.1px) rotate(0.01deg); box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4); }
        .btn-oro:hover::after { transform: rotate(45deg) translate(50%, -100%); }

        .btn-outline {
            display: inline-flex; align-items: center; justify-content: center; gap: 8px;
            background: transparent; 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-navy); transform: translate3d(0, -3px, 0.1px) rotate(0.01deg); }

        /* Botón Agendar Calendario (Animación Latido) */
        .btn-calendario {
            background: rgba(212, 175, 55, 0.1); 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. BACKGROUND FLOTANTE (PHOSPHOR DUOTONE + ANIME.JS)
           ========================================================================== */
        .bg-flotantes { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
        .joya-flotante { 
            position: absolute; font-size: 2.5rem; color: var(--color-oro); opacity: 0.15;
            will-change: transform; bottom: -100px;
        }

        /* ==========================================================================
           4. PRELOADER Y PORTA-DIPLOMAS 3D (EL UNBOXING VIP)
           ========================================================================== */
        #preloader { 
            position: fixed; inset: 0; background: var(--color-fondo-base); z-index: 99999; 
            display: flex; flex-direction: column; justify-content: center; align-items: center; 
        }
        .birrete-animado { font-size: 4rem; color: var(--color-oro); margin-bottom: 20px; }

        #pantalla-unboxing { 
            position: fixed; inset: 0; background: rgba(2, 5, 10, 0.98); z-index: 99998; 
            display: flex; flex-direction: column; justify-content: center; align-items: center; 
            backdrop-filter: blur(15px); perspective: 1500px; /* Perspectiva profunda para el 3D */
        }
        
        .porta-diplomas { 
            position: relative; width: 340px; height: 260px; cursor: pointer; 
            transform-style: preserve-3d;
        }
        
        /* Base / Fondo del Porta-Diplomas */
        .porta-base { 
            position: absolute; inset: 0; background: #0a0a0a; border-radius: 10px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.9), inset 0 0 50px rgba(0,0,0,0.8);
            border: 2px solid #1a1a1a;
            display: flex; justify-content: center; align-items: center;
        }
        
        /* El Diploma Interno */
        .diploma-interior {
            width: 90%; height: 85%; background: #FDF9EE; border-radius: 5px;
            padding: 30px 20px; text-align: center; position: relative;
            box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.2);
            border: 1px solid rgba(212, 175, 55, 0.4);
            background-image: repeating-linear-gradient(transparent, transparent 2px, rgba(212, 175, 55, 0.05) 3px, rgba(212, 175, 55, 0.05) 4px);
        }
        .diploma-interior h2 { font-family: var(--fuente-titulos); color: #0A192F; font-size: 1.6rem; margin-bottom: 5px; }
        .diploma-interior p { font-family: var(--fuente-textos); color: #4A5568; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px;}
        .cinta-oro { position: absolute; bottom: 20px; right: 20px; width: 40px; height: 40px; background: var(--color-oro); border-radius: 50%; box-shadow: 0 5px 15px rgba(0,0,0,0.3);}

        /* Tapa de Cuero 3D */
        .porta-tapa { 
            position: absolute; inset: 0; border-radius: 10px;
            /* Textura Cuero Negra */
            background: linear-gradient(135deg, #151515 0%, #050505 100%);
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.15'/%3E%3C/svg%3E");
            transform-origin: bottom; 
            transform-style: preserve-3d;
            box-shadow: inset 0 2px 10px rgba(255,255,255,0.1), 0 -10px 30px rgba(0,0,0,0.8); 
            border: 1px solid #333;
            display: flex; justify-content: center; align-items: center;
        }

        /* Esquineros Dorados con Clip-Path */
        .esquinero { position: absolute; width: 40px; height: 40px; background: linear-gradient(135deg, var(--color-oro-brillante), var(--color-oro-oscuro)); }
        .esq-tl { top: -1px; left: -1px; clip-path: polygon(0 0, 100% 0, 0 100%); border-top-left-radius: 10px; }
        .esq-tr { top: -1px; right: -1px; clip-path: polygon(0 0, 100% 0, 100% 100%); border-top-right-radius: 10px; }
        .esq-bl { bottom: -1px; left: -1px; clip-path: polygon(0 0, 100% 100%, 0 100%); border-bottom-left-radius: 10px; }
        .esq-br { bottom: -1px; right: -1px; clip-path: polygon(100% 0, 100% 100%, 0 100%); border-bottom-right-radius: 10px; }

        /* Sello / Escudo Central */
        .escudo-central {
            width: 100px; height: 100px; border-radius: 50%;
            background: linear-gradient(135deg, var(--color-oro-brillante), var(--color-oro-oscuro));
            display: flex; justify-content: center; align-items: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.6), inset 0 0 15px rgba(255,255,255,0.5);
            border: 2px solid #fff;
        }
        .escudo-central i { font-size: 3rem; color: var(--color-fondo-base); }

        .instruccion-unboxing { 
            position: absolute; bottom: -50px; 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 */
        #btn-musica { 
            position: fixed; bottom: 25px; right: 25px; width: 55px; height: 55px; 
            background: rgba(12, 20, 35, 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-suave);
        }
        .girar { animation: girarDisco 4s linear infinite; }
        @keyframes girarDisco { 100% { transform: rotate(360deg); } }

        /* ==========================================================================
           5. HERO, AGRADECIMIENTOS Y CONTADOR
           ========================================================================== */
        .hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; overflow: hidden; }
        .hero-bg { position: absolute; inset: 0; z-index: 0; }
        .hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
        .hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(4,9,20,0.1) 0%, rgba(4,9,20,1) 100%); }
        .hero-content { position: relative; z-index: 2; width: 100%; max-width: 700px; text-align: center; }
        
        .hero-grado { font-family: var(--fuente-textos); font-size: 1rem; letter-spacing: 6px; text-transform: uppercase; color: var(--color-oro); margin-bottom: 20px; font-weight: 500; }
        .hero-nombre { font-family: var(--fuente-titulos); font-size: 5rem; line-height: 1.1; color: var(--color-texto-principal); margin-bottom: 20px; text-shadow: 2px 2px 15px rgba(0,0,0,0.9); }
        .hero-generacion { font-family: var(--fuente-textos); font-size: 1.2rem; color: var(--color-texto-secundario); letter-spacing: 4px; font-weight: 300; }
        .hero-linea { width: 80px; height: 2px; background: var(--color-oro); margin: 30px auto; }

        .titulo-seccion { font-size: 2.5rem; text-align: center; margin-bottom: 40px; color: var(--color-oro); text-shadow: 0 4px 10px rgba(0,0,0,0.5); }
        .subtitulo-seccion { text-align: center; font-size: 1.1rem; color: var(--color-texto-secundario); margin-top: -25px; margin-bottom: 50px; font-weight: 300; }

        /* Agradecimientos (Estilo Editorial Largo) */
        .editorial-text { position: relative; }
        .editorial-text::first-letter {
            float: left; font-family: var(--fuente-titulos); font-size: 4.5rem; line-height: 0.8;
            padding-right: 15px; padding-top: 5px; color: var(--color-oro); text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        .editorial-text p { font-size: 1.1rem; line-height: 2; color: var(--color-texto-secundario); margin-bottom: 20px; text-align: justify; font-weight: 300; }
        .firma { font-family: var(--fuente-titulos); font-size: 1.5rem; color: var(--color-oro); text-align: right; margin-top: 30px; font-style: italic; }

        /* Contador */
        .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; }

        /* Ubicaciones */
        .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); padding: 6px 20px; border-radius: 20px; font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(212, 175, 55, 0.3);}

        /* ==========================================================================
           6. LÍNEA DE TIEMPO (7 TRAYECTORIAS - SCROLL DRAWN)
           ========================================================================== */
        .trayectoria-wrapper { position: relative; max-width: 700px; margin: 0 auto; padding: 40px 0; }
        
        /* La línea que se dibuja con JS/Anime */
        .trayectoria-linea {
            position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; 
            background: rgba(212, 175, 55, 0.2); transform: translateX(-50%); z-index: 0;
        }
        .trayectoria-progreso {
            position: absolute; left: 0; top: 0; width: 100%; height: 0%; /* Inicia en 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: 60px; position: relative; width: 100%; z-index: 2; opacity: 0; /* Para Anime.js */ }
        .hito-item:nth-child(even) { flex-direction: row-reverse; }
        
        .hito-punto { 
            position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(0); /* Inicia en 0 */
            width: 24px; height: 24px; background: var(--color-fondo-base); 
            border: 4px solid var(--color-oro); border-radius: 50%; 
            box-shadow: 0 0 15px 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: 42%; text-align: right; background: rgba(12, 20, 35, 0.5); padding: 25px; border-radius: 12px; border: 1px solid rgba(212,175,55,0.1); backdrop-filter: blur(5px);}
        .hito-item:nth-child(even) .hito-content { text-align: left; }
        .hito-numero { font-family: var(--fuente-titulos); font-size: 3rem; color: rgba(212,175,55,0.15); position: absolute; top: -10px; font-weight: 800; line-height: 1;}
        .hito-item:nth-child(odd) .hito-numero { right: 20px; }
        .hito-item:nth-child(even) .hito-numero { left: 20px; }
        
        .hito-titulo { font-family: var(--fuente-titulos); font-size: 1.3rem; color: var(--color-oro); margin-bottom: 8px; position: relative; z-index: 1;}
        .hito-texto { font-size: 0.95rem; color: var(--color-texto-secundario); position: relative; z-index: 1;}

        /* ==========================================================================
           7. DRESS CODE (ARTE CSS PURO)
           ========================================================================== */
        .arte-vestimenta { display: flex; justify-content: center; align-items: center; height: 120px; margin-bottom: 20px; }
        
        /* Vestido de Noche (Damas) */
        .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 { /* Cinturón */
            content: ''; position: absolute; top: 38%; left: 35%; width: 30%; height: 4px;
            background: #fff; box-shadow: 0 0 10px rgba(255,255,255,0.8);
        }

        /* Smoking (Caballeros) */
        .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 { /* Camisa Blanca V */
            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 { /* Pajarita / Moño */
            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%); /* Base */
            /* Simulando moño con bordes */
            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);
        }

        /* ==========================================================================
           8. GALERÍA 3D COVERFLOW (CORREGIDA - SIN OVERFLOW HIDDEN)
           ========================================================================== */
        /* Eliminamos overflow: hidden para evitar que Safari corte el renderizado 3D */
        .seccion-galeria { perspective: 1200px; padding: 100px 0; }
        
        .carrusel-contenedor {
            width: 100%; height: 350px; position: relative;
            display: flex; justify-content: center; align-items: center;
        }
        
        .carrusel-track {
            width: 280px; height: 350px; position: relative;
            transform-style: preserve-3d; 
            will-change: transform;
            /* La posición Z inicial se inyectará por JS para nivelar la profundidad */
        }
        
        .foto-3d {
            position: absolute; width: 280px; height: 350px; left: 0; top: 0;
            border-radius: 12px; overflow: hidden; border: 2px solid rgba(212, 175, 55, 0.4);
            box-shadow: 0 20px 40px rgba(0,0,0,0.8); cursor: grab;
            user-select: none; -webkit-user-select: none; -webkit-user-drag: none;
        }
        
        .foto-3d img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; border-radius: 10px;}
        .foto-3d::after { 
            content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.6); transition: background 0.4s;
        }
        .foto-3d.activa::after { background: transparent; }
        
        .instruccion-drag { text-align: center; color: var(--color-oro); margin-top: 40px; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; animation: latidoCalendario 2s infinite;}

        /* ==========================================================================
           9. MÓDULO UNIFICADO VIP (CONFIRMACIÓN, BUZÓN + DJ)
           ========================================================================== */
        .seccion-rsvp { 
            position: relative; background: #0b1524; 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.15); box-shadow: var(--sombra-suave); z-index: 10;
        }
        /* Fondo Liquid Gold animado */
        .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.08; 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(4, 9, 20, 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;
        }
        
        .form-vip { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
        .input-group { display: flex; flex-direction: column; gap: 8px; text-align: left; }
        .input-group label { font-family: var(--fuente-titulos); color: var(--color-oro); font-size: 1.05rem; }
        .input-vip { 
            width: 100%; padding: 15px 20px; background: rgba(0,0,0,0.5); 
            border: 1px solid rgba(212, 175, 55, 0.3); border-radius: 8px; 
            color: #fff; font-family: var(--fuente-textos); font-size: 1rem; transition: border 0.3s, box-shadow 0.3s;
        }
        .input-vip:focus { outline: none; border-color: var(--color-oro); box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
        .input-vip::placeholder { color: rgba(255,255,255,0.4); }
        textarea.input-vip { resize: vertical; min-height: 90px; }

        /* ==========================================================================
           10. FOOTER
           ========================================================================== */
        .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) rotate(0.01deg); color: var(--color-oro-brillante); }

        /* Clases de Ocultamiento Inicial para Anime.js (Scroll Reveal) */
        .reveal-item { opacity: 0; transform: translateY(40px); }

        @media (max-width: 768px) {
            .hero-nombre { font-size: 3.5rem; }
            .grid-2 { grid-template-columns: 1fr; }
            .trayectoria-linea { left: 30px; }
            .hito-item { flex-direction: column !important; align-items: flex-start; padding-left: 60px; }
            .hito-punto { left: 30px; }
            .hito-content { width: 100%; text-align: left !important; }
            .hito-item:nth-child(even) .hito-numero, .hito-item:nth-child(odd) .hito-numero { left: auto; right: 20px; }
            .carrusel-contenedor { height: 300px; }
            .carrusel-track { width: 220px; height: 300px; }
            .foto-3d { width: 220px; height: 300px; }
            .seccion-padding { padding: 70px 0; }
            .rsvp-content { padding: 40px 20px; }
        }
