/* ============================================
   BODA2 — JARDÍN BOTÁNICO ROMÁNTICO
   Estilos Completamente Nuevos
   ============================================ */

/* --- VARIABLES GLOBALES --- */
:root {
    /* Paleta Botánica */
    --verde-salvia: #87A083;
    --verde-oliva: #6B7F5E;
    --verde-bosque: #4A5D3F;
    --rosa-empolvado: #D4A5A5;
    --rosa-antiguo: #C48B8B;
    --rosa-claro: #F0D5D5;
    --crema: #FFF8F0;
    --crema-calido: #FFF3E4;
    --terracota: #C4A882;
    --terracota-oscuro: #A68B6B;
    --blanco-floral: #FEFCF9;
    --texto-botanico: #3D3632;
    --texto-suave: #6B6058;
    --sombra-suave: rgba(135, 160, 131, 0.15);

    /* Fuentes */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Quicksand', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --font-accent: 'Cormorant Garamond', serif;

    /* Transiciones Orgánicas */
    --ease-organic: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-bloom: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-gentle: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--crema);
    color: var(--texto-botanico);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100vw;
}

/* ============================================
   PÉTALOS FLOTANTES (Canvas overlay)
   ============================================ */
#petals-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.6;
}

/* ============================================
   WELCOME OVERLAY — SOBRE DE CARTA (MODIFICADO CON INICIALES)
   ============================================ */
.envelope-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    perspective: 1200px;
    overflow: hidden;
    transition: background 0.8s ease;
}

.wlc-bg-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

@media (max-width: 1080px) {
    .wlc-bg-img {
        width: auto;
        height: 100%;
        aspect-ratio: 9 / 16;
        max-width: 100%;
        object-fit: cover;
        margin: 0 auto;
        display: block;
    }
}

/* Deshabilitar texturas antiguas para lucir los fondos PNG */
.envelope-overlay::before,
.envelope-overlay::after {
    display: none;
}

.envelope-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    width: 90%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

/* CONTENEDOR DE INICIALES ANIMADAS */
.initials-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none;
}

.initial-img {
    position: absolute;
    width: 170px;
    height: auto;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.3, 1), opacity 1s ease;
}

/* Posición inicial: Juntas y solapadas (una más arriba que la otra) */
.initial-left {
    transform: translate(-40px, -20px);
}

.initial-right {
    transform: translate(40px, 20px);
}

/* Estado abierto: se separan a los extremos */
.state-opened .initial-left {
    transform: translate(-450px, -40px);
}

.state-opened .initial-right {
    transform: translate(450px, 40px);
}

@media (max-width: 768px) {
    .initials-container {
        width: 320px;
        height: 260px;
    }

    .initial-img {
        width: 180px;
    }

    .initial-left {
        transform: translate(-40px, -15px);
    }

    .initial-right {
        transform: translate(40px, 15px);
    }

    .state-opened .initial-left {
        transform: translate(-350px, -30px);
    }

    .state-opened .initial-right {
        transform: translate(350px, 30px);
    }
}

/* CONTENEDOR DE INFORMACIÓN DEL INVITADO */
.guest-info-container {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 1.5s cubic-bezier(0.25, 1, 0.3, 1), transform 1.5s cubic-bezier(0.25, 1, 0.3, 1);
    pointer-events: none;
    z-index: 5;
    margin-bottom: 20px;
}

.state-opened .guest-info-container {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.envelope-tag {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--terracota);
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.envelope-guest-name {
    font-family: var(--font-script);
    font-size: clamp(1.8rem, 6vw, 3.2rem);
    color: var(--crema);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    line-height: 1.3;
    display: block;
    white-space: nowrap;
    /* word-wrap: removed for scaler */
    max-width: 100%;
}

.contenedor-nombre-env {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
}

/* BOTONES Y SU TRANSICIÓN */
.buttons-container {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.btn-abrir-sobre {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: none;
    position: absolute;
    overflow: hidden;
    font-weight: 300;
}

.btn-abrir-sobre:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--verde-bosque);
    transform: translateY(-2px);
}

.btn-abrir-sobre svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s;
}

.btn-abrir-sobre:hover svg {
    transform: translateX(3px);
}

#btn-abrir-iniciales {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.state-opened #btn-abrir-iniciales {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9);
}

.btn-ver-mas-landing {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
    pointer-events: none;
}

.state-opened .btn-ver-mas-landing {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.envelope-passes {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.passes-label {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--terracota);
    font-weight: 600;
}

.passes-count {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--crema);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

/* Animación de apertura */
.envelope-overlay.is-opening {
    animation: envelopeOpen 1.4s var(--ease-organic) forwards;
}

@keyframes envelopeOpen {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    40% {
        opacity: 1;
        transform: scale(1.02);
    }

    100% {
        opacity: 0;
        transform: scale(1.15);
        pointer-events: none;
    }
}

/* ============================================
   BOTÓN DE MÚSICA FLOTANTE
   ============================================ */
.music-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--verde-salvia);
    box-shadow: 0 4px 20px var(--sombra-suave);
    cursor: pointer;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-bloom);
}

.music-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(135, 160, 131, 0.3);
}

.music-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--verde-salvia);
    position: absolute;
    transition: opacity 0.3s;
}

.music-btn .icon-pause {
    opacity: 0;
}

.music-btn.playing .icon-play {
    opacity: 0;
}

.music-btn.playing .icon-pause {
    opacity: 1;
}

/* ============================================
   SECCIÓN 1: HERO / PORTADA
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55) saturate(0.8);
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@media (min-width: 769px) {
    .hero-bg-img {
        background-image: url('assets/img/boda-desktop.webp');
    }
}

@media (max-width: 768px) {
    .hero-bg-img {
        background-image: url('assets/img/boda-mobile.webp');
    }
}

@keyframes heroZoom {
    0% {
        transform: scale(1) translateY(0);
    }

    100% {
        transform: scale(1.1) translateY(-2%);
    }
}

/* Overlay con gradiente botánico */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(74, 93, 63, 0.3) 0%, transparent 30%),
        linear-gradient(0deg, rgba(61, 54, 50, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse at center, transparent 40%, rgba(61, 54, 50, 0.4) 100%);
}

/* Decoración SVG de ramas en las esquinas */
.hero-branch {
    position: absolute;
    z-index: 3;
    opacity: 0.3;
    pointer-events: none;
}

.hero-branch.top-left {
    top: -20px;
    left: -20px;
    width: 250px;
    transform: rotate(0deg);
}

.hero-branch.bottom-right {
    bottom: -20px;
    right: -20px;
    width: 250px;
    transform: rotate(180deg);
}

.hero-main {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 700px;
    color: white;
}

.hero-names {
    margin-bottom: 25px;
}

.hero-name {
    font-family: var(--font-script);
    font-size: clamp(3.5rem, 13vw, 8rem);
    display: block;
    line-height: 1.2;
    color: white;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: nameFloat 5s ease-in-out infinite;
}

.hero-name:nth-child(1) {
    animation-delay: 0s;
}

.hero-name:nth-child(3) {
    animation-delay: 0.5s;
}

@keyframes nameFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-ampersand {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-style: italic;
    display: block;
    margin: 5px 0;
    opacity: 0.8;
    color: var(--rosa-claro);
}

.hero-date-frame {
    display: inline-block;
    padding: 18px 45px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    animation: fadeScale 2s ease-out 0.5s both;
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-date {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 4px;
    display: block;
    font-weight: 400;
}

.hero-location {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 5px;
    display: block;
    margin-top: 8px;
    opacity: 0.7;
    text-transform: uppercase;
    font-weight: 300;
}

/* Indicador de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeScale 2s ease-out 1.5s both;
}

.scroll-indicator span {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ============================================
   SECCIÓN 2: CONTADOR REGRESIVO CIRCULAR
   ============================================ */
.countdown-section {
    padding: 100px 20px 80px;
    background: var(--verde-bosque);
    text-align: center;
    position: relative;
}

.countdown-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3Ccircle cx='40' cy='40' r='15'/%3E%3C/g%3E%3C/svg%3E");
}

.countdown-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 50px;
    display: block;
    position: relative;
    font-weight: 600;
}

.countdown-circles {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    flex-wrap: wrap;
}

.countdown-ring {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.ring-svg {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.ring-progress {
    fill: none;
    stroke: var(--rosa-empolvado);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: stroke-dashoffset 1s var(--ease-organic);
}

.ring-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.ring-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
    font-weight: 500;
}

@media (max-width: 600px) {
    .ring-svg {
        width: 95px;
        height: 95px;
    }

    .ring-value {
        font-size: 1.8rem;
    }

    .countdown-circles {
        gap: 15px;
    }
}

/* .wave-sep styles are defined at the bottom of this file */

/* ============================================
   SECCIÓN: PADRES
   ============================================ */
.parents-section {
    padding: 80px 20px 80px;
    background: var(--blanco-floral);
    text-align: center;
    position: relative;
}

/* Decoración de hojas */
.section-leaf {
    position: absolute;
    width: 120px;
    opacity: 0.08;
    pointer-events: none;
}

.section-leaf.left {
    top: 60px;
    left: 20px;
    transform: rotate(-30deg);
}

.section-leaf.right {
    bottom: 60px;
    right: 20px;
    transform: rotate(150deg);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: var(--verde-salvia);
    margin-bottom: 10px;
    display: block;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--texto-botanico);
    margin-bottom: 60px;
    font-weight: 400;
    font-style: italic;
}

.parents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.parent-card {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(135, 160, 131, 0.08);
    transition: transform 0.5s var(--ease-bloom), box-shadow 0.5s;
    position: relative;
    overflow: hidden;
}

.parent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--verde-salvia), var(--rosa-empolvado));
    border-radius: 20px 20px 0 0;
}

.parent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(135, 160, 131, 0.15);
}

.parent-card .lottie-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    position: relative;
}

.parent-card .lottie-wrap::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(135, 160, 131, 0.1), transparent 70%);
    animation: lottiePulse 3s ease-in-out infinite alternate;
}

@keyframes lottiePulse {
    from {
        transform: scale(0.95);
        opacity: 0.5;
    }

    to {
        transform: scale(1.05);
        opacity: 1;
    }
}

.parent-role {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--verde-salvia);
    margin-bottom: 20px;
    display: block;
    font-weight: 700;
}

.parent-names-text {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: var(--texto-botanico);
    line-height: 1.3;
    font-style: italic;
}

.parent-names-text b {
    display: block;
    font-weight: 600;
    font-style: normal;
}

.parent-names-text .last-name {
    font-family: var(--font-script);
    color: var(--rosa-antiguo);
    font-size: 0.8em;
    display: block;
    margin-top: 5px;
    font-style: normal;
}

.parent-dedication {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1rem;
    color: var(--texto-suave);
    margin-top: 20px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .parents-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ============================================
   SECCIÓN: PADRINOS (Corte de Honor)
   ============================================ */
.honor-section {
    padding: 80px 20px 80px;
    background: var(--crema-calido);
    text-align: center;
    position: relative;
}

.honor-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.honor-card {
    flex: 1;
    min-width: 260px;
    max-width: 340px;
    padding: 40px 25px 30px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s var(--ease-bloom);
    position: relative;
    border: 1px solid rgba(135, 160, 131, 0.1);
}

.honor-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 20px 50px rgba(135, 160, 131, 0.15);
}

.honor-card .lottie-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
}

.honor-card .honor-role {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--verde-salvia);
    margin-bottom: 15px;
    display: block;
    font-weight: 700;
}

.honor-card .honor-names {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--texto-botanico);
    line-height: 1.4;
    font-style: italic;
}

.honor-card .honor-note {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--texto-suave);
    margin-top: 15px;
    opacity: 0.7;
}

/* ============================================
   SECCIÓN: CEREMONIA
   ============================================ */
.ceremony-section {
    padding: 80px 20px 80px;
    background: var(--verde-bosque);
    text-align: center;
    position: relative;
    color: white;
}

.ceremony-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(135, 160, 131, 0.2), transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 165, 165, 0.1), transparent 60%);
}

.ceremony-lottie {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    position: relative;
}

.ceremony-type {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
}

.ceremony-place {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 400;
}

.ceremony-details {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 3px;
    opacity: 0.6;
    line-height: 2;
    text-transform: uppercase;
    font-weight: 300;
}

.btn-location {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-gentle);
    font-weight: 500;
}

.btn-location:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* ============================================
   SECCIÓN: RECEPCIÓN
   ============================================ */
.reception-section {
    padding: 80px 20px 80px;
    background: var(--crema);
    text-align: center;
    position: relative;
}

.reception-card {
    max-width: 650px;
    margin: 0 auto;
    padding: 60px 40px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 80px rgba(135, 160, 131, 0.1);
    position: relative;
    border: 1px solid rgba(135, 160, 131, 0.08);
}

.reception-card::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse, rgba(135, 160, 131, 0.08), transparent);
    border-radius: 50%;
}

.reception-lottie {
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
}

.reception-tag {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--verde-salvia);
    margin-bottom: 10px;
    display: block;
    font-weight: 700;
}

.reception-place {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--texto-botanico);
    margin-bottom: 15px;
    font-weight: 400;
    font-style: italic;
}

.reception-info {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--texto-suave);
    letter-spacing: 2px;
    line-height: 2;
    font-weight: 300;
}

.btn-map {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--verde-salvia), var(--verde-oliva));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-bloom);
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(107, 127, 94, 0.25);
}

.btn-map:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 127, 94, 0.35);
}

/* ============================================
   SECCIÓN: CRONOGRAMA (Flip Cards)
   ============================================ */
.timeline-section {
    padding: 80px 20px 80px;
    background: var(--blanco-floral);
    position: relative;
}

.timeline-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.6s var(--ease-bloom);
    transform: translateX(-30px);
    opacity: 0;
    border-left: 4px solid var(--verde-salvia);
}

.timeline-card.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.timeline-card:nth-child(even) {
    border-left-color: var(--rosa-empolvado);
    transform: translateX(30px);
}

.timeline-card:nth-child(even).is-visible {
    transform: translateX(0);
}

.timeline-card:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.timeline-lottie {
    width: 55px;
    height: 55px;
    min-width: 55px;
}

.timeline-time {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--verde-bosque);
    font-weight: 700;
    min-width: 75px;
}

.timeline-event {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--texto-botanico);
    font-style: italic;
}

@media (max-width: 600px) {
    .timeline-card {
        padding: 18px 20px;
        gap: 12px;
    }

    .timeline-time {
        font-size: 1rem;
        min-width: 60px;
    }

    .timeline-lottie {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}

/* ============================================
   SECCIÓN: NUESTRA HISTORIA (Polaroid Slider)
   ============================================ */
.history-section {
    padding: 80px 20px 80px;
    background: var(--verde-bosque);
    text-align: center;
    position: relative;
    color: white;
}

.polaroid-track {
    display: flex;
    gap: 30px;
    padding: 40px 20px;
    cursor: grab;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 100%;
    justify-content: flex-start;
}

.polaroid-track::-webkit-scrollbar {
    display: none;
}

.polaroid-track:active {
    cursor: grabbing;
}

.polaroid-item {
    flex: 0 0 auto;
    width: 260px;
    background: white;
    padding: 15px 15px 50px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s var(--ease-bloom);
    scroll-snap-align: center;
    position: relative;
}

.polaroid-item:nth-child(odd) {
    transform: rotate(-2deg);
}

.polaroid-item:nth-child(even) {
    transform: rotate(2deg);
}

.polaroid-item:hover {
    transform: rotate(0deg) scale(1.05) translateY(-10px) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.polaroid-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

.polaroid-caption {
    position: absolute;
    bottom: 12px;
    left: 15px;
    font-family: var(--font-script);
    font-size: 1.1rem;
    color: var(--texto-suave);
}

.swipe-hint {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 30px;
    display: block;
    font-weight: 500;
}

/* ============================================
   SECCIÓN: DRESS CODE
   ============================================ */
.dresscode-section {
    padding: 80px 20px 80px;
    background: var(--crema-calido);
    text-align: center;
    position: relative;
}

.dresscode-frame {
    max-width: 750px;
    margin: 0 auto;
    padding: 60px 40px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(135, 160, 131, 0.08);
    position: relative;
}

.dresscode-icon {
    width: 100px;
    height: auto;
    margin: 0 auto 25px;
    display: block;
    opacity: 0.8;
}

.dresscode-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--texto-botanico);
    margin-bottom: 40px;
    font-weight: 400;
    font-style: italic;
}

.dresscode-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.dresscode-col h4 {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--verde-salvia);
    margin-bottom: 12px;
    font-weight: 700;
}

.dresscode-col p {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--texto-suave);
    line-height: 1.7;
    font-style: italic;
}

.dresscode-quote {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1rem;
    color: var(--rosa-antiguo);
    opacity: 0.7;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .dresscode-cols {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .dresscode-frame {
        padding: 40px 25px;
    }
}

/* ============================================
   SECCIÓN: REGALO — LUNA DE MIEL
   ============================================ */
.gift-section {
    padding: 80px 20px 80px;
    background: var(--verde-bosque);
    text-align: center;
    position: relative;
}

/* Fondo estrellado sutil */
.gift-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(255, 248, 240, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 80% 15%, rgba(255, 248, 240, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 45% 70%, rgba(255, 248, 240, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, rgba(212, 165, 165, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 30% 85%, rgba(255, 248, 240, 0.04) 1px, transparent 1px);
    background-size: 200px 200px, 300px 300px, 250px 250px, 180px 180px, 350px 350px;
    pointer-events: none;
    z-index: 0;
}

.gift-luna-wrap {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    padding-top: 70px;
}

/* Estrellas flotantes ------------------------------- */
.gift-stars {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.gstar {
    position: absolute;
    font-size: 1rem;
    color: var(--rosa-claro);
    opacity: 0;
    animation: starFloat 4s ease-in-out infinite;
}

.gstar.s1 {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
    font-size: 0.7rem;
}

.gstar.s2 {
    top: 12%;
    right: 8%;
    animation-delay: 1.2s;
    font-size: 1.2rem;
}

.gstar.s3 {
    top: 50%;
    left: 2%;
    animation-delay: 0.6s;
    font-size: 0.85rem;
}

.gstar.s4 {
    top: 40%;
    right: 3%;
    animation-delay: 2s;
    font-size: 0.7rem;
}

.gstar.s5 {
    bottom: 10%;
    left: 15%;
    animation-delay: 1.5s;
    font-size: 1rem;
}

@keyframes starFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.8);
    }

    30% {
        opacity: 0.8;
    }

    70% {
        opacity: 0.6;
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) scale(1.1);
    }
}

/* Cabecera de la sección ------------------------------- */
.gift-eyebrow {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
}

.gift-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 400;
    color: white;
    line-height: 1.25;
    margin-bottom: 20px;
}

.gift-headline em {
    font-family: var(--font-script);
    color: var(--rosa-claro);
    font-size: 1.2em;
    display: block;
    font-style: normal;
}

.gift-intro-text {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 60px;
}

/* Opciones de regalo ------------------------------- */
.gift-options {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 720px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.gift-opt {
    flex: 1;
    min-width: 240px;
    max-width: 320px;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    backdrop-filter: blur(8px);
    transition: all 0.5s var(--ease-bloom);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.gift-opt:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 165, 165, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Icóno SVG de cada opción */
.gift-opt-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(135, 160, 131, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rosa-claro);
    transition: all 0.4s var(--ease-bloom);
    flex-shrink: 0;
}

.gift-opt-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.gift-opt-icon--qr {
    background: rgba(212, 165, 165, 0.2);
}

.gift-opt:hover .gift-opt-icon {
    background: rgba(212, 165, 165, 0.3);
    transform: scale(1.1) rotate(-5deg);
}

.gift-opt-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 400;
    color: white;
}

.gift-opt-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    font-weight: 300;
}

/* Divisor central "o" ------------------------------- */
.gift-or-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 25px;
    flex-shrink: 0;
}

.gift-or-line {
    display: block;
    width: 1px;
    flex: 1;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
    min-height: 40px;
}

.gift-or-text {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.35);
}

/* Panel QR reveal ------------------------------- */
.gift-qr-reveal {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.gift-qr-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid rgba(212, 165, 165, 0.4);
    border-radius: 50px;
    background: transparent;
    color: var(--rosa-claro);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-bloom);
    font-weight: 600;
}

.gift-qr-btn svg {
    width: 16px;
    height: 16px;
}

.gift-qr-btn:hover {
    background: rgba(212, 165, 165, 0.15);
    border-color: var(--rosa-empolvado);
    transform: scale(1.04);
}

.gift-qr-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s var(--ease-organic), opacity 0.5s ease;
}

.gift-qr-panel.is-open {
    max-height: 400px;
    opacity: 1;
}

.qr-frame {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: qrAppear 0.5s var(--ease-bloom) both;
}

@keyframes qrAppear {
    from {
        transform: scale(0.7) rotate(-5deg);
        opacity: 0;
    }

    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.qr-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}

.btn-qr-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-qr-download svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.btn-qr-download:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Frase de cierre ------------------------------- */
.gift-closing-quote {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 60px;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .gift-options {
        flex-direction: column;
        align-items: center;
    }

    .gift-or-divider {
        flex-direction: row;
        padding: 10px 0;
    }

    .gift-or-line {
        min-height: unset;
        min-width: 40px;
        height: 1px;
        width: auto;
        flex: 1;
    }
}

/* ============================================
   SECCIÓN: GALERÍA + SUBIR FOTOS
   ============================================ */
.gallery-section {
    padding: 80px 20px 80px;
    background: var(--verde-bosque);
    text-align: center;
    color: white;
    position: relative;
}

.gallery-lottie {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.gallery-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-style: italic;
    margin-bottom: 15px;
    font-weight: 400;
}

.gallery-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    opacity: 0.6;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-upload {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--rosa-empolvado), var(--rosa-antiguo));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-bloom);
    box-shadow: 0 8px 30px rgba(212, 165, 165, 0.3);
    font-weight: 600;
}

.btn-upload:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 165, 165, 0.4);
}

/* ============================================
   SECCIÓN: RSVP
   ============================================ */
.rsvp-section {
    padding: 80px 20px 80px;
    background: var(--blanco-floral);
    display: flex;
    justify-content: center;
    position: relative;
}

.rsvp-form-wrap {
    max-width: 550px;
    width: 100%;
    padding: 60px 40px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid rgba(135, 160, 131, 0.08);
}

.rsvp-head {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--texto-botanico);
    margin-bottom: 40px;
    font-weight: 400;
    font-style: italic;
}

.rsvp-field {
    margin-bottom: 20px;
    text-align: left;
}

.rsvp-field label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--verde-salvia);
    margin-bottom: 8px;
    display: block;
    font-weight: 700;
}

.rsvp-field input,
.rsvp-field select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(135, 160, 131, 0.15);
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--texto-botanico);
    background: var(--blanco-floral);
    transition: all 0.3s;
    outline: none;
    -webkit-appearance: none;
    font-weight: 400;
}

.rsvp-field input:focus,
.rsvp-field select:focus {
    border-color: var(--verde-salvia);
    box-shadow: 0 0 0 4px rgba(135, 160, 131, 0.1);
}

.rsvp-field input::placeholder {
    color: rgba(61, 54, 50, 0.3);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--verde-salvia), var(--verde-oliva));
    color: white;
    border: none;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-bloom);
    margin-top: 10px;
    box-shadow: 0 6px 20px rgba(107, 127, 94, 0.25);
    font-weight: 700;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 127, 94, 0.35);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    padding: 60px 20px;
    background: var(--verde-bosque);
    text-align: center;
    color: white;
}

.footer-names {
    font-family: var(--font-script);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.footer-date {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.4;
    font-weight: 400;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-organic);
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Variantes */
.scroll-reveal.from-left {
    transform: translateX(-40px) translateY(0);
}

.scroll-reveal.from-left.is-visible {
    transform: translateX(0) translateY(0);
}

.scroll-reveal.from-right {
    transform: translateX(40px) translateY(0);
}

.scroll-reveal.from-right.is-visible {
    transform: translateX(0) translateY(0);
}

.scroll-reveal.scale-in {
    transform: scale(0.9);
}

.scroll-reveal.scale-in.is-visible {
    transform: scale(1);
}

/* Stagger delay for children */
.scroll-reveal:nth-child(1) {
    transition-delay: 0s;
}

.scroll-reveal:nth-child(2) {
    transition-delay: 0.1s;
}

.scroll-reveal:nth-child(3) {
    transition-delay: 0.2s;
}

.scroll-reveal:nth-child(4) {
    transition-delay: 0.25s;
}

.scroll-reveal:nth-child(5) {
    transition-delay: 0.3s;
}

.scroll-reveal:nth-child(6) {
    transition-delay: 0.35s;
}

.scroll-reveal:nth-child(7) {
    transition-delay: 0.4s;
}

/* ============================================
   SEPARADORES DE ONDA ENTRE SECCIONES
   ============================================ */
.wave-sep {
    display: block;
    width: 100%;
    line-height: 0;
    font-size: 0;
    margin: -2px 0;
    padding: 0;
    border: none;
    pointer-events: none;
    position: relative;
    z-index: 10;
}

.wave-sep svg {
    display: block;
    width: 100%;
    height: 94px;
    vertical-align: bottom;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .wave-sep svg {
        height: 59px;
    }

    .wave-sep {
        margin: -2px 0;
    }
}

/* Todas las secciones con overflow visible para que las ondas no se corten */
.countdown-section,
.parents-section,
.honor-section,
.ceremony-section,
.reception-section,
.timeline-section,
.history-section,
.dresscode-section,
.gift-section,
.gallery-section,
.rsvp-section {
    overflow: hidden;
}

/* ============================================
   RESPONSIVE — MÓVIL (720px y menos)
   ============================================ */
@media (max-width: 768px) {

    /* Hero */
    .hero-branch {
        display: none;
    }

    .hero-date-frame {
        padding: 14px 25px;
    }

    .hero-date {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-location {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }

    .hero-name {
        font-size: clamp(2.8rem, 12vw, 5rem);
    }

    /* Envelope */
    .envelope-content {
        padding: 40px 20px;
        width: 95%;
    }

    .envelope-tag {
        letter-spacing: 4px;
        font-size: 0.6rem;
    }

    .btn-abrir-sobre {
        padding: 14px 30px;
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    /* Padres */
    .parents-section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 40px;
    }

    /* Padrinos */
    .honor-section {
        padding: 60px 15px;
    }

    .honor-grid {
        gap: 20px;
    }

    .honor-card {
        min-width: 100%;
        padding: 30px 20px 25px;
    }

    /* Ceremonia */
    .ceremony-section {
        padding: 60px 15px;
    }

    /* Recepción */
    .reception-section {
        padding: 60px 15px;
    }

    .reception-card {
        padding: 40px 25px;
        border-radius: 20px;
    }

    /* Cronograma */
    .timeline-section {
        padding: 60px 15px;
    }

    /* Historia */
    .history-section {
        padding: 60px 15px;
    }

    .polaroid-item {
        width: 220px;
    }

    .polaroid-item img {
        height: 220px;
    }

    /* Dress Code */
    .dresscode-section {
        padding: 60px 15px;
    }

    /* Regalo */
    .gift-section {
        padding: 60px 15px;
    }

    .gift-luna-wrap {
        padding-top: 40px;
    }

    .gift-headline {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }

    .gift-closing-quote {
        font-size: 1.3rem;
    }

    /* Galería */
    .gallery-section {
        padding: 60px 15px;
    }

    /* RSVP */
    .rsvp-section {
        padding: 60px 15px;
    }

    .rsvp-form-wrap {
        padding: 40px 25px;
        border-radius: 20px;
    }

    .rsvp-head {
        font-size: 2rem;
    }

    /* Footer */
    .footer-section {
        padding: 40px 15px;
    }

    .footer-names {
        font-size: 2rem;
    }
}