/* ========================================
   AMAZONIA — Diseño UX Avanzado
   Colores intensos, animaciones espectaculares
   ======================================== */

/* ── Variables ── */
:root {
    --negro: #000000;
    --verde-abismo: #011a01;
    --verde-profundo: #042004;
    --verde-selva: #0a3a0a;
    --verde-intenso: #0d5c0d;
    --verde-vibrante: #00e600;
    --verde-loro: #00cc00;
    --dorado: #FFD700;
    --dorado-brillante: #FFEA00;
    --dorado-fuego: #FFAB00;
    --amarillo-tucan: #FFE500;
    --rojo-tucan: #FF0000;
    --rojo-fuego: #FF1744;
    --rojo-guacamayo: #CC0000;
    --azul-guacamayo: #0066FF;
    --azul-electrico: #0099FF;
    --naranja-tucan: #FF6600;
    --naranja-pico: #FF8C00;
    --leopardo: #CC8800;
    --cebra-blanco: #F5F5F5;
    --texto: #f5f0e0;
    --glass: rgba(0, 0, 0, 0.45);
    --glass-border: rgba(255, 215, 0, 0.25);
}

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

html {
    scroll-snap-type: y proximity;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--negro);
    color: var(--texto);
    min-height: 100vh;
    overflow-x: hidden;
    cursor: default;
}

/* ── Fondo selva profundo con colores INTENSOS ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 15%, rgba(255, 0, 0, 0.3) 0%, transparent 45%),
        radial-gradient(ellipse at 90% 10%, rgba(0, 102, 255, 0.35) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 40%, rgba(0, 100, 0, 0.5) 0%, transparent 50%),
        radial-gradient(ellipse at 15% 80%, rgba(255, 102, 0, 0.25) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 85%, rgba(0, 153, 255, 0.25) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 90%, rgba(255, 215, 0, 0.2) 0%, transparent 35%),
        radial-gradient(ellipse at 40% 20%, rgba(255, 234, 0, 0.12) 0%, transparent 30%),
        linear-gradient(180deg, #000 0%, var(--verde-abismo) 10%, var(--verde-profundo) 30%, var(--verde-selva) 50%, var(--verde-profundo) 70%, var(--verde-abismo) 90%, #000 100%);
    z-index: -2;
    animation: bg-pulse 12s ease-in-out infinite alternate;
}

@keyframes bg-pulse {
    0% { opacity: 1; }
    100% { opacity: 0.85; }
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(255, 0, 0, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 60% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 40% 60%, rgba(255, 102, 0, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 70% 15%, rgba(0, 230, 0, 0.06) 0%, transparent 25%);
    z-index: -1;
    animation: shimmer 8s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* ── Canvas partículas ── */
#particles-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ── Hojas flotantes ── */
.floating-leaves {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    animation: leaf-fall linear infinite;
    filter: hue-rotate(-10deg) saturate(2);
}

.leaf-1 { left: 5%;  animation-duration: 18s; animation-delay: 0s;   font-size: 2.5rem; }
.leaf-2 { left: 20%; animation-duration: 22s; animation-delay: 3s;   font-size: 1.8rem; }
.leaf-3 { left: 40%; animation-duration: 20s; animation-delay: 7s;   font-size: 2.2rem; }
.leaf-4 { left: 60%; animation-duration: 24s; animation-delay: 2s;   font-size: 1.5rem; }
.leaf-5 { left: 75%; animation-duration: 19s; animation-delay: 5s;   font-size: 2rem; }
.leaf-6 { left: 90%; animation-duration: 21s; animation-delay: 10s;  font-size: 1.7rem; }

@keyframes leaf-fall {
    0% {
        transform: translateY(-10vh) rotate(0deg) translateX(0);
        opacity: 0;
    }
    10% { opacity: 0.2; }
    50% {
        transform: translateY(50vh) rotate(180deg) translateX(40px);
        opacity: 0.15;
    }
    90% { opacity: 0.1; }
    100% {
        transform: translateY(110vh) rotate(360deg) translateX(-20px);
        opacity: 0;
    }
}

/* ========================================
   HERO — Pantalla completa con vídeo
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) saturate(1.4) contrast(1.2);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0,0,0,0.3) 0%,
            rgba(4,32,4,0.5) 40%,
            rgba(4,32,4,0.7) 70%,
            rgba(0,0,0,0.95) 100%),
        radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    z-index: 2;
}

/* Badge foto */
.hero-badge {
    position: relative;
    width: min(400px, 75vw);
    height: min(400px, 75vw);
    margin-bottom: 40px;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    border: 7px solid #8B6914;
    border-top-color: #CCAA44;
    border-left-color: #B8952F;
    border-right-color: #6B4F0A;
    border-bottom-color: #3A2508;
    box-shadow:
        4px 4px 10px rgba(0, 0, 0, 0.8),
        -2px -2px 4px rgba(255, 215, 0, 0.15),
        8px 8px 30px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.3),
        0 0 120px rgba(255, 0, 0, 0.1),
        inset 2px 2px 0 rgba(255, 215, 0, 0.25),
        inset -2px -2px 0 rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
}

.hero-badge:hover .hero-photo {
    transform: scale(1.03) rotate(1deg);
    box-shadow:
        0 0 80px rgba(255, 193, 7, 0.6),
        0 0 160px rgba(229, 57, 53, 0.2),
        0 40px 100px rgba(0, 0, 0, 0.9);
}

.hero-badge-ring {
    position: absolute;
    inset: -14px;
    border-radius: 28px;
    border: 6px solid transparent;
    background:
        repeating-linear-gradient(
            30deg,
            #CC8800 0px, #CC8800 6px,
            #3a2500 6px, #3a2500 8px,
            #DDAA00 8px, #DDAA00 14px,
            #1a1000 14px, #1a1000 16px,
            #CC8800 16px, #CC8800 22px,
            #2a1800 22px, #2a1800 24px
        ) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ring-rotate 20s linear infinite;
    opacity: 0.9;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.4));
}

@keyframes ring-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Título */
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 900;
    letter-spacing: 0.3em;
    text-indent: 0.3em;
    color: var(--dorado);
    text-shadow:
        0 0 40px rgba(255, 193, 7, 0.8),
        0 0 80px rgba(255, 171, 0, 0.4),
        0 0 150px rgba(255, 109, 0, 0.2),
        0 4px 30px rgba(0, 0, 0, 0.8);
    line-height: 1;
    margin-bottom: 25px;
    animation: title-glow 3s ease-in-out infinite alternate;
}

@keyframes title-glow {
    0% {
        text-shadow:
            0 0 40px rgba(255, 193, 7, 0.8),
            0 0 80px rgba(255, 171, 0, 0.4),
            0 0 150px rgba(255, 109, 0, 0.2),
            0 4px 30px rgba(0, 0, 0, 0.8);
    }
    100% {
        text-shadow:
            0 0 60px rgba(255, 193, 7, 1),
            0 0 120px rgba(255, 171, 0, 0.6),
            0 0 200px rgba(255, 109, 0, 0.3),
            0 4px 30px rgba(0, 0, 0, 0.8);
    }
}

.hero-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 400;
    color: var(--crema);
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    opacity: 0.9;
}

.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 300;
    font-style: italic;
    color: var(--dorado-brillante);
    letter-spacing: 0.1em;
    margin-bottom: 50px;
    opacity: 0.8;
}

/* Botón scroll */
.hero-scroll-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dorado);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.hero-scroll-btn:hover { color: var(--dorado-brillante); }

.scroll-arrow {
    width: 24px;
    height: 24px;
    animation: bounce-down 2s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 100%;
    height: 100%;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* jungle-border eliminado — sin uso en HTML */

/* ========================================
   SECCIONES — Diseño general
   ======================================== */
.section {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 20px;
    scroll-snap-align: start;
}

/* Título de sección */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--dorado);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.title-line {
    display: inline-block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dorado), var(--naranja-tucan), var(--dorado), transparent);
    animation: line-shimmer 3s ease-in-out infinite;
}

@keyframes line-shimmer {
    0%, 100% { opacity: 0.5; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.33); }
}

.section-hero-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--dorado-brillante);
    letter-spacing: 0.1em;
    text-shadow: 0 0 40px rgba(255, 193, 7, 0.5), 0 0 80px rgba(255, 109, 0, 0.15);
    margin-bottom: 10px;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--texto);
    opacity: 0.6;
    margin-bottom: 50px;
}

/* Decoración sección */
.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.deco-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dorado));
}

.deco-line-right {
    background: linear-gradient(-90deg, transparent, var(--dorado));
}

.deco-diamond {
    color: var(--dorado);
    font-size: 0.6rem;
    animation: diamond-pulse 2s ease-in-out infinite;
}

@keyframes diamond-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* ========================================
   MENSAJE ANFITRIONAS
   ======================================== */
.mensaje {
    padding: 100px 20px 80px;
}

.mensaje-contenido {
    max-width: 650px;
    margin: 0 auto 50px;
}

.mensaje-contenido p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--texto);
    opacity: 0.85;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: center;
}

.mensaje-contenido p.mensaje-firma {
    font-weight: 700;
    color: var(--dorado);
    opacity: 1;
    font-style: normal;
    font-size: 1.5rem;
    margin-top: 30px;
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.4);
}

.evento-image {
    position: relative;
    width: min(500px, 85vw);
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    border: 6px solid #8B6914;
    border-top-color: #C9A84C;
    border-left-color: #B8952F;
    border-right-color: #6B4F0A;
    border-bottom-color: #4A3508;
    box-shadow:
        3px 3px 8px rgba(0, 0, 0, 0.7),
        -1px -1px 3px rgba(255, 215, 0, 0.15),
        6px 6px 20px rgba(0, 0, 0, 0.5),
        inset 2px 2px 0 rgba(255, 215, 0, 0.2),
        inset -2px -2px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.evento-image:hover {
    transform: scale(1.02);
    box-shadow:
        3px 3px 8px rgba(0, 0, 0, 0.7),
        -1px -1px 3px rgba(255, 215, 0, 0.15),
        10px 10px 35px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.2),
        inset 2px 2px 0 rgba(255, 215, 0, 0.2),
        inset -2px -2px 0 rgba(0, 0, 0, 0.3);
}

.evento-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.evento-image:hover img {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 60px rgba(255, 193, 7, 0.15);
    pointer-events: none;
    border-radius: 20px;
}

/* ========================================
   CUENTA ATRÁS
   ======================================== */
.countdown-section {
    padding: 80px 20px;
}

/* countdown-bg-pattern eliminado — sin uso en HTML */

.countdown-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--texto);
    opacity: 0.7;
    margin-bottom: 30px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number-wrap {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(255, 193, 7, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.countdown-number-wrap:hover {
    border-color: var(--dorado);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 193, 7, 0.2);
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--dorado);
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
    line-height: 1;
    transition: transform 0.15s ease;
}

.countdown-unit {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dorado);
    opacity: 0.5;
    margin-top: 10px;
}

.countdown-separator {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--dorado);
    opacity: 0.3;
    padding-bottom: 25px;
    animation: sep-blink 1s ease-in-out infinite;
}

@keyframes sep-blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* ========================================
   DRESS CODE
   ======================================== */
.dresscode {
    padding: 80px 20px;
}

.dresscode-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 750px;
    margin: 0 auto 50px;
}

.dresscode-card {
    position: relative;
    text-align: left;
    overflow: hidden;
    border-radius: 8px;
    background: var(--glass);
    border: 6px solid #8B6914;
    border-top-color: #C9A84C;
    border-left-color: #B8952F;
    border-right-color: #6B4F0A;
    border-bottom-color: #4A3508;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        3px 3px 8px rgba(0, 0, 0, 0.7),
        -1px -1px 3px rgba(255, 215, 0, 0.12),
        6px 6px 20px rgba(0, 0, 0, 0.5),
        inset 2px 2px 0 rgba(255, 215, 0, 0.15),
        inset -2px -2px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.dresscode-card:hover {
    transform: translateY(-8px);
    box-shadow:
        3px 3px 8px rgba(0, 0, 0, 0.7),
        10px 10px 35px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.15),
        inset 2px 2px 0 rgba(255, 215, 0, 0.15),
        inset -2px -2px 0 rgba(0, 0, 0, 0.3);
}

.dresscode-inner {
    padding: 30px 25px;
    height: 100%;
}

/* Marcos dorados reales + decoraciones */
.dresscode-card {
    overflow: visible;
}

/* Jaguar — colgando del marco arriba derecha */
.card-ellos::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -25px;
    width: 170px;
    height: 170px;
    background: url('assets/deco-salvaje.png') no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: 3;
    filter: drop-shadow(2px 3px 6px rgba(0, 0, 0, 0.6));
    opacity: 0.9;
}

/* Pluma y mariposa — esquina abajo izquierda */
.card-ellas::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -20px;
    width: 160px;
    height: 160px;
    background: url('assets/deco-sutil.png') no-repeat center;
    background-size: contain;
    pointer-events: none;
    z-index: 3;
    filter: drop-shadow(2px 3px 5px rgba(0, 0, 0, 0.5));
    opacity: 0.9;
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.card-ellas .card-accent {
    background: linear-gradient(90deg, var(--rojo-tucan), var(--amarillo-tucan), var(--naranja-pico));
}

.card-ellos .card-accent {
    background: linear-gradient(90deg, var(--azul-guacamayo), var(--dorado), var(--verde-loro));
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dorado);
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.3);
}

.dresscode-list {
    list-style: none;
}

.dresscode-list li {
    font-size: 0.9rem;
    color: var(--texto);
    padding: 8px 0 8px 24px;
    position: relative;
    line-height: 1.6;
    opacity: 0.85;
}

.dresscode-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--dorado);
    font-size: 0.45rem;
    top: 14px;
}

/* Recordatorio práctico */
.dresscode-reminder {
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 20px 30px;
    background: rgba(255, 0, 0, 0.06);
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-left: 5px solid var(--rojo-tucan);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.dresscode-reminder p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--texto);
    opacity: 0.85;
    line-height: 1.7;
    text-align: center;
}

/* Paleta */
.paleta {
    margin: 0 auto 50px;
    max-width: 500px;
}

.colores {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.color-dot {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dot-color);
    border: 2px solid rgba(255, 193, 7, 0.25);
    cursor: default;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.color-dot:hover {
    transform: scale(1.35) translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.2);
}

.dot-zebra {
    background: repeating-linear-gradient(
        -45deg,
        #F5F5F5 0px,
        #F5F5F5 4px,
        #111111 4px,
        #111111 8px
    ) !important;
}

/* Niveles aventura */
.aventura {
    margin: 0 auto 50px;
    max-width: 700px;
}

.aventura-niveles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.nivel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 15px;
    padding-top: 15px;
    border-radius: 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
}

/* Decoraciones de niveles eliminadas — limpios */

.nivel:hover {
    transform: translateY(-5px) scale(1.03);
}

/* Sutil — verde loro */
.nivel-sutil { border-color: rgba(0, 204, 0, 0.25); }
.nivel-sutil:hover  { border-color: var(--verde-loro); box-shadow: 0 0 30px rgba(0, 204, 0, 0.35); }

/* Tropical — naranja tucán */
.nivel-tropical { border-color: rgba(255, 102, 0, 0.25); }
.nivel-tropical:hover { border-color: var(--naranja-tucan); box-shadow: 0 0 30px rgba(255, 102, 0, 0.35); }

/* Salvaje — rojo fuego */
.nivel-salvaje { border-color: rgba(255, 0, 0, 0.3); }
.nivel-salvaje:hover  { border-color: var(--rojo-tucan); box-shadow: 0 0 30px rgba(255, 0, 0, 0.4); }

/* Imagen dentro de nivel */
.nivel-image {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.nivel-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nivel:hover .nivel-image img {
    transform: scale(1.04);
}

/* Imagen dentro de nivel — sin marco especial */
.look-frame {
    border-radius: 6px;
}

.nivel-emoji {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.nivel:hover .nivel-emoji {
    transform: scale(1.2) rotate(5deg);
}

.nivel-nombre {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dorado);
}

.nivel-desc {
    font-size: 0.8rem;
    color: var(--texto);
    opacity: 0.6;
    text-align: center;
    line-height: 1.5;
}

/* Tips */
.dresscode-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.tip-si, .tip-no {
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
}

.tip-si:hover, .tip-no:hover {
    transform: translateY(-3px);
}

.tip-si {
    background: rgba(27, 138, 27, 0.15);
    border: 1px solid rgba(27, 138, 27, 0.4);
}

.tip-no {
    background: rgba(229, 57, 53, 0.12);
    border: 1px solid rgba(229, 57, 53, 0.35);
}

.tip-si h4, .tip-no h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.tip-si h4 { color: var(--verde-vibrante); text-shadow: 0 0 15px rgba(27, 138, 27, 0.4); }
.tip-no h4 { color: var(--rojo-tucan); text-shadow: 0 0 15px rgba(229, 57, 53, 0.4); }

.tip-si p, .tip-no p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* ========================================
   SORPRESAS / QUÉ OS ESPERA
   ======================================== */
.sorpresas {
    padding: 80px 20px;
}

/* Imagen destacada sorpresas */
.sorpresas-hero-image {
    width: min(550px, 85vw);
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid transparent;
    border-image: repeating-conic-gradient(#CC8800 0deg 10deg, #3a2000 10deg 15deg, #DDAA00 15deg 25deg, #1a0e00 25deg 30deg) 5;
    border-image-slice: 5;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.sorpresas-hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 0 60px rgba(255, 0, 0, 0.2), 0 0 30px rgba(255, 215, 0, 0.2);
}

.sorpresas-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.sorpresas-hero-image:hover img {
    transform: scale(1.05);
}

.sorpresas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.sorpresa-card {
    background: var(--glass);
    border: 5px solid #8B6914;
    border-top-color: #C9A84C;
    border-left-color: #B8952F;
    border-right-color: #6B4F0A;
    border-bottom-color: #4A3508;
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow:
        3px 3px 6px rgba(0, 0, 0, 0.7),
        -1px -1px 2px rgba(255, 215, 0, 0.1),
        5px 5px 18px rgba(0, 0, 0, 0.5),
        inset 1px 1px 0 rgba(255, 215, 0, 0.2),
        inset -1px -1px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease;
}

.sorpresa-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Piscina — azul guacamayo */
.sorpresa-card[data-color="blue"] { border-color: rgba(0, 102, 255, 0.4); }
.sorpresa-card[data-color="blue"]:hover  { border-color: var(--azul-guacamayo); box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3), 0 0 30px rgba(0, 102, 255, 0.15); }

/* Toro — dorado brillante */
.sorpresa-card[data-color="gold"] { border-color: rgba(255, 215, 0, 0.4); }
.sorpresa-card[data-color="gold"]:hover  { border-color: var(--dorado); box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.2); }

/* Comida — rojo fuego */
.sorpresa-card[data-color="red"] { border-color: rgba(255, 0, 0, 0.4); }
.sorpresa-card[data-color="red"]:hover   { border-color: var(--rojo-tucan); box-shadow: 0 20px 60px rgba(255, 0, 0, 0.3), 0 0 30px rgba(255, 0, 0, 0.15); }

/* Baile — naranja fuego */
.sorpresa-card[data-color="orange"] { border-color: rgba(255, 102, 0, 0.4); }
.sorpresa-card[data-color="orange"]:hover { border-color: var(--naranja-tucan); box-shadow: 0 20px 60px rgba(255, 102, 0, 0.3), 0 0 30px rgba(255, 102, 0, 0.15); }

.sorpresa-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.sorpresa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.sorpresa-card[data-color="gold"] .sorpresa-image img {
    object-position: center 80%;
}

/* ===== Bitterykas en vivo — sección cartel grande ===== */
.bitterykas-section {
    background: radial-gradient(ellipse at center, #1a0f2e 0%, #0a0618 100%);
    padding: 100px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bitterykas-cartel-wrap {
    margin: 50px auto 0;
    max-width: 520px;
    padding: 0 20px;
}

.bitterykas-cartel {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 180, 50, 0.25),
        0 0 120px rgba(180, 100, 255, 0.15);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.bitterykas-cartel:hover {
    transform: scale(1.02) translateY(-4px);
}

@media (max-width: 768px) {
    .bitterykas-section {
        padding: 70px 16px 90px;
    }
    .bitterykas-cartel-wrap {
        max-width: 340px;
        margin-top: 35px;
    }
}

.sorpresa-card:hover .sorpresa-image img {
    transform: scale(1.1);
}

.sorpresa-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}

.sorpresa-body {
    padding: 20px 20px 25px;
}

.sorpresa-body .card-title {
    margin-bottom: 10px;
}

.sorpresa-desc {
    font-size: 0.85rem;
    color: var(--texto);
    opacity: 0.7;
    line-height: 1.6;
    text-align: center;
}

/* ========================================
   DIRECCIÓN
   ======================================== */
.direccion {
    padding: 80px 20px;
}

.direccion-lugar {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--dorado-brillante);
    text-shadow: 0 0 30px rgba(255, 193, 7, 0.4);
    margin-top: 15px;
    margin-bottom: 8px;
}

.direccion-ref {
    font-size: 0.85rem;
    color: var(--texto);
    opacity: 0.45;
    margin-bottom: 45px;
}

.direccion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.transporte-card {
    background: var(--glass);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.transporte-card:hover {
    transform: translateY(-6px);
    border-color: var(--dorado);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(255, 215, 0, 0.2);
}

.transporte-icon-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.08);
    border-radius: 50%;
    border: 1px solid rgba(255, 193, 7, 0.15);
}

.transporte-icon {
    font-size: 1.8rem;
}

.transporte-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dorado);
    margin-bottom: 12px;
}

.transporte-card p {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--texto);
    opacity: 0.7;
}

/* Botón dorado */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--negro);
    background: linear-gradient(135deg, var(--dorado), var(--dorado-brillante), var(--dorado-fuego));
    background-size: 200% 200%;
    padding: 16px 40px;
    border-radius: 60px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.4), 0 0 60px rgba(255, 193, 7, 0.15);
    animation: btn-gradient 3s ease-in-out infinite;
}

@keyframes btn-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 40px rgba(255, 193, 7, 0.6), 0 0 80px rgba(255, 193, 7, 0.25);
}

.btn-icon {
    width: 18px;
    height: 18px;
}

/* ========================================
   PLAYLIST
   ======================================== */
.playlist {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.playlist-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(29, 185, 84, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.btn-spotify {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    background: linear-gradient(135deg, #1DB954, #1ed760);
    padding: 18px 40px;
    border-radius: 60px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 25px rgba(29, 185, 84, 0.4);
}

.btn-spotify:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 40px rgba(29, 185, 84, 0.6), 0 0 60px rgba(29, 185, 84, 0.2);
}

.spotify-icon {
    width: 22px;
    height: 22px;
}

/* ========================================
   NORMAS DE LA SELVA
   ======================================== */
.normas {
    padding: 80px 20px;
}

.normas-lista {
    max-width: 600px;
    margin: 40px auto 0;
}

.norma {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 2px solid rgba(255, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.norma:hover {
    transform: translateX(8px);
}

.norma:last-child {
    border-bottom: none;
}

.norma-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--rojo-tucan);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    min-width: 30px;
    text-align: center;
}

.norma p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--texto);
    opacity: 0.8;
    line-height: 1.6;
    text-align: left;
}

/* ========================================
   VÍDEOS DE FONDO EN SECCIONES
   ======================================== */
.section-bg-video {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) saturate(1.5) contrast(1.2);
}

.bg-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(4, 26, 4, 0.6) 20%,
            rgba(4, 26, 4, 0.5) 50%,
            rgba(4, 26, 4, 0.6) 80%,
            rgba(0, 0, 0, 0.85) 100%);
}

.bg-video-overlay-dark {
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.65) 30%,
            rgba(0, 0, 0, 0.65) 70%,
            rgba(0, 0, 0, 0.9) 100%);
}

.bg-video-overlay-warm {
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(30, 10, 0, 0.55) 20%,
            rgba(30, 10, 0, 0.5) 50%,
            rgba(30, 10, 0, 0.55) 80%,
            rgba(0, 0, 0, 0.85) 100%);
}

/* bg-image-overlay / section-bg-image eliminados — sin uso en HTML */

/* ========================================
   DIVISOR VÍDEO ENTRE SECCIONES
   ======================================== */
.video-divider {
    position: relative;
    height: 300px;
    overflow: hidden;
    z-index: 1;
}

.divider-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(1.8) contrast(1.3);
}

.divider-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.5) 100%);
}

.divider-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, transparent 100%);
}

.divider-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, transparent 100%);
}

/* Hacer sorpresas y normas posición relativa para el vídeo de fondo */
.sorpresas,
.normas,
.countdown-section,
.dresscode,
.direccion,
.playlist {
    position: relative;
    overflow: hidden;
}

/* ========================================
   GALERÍA DE LEYENDAS (INVITADOS)
   ======================================== */
.invitados {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.invitados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.invitado-card {
    background: var(--glass);
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    padding: 20px 15px;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.invitado-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--dorado);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 215, 0, 0.15);
}

.invitado-foto {
    width: 100px;
    height: 100px;
    margin: 0 auto 12px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #8B6914;
    border-top-color: #C9A84C;
    border-bottom-color: #4A3508;
    box-shadow:
        2px 2px 6px rgba(0, 0, 0, 0.5),
        inset 1px 1px 0 rgba(255, 215, 0, 0.15);
}

.invitado-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.invitado-card:hover .invitado-foto img {
    transform: scale(1.1);
}

.invitado-nombre {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dorado);
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.invitado-texto {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--texto);
    opacity: 0.75;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .invitados-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .invitados-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    position: relative;
    text-align: center;
    padding: 40px 20px 60px;
    z-index: 1;
}

.footer-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse at center bottom, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-url {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: var(--dorado);
    opacity: 0.35;
    text-transform: lowercase;
}

.footer-link {
    display: inline-block;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--dorado);
    opacity: 0.3;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* ========================================
   ANIMACIONES DE REVELADO
   ======================================== */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
                transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-reveal="fade-up"] {
    transform: translateY(50px);
}

[data-reveal="scale"] {
    transform: scale(0.85);
}

[data-reveal="zoom-in"] {
    transform: scale(0.9);
}

[data-reveal="slide-left"] {
    transform: translateX(-60px);
}

[data-reveal="slide-right"] {
    transform: translateX(60px);
}

[data-reveal="slide-up"] {
    transform: translateY(40px);
}

[data-reveal="flip-up"] {
    transform: perspective(800px) rotateX(15deg) translateY(40px);
}

[data-reveal="pop"] {
    transform: scale(0.6);
}

[data-reveal="chars"] {
    transform: translateY(30px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero-badge {
        width: min(320px, 80vw);
        height: min(320px, 80vw);
    }

    .hero-title {
        letter-spacing: 0.2em;
        text-indent: 0.2em;
    }

    .section {
        padding: 60px 15px;
    }

    .countdown-number-wrap {
        width: 70px;
        height: 70px;
    }

    .countdown-timer {
        gap: 8px;
    }

    .sorpresas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .title-line {
        width: 30px;
    }

    .floating-leaves {
        display: none;
    }
}

@media (max-width: 620px) {
    .dresscode-grid {
        gap: 60px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        width: min(280px, 85vw);
        height: min(280px, 85vw);
        margin-bottom: 30px;
    }

    .hero-title {
        letter-spacing: 0.12em;
        text-indent: 0.12em;
    }

    .sorpresas-grid {
        grid-template-columns: 1fr;
    }

    .dresscode-grid {
        grid-template-columns: 1fr;
    }

    .countdown-timer {
        gap: 4px;
    }

    .countdown-number-wrap {
        width: 52px;
        height: 52px;
    }

    .countdown-separator {
        font-size: 1rem;
        padding-bottom: 18px;
    }

    .countdown-unit {
        font-size: 0.55rem;
        letter-spacing: 0.1em;
    }

    .norma {
        gap: 12px;
    }

    .btn-gold, .btn-spotify {
        padding: 14px 30px;
        font-size: 0.8rem;
    }

    /* Decoraciones más pequeñas en móvil */
    .card-ellos::before,
    .card-ellas::before {
        width: 100px;
        height: 100px;
    }
    .card-ellos::before {
        top: -90px;
        right: -15px;
    }
    .card-ellas::before {
        bottom: -20px;
        left: -12px;
    }

    .sorpresa-image {
        height: 160px;
    }

    .aventura-niveles {
        grid-template-columns: 1fr;
    }

    .invitado-card {
        padding: 15px 10px;
    }

    .invitado-foto {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 360px) {
    .hero-title {
        letter-spacing: 0.06em;
        text-indent: 0.06em;
    }

    .invitados-grid {
        grid-template-columns: 1fr;
    }

    .countdown-number-wrap {
        width: 46px;
        height: 46px;
    }
}

/* ============ EDICIONES ANTERIORES ============ */
.ediciones {
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ediciones-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-style: italic;
    color: rgba(255, 235, 200, 0.85);
    max-width: 680px;
    margin: 20px auto 50px;
    line-height: 1.6;
}

.ediciones-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.edicion-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 35px 40px;
    background: linear-gradient(135deg, rgba(40, 25, 15, 0.7), rgba(25, 15, 10, 0.85));
    border: 1px solid rgba(255, 200, 120, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    width: 100%;
    max-width: 640px;
    cursor: pointer;
}

.edicion-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 200, 120, 0.65);
    box-shadow: 0 20px 50px rgba(255, 175, 70, 0.2);
}

.edicion-year {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 7vw, 5rem);
    font-weight: 900;
    color: #ffbf60;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(255, 175, 70, 0.4);
    flex-shrink: 0;
}

.edicion-body {
    text-align: left;
    flex: 1;
}

.edicion-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    margin: 0 0 10px 0;
    color: #fff;
}

.edicion-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 235, 200, 0.75);
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.edicion-arrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffbf60;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .edicion-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 30px 25px;
    }
    .edicion-body {
        text-align: center;
    }
}

/* ============ LA SELVA TE ESPERA ============ */
.espera {
    padding: 80px 5%;
    text-align: center;
    position: relative;
}

.espera-img {
    max-width: 380px;
    width: 80%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto 40px;
}

.espera-texto {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #ffbf60;
    letter-spacing: 0.03em;
    margin: 0;
}

/* ============ FIRMA ANFITRIONA ============ */
.firma {
    padding: 60px 5% 80px;
    text-align: center;
    position: relative;
}

.firma-foto-wrap {
    position: relative;
    display: inline-block;
    margin: 0 auto 25px;
}

.firma-foto {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 200, 120, 0.4);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(255, 175, 70, 0.25);
}

.firma-foto-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border-radius: 50%;
    border: 1px solid rgba(255, 200, 120, 0.25);
    z-index: 1;
}

.firma-intro {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(255, 235, 200, 0.75);
    margin: 0 0 5px 0;
}

.firma-nombre {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    color: #ffbf60;
    margin: 0 0 8px 0;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.firma-rol {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 235, 200, 0.6);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
}

/* ============ RSVP ============ */
.rsvp {
    padding: 80px 20px 40px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(15, 35, 20, 0.95), rgba(5, 15, 8, 1));
}
.rsvp-title {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #f4d97a;
    margin: 0 0 12px;
    letter-spacing: 0.02em;
}
.rsvp-sub {
    color: #d4e6d0;
    font-size: 1.05rem;
    margin: 0 0 40px;
    opacity: 0.9;
}
.rsvp-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 720px;
    margin: 0 auto;
}
.rsvp-btn {
    display: inline-block;
    padding: 18px 34px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}
.rsvp-btn:hover { transform: translateY(-3px); }
.rsvp-btn-yes {
    background: linear-gradient(135deg, #2d7a3e, #4caf50);
    color: #fff;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.35);
}
.rsvp-btn-yes:hover { box-shadow: 0 12px 32px rgba(76, 175, 80, 0.55); }
.rsvp-btn-maybe {
    background: linear-gradient(135deg, #c49430, #f4c858);
    color: #1f1405;
    box-shadow: 0 8px 24px rgba(244, 200, 88, 0.35);
}
.rsvp-btn-maybe:hover { box-shadow: 0 12px 32px rgba(244, 200, 88, 0.55); }
.rsvp-btn-no {
    background: linear-gradient(135deg, #7a5239, #a57050);
    color: #fff;
    box-shadow: 0 8px 24px rgba(165, 112, 80, 0.35);
}
.rsvp-btn-no:hover { box-shadow: 0 12px 32px rgba(165, 112, 80, 0.55); }
