
        /* ==========================================================================
           1. SISTEMA DE DISEÑO (MAGIA Y PRINCESAS)
           ========================================================================== */
        :root {
            --color-fondo: #FFF5F7; /* Rosa palo ultra suave */
            --color-blanco: #FFFFFF;
            --color-texto: #5D4037; /* Marrón cálido / oro viejo oscuro */
            --color-texto-suave: #8D6E63;
            
            /* Paleta de Princesa */
            --color-rosa-magico: #FFB6C1;
            --color-rosa-fuerte: #FF69B4;
            --color-oro: #D4AF37;
            --color-oro-suave: #F3E5AB;
            
            --fuente-firma: 'Great Vibes', cursive;
            --fuente-titulos: 'Cinzel', serif;
            --fuente-textos: 'Montserrat', sans-serif;

            --sombra-magica: 0 15px 35px rgba(255, 105, 180, 0.15);
            --borde-radio: 20px;
        }

        /* ==========================================================================
           2. RESET Y ESTILOS GLOBALES
           ========================================================================== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body { 
            font-family: var(--fuente-textos); 
            background-color: var(--color-fondo); 
            color: var(--color-texto); 
            line-height: 1.8; 
            font-weight: 300; 
            overflow-x: hidden; 
            text-align: center;
            /* Textura sutil de destellos (CSS) */
            background-image: radial-gradient(var(--color-oro-suave) 1px, transparent 1px);
            background-size: 50px 50px;
        }
        
        h1, h2, h3, h4 { font-family: var(--fuente-titulos); font-weight: 600; color: var(--color-texto); }
        p { font-size: 0.95rem; }
        a { text-decoration: none; color: inherit; }
        
        .contenedor { max-width: 650px; margin: 0 auto; padding: 0 6%; }
        .seccion-padding { padding: 80px 0; }

        /* Divisor Corona / Magia */
        .divisor-real { 
            font-size: 2rem; color: var(--color-oro); margin: 0 auto 30px; 
            display: flex; align-items: center; justify-content: center; gap: 15px; 
        }
        .divisor-real::before, .divisor-real::after { 
            content: ''; width: 50px; height: 1px; background: linear-gradient(to right, transparent, var(--color-oro), transparent); 
        }

        /* --- ANIMACIONES SCROLL --- */
        .fade-up { opacity: 0; transform: translateY(40px); transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
        .fade-up.visible { opacity: 1; transform: translateY(0); }
        .delay-1 { transition-delay: 200ms; } .delay-2 { transition-delay: 400ms; }

        /* ==========================================================================
           3. PRELOADER MÁGICO (CON NOMBRE)
           ========================================================================== */
        #preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, var(--color-blanco) 0%, var(--color-fondo) 100%); z-index: 99999; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: opacity 0.8s ease, visibility 0.8s ease; }
        #preloader.oculto { opacity: 0; visibility: hidden; pointer-events: none; }
        
        .preloader-nombre { 
            font-family: var(--fuente-firma); font-size: 5.5rem; color: var(--color-rosa-fuerte); 
            line-height: 1; margin-bottom: 10px; animation: brillar 2s infinite alternate; 
            text-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
        }
        .preloader-texto { font-family: var(--fuente-textos); font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; color: var(--color-oro); font-weight: 500;}
        
        @keyframes brillar { 0% { opacity: 0.7; transform: scale(0.95); } 100% { opacity: 1; transform: scale(1.05); text-shadow: 0 0 30px rgba(212, 175, 55, 0.6); } }

        /* --- REPRODUCTOR DE MÚSICA FLOTANTE --- */
        #btn-musica {
            position: fixed; bottom: 25px; right: 25px; width: 55px; height: 55px;
            background: var(--color-blanco); border: 2px solid var(--color-oro); border-radius: 50%;
            display: flex; justify-content: center; align-items: center; z-index: 9990;
            cursor: pointer; box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3); transition: transform 0.3s;
        }
        #btn-musica:hover { transform: scale(1.1); }
        #btn-musica i { font-size: 1.5rem; color: var(--color-oro); }
        .girar { animation: girarDisco 4s linear infinite; }
        @keyframes girarDisco { 100% { transform: rotate(360deg); } }

        /* ==========================================================================
           4. PORTADA PRINCIPAL (EL CASTILLO)
           ========================================================================== */
        .portada { position: relative; padding: 60px 20px 80px; }
        
        .marco-espejo {
            width: 100%; max-width: 350px; margin: 0 auto 30px;
            position: relative; padding: 15px;
        }
        
        .marco-espejo::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            border: 2px solid var(--color-oro); border-radius: 200px 200px 10px 10px;
            box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.3);
        }
        
        .imagen-hero {
            width: 100%; aspect-ratio: 3/4; border-radius: 200px 200px 10px 10px;
            overflow: hidden; box-shadow: var(--sombra-magica);
            background-color: var(--color-blanco); border: 4px solid var(--color-blanco);
        }
        .imagen-hero img { width: 100%; height: 100%; object-fit: cover; }

        .portada-titulos { position: relative; z-index: 5; margin-top: -20px; }
        .texto-top { font-family: var(--fuente-textos); font-size: 0.9rem; letter-spacing: 4px; text-transform: uppercase; color: var(--color-texto-suave); margin-bottom: 5px; font-weight: 500;}
        .nombre-princesa { font-family: var(--fuente-firma); font-size: 6.5rem; line-height: 1; color: var(--color-rosa-fuerte); margin-bottom: 10px; text-shadow: 2px 2px 0px rgba(255,255,255,1), 0px 5px 15px rgba(255,105,180,0.3); }
        .texto-edad { font-family: var(--fuente-titulos); font-size: 1.5rem; color: var(--color-oro); font-style: italic; }

        /* ==========================================================================
           5. DECRETO REAL (TEXTO DE INVITACIÓN LARGO)
           ========================================================================== */
        .seccion-decreto { background-color: var(--color-blanco); border-top: 2px dashed var(--color-rosa-magico); border-bottom: 2px dashed var(--color-rosa-magico); position: relative; padding: 60px 0; }
        
        .pergamino { background: var(--color-fondo); border: 1px solid var(--color-oro-suave); padding: 40px 30px; border-radius: 12px; box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.1); position: relative; max-width: 550px; margin: 0 auto; }
        
        /* Corregido: Se cambió de justify a center para evitar espacios gigantes en móvil */
        .texto-invitacion { font-size: 1.05rem; line-height: 1.9; color: var(--color-texto); font-weight: 400; text-align: center; }
        
        .letra-capital { font-family: var(--fuente-firma); font-size: 4.5rem; float: left; color: var(--color-rosa-fuerte); line-height: 0.7; margin-right: 8px; margin-top: 8px; text-shadow: 1px 1px 0 rgba(212, 175, 55, 0.5); }

        /* ==========================================================================
           6. CUENTA REGRESIVA MAGICA
           ========================================================================== */
        .contador-grid { display: flex; justify-content: center; gap: 15px; flex-wrap: nowrap; margin-top: 20px; }
        .contador-box { background: var(--color-blanco); flex: 1; max-width: 80px; padding: 15px 0; display: flex; flex-direction: column; justify-content: center; align-items: center; border-radius: 12px; box-shadow: var(--sombra-magica); border: 1px solid var(--color-oro-suave); position: relative; }
        
        .contador-numero { font-family: var(--fuente-titulos); font-size: 2.2rem; color: var(--color-texto); line-height: 1; }
        .contador-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; margin-top: 5px; color: var(--color-oro); font-weight: 600; }

        /* ==========================================================================
           7. DÓNDE Y CUÁNDO
           ========================================================================== */
        .ubicacion-card { background: var(--color-blanco); padding: 35px 20px; border-radius: var(--borde-radio); box-shadow: var(--sombra-magica); margin-bottom: 25px; border: 1px solid var(--color-oro-suave); }
        .ubicacion-icon { font-size: 2.5rem; color: var(--color-rosa-fuerte); margin-bottom: 10px; }
        .ubicacion-card h3 { font-family: var(--fuente-titulos); font-size: 1.6rem; color: var(--color-texto); margin-bottom: 5px; }
        .ubicacion-hora { font-family: var(--fuente-textos); font-weight: 600; color: var(--color-oro); font-size: 1rem; margin-bottom: 15px; letter-spacing: 1px; }
        
        .btn-magico { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(135deg, var(--color-rosa-fuerte), var(--color-rosa-magico)); color: white; padding: 12px 30px; font-family: var(--fuente-textos); font-weight: 500; font-size: 0.9rem; border-radius: 50px; transition: all 0.3s; box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4); text-transform: uppercase; letter-spacing: 1px; border: none; cursor: pointer; }
        .btn-magico:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(255, 105, 180, 0.6); }

        /* ==========================================================================
           8. ITINERARIO DEL REINO (TIMELINE)
           ========================================================================== */
        .titulo-seccion { font-size: 2.2rem; color: var(--color-texto); margin-bottom: 10px; }
        
        .timeline { position: relative; max-width: 400px; margin: 0 auto; text-align: left; padding: 20px 0; }
        .timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 24px; width: 2px; background: linear-gradient(to bottom, var(--color-oro) 0%, var(--color-rosa-magico) 100%); }
        
        .timeline-item { position: relative; padding-left: 70px; margin-bottom: 40px; }
        .timeline-item:last-child { margin-bottom: 0; }
        
        .timeline-icon { position: absolute; left: 0; top: 0; width: 50px; height: 50px; background-color: var(--color-blanco); border: 2px solid var(--color-oro); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-rosa-fuerte); font-size: 1.4rem; z-index: 2; box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2); }
        
        .timeline-hora { font-family: var(--fuente-titulos); font-size: 1.2rem; color: var(--color-texto); font-weight: 700; }
        .timeline-titulo { font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; color: var(--color-oro); margin-bottom: 5px; }
        .timeline-desc { font-size: 0.9rem; color: var(--color-texto-suave); }

        /* ==========================================================================
           9. GALERÍA DE FOTOS (ESPEJOS MAGICOS)
           ========================================================================== */
        .seccion-galeria { background-color: var(--color-blanco); }
        
        .galeria-container { position: relative; width: 100vw; margin-left: calc(-50vw + 50%); padding: 20px 0; }
        .galeria-wrapper { overflow: hidden; }
        .galeria-scroll { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; padding: 0 5%; gap: 20px; padding-bottom: 30px; }
        .galeria-scroll::-webkit-scrollbar { display: none; } 
        
        .foto-item { flex: 0 0 75%; max-width: 350px; scroll-snap-align: center; position: relative; aspect-ratio: 4/5; border-radius: 120px 120px 10px 10px; overflow: hidden; box-shadow: var(--sombra-magica); border: 4px solid var(--color-oro-suave); }
        .foto-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
        .foto-item:hover img { transform: scale(1.05); }

        .carrusel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.9); border: 1px solid var(--color-oro); width: 45px; height: 45px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3); transition: all 0.3s; color: var(--color-texto); font-size: 1.2rem; }
        .carrusel-btn:hover { background: var(--color-oro); color: #FFFFFF; }
        .carrusel-prev { left: 10px; } .carrusel-next { right: 10px; }
        @media (min-width: 768px) { .carrusel-prev { left: 5%; } .carrusel-next { right: 5%; } }

        /* ==========================================================================
           10. DETALLES REALES (REGALOS Y VESTIMENTA)
           ========================================================================== */
        .info-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 40px; }
        .info-card { background: var(--color-blanco); padding: 40px 20px; border-radius: var(--borde-radio); box-shadow: var(--sombra-magica); border: 1px solid var(--color-rosa-magico); }
        .info-icon { font-size: 3rem; color: var(--color-oro); margin-bottom: 15px; }
        .info-card h3 { font-family: var(--fuente-titulos); font-size: 1.5rem; margin-bottom: 10px; }
        
        .tallas-box { background: var(--color-fondo); border-radius: 8px; padding: 15px; margin-top: 15px; display: inline-block; text-align: left; border-left: 3px solid var(--color-rosa-fuerte); }
        .tallas-box p { margin: 0; font-size: 0.9rem; color: var(--color-texto); font-weight: 500; }

        /* ==========================================================================
           11. RSVP Y FOOTER
           ========================================================================== */
        .seccion-rsvp { background-color: var(--color-rosa-magico); color: white; padding-bottom: 60px; border-top-left-radius: 40px; border-top-right-radius: 40px;}
        .seccion-rsvp .titulo-seccion, .seccion-rsvp p { color: white; }
        
        .btn-rsvp-wa { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: white; color: var(--color-rosa-fuerte); padding: 16px 40px; border-radius: 50px; font-weight: 600; font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; transition: transform 0.3s; box-shadow: 0 10px 20px rgba(0,0,0,0.1); border: none; cursor: pointer; width: 100%; max-width: 350px; }
        .btn-rsvp-wa:hover { transform: translateY(-3px); box-shadow: 0 15px 25px rgba(0,0,0,0.2); }

        .footer-comercial { background-color: var(--color-texto); color: #FFFFFF; padding: 50px 20px; text-align: center; }
        .footer-comercial h3 { font-family: var(--fuente-textos); font-size: 1rem; font-weight: 400; margin-bottom: 20px; letter-spacing: 1px; color: #FFFFFF; }
        .social-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; }
        .social-link { width: 45px; height: 45px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--color-oro); transition: all 0.3s ease; border: 1px solid rgba(212, 175, 55, 0.3); }
        .social-link:hover { background: var(--color-oro); color: var(--color-texto); transform: translateY(-3px); }
        .creditos { font-size: 0.75rem; color: #A0A0A0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }

        @media (max-width: 600px) {
            .nombre-princesa { font-size: 5rem; }
            .preloader-nombre { font-size: 4.5rem; }
            .letra-capital { font-size: 3.5rem; }
            .foto-item { flex: 0 0 85%; }
        }
 