/**
 * Lux Noir Template Styles
 * Estética: Neon cyber, oscuro, gradientes violeta/cyan
 */

:root {
    --lux-primary: #D000FF;
    --lux-secondary: #00CFFF;
    --lux-bg: #0A0F1A;
    --lux-surface: #111827;
    --lux-text: #F5F5F5;
    --lux-text-muted: #9CA3AF;
    --lux-glass: rgba(255, 255, 255, 0.03);
    --lux-border: rgba(255, 255, 255, 0.08);
    --lux-glow-primary: 0 0 40px rgba(208, 0, 255, 0.3);
    --lux-glow-secondary: 0 0 40px rgba(0, 207, 255, 0.3);
}

body.invitation-shell--lux-noir {
    background: linear-gradient(180deg, #0A0F1A 0%, #1A1025 50%, #0F172A 100%);
}

.xv-template--lux-noir {
    color: var(--lux-text);
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: transparent;
    overflow-x: hidden;
}

/* ============================================
   SCROLL TO TOP (IZQUIERDA)
   ============================================ */
.lux-scroll-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 100;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--lux-primary);
    background: rgba(208, 0, 255, 0.15);
    backdrop-filter: blur(16px);
    color: var(--lux-primary);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--lux-glow-primary);
}

.lux-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lux-scroll-top:hover {
    background: rgba(208, 0, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(208, 0, 255, 0.4);
}

/* ============================================
   ESTRELLAS DE FONDO (TODA LA PÁGINA)
   ============================================ */
.lux-page-stars {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.lux-star-page {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff, 0 0 20px var(--lux-secondary);
    animation: lux-star-page-twinkle 4s ease-in-out infinite;
}

/* Distribución en toda la página */
.lux-star-page--1 { top: 10%; left: 10%; animation-delay: 0s; }
.lux-star-page--2 { top: 15%; left: 85%; animation-delay: 0.5s; }
.lux-star-page--3 { top: 25%; left: 20%; animation-delay: 1s; }
.lux-star-page--4 { top: 30%; left: 75%; animation-delay: 1.5s; }
.lux-star-page--5 { top: 40%; left: 15%; animation-delay: 2s; }
.lux-star-page--6 { top: 45%; left: 90%; animation-delay: 2.5s; }
.lux-star-page--7 { top: 55%; left: 25%; animation-delay: 3s; }
.lux-star-page--8 { top: 60%; left: 80%; animation-delay: 3.5s; }
.lux-star-page--9 { top: 70%; left: 30%; animation-delay: 4s; }
.lux-star-page--10 { top: 75%; left: 70%; animation-delay: 4.5s; }
.lux-star-page--11 { top: 85%; left: 40%; animation-delay: 5s; }
.lux-star-page--12 { top: 90%; left: 60%; animation-delay: 5.5s; }

@keyframes lux-star-page-twinkle {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
        box-shadow: 0 0 8px #fff, 0 0 15px var(--lux-secondary);
    }
    50% {
        opacity: 1;
        transform: scale(1.8);
        box-shadow: 0 0 15px #fff, 0 0 30px var(--lux-primary), 0 0 50px var(--lux-secondary);
    }
}

/* ============================================
   RSVP STICKY
   ============================================ */
.lux-rsvp-sticky {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.9rem 1.25rem;
    border: 1px solid rgba(0, 207, 255, 0.3);
    background: rgba(0, 207, 255, 0.15);
    backdrop-filter: blur(16px);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--lux-glow-secondary);
    transition: all 0.3s;
}

.lux-rsvp-sticky:hover {
    background: rgba(0, 207, 255, 0.25);
    transform: translateY(-2px);
}

/* ============================================
   HERO
   ============================================ */
.lux-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: clamp(3rem, 6vw, 5rem) 1.5rem;
    background: radial-gradient(circle at 50% 0%, rgba(208, 0, 255, 0.15), transparent 50%);
    overflow: hidden;
}

/* Grid del hero */
.lux-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1180px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lux-kicker {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--lux-secondary);
    margin-bottom: 1rem;
}

.lux-hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin: 0 0 1rem;
    background: linear-gradient(135deg, var(--lux-primary), var(--lux-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lux-hero__info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.95rem;
    color: var(--lux-text-muted);
    margin: 1rem 0 1.5rem;
}

.lux-hero__info i {
    margin-right: 0.35rem;
    color: var(--lux-primary);
}

.lux-hero__separator {
    color: rgba(255, 255, 255, 0.3);
}

.lux-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--lux-text-muted);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.lux-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* --- CTA principal premium --- */
.lux-cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, var(--lux-primary), #9B00CC);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(208, 0, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(208, 0, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.lux-cta-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 12px rgba(208, 0, 255, 0.3);
}

.lux-cta-primary:focus-visible {
    outline: 2px solid var(--lux-secondary);
    outline-offset: 3px;
}

/* Shine sweep */
.lux-cta-primary__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
    transform: translateX(-100%);
    animation: lux-cta-shine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes lux-cta-shine {
    0%, 80%, 100% { transform: translateX(-100%); }
    30% { transform: translateX(100%); }
}

/* CTA ghost */
.lux-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lux-secondary);
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(0, 207, 255, 0.3);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-cta-ghost:hover {
    background: rgba(0, 207, 255, 0.08);
    border-color: rgba(0, 207, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 207, 255, 0.15);
}

.lux-cta-ghost:focus-visible {
    outline: 2px solid var(--lux-secondary);
    outline-offset: 3px;
}

/* --- Hero visual: imagen protagonista con efectos premium --- */
.lux-hero__visual {
    position: relative;
    margin: 0;
    border-radius: 24px;
    overflow: visible;
}

.lux-hero__visual > a {
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(208, 0, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(208, 0, 255, 0.1);
}

.lux-hero__visual img {
    width: 100%;
    height: auto;
    display: block;
    animation: lux-hero-float 6s ease-in-out infinite;
}

@keyframes lux-hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Halo glow */
.lux-hero__halo {
    position: absolute;
    inset: -15%;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(208, 0, 255, 0.2) 0%, rgba(0, 207, 255, 0.08) 40%, transparent 70%);
    filter: blur(40px);
    animation: lux-halo-breathe 4s ease-in-out infinite;
}

@keyframes lux-halo-breathe {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Shapes decorativos glass */
.lux-hero__shape {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    border: 1px solid rgba(208, 0, 255, 0.15);
    background: rgba(208, 0, 255, 0.05);
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.lux-hero__shape--1 {
    width: 80px;
    height: 80px;
    top: -20px;
    right: -15px;
    animation: lux-shape-drift 8s ease-in-out infinite;
}

.lux-hero__shape--2 {
    width: 50px;
    height: 50px;
    bottom: 10%;
    left: -12px;
    border-color: rgba(0, 207, 255, 0.15);
    background: rgba(0, 207, 255, 0.05);
    animation: lux-shape-drift 7s ease-in-out infinite reverse;
}

@keyframes lux-shape-drift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(6px, -8px) rotate(5deg); }
    66% { transform: translate(-4px, 4px) rotate(-3deg); }
}

/* Partículas sparkle */
.lux-hero__sparkle {
    position: absolute;
    z-index: 3;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #fff;
    pointer-events: none;
    animation: lux-sparkle-twinkle 3s ease-in-out infinite;
}

.lux-hero__sparkle--1 { top: 8%; right: 12%; animation-delay: 0s; }
.lux-hero__sparkle--2 { top: 25%; left: 5%; animation-delay: 0.8s; width: 3px; height: 3px; }
.lux-hero__sparkle--3 { bottom: 20%; right: 8%; animation-delay: 1.6s; }
.lux-hero__sparkle--4 { bottom: 8%; left: 15%; animation-delay: 2.4s; width: 3px; height: 3px; }

@keyframes lux-sparkle-twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); box-shadow: none; }
    50% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px #fff, 0 0 16px var(--lux-primary); }
}

/* ============================================
   SECCIONES
   ============================================ */
.lux-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem) 1.5rem;
    display: grid;
    gap: 2rem;
}

.lux-card {
    position: relative;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: var(--lux-glass);
    border: 1px solid var(--lux-border);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.3s;
}

.lux-card:hover {
    border-color: rgba(208, 0, 255, 0.3);
    box-shadow: var(--lux-glow-primary);
}

.lux-card--music {
    border-color: rgba(0, 207, 255, 0.3);
}

.lux-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lux-secondary);
    margin-bottom: 1rem;
}

/* ============================================
   GRIDS
   ============================================ */
.lux-grid {
    display: grid;
    gap: 1.5rem;
}

.lux-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

/* ============================================
   COUNTDOWN HORIZONTAL CON EFECTOS
   ============================================ */
.lux-card--countdown {
    border-color: rgba(208, 0, 255, 0.4);
    box-shadow: 0 0 60px rgba(208, 0, 255, 0.15), inset 0 0 30px rgba(208, 0, 255, 0.05);
}

.lux-countdown--horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
}

.lux-countdown__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(180deg, rgba(208, 0, 255, 0.15), rgba(0, 207, 255, 0.08));
    border: 1px solid rgba(208, 0, 255, 0.3);
    border-radius: 16px;
    min-width: 90px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-countdown__item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(208, 0, 255, 0.1) 50%,
        transparent 70%
    );
    animation: lux-countdown-shine 3s linear infinite;
}

@keyframes lux-countdown-shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.lux-countdown__item:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: var(--lux-primary);
    box-shadow: 0 12px 40px rgba(208, 0, 255, 0.4), inset 0 0 20px rgba(208, 0, 255, 0.1);
}

.lux-countdown__glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(208, 0, 255, 0.6), transparent 70%);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s;
}

.lux-countdown__item:hover .lux-countdown__glow {
    opacity: 0.5;
}

.lux-countdown__num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(180deg, var(--lux-primary), var(--lux-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 40px rgba(208, 0, 255, 0.5);
  animation: lux-countdown-pulse 2s ease-in-out infinite;
}

.lux-countdown__num.is-tick {
  animation: lux-countdown-tick 0.26s ease-out;
}

@keyframes lux-countdown-tick {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@keyframes lux-countdown-pulse {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(208, 0, 255, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 25px rgba(208, 0, 255, 0.8));
    }
}

.lux-countdown__label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--lux-text-muted);
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.lux-countdown__separator {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--lux-secondary);
    animation: lux-countdown-blink 1s linear infinite;
    position: relative;
    z-index: 1;
}

@keyframes lux-countdown-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Responsive countdown */
@media (max-width: 768px) {
    .lux-countdown--horizontal {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .lux-countdown__item {
        min-width: 70px;
        padding: 0.75rem 1rem;
    }

    .lux-countdown__num {
        font-size: 1.75rem;
    }

    .lux-countdown__label {
        font-size: 0.55rem;
    }

    .lux-countdown__separator {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .lux-countdown--horizontal {
        gap: 0.25rem;
    }

    .lux-countdown__item {
        min-width: 55px;
        padding: 0.5rem 0.75rem;
        border-radius: 10px;
    }

    .lux-countdown__num {
        font-size: 1.25rem;
    }

    .lux-countdown__label {
        font-size: 0.45rem;
        margin-top: 0.25rem;
    }

    .lux-countdown__separator {
        font-size: 1.25rem;
        opacity: 0.5;
    }
}

/* ============================================
   DRESS CODE — LAYOUT EDITORIAL
   ============================================ */
.lux-dress-layout {
    display: block;
}

.lux-dress-layout--has-image {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 2rem;
    align-items: center;
}

.lux-dress-layout__text {
    min-width: 0;
}

.lux-dress-layout__figure {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 280px;
}

.lux-dress-layout__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 600px) {
    .lux-dress-layout--has-image {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .lux-dress-layout__figure {
        max-height: 200px;
    }
}

/* ============================================
   TIMELINE — CENTRADO Y CON NODOS
   ============================================ */
.lux-card--itinerary {
    text-align: center;
}

.lux-itinerary-header {
    text-align: center;
    margin-bottom: 2rem;
}

.lux-itinerary-header .lux-section-subtitle {
    max-width: 400px;
    margin: 0 auto;
}

.lux-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
}

/* Línea vertical con progreso animado */
.lux-timeline__line {
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 1px;
}

.lux-timeline__line-progress {
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--lux-primary), var(--lux-secondary));
    border-radius: 1px;
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 8px rgba(208, 0, 255, 0.4);
}

/* Nodos en la línea */
.lux-timeline__node {
    position: absolute;
    left: -26px;
    top: 4px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lux-timeline__node-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--lux-surface);
    border: 2px solid rgba(208, 0, 255, 0.4);
    transition: all 0.4s ease;
    box-shadow: 0 0 0 4px rgba(208, 0, 255, 0);
}

.lux-timeline__item.is-visible .lux-timeline__node-dot {
    border-color: var(--lux-primary);
    background: var(--lux-primary);
    box-shadow: 0 0 0 4px rgba(208, 0, 255, 0.15), 0 0 12px rgba(208, 0, 255, 0.4);
}

.lux-timeline__item {
    position: relative;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 0 0 2rem 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-timeline__item:last-child {
    padding-bottom: 0;
}

.lux-timeline__item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.lux-timeline__time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--lux-primary);
    padding-top: 2px;
    white-space: nowrap;
}

.lux-timeline__content h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    color: var(--lux-text);
}

.lux-timeline__content p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--lux-text-muted);
    line-height: 1.6;
}

/* ============================================
   MÚSICA EMBED
   ============================================ */
.lux-music-embed,
.lux-spotify-embed {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.lux-spotify-embed {
    height: 352px;
}

.lux-music-embed iframe {
    display: block;
    width: 100%;
    height: 352px;
}

.lux-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--lux-secondary);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.lux-inline-link:hover {
    color: var(--lux-primary);
}

/* ============================================
   GALERÍA
   ============================================ */
.lux-section--secondary {
    padding: clamp(1.5rem, 3vw, 2rem) 0;
    border-top: 1px solid var(--lux-border);
}

.lux-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.75rem;
}

.lux-gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--lux-border);
}

.lux-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.lux-gallery-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   REGALOS
   ============================================ */
.lux-gifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.lux-gift-card {
    padding: 1.25rem;
    background: var(--lux-glass);
    border-radius: 16px;
    border: 1px solid var(--lux-border);
}

.lux-gift-card h4 {
    font-size: 1rem;
    margin: 0 0 0.5rem;
}

.lux-gift-card p {
    font-size: 0.9rem;
    color: var(--lux-text-muted);
    margin: 0 0 0.75rem;
}

/* ============================================
   FOOTER
   ============================================ */
.lux-footer {
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--lux-text-muted);
    font-size: 0.85rem;
    opacity: 0.6;
}

.lux-footer p {
    margin: 0.25rem 0;
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.lux-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.lux-section-label {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--lux-secondary);
    margin-bottom: 0.75rem;
}

.lux-section-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: var(--lux-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.8;
}

/* ============================================
   PARTICIPANTS SECTION
   ============================================ */
.lux-section--participants {
    padding: 4rem 0;
}

.lux-participants-group {
    margin-bottom: 3.5rem;
}

.lux-participants-group:last-child {
    margin-bottom: 0;
}

.lux-participants-group__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.lux-participants-group__header i {
    color: var(--lux-primary);
    font-size: 1.25rem;
}

.lux-participants-group__header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--lux-text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lux-participants-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.lux-participants-grid > .lux-participant-card {
    flex: 0 1 220px;
}

.lux-participants-grid--featured {
    gap: 1.5rem;
}

.lux-participants-grid--featured > .lux-participant-card {
    flex: 0 1 300px;
}

.lux-participant-card {
    position: relative;
    background: var(--lux-glass);
    border: 1px solid var(--lux-border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.lux-participant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--lux-primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lux-participant-card__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(208, 0, 255, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.lux-participant-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(208, 0, 255, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(208, 0, 255, 0.1);
}

.lux-participant-card:hover::before {
    opacity: 1;
}

.lux-participant-card:hover .lux-participant-card__glow {
    transform: translate(-50%, -50%) scale(1);
}

.lux-participant-card--featured {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.lux-participant-card__content {
    position: relative;
    z-index: 1;
}

.lux-participant-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(208, 0, 255, 0.15) 0%, rgba(0, 207, 255, 0.1) 100%);
    border-radius: 50%;
    border: 1px solid rgba(208, 0, 255, 0.2);
    font-size: 1.5rem;
    color: var(--lux-primary);
    transition: all 0.3s ease;
}

.lux-participant-card:hover .lux-participant-card__icon {
    background: linear-gradient(135deg, rgba(208, 0, 255, 0.25) 0%, rgba(0, 207, 255, 0.15) 100%);
    border-color: var(--lux-primary);
    box-shadow: 0 0 20px rgba(208, 0, 255, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.lux-participant-card--featured .lux-participant-card__icon {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
    background: linear-gradient(135deg, rgba(208, 0, 255, 0.2) 0%, rgba(0, 207, 255, 0.15) 100%);
}

.lux-participant-card__name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--lux-text);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}

.lux-participant-card--featured .lux-participant-card__name {
    font-size: 1.25rem;
}

.lux-participant-card__role {
    font-size: 0.85rem;
    color: var(--lux-text-muted);
    font-weight: 400;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.lux-section--faq {
    position: relative;
    padding: 4rem 0;
}

.lux-faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.lux-faq-card {
    background: var(--lux-glass);
    border: 1px solid var(--lux-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-faq-card.is-active {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(208, 0, 255, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(208, 0, 255, 0.08);
}

.lux-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: all 0.3s ease;
}

.lux-faq-trigger:hover {
    background: rgba(255, 255, 255, 0.02);
}

.lux-faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.lux-faq-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--lux-primary);
    background: linear-gradient(135deg, rgba(208, 0, 255, 0.15) 0%, rgba(0, 207, 255, 0.1) 100%);
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(208, 0, 255, 0.2);
    flex-shrink: 0;
}

.lux-faq-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--lux-text);
    line-height: 1.5;
}

.lux-faq-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.lux-faq-icon i {
    position: absolute;
    color: var(--lux-secondary);
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-faq-icon .fa-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.lux-faq-card.is-active .lux-faq-icon {
    background: linear-gradient(135deg, rgba(208, 0, 255, 0.2) 0%, rgba(0, 207, 255, 0.15) 100%);
}

.lux-faq-card.is-active .lux-faq-icon .fa-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.lux-faq-card.is-active .lux-faq-icon .fa-minus {
    opacity: 1;
    transform: rotate(0);
}

.lux-faq-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-faq-answer {
    padding: 0 1.75rem 1.75rem 3.75rem;
}

.lux-faq-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--lux-text-muted);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .lux-hero__grid {
        grid-template-columns: 1fr;
    }

    .lux-grid--2 {
        grid-template-columns: 1fr;
    }

    .lux-timeline__item {
        grid-template-columns: 60px 1fr;
        padding-left: 2rem;
    }

    .lux-timeline__line {
        left: 12px;
    }

    .lux-timeline__node {
        left: -22px;
    }

    .lux-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lux-scroll-top,
    .lux-rsvp-sticky {
        bottom: 1.5rem;
    }

    .lux-scroll-top {
        left: 1.5rem;
        width: 45px;
        height: 45px;
    }

    /* Participants Responsive */
    .lux-section-header {
        margin-bottom: 2rem;
    }

    .lux-section-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .lux-participants-group {
        margin-bottom: 2.5rem;
    }

    .lux-participants-group__header h3 {
        font-size: 1.1rem;
    }

    .lux-participants-grid > .lux-participant-card {
        flex: 0 1 170px;
    }

    .lux-participants-grid--featured > .lux-participant-card {
        flex: 1 1 100%;
    }

    .lux-participant-card {
        padding: 1.5rem 1.25rem;
    }

    .lux-participant-card--featured {
        padding: 2rem 1.5rem;
    }

    .lux-participant-card__icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .lux-participant-card--featured .lux-participant-card__icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .lux-participant-card__name {
        font-size: 0.95rem;
    }

    .lux-participant-card--featured .lux-participant-card__name {
        font-size: 1.1rem;
    }

    .lux-participant-card__role {
        font-size: 0.8rem;
    }

    /* FAQ Responsive */
    .lux-faq-container {
        gap: 0.75rem;
    }

    .lux-faq-trigger {
        padding: 1.25rem 1.5rem;
    }

    .lux-faq-question {
        gap: 0.75rem;
    }

    .lux-faq-number {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .lux-faq-text {
        font-size: 0.95rem;
    }

    .lux-faq-icon {
        width: 28px;
        height: 28px;
    }

    .lux-faq-icon i {
        font-size: 0.75rem;
    }

    .lux-faq-answer {
        padding: 0 1.5rem 1.5rem 3rem;
    }

    .lux-faq-answer p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    /* Desactivar estrellas en móvil para rendimiento */
    .lux-page-stars {
        display: none;
    }

    .lux-timeline__item {
        grid-template-columns: 1fr;
        gap: 0.35rem;
        padding-left: 2rem;
    }

    .lux-timeline__line {
        left: 10px;
    }

    .lux-timeline__node {
        left: -20px;
        width: 28px;
        height: 28px;
    }

    .lux-timeline__node-dot {
        width: 10px;
        height: 10px;
    }

    .lux-timeline__time {
        font-size: 0.8rem;
    }

    .lux-countdown--compact {
        gap: 0.5rem;
    }

    .lux-countdown__item {
        min-width: 55px;
        padding: 0.5rem;
    }

    .lux-countdown__num {
        font-size: 1.25rem;
    }

    /* Participants Mobile */
    .lux-participants-grid > .lux-participant-card {
        flex: 1 1 100%;
    }

    .lux-participant-card {
        padding: 1.25rem 1rem;
    }

    .lux-participant-card--featured {
        padding: 1.75rem 1.25rem;
    }

    /* FAQ Mobile */
    .lux-faq-trigger {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

    .lux-faq-answer {
        padding: 0 1.25rem 1.25rem 2.5rem;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .lux-hero__visual img,
    .lux-hero__halo,
    .lux-hero__shape,
    .lux-hero__sparkle,
    .lux-cta-primary__shine,
    .lux-countdown__num,
    .lux-countdown__item::before,
    .lux-countdown__separator,
    .lux-star-page {
        animation: none !important;
    }

    .lux-timeline__line-progress {
        transition: none !important;
        height: 100% !important;
    }

    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .lux-timeline__item {
        opacity: 1 !important;
        transform: none !important;
    }

    .lux-timeline__node-dot {
        border-color: var(--lux-primary) !important;
        background: var(--lux-primary) !important;
    }
}
