:root {
    --pink-main: #ff4081;
    --pink-dark: #d81b60;
    --pink-light: #fce4ec;
    --black-bg: #111111;
    --card-bg: #1a1a1a;
    --white: #ffffff;
    --text-gray: #ccc;
    --font-title: 'Cinzel', serif;
    --font-accent: 'Rock Salt', cursive;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* Bloqueo de scroll para la pantalla de bienvenida / Portada */
html.scroll-locked,
body.scroll-locked {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none;
}

body {
    background-color: var(--black-bg);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

/* Container móvil centrado */
.mobile-container {
    width: 100%;
    max-width: 480px;
    background-color: #0d0d0d;
    box-shadow: 0 0 30px rgba(255, 64, 129, 0.2);
    position: relative;
    min-height: 100vh;
    padding-bottom: 80px;
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Banner Top */
.top-tag {
    background: linear-gradient(90deg, var(--pink-dark), var(--pink-main));
    text-align: center;
    padding: 6px;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Secciones generales */
section {
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

/* Elementos flotantes / PNG Stickers */
.sticker {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.5));
}

/* ==========================================
   SECCIÓN 1: HERO COVER CON GRAFFITI CENTRADO
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background-color: #f75c8d;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* Marca Superior */
.hero-brand {
    text-align: center;
    margin-top: 10px;
    width: 100%;
}

.brand-vivi {
    font-family: 'Cinzel', serif;
    font-size: 38px;
    font-weight: 900;
    color: #111111;
    line-height: 0.9;
}

.brand-vivi span {
    font-size: 50px;
    font-family: 'Playfair Display', serif;
}

.brand-labastida {
    font-family: 'Rock Salt', cursive;
    font-size: 22px;
    color: #ffffff;
    margin-left: -8px;
}

.brand-quince {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 5px;
    color: #111111;
    text-align: right;
    margin-right: 20px;
}

.sticker-kiss {
    position: absolute;
    top: 100px;
    right: 20px;
    width: 70px;
    height: auto;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.4));
    transform: rotate(-12deg);
    z-index: 3;
}
/* ==========================================
   SECCIÓN 1: HERO COVER (CENTRADO PERFECTO)
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Altura completa de la pantalla */
    min-height: 560px;
    overflow: hidden;
    background-color: #f75c8d;
    display: flex;
    align-items: center;     /* Centrado vertical matemático */
    justify-content: center; /* Centrado horizontal matemático */
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Bloque central agrupado */
.hero-center-box {
    position: relative;
    z-index: 4;
    text-align: center;
    width: 100%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* PNG Beso integrado arriba del nombre */
.sticker-kiss-centered {
    width: 55px;
    height: auto;
    margin-bottom: -15px; /* Empalma sutilmente con el texto */
    transform: rotate(-10deg);
    filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.5));
    z-index: 5;
}

/* Texto Graffiti */
.graffiti-text {
    font-family: 'Permanent Marker', cursive;
    font-size: 66px;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 
        3px 3px 0px #111111,
        -3px -3px 0px #111111,
        3px -3px 0px #111111,
        -3px 3px 0px #111111,
        0px 0px 20px #ff4081,
        0px 0px 30px #d81b60,
        0px 10px 20px rgba(0, 0, 0, 0.95);
}

.graffiti-subtext {
    display: inline-block;
    margin-top: 12px;
    background: #ff4081;
    color: #ffffff;
    font-family: 'Permanent Marker', cursive;
    font-size: 18px;
    padding: 4px 22px;
    border: 2px solid #ffffff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.7);
    border-radius: 4px;
}

/* Botón Abrir Invitación (Sección 1) */
.btn-open-invitation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    padding: 8px 24px;
    background: #ff4081;
    color: #ffffff;
    font-family: 'Permanent Marker', cursive;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid #ffffff;
    border-radius: 4px;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: openBtnPulse 2s infinite;
    position: relative;
    z-index: 10;
}

.btn-open-invitation:hover,
.btn-open-invitation:active {
    transform: translateY(-2px) scale(1.04);
    background: #d81b60;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.85);
}

.btn-arrow-down {
    animation: bounceArrow 1.5s infinite;
}

@keyframes openBtnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 64, 129, 0.7), 0px 4px 10px rgba(0, 0, 0, 0.5);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(255, 64, 129, 0), 0px 4px 10px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 64, 129, 0), 0px 4px 10px rgba(0, 0, 0, 0.5);
    }
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(4px);
    }
    60% {
        transform: translateY(2px);
    }
}






/* ==========================================
   SECCIÓN 2: COLLAGE URBAN CHIC & PADRES
   ========================================== */
.parents-section {
    background-color: #fcfcfc;
    color: #111111;
    text-align: center;
    padding: 50px 20px 90px 20px; /* Padding inferior para dar espacio a los PNGs abajo */
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Regla base para stickers PNG */
.sticker-sec2 {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(2px 5px 8px rgba(0,0,0,0));
}

/* 1. Señal Pretty Girl Ave (Arriba Izquierda) */
.sticker-pretty-girl {
    top: 0px;
    left: 0px;
    width: 195px;
    height: auto;
}

/* 2. Recorte Periódico (Arriba Centro/Izquierda) */
.sticker-newspaper {
    top: 60px;
    left: 45px;
    width: 100px;
    height: auto;
    opacity: 0.85;
}

/* 3. Bola de Disco (Lado Izquierdo Medio atrás de la foto) */
.sticker-discoball {
    top: 170px;
    left: -2px;
    width: 105px;
    height: auto;
}

/* 4. Corazón Graffiti (Arriba Derecha) */
.sticker-heart {
    top: 15px;
    right: 10px;
    width: 120px;
    height: auto;
}

/* FOTO PRINCIPAL CENTRADA */
.photo-container-sec2 {
    position: relative;
    z-index: 3;
    width: 75%;
    max-width: 300px;
    margin-top: 35px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0);
    border-radius: 4px;
    overflow: hidden;
    background: #ffffff;
}

.sec2-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* TEXTO EMOTIVO */
.intro-text-sec2 {
    position: relative;
    z-index: 4;
    font-family: 'Bodoni Moda', 'Playfair Display', serif;
    font-size: 14px;
    line-height: 1.6;
    color: #222222;
    max-width: 340px;
    margin: 0 auto 25px auto;
    padding: 0 10px;
    font-weight: 500;
}

.highlight-pink {
    color: var(--pink-main); /* #ff4081 */
    font-weight: 700;
}

/* NOMBRES DE LOS PADRES */
.parents-names-box {
    position: relative;
    z-index: 4;
    margin-bottom: 20px; /* Margen para no encimarse con los PNGs del fondo inferior */
}

.parent-name {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
    color: var(--pink-main);
    font-weight: 400;
    line-height: 1.2;
}

.parents-connector {
    display: block;
    font-family: 'Great Vibes', cursive;
    font-size: 28px;
    color: #ff4081;
    margin: -5px 0;
}

/* ----------------------------------------------------
   PNGs INFERIORES ASOMÁNDOSE DESDE ABAJO DE LOS NOMBRES
   ---------------------------------------------------- */

/* 5. Estatua de la Libertad (Abajo a la izquierda, asomándose) */
.sticker-statue {
    bottom: -10px;          /* Se ancla al fondo exacto de la sección */
    left: 0px;           /* Cortada sutilmente en el borde izquierdo */
    width: 125px;          /* Escala adecuada */
    height: auto;
    z-index: 5;            /* Frente a otros elementos secundarios */
}

/* Definición del giro continuo infinita */
@keyframes spinVinyl {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* 6. Disco de Vinilo (Abajo a la derecha, asomándose y girando) */
.sticker-vinyl {
    bottom: -15px;         /* Se ancla al fondo exacto de la sección */
    right: -40px;          /* Asomándose desde la esquina inferior derecha */
    width: 125px;          /* Tamaño destacado */
    height: auto;
    z-index: 5;
    /* Animación de rotación: 8 segundos por vuelta, suave (linear) y continua (infinite) */
    animation: spinVinyl 8s linear infinite;
}








/* ==========================================
   SECCIÓN 3: SAVE THE DATE (FONDO NEGRO NYC)
   ========================================== */
.std-section {
    background-color: #121213;
    position: relative;
    width: 100%;
    min-height: 480px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

/* Regla base para stickers PNG de esta sección */
.sticker-std {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(2px 5px 10px rgba(0,0,0,0));
}

/* 1. Tacones / Graffiti (Arriba Derecha) */
.sticker-heels {
    top: 0px;
    right: 0px;
    width: 210px;
    height: auto;
}

/* 2. Vinilo Rosa + Edificios + Sixth Ave (Izquierda) */
.sticker-vinyl-building {
    bottom: 0px;
    left: 0px;
    width: 240px;
    height: auto;
}

/* 3. Rascacielos NYC + Graffiti Rosa (Abajo Derecha) */
.sticker-skyline {
    bottom: 0px;
    right: -5px;
    width: 130px;
    height: auto;
}

/* ------------------------------------------
   TEXTO PRINCIPAL CENTRADO
   ------------------------------------------ */
.std-center-box {
    position: relative;
    z-index: 4;
    text-align: center;
    width: 100%;
    padding: 0 10px;
}

.std-title {
    font-family: 'Cinzel', serif;
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    line-height: 0.95;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(0,0,0,0.9);
}

.std-date-word {
    color: #d81b60; /* Color magenta acento para DATE */
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 4px;
}

.std-date-num {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 4px;
    margin-top: 25px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.9);
}




/* ==========================================
   SECCIÓN 3.2: GALERÍA DOBLE CHIC (MOÑO & ESTRELLA)
   ========================================== */
.gallery-sec32 {
    background-color: #e8e8e8;
    position: relative;
    width: 100%;
    padding: 50px 15px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenedor Grid de 2 fotos lado a lado */
.photos-grid-sec32 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 3;
}

/* Tarjeta individual de foto */
.photo-card-sec32 {
    background: #ffffff;
    padding: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    border-radius: 2px;
}

.photo-card-sec32 img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* PNG Stickers Decorativos */
.sticker-sec32 {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.25));
}

/* 1. Moño Rosa (Arriba Derecha sobre la 2da foto) */
.sticker-bow {
    top: 25px;
    right: 10px;
    width: 85px;
    height: auto;
    transform: rotate(5deg);
}

/* 2. Estrella Rosa (Abajo Izquierda bajo la 1ra foto) */
.sticker-star {
    bottom: 20px;
    left: 10px;
    width: 70px;
    height: auto;
    opacity: 0.85;
}





/* ==========================================
   SECCIÓN 3.3: CONTADOR REGRESIVO (NEWSPAPER)
   ========================================== */
.countdown-sec33 {
    background-color: #ffffff;
    position: relative;
    width: 100%;
    min-height: 520px;
    padding: 40px 15px 60px 15px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Regla base para stickers PNG */
.sticker-sec33 {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0));
}

/* 1. Avión + Teléfono (Arriba Izquierda) */
.sticker-phone {
    top: 0px;
    left: 0px;
    width: 105px;
    height: auto;
}

/* 2. Bola Disco + Beso (Arriba Derecha) */
.sticker-discokiss {
    top: 0px;
    right: 0px;
    width: 110px;
    height: auto;
}

/* 3. Recorte Revista Rosa + Corazón 3D (Abajo Izquierda) */
.sticker-pinkheart {
    bottom: 0px;
    left: 0px;
    width: 105px; /* Ajusta el tamaño si lo necesitas más grande o pequeño */
    height: auto;
}

/* 4. Libros de Moda + Tacón Chanel (Abajo Derecha) */
.sticker-books {
    bottom: 0px;
    right: 0px;
    width: 110px; /* Ajusta el tamaño según tu diseño */
    height: auto;
}

/* Recorte de Periódico "ARE YOU READY?" */
.ready-newspaper-box {
    position: relative;
    z-index: 3;
    margin-top: 20px;
    margin-bottom: 25px;
    width: 60%;
    max-width: 240px;
    text-align: center;
}

.newspaper-headline-img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 4px 12px rgba(0,0,0,0);
}

/* Display del Contador Alineado */
.timer-display-sec33 {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 380px;
    margin: 15px auto 35px auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 6px; /* Espaciado general entre bloques */
}

/* Columna Individual (Número + Etiqueta) */
.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 62px; /* Garantiza ancho uniforme para cada columna */
}

/* Número */
.timer-unit .num {
    font-family: 'Bodoni Moda', 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 600;
    color: #111111;
    line-height: 1;
    letter-spacing: 1px;
}

/* Etiqueta justo debajo del número */
.timer-unit .lbl {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 800;
    color: #d81b60; /* Rosa magenta */
    letter-spacing: 1px;
    margin-top: 8px;
    text-transform: uppercase;
}

/* Puntos dos puntos (:) centrados con los números */
.timer-display-sec33 .colon {
    font-family: 'Bodoni Moda', 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #222222;
    line-height: 1;
    margin-top: 2px;
}






/* ==========================================
   SECCIÓN 3.4: FEATURE PHOTO BANNER (FULL)
   ========================================== */
.photo-banner-sec34 {
    position: relative;
    width: 100%;
    min-height: 480px;
    height: 70vh; /* Ocupa el 70% del alto de la pantalla para gran impacto */
    max-height: 650px;
    overflow: hidden;
    background-color: #ff5c8d; /* Color base de carga */
    padding: 0; /* Sin padding para que llene los bordes completos */
}

.sec34-img-container {
    width: 100%;
    height: 100%;
}

.sec34-photo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantiene la proporción perfecta en cualquier pantalla */
    object-position: center center;
    display: block;
}







/* ==========================================
   SECCIÓN 4: DETALLES DEL EVENTO (FONDO NEGRO)
   ========================================== */
.details-sec4 {
    background-color: #010101;
    position: relative;
    width: 100%;
    min-height: 480px;
    padding: 60px 20px 80px 20px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Regla base para PNGs decorativos */
.sticker-sec4 {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(2px 5px 10px rgba(0,0,0,0.8));
}

/* PNG 1: Poster Je T'aime (Arriba Derecha) */
.sticker-jetaime {
    top: 0px;
    right: 0px;
    width: 90px;
    height: auto;
}

/* PNG 2: Destellos Cromados (Arriba Izquierda) */
.sticker-sparkles {
    top: 120px;
    left: 20px;
    width: 80px;
    height: auto;
}

/* PNG 3: Recorte Periódico Rosa + Letra V (Medio Izquierda) */
.sticker-v-scrap {
    top: 390px;
    left: -5px;
    width: 110px;
    height: auto;
}

/* PNG 4: Calles NYC Sixth Ave + Estrellas (Abajo Derecha) */
.sticker-nyc-streets {
    bottom: -5px;
    right: -5px;
    width: 250px;
    height: auto;
}

/* TÍTULO PRINCIPAL */
.sec4-title {
    font-family: 'Cinzel', 'Bodoni Moda', serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: 2px;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
}

.sec4-title-sub {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 3px;
}

/* BLOQUE DE CADA EVENTO */
.event-block-sec4 {
    position: relative;
    z-index: 3;
    margin-bottom: 45px;
    width: 100%;
    max-width: 320px;
}

.event-label-sec4 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 700;
    color: #d81b60; /* Rosa magenta */
    letter-spacing: 3px;
    margin-bottom: 6px;
}

.event-place-sec4 {
    font-family: 'Bodoni Moda', 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.event-time-sec4 {
    font-family: 'Cinzel', 'Bodoni Moda', serif;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

/* BOTONES GOOGLE MAPS RECTANGULARES ROSADOS */
.btn-maps-sec4 {
    display: inline-block;
    width: 80%;
    max-width: 250px;
    background-color: #d81b60; /* Color magenta exacto al diseño */
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    font-family: 'Bodoni Moda', 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(216, 27, 96, 0.35);
    transition: transform 0.2s ease, background-color 0.2s ease;
    border: none;
}

.btn-maps-sec4:hover {
    background-color: #ff4081;
    transform: translateY(-2px);
}





/* ==========================================
   SECCIÓN 4.2: FEATURE PHOTO BANNER 2 (FULL)
   ========================================== */
.photo-banner-sec42 {
    position: relative;
    width: 100%;
    min-height: 480px;
    height: 70vh; /* Mantener la consistencia del 70% del viewport */
    max-height: 650px;
    overflow: hidden;
    background-color: #ff5c8d; /* Color base mientras carga */
    padding: 0; /* Sin padding para bordes limpios de orilla a orilla */
}

.sec42-img-container {
    width: 100%;
    height: 100%;
}

.sec42-photo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajuste automático para encuadre vertical perfecto */
    object-position: center center;
    display: block;
}



/* ==========================================
   SECCIÓN 5: DRESS CODE (GRIS URBANO)
   ========================================== */
.dresscode-sec5 {
    background-color: #fffeff; /* Fondo gris claro perla idéntico al diseño */
    position: relative;
    width: 100%;
    min-height: 520px;
    padding: 50px 20px 60px 20px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Regla base para stickers PNG decorativos */
.sticker-sec5 {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0));
}

/* PNG 1: Recorte Paris (Arriba Izquierda) */
.sticker-paris {
    top: 5px;
    left: 0px;
    width: 125px;
    height: auto;
}

/* PNG 2: Estrella Leopardo + Beso (Arriba Derecha) */
.sticker-star-leopard {
    top: 0px;
    right: 0px;
    width: 100px;
    height: auto;
}

/* PNG 3: Postal NY Vintage (Abajo Izquierda) */
.sticker-ny-post {
    bottom: -110px;
    left: 0px;
    width: 185px;
    height: auto;
}

/* PNG 4: Silueta Skyline NY (Abajo Derecha) */
.sticker-ny-skyline {
    bottom: 0px;
    right: -30px;
    width: 210px;
    height: auto;
}

/* ENCABEZADOS Y SCRIPT */
.dresscode-header-sec5 {
    position: relative;
    z-index: 3;
    margin-top: 15px;
    margin-bottom: 25px;
    width: 100%;
}

.dc-main-title {
    font-family: 'Cinzel', 'Bodoni Moda', serif;
    font-size: 26px;
    font-weight: 700;
    color: #111111;
    letter-spacing: 2px;
    line-height: 1.1;
    text-transform: uppercase;
}

.dc-script-subtitle {
    font-family: 'Great Vibes', cursive;
    font-size: 38px;
    color: #d81b60; /* Color magenta acento */
    font-weight: 400;
    margin-top: -4px;
    line-height: 1.1;
}

/* CONTENEDOR PARA IMAGEN ÚNICA CENTRADA */
.dresscode-icons-container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

.dc-outfit-png {
    width: 100%;
    max-width: 220px; /* Ancho máximo para la imagen combinada */
    height: auto;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(1px 3px 5px rgba(0,0,0,0));
}

/* TEXTO ACLARATORIO FORMAL */
.dc-note-text {
    position: relative;
    z-index: 3;
    font-family: 'Bodoni Moda', 'Playfair Display', serif;
    font-size: 15px;
    line-height: 1.6;
    color: #222222;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 10px;
    font-weight: 500;
}



/* ==========================================
   SECCIÓN 5.2: GALERÍA COLLAGE TRIPLE (BLANCO)
   ========================================== */
.gallery-sec52 {
    background-color: #ffffff; /* Fondo blanco pulcro idéntico al diseño */
    position: relative;
    width: 100%;
    padding: 50px 15px 40px 15px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* PNG Decorativo: Bola de Disco en Esquina Superior Derecha */
.sticker-sec52 {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(2px 5px 8px rgba(0,0,0,0.2));
}

.sticker-discoball-topright {
    top: 0px;
    right: -30px;
    width: 85px;
    height: auto;
}

/* Contenedor Grid Principal */
.gallery-grid-sec52 {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    width: 100%;
    max-width: 440px;
}

/* Tarjetas de Fotos con bordes limpios */
.photo-top-left, 
.photo-top-right {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.photo-top-left img, 
.photo-top-right img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Foto Ancha Inferior (Ocupa las 2 columnas) */
.photo-bottom-wide {
    grid-column: span 2;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.photo-bottom-wide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}




/* ==========================================
   SECCIÓN 6: OPCIÓN DE REGALO (FONDO NEGRO)
   ========================================== */
.gift-sec6 {
    background-color: #000201; /* Fondo negro urbano */
    position: relative;
    width: 100%;
    min-height: 600px;
    padding: 55px 20px 70px 20px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Regla base para stickers PNG decorativos */
.sticker-sec6 {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(2px 5px 10px rgba(0,0,0,0.8));
}

/* PNG 1: Je T'aime Scrap (Arriba Izquierda) */
.sticker-jetaime-scrap {
    top: 15px;
    left: 10px;
    width: 90px;
    height: auto;
}

/* PNG 2: Perfume Chanel (Arriba Derecha) */
.sticker-perfume {
    top: 15px;
    right: 0px;
    width: 105px;
    height: auto;
}

/* PNG 3: Texto NYC Vertical (Medio Derecha) */
.sticker-nyc-text {
    top: 220px;
    right: 0px;
    width: 75px;
    height: auto;
}

/* PNG 4: Cámara Retro Rosa (Abajo Izquierda) */
.sticker-camera {
    bottom: 0px;
    left: 10px;
    width: 110px;
    height: auto;
}

/* PNG 5: Lipstick + Pretty Girl (Abajo Derecha) */
.sticker-lipstick {
    bottom: 0px;
    right: 0px;
    width: 125px;
    height: auto;
}

/* TÍTULO PRINCIPAL */
.sec6-title {
    font-family: 'Cinzel', 'Bodoni Moda', serif;
    font-size: 30px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 3px;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
    text-transform: uppercase;
}

.sec6-title-accent {
    font-weight: 700;
    color: #d81b60; /* Color rosa magenta */
    letter-spacing: 4px;
}

/* MENSAJE DE AGRADECIMIENTO */
.gift-message-sec6 {
    position: relative;
    z-index: 3;
    font-family: 'Bodoni Moda', 'Playfair Display', serif;
    font-size: 14px;
    line-height: 1.6;
    color: #dddddd;
    max-width: 320px;
    margin: 0 auto 30px auto;
    font-weight: 400;
}

/* CONTENEDOR DEL SOBRE ROSA PNG */
.envelope-container-sec6 {
    position: relative;
    z-index: 3;
    margin-bottom: 25px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.envelope-png {
    width: 160px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(216, 27, 96, 0.25));
}

/* CONTENEDOR ICONO ÚNICO LIVERPOOL PNG */
.liverpool-container-sec6 {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.liverpool-png {
    width: 130px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
    transition: transform 0.2s ease;
}

.liverpool-png:hover {
    transform: scale(1.05);
}





/* ==========================================
   SECCIÓN 6.2: GALERÍA COLLAGE INVERTIDA (NEGRO)
   ========================================== */
.gallery-sec62 {
    background-color: #0e0e0e; /* Fondo negro urbano idéntico al diseño */
    position: relative;
    width: 100%;
    padding: 45px 15px 50px 15px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* PNG 1: Destellos Estrellas Blancas en Esquina Superior Derecha */
.sticker-sec62 {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0px 2px 6px rgba(255,255,255,0.2));
}

.sticker-sparkles-topright {
    top: 25px;
    right: 15px;
    width: 85px;
    height: auto;
}

/* Grid Contenedor Invertido */
.gallery-grid-sec62 {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    width: 100%;
    max-width: 440px;
}

/* Foto Ancha Superior (Ocupa las 2 columnas) */
.photo-top-wide {
    grid-column: span 2;
    position: relative;
    background: #111111;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
    border-radius: 2px;
    overflow: visible; /* Permite que el sticker XOXO sobresalga */
}

.photo-top-wide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

/* PNG 2: Sticker XOXO Sobrepuesto */
.sticker-xoxo-overlay {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 1px;
    height: 2px;
    z-index: 6;
    transform: rotate(-6deg);
    filter: drop-shadow(2px 4px 8px rgba(0,0,0,0.7));
}

/* Tarjetas de Fotos Inferiores */
.photo-bottom-left, 
.photo-bottom-right {
    background: #111111;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border-radius: 2px;
    overflow: hidden;
}

.photo-bottom-left img, 
.photo-bottom-right img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}




/* ==========================================
   SECCIÓN 7: RSVP & FORMULARIO (EDITORIAL CHIC)
   ========================================== */
.rsvp-sec7 {
    background-color: #fdfdfb;
    position: relative;
    width: 100%;
    min-height: 750px;
    padding: 55px 20px 60px 20px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Regla base para stickers PNG decorativos */
.sticker-sec7 {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0));
}

/* PNG 1: Stencil Love (Arriba Izquierda) */
.sticker-love-stencil {
    top: 15px;
    left: 0px;
    width: 80px;
    height: auto;
}

/* PNG 2: Vinilo Rosa (Arriba Derecha) */
.sticker-vinyl-top {
    top: 5px;
    right: 0px;
    width: 90px;
    height: auto;
}

/* PNG 3: NYC Girl Poster (Abajo Izquierda) */
.sticker-nyc-girl {
    bottom: 20px;
    left: 0px;
    width: 105px;
    height: auto;
}

/* PNG 4: Bola Disco + Globo Love (Abajo Derecha) */
.sticker-discoball-love {
    bottom: 30px;
    right: 0px;
    width: 100px;
    height: auto;
}

/* ENCABEZADOS Y DESCRIPCIÓN */
.rsvp-header-sec7 {
    position: relative;
    z-index: 3;
    margin-top: 10px;
    margin-bottom: 25px;
    width: 100%;
}

.rsvp-title-sec7 {
    font-family: 'Cinzel', 'Bodoni Moda', serif;
    font-size: 28px;
    font-weight: 400;
    color: #111111;
    line-height: 1.05;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rsvp-title-sub {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 3px;
}

.rsvp-intro-sec7 {
    font-family: 'Bodoni Moda', 'Playfair Display', serif;
    font-size: 13px;
    line-height: 1.6;
    color: #333333;
    max-width: 320px;
    margin: 15px auto 0 auto;
    font-weight: 400;
}

/* FORMULARIO ESTILIZADO CHIC & FLUIDO */
.rsvp-form-white {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 20px auto;
    text-align: left;
}

.form-group-sec7 {
    margin-bottom: 18px;
}

.form-group-sec7 label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 6px;
    color: #d81b60; /* Rosa magenta */
    text-transform: uppercase;
    padding-left: 6px; /* Sutil alineación con los bordes curvos */
}

/* Campos suaves con bordes curvos */
.input-sec7 {
    width: 100%;
    padding: 12px 16px;
    background: #fdf8f9; /* Fondo suave tono blush perla */
    border: 1.5px solid #f2e3e7;
    border-radius: 12px; /* Curvatura delicada no rígida */
    color: #222222;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.02);
}

.input-sec7::placeholder {
    color: #bbabb0;
    font-weight: 400;
}

/* Efecto Focus fluido */
.input-sec7:focus {
    outline: none;
    border-color: #d81b60;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(216, 27, 96, 0.12);
    transform: translateY(-1px);
}

textarea.input-sec7 {
    border-radius: 14px;
    resize: none;
}

select.select-sec7 {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23d81b60" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

/* BOTÓN "CLICK AQUÍ" ESTILO PILL ESTILIZADO */
.btn-rsvp-pink {
    width: 100%;
    background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
    color: #ffffff;
    border: none;
    padding: 15px 20px;
    border-radius: 25px; /* Bordes suaves estilo cápsula elegante */
    font-family: 'Bodoni Moda', 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(216, 27, 96, 0.3);
    transition: all 0.3s ease;
    margin-top: 12px;
}

.btn-rsvp-pink:hover {
    background: linear-gradient(135deg, #ff4081 0%, #e91e63 100%);
    box-shadow: 0 8px 22px rgba(216, 27, 96, 0.42);
    transform: translateY(-2px);
}

.btn-rsvp-pink:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(216, 27, 96, 0.25);
}

/* NOTA NO NIÑOS */
.no-kids-container {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 380px;
    margin: 30px auto 35px auto;
    padding: 0 15px;
}

.no-kids-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 24px;
    color: #ff4081;
    letter-spacing: 2px;
    margin-bottom: 14px;
    text-transform: uppercase;
    text-shadow: 1px 1px 0px #111111;
}

.no-kids-text {
    font-family: 'Bodoni Moda', 'Playfair Display', serif;
    font-size: 15px;
    line-height: 1.65;
    color: #222222;
    margin-bottom: 12px;
    font-weight: 500;
}

.no-kids-highlight {
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    line-height: 1.55;
    letter-spacing: 1.2px;
    color: #d81b60;
    text-transform: uppercase;
    margin-top: 10px;
}

.no-kids-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
}

.no-kids-png {
    width: 48px;
    height: auto;
    max-height: 55px;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.no-kids-png:hover {
    transform: scale(1.1);
}

/* LOGO DE CIERRE VIVI LAB QUINCE */
.footer-logo-box {
    position: relative;
    z-index: 4;
    margin-top: 20px;
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.vivi-logo-png {
    width: 140px;
    height: auto;
    display: block;
}










/* Floating Music Player */
.music-player-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #111;
    border: 2px solid var(--pink-main);
    border-radius: 50%;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.music-player-btn.playing {
    animation: spin 4s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.music-icon {
    width: 24px;
    height: 24px;
    fill: var(--pink-main);
}





/* ==========================================
   CONTAINER MÓVIL (AJUSTE FONDO BLANCO)
   ========================================== */
.mobile-container {
    width: 100%;
    max-width: 480px;
    background-color: #ffffff;
    box-shadow: 0 0 30px rgba(255, 64, 129, 0.2);
    position: relative;
    min-height: 100vh;
    padding-bottom: 0; /* Elimina la franja negra inferior */
}

/* ==========================================
   FOOTER FINAL SOBRIO (SIN LÍNEA DIVISORA)
   ========================================== */
.site-footer {
    background-color: #fdfdfb;
    width: 100%;
    padding: 20px 20px 50px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: none;
}

/* Enlace Back To Top */
.back-to-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #7d8c88;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.back-to-top:hover {
    color: #d81b60;
    transform: translateY(-3px);
}

.arrow-up-icon {
    width: 24px;
    height: 24px;
    fill: #7d8c88;
    margin-bottom: 4px;
    transition: fill 0.2s ease;
}

.back-to-top:hover .arrow-up-icon {
    fill: #d81b60;
}

/* Info de Créditos */
.footer-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #7d8c88;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.footer-info a {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: #7d8c88;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.footer-info a:hover {
    color: #d81b60;
    text-decoration: underline;
}

/* Estado del formulario RSVP y Spinner */
.form-status {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 24px;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 152, 0, 0.3);
    border-top: 2px solid #ff9800;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mensaje de Enlace No Válido */
.invalid-link-msg {
    background: #ffffff;
    border: 2px solid #ff4081;
    border-radius: 14px;
    padding: 25px 20px;
    margin: 25px auto;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(255, 64, 129, 0.15);
}

.invalid-link-title {
    font-family: 'Bodoni Moda', 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: #d81b60;
    margin-bottom: 8px;
}

.invalid-link-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    color: #444444;
    line-height: 1.55;
}