/* ═══════════════════════════════════════════════════════════════
   BOHEMIA DE ENCANTO — Design tokens
   Paleta: noche de cabaret cálido, luz de escenario
   Tipografía: Fraunces (display) + Jost (cuerpo)
   ═══════════════════════════════════════════════════════════════ */

:root {
    /* Color */
    --c-noche:        #19130F;   /* fondo negro cálido */
    --c-noche-2:      #211810;   /* fondo negro cálido, capa 2 */
    --c-crema:        #F2E8D6;   /* texto claro / fondo claro */
    --c-crema-dim:    #D9CBAE;
    --c-dorado:       #C9A24B;   /* acento principal */
    --c-dorado-luz:   #E8C77E;
    --c-ambar:        #E0863A;   /* luz de escenario / hover */
    --c-vino:         #6E2A36;   /* acento secundario */
    --c-vino-luz:     #8C3A47;

    /* Tipografía */
    --f-display: "Fraunces", "Georgia", serif;
    --f-body:    "Jost", "Helvetica Neue", sans-serif;

    /* Espaciado */
    --space-section: clamp(4rem, 9vw, 9rem);
    --space-inline:  clamp(1.25rem, 5vw, 3rem);
    --radius:        2px;

    /* Movimiento */
    --ease-out:  cubic-bezier(.16,1,.3,1);
    --ease-soft: cubic-bezier(.4,0,.2,1);
    --dur-base:  .7s;
}

/* ─────────────────── Reset ─────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    background: var(--c-noche);
    color: var(--c-crema);
    font-family: var(--f-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0 0 1em; }

::selection { background: var(--c-dorado); color: var(--c-noche); }

:focus-visible {
    outline: 2px solid var(--c-dorado-luz);
    outline-offset: 3px;
}

/* ─────────────────── Layout helpers ─────────────────── */
.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    margin-inline: auto;
    padding-left: var(--space-inline);
    padding-right: var(--space-inline);
    padding-inline: var(--space-inline);
}
.container--narrow { max-width: 760px; }

.section {
    position: relative;
    padding-block: var(--space-section);
    background: var(--c-crema);
    color: var(--c-noche);
    overflow: hidden;
}
.section--dark {
    background: var(--c-noche);
    color: var(--c-crema);
}

/* Subtle grain texture for dark sections */
.section__noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─────────────────── Typography ─────────────────── */
.eyebrow {
    font-family: var(--f-body);
    font-size: .8rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--c-dorado-luz);
    font-weight: 500;
}

.kicker {
    display: inline-block;
    font-family: var(--f-body);
    font-size: .78rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--c-vino);
    font-weight: 600;
    margin-bottom: .9rem;
    position: relative;
    padding-left: 1.6rem;
}
.kicker::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 1.1rem; height: 1px;
    background: var(--c-vino);
    transform: translateY(-50%);
}
.kicker--light { color: var(--c-dorado-luz); }
.kicker--light::before { background: var(--c-dorado-luz); }

.section__title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -.01em;
    margin: 0 0 1.1rem;
}
.section__title--light { color: var(--c-crema); }

.section__lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #4b443c;
    max-width: 42ch;
    margin-bottom: 2.2rem;
}
.section--dark .section__lead { color: var(--c-crema-dim); }

.accent-script {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 400;
    color: var(--c-vino);
}
.section--dark .accent-script,
.section--final .accent-script,
.section--why .accent-script { color: var(--c-dorado-luz); }

/* ─────────────────── Buttons ─────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--f-body);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s, color .3s, border-color .3s;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--c-dorado-luz);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .45s var(--ease-out);
    z-index: -1;
}
.btn:hover::before { transform: scaleX(1); }

.btn--primary {
    background: var(--c-dorado);
    color: var(--c-noche);
    box-shadow: 0 8px 24px -8px rgba(201,162,75,.55);
}
.btn--primary:hover {
    color: var(--c-noche);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -8px rgba(201,162,75,.7);
}

.btn--lg { padding: 1.15rem 2.6rem; font-size: 1rem; }
.btn--xl { padding: 1.3rem 3.2rem; font-size: 1.05rem; }

.btn--outline {
    border-color: var(--c-dorado-luz);
    color: var(--c-crema);
    background: transparent;
}
.btn--outline::before { background: var(--c-dorado-luz); }
.btn--outline:hover { color: var(--c-noche); }

.btn--outline-light {
    border-color: rgba(242,232,214,.4);
    color: var(--c-crema);
    background: transparent;
}
.btn--outline-light::before { background: var(--c-crema); }
.btn--outline-light:hover { color: var(--c-noche); }

.btn--whatsapp {
    background: #25D366;
    color: #0b3318;
    box-shadow: 0 8px 24px -8px rgba(37,211,102,.5);
}
.btn--whatsapp::before { background: #1ebe5a; }
.btn--whatsapp:hover { color: #0b3318; transform: translateY(-2px); }

/* ─────────────────── Scroll progress bar ─────────────────── */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--c-vino), var(--c-dorado), var(--c-ambar));
    z-index: 999;
    transition: width .1s linear;
}

/* ─────────────────── WhatsApp floating button ─────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 1.4rem;
    right: 1.4rem;
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px -4px rgba(0,0,0,.45);
    z-index: 900;
    animation: float-pulse 2.6s ease-in-out infinite;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { animation-play-state: paused; transform: scale(1.08); }

@keyframes float-pulse {
    0%, 100% { box-shadow: 0 8px 24px -4px rgba(0,0,0,.45), 0 0 0 0 rgba(37,211,102,.5); }
    50% { box-shadow: 0 8px 24px -4px rgba(0,0,0,.45), 0 0 0 10px rgba(37,211,102,0); }
}

@media (max-width: 640px) {
    .whatsapp-float { width: 50px; height: 50px; bottom: 1rem; right: 1rem; }
    .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--c-noche);
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(25,19,15,.55) 0%, rgba(25,19,15,.35) 40%, rgba(25,19,15,.85) 100%);
}
.hero__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 35%, rgba(25,19,15,.65) 100%);
    pointer-events: none;
}
.hero__grain {
    position: absolute;
    inset: 0;
    opacity: .06;
    mix-blend-mode: overlay;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
    max-width: 880px;
}

.hero__title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(3rem, 11vw, 7.5rem);
    line-height: .95;
    margin: .6rem 0;
    color: var(--c-crema);
}
.hero__title-line { display: block; }
.hero__title-line--accent {
    font-style: italic;
    font-weight: 400;
    background: linear-gradient(100deg, var(--c-dorado-luz), var(--c-ambar) 60%, var(--c-dorado-luz));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__subtitle {
    font-family: var(--f-body);
    font-weight: 300;
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
    color: var(--c-crema-dim);
    margin: 0 0 2.2rem;
    letter-spacing: .01em;
}

.hero__trust {
    margin-top: 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}
.stars {
    color: var(--c-dorado-luz);
    letter-spacing: .15em;
    font-size: 1.1rem;
}
.stars--sm { font-size: .85rem; }
.hero__trust-stats {
    font-size: .85rem;
    color: var(--c-crema-dim);
    letter-spacing: .02em;
}
.hero__trust-stats strong { color: var(--c-dorado-luz); font-weight: 600; }
.hero__trust-stats .dot { margin: 0 .5em; opacity: .5; }

/* Sound toggle */
.sound-toggle {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 3;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(25,19,15,.45);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(242,232,214,.25);
    color: var(--c-crema);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, border-color .3s;
}
.sound-toggle:hover { background: rgba(25,19,15,.7); border-color: var(--c-dorado-luz); }
.sound-toggle svg { width: 20px; height: 20px; }
.sound-toggle .icon-sound { display: none; }
.sound-toggle.is-on .icon-muted { display: none; }
.sound-toggle.is-on .icon-sound { display: block; }

/* Scroll cue */
.hero__scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    color: var(--c-crema-dim);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.eq-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
}
.eq-bars i {
    display: block;
    width: 3px;
    background: var(--c-dorado-luz);
    border-radius: 1px;
    animation: eq-bounce 1.1s ease-in-out infinite;
}
.eq-bars i:nth-child(1) { height: 40%; animation-delay: -.9s; }
.eq-bars i:nth-child(2) { height: 70%; animation-delay: -.6s; }
.eq-bars i:nth-child(3) { height: 100%; animation-delay: -1.1s; }
.eq-bars i:nth-child(4) { height: 55%; animation-delay: -.3s; }
.eq-bars i:nth-child(5) { height: 80%; animation-delay: -.5s; }

@keyframes eq-bounce {
    0%, 100% { transform: scaleY(.3); }
    50% { transform: scaleY(1); }
}

@media (max-width: 640px) {
    .sound-toggle { top: 1rem; right: 1rem; width: 40px; height: 40px; }
    .hero__scroll-cue { bottom: 1.4rem; }
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL SYSTEM
   ═══════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transition:
        opacity var(--dur-base) var(--ease-out),
        transform var(--dur-base) var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
}
.reveal[data-reveal="up"]    { transform: translateY(34px); }
.reveal[data-reveal="left"]  { transform: translateX(-34px); }
.reveal[data-reveal="fade"]  { transform: none; }
.reveal[data-reveal="scale"] { transform: scale(.92); }

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ═══════════════════════════════════════════════════════════════
   BLOQUE 2 — Headline section
   ═══════════════════════════════════════════════════════════════ */
.section--headline { text-align: center; padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--headline .section__lead { margin-inline: auto; }

/* ═══════════════════════════════════════════════════════════════
   ¿TE IDENTIFICAS?
   ═══════════════════════════════════════════════════════════════ */
.section--identify { text-align: center; }
.identify__intro {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--c-dorado-luz);
    margin-bottom: 2rem;
}
.identify-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto 2.5rem;
    max-width: 560px;
    text-align: left;
}
.identify-list__item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    font-size: 1.1rem;
    font-style: italic;
    font-family: var(--f-display);
    color: var(--c-crema-dim);
    padding: .9rem 1.1rem;
    background: rgba(242,232,214,.04);
    border-left: 2px solid var(--c-dorado);
    border-radius: 0 var(--radius) var(--radius) 0;
    transition: background .3s, transform .3s;
}
.identify-list__item:hover {
    background: rgba(242,232,214,.08);
    transform: translateX(4px);
}
.identify-list__item .check {
    color: var(--c-dorado-luz);
    font-weight: 700;
    font-family: var(--f-body);
    font-style: normal;
    flex-shrink: 0;
}
.identify__outro {
    font-family: var(--f-display);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    color: var(--c-crema);
    margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════════════════════
   BLOQUE 3 — Experience grid + differentiators
   ═══════════════════════════════════════════════════════════════ */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
    margin: 2.5rem 0 5rem;
}
.experience-card {
    background: #fff;
    border: 1px solid rgba(25,19,15,.08);
    border-radius: 4px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px -12px rgba(110,42,54,.25);
}
.experience-card__icon {
    display: block;
    font-size: 2.1rem;
    margin-bottom: .9rem;
}
.experience-card p {
    margin: 0;
    font-weight: 500;
    color: #2d2620;
}

.differentiator__title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(1.6rem, 3.4vw, 2.3rem);
    text-align: center;
    margin-bottom: 2.5rem;
}
.differentiator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.diff-card {
    background: var(--c-noche);
    color: var(--c-crema);
    border-radius: 4px;
    padding: 2.2rem 1.8rem;
    position: relative;
    overflow: hidden;
}
.diff-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--c-vino), var(--c-dorado));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease-out);
}
.diff-card:hover::after { transform: scaleX(1); }
.diff-card__num { font-size: 1.8rem; display: block; margin-bottom: 1rem; }
.diff-card h4 {
    font-family: var(--f-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 0 .5rem;
    color: var(--c-dorado-luz);
}
.diff-card p { margin: 0; color: var(--c-crema-dim); font-size: .95rem; }

/* ═══════════════════════════════════════════════════════════════
   BLOQUE 4 — Video showcase
   ═══════════════════════════════════════════════════════════════ */
.section--video { text-align: center; background: var(--c-crema); }
.video-showcase {
    margin-top: 3rem;
    padding-inline: var(--space-inline);
}
.video-showcase__frame {
    position: relative;
    max-width: 900px;
    margin-inline: auto;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--c-noche);
    box-shadow: 0 30px 60px -20px rgba(25,19,15,.4);
}
.video-showcase__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-showcase__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 84px; height: 84px;
    border-radius: 50%;
    background: rgba(242,232,214,.92);
    color: var(--c-noche);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .35s var(--ease-out), background .3s;
}
.video-showcase__play svg { width: 32px; height: 32px; margin-left: 4px; }
.video-showcase__play:hover { transform: scale(1.08); background: var(--c-dorado-luz); }
.video-showcase__play.is-playing { opacity: 0; pointer-events: none; }

/* ═══════════════════════════════════════════════════════════════
   BLOQUE 5 — Testimonials marquee
   ═══════════════════════════════════════════════════════════════ */
.section--testimonials { padding-inline: 0; }
.testimonial-track-wrap {
    margin-top: 3rem;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.testimonial-track {
    display: flex;
    gap: 1.4rem;
    width: max-content;
    animation: marquee 50s linear infinite;
}
.testimonial-track:hover { animation-play-state: paused; }

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.testimonial-card {
    flex: 0 0 320px;
    background: rgba(242,232,214,.05);
    border: 1px solid rgba(242,232,214,.12);
    border-radius: 4px;
    padding: 1.8rem;
}
.testimonial-card p {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--c-crema-dim);
    margin: .8rem 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.testimonial-card__autor {
    font-size: .82rem;
    letter-spacing: .04em;
    color: var(--c-dorado-luz);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   BLOQUE 6 — Repertoire
   ═══════════════════════════════════════════════════════════════ */
.section--repertoire { text-align: center; }
.repertoire-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .9rem;
    margin: 2.5rem 0 2.5rem;
}
.repertoire-chip {
    font-family: var(--f-display);
    font-size: clamp(.95rem, 2vw, 1.3rem);
    padding: .6rem 1.4rem;
    border: 1px solid rgba(110,42,54,.3);
    border-radius: 999px;
    color: var(--c-vino);
    transition: background .3s, color .3s, transform .3s, border-color .3s;
}
.repertoire-chip:nth-child(odd) { font-style: italic; }
.repertoire-chip:hover {
    background: var(--c-vino);
    color: var(--c-crema);
    border-color: var(--c-vino);
    transform: translateY(-3px);
}
.repertoire__note {
    font-size: 1.05rem;
    color: #4b443c;
}

/* ═══════════════════════════════════════════════════════════════
   GUARANTEE
   ═══════════════════════════════════════════════════════════════ */
.section--guarantee {
    text-align: center;
    background: linear-gradient(180deg, var(--c-crema) 0%, #ECE0C7 100%);
}
.guarantee__title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.18;
    margin-bottom: 1.6rem;
}
.guarantee__text {
    max-width: 56ch;
    margin-inline: auto;
    font-size: 1.1rem;
    color: #4b443c;
}

/* ═══════════════════════════════════════════════════════════════
   WHY PEOPLE RETURN
   ═══════════════════════════════════════════════════════════════ */
.why__lead {
    max-width: 50ch;
    color: var(--c-crema-dim);
    margin-bottom: 2.5rem;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.3rem;
    margin-bottom: 2.5rem;
}
.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.4rem;
    background: rgba(242,232,214,.04);
    border-radius: 4px;
}
.why-item__icon { font-size: 1.4rem; flex-shrink: 0; }
.why-item p { margin: 0; color: var(--c-crema-dim); }
.why__closing {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--c-dorado-luz);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   STORY SECTION
   ═══════════════════════════════════════════════════════════════ */
.story-text p {
    font-size: 1.1rem;
    color: #4b443c;
    margin-bottom: 1.3rem;
}

/* ═══════════════════════════════════════════════════════════════
   MAP + STATS
   ═══════════════════════════════════════════════════════════════ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0 3.5rem;
    text-align: center;
}
.stat__num {
    display: block;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--c-dorado-luz);
    line-height: 1;
}
.stat__label {
    display: block;
    margin-top: .5rem;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--c-crema-dim);
}
.stat .stars { margin-bottom: .3rem; }

.mexico-map {
    max-width: 600px;
    margin-inline: auto;
}
.mexico-map__svg { width: 100%; height: auto; }
.mexico-map__shape {
    fill: rgba(201,162,75,.08);
    stroke: rgba(201,162,75,.35);
    stroke-width: 1.5;
}
.mexico-map__point {
    fill: var(--c-dorado-luz);
    animation: map-pulse 2.4s ease-in-out infinite;
}
.mexico-map__point:nth-child(2) { animation-delay: .2s; }
.mexico-map__point:nth-child(3) { animation-delay: .4s; }
.mexico-map__point:nth-child(4) { animation-delay: .6s; }
.mexico-map__point:nth-child(5) { animation-delay: .8s; }
.mexico-map__point:nth-child(6) { animation-delay: 1s; }
.mexico-map__point:nth-child(7) { animation-delay: 1.2s; }
.mexico-map__point:nth-child(8) { animation-delay: 1.4s; }

@keyframes map-pulse {
    0%, 100% { opacity: .5; r: 4; }
    50% { opacity: 1; r: 7; }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-top: 2.5rem;
}
.faq-item {
    border: 1px solid rgba(25,19,15,.12);
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}
.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--f-display);
    font-size: 1.05rem;
    color: var(--c-noche);
}
.faq-item__icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--c-vino);
    transition: transform .35s var(--ease-out);
    flex-shrink: 0;
}
.faq-item[data-open="true"] .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease-soft), padding .4s var(--ease-soft);
    padding: 0 1.4rem;
}
.faq-item__answer p {
    margin: 0 0 1.2rem;
    color: #4b443c;
}
.faq-item[data-open="true"] .faq-item__answer { padding-top: 0; }

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS — steps
   ═══════════════════════════════════════════════════════════════ */
.steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}
.step {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.1rem 1.4rem;
    background: #fff;
    border-radius: 4px;
    border: 1px solid rgba(25,19,15,.08);
}
.step__num {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--c-noche);
    color: var(--c-dorado-luz);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-display);
    font-weight: 600;
}
.step p { margin: 0; font-weight: 500; }

/* ═══════════════════════════════════════════════════════════════
   WHERE
   ═══════════════════════════════════════════════════════════════ */
.where__text {
    font-size: 1.05rem;
    color: var(--c-crema-dim);
    max-width: 52ch;
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP SECTION
   ═══════════════════════════════════════════════════════════════ */
.section--whatsapp { text-align: center; }
.whatsapp-questions {
    margin: 1.6rem 0;
}
.whatsapp-questions p {
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--c-vino);
    margin: .3rem 0;
}

/* ═══════════════════════════════════════════════════════════════
   BLOQUE 8 — Final CTA
   ═══════════════════════════════════════════════════════════════ */
.section--final {
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, var(--c-vino-luz) 0%, var(--c-noche) 65%);
    color: var(--c-crema);
    position: relative;
}
.final__title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(2.1rem, 5.5vw, 3.4rem);
    line-height: 1.18;
    margin-bottom: 1.4rem;
}
.final__text {
    font-size: 1.15rem;
    color: var(--c-crema-dim);
    max-width: 48ch;
    margin-inline: auto;
    margin-bottom: 2.2rem;
}
.final__social-proof {
    margin-top: 1.8rem;
    font-size: .95rem;
    color: var(--c-dorado-luz);
}
.final-checks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.6rem;
    margin-top: 1.4rem;
    font-size: .88rem;
    color: var(--c-crema-dim);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
    background: var(--c-noche-2);
    color: var(--c-crema);
    text-align: center;
    padding-block: var(--space-section);
    border-top: 1px solid rgba(242,232,214,.08);
}
.footer__brand {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin: 0 0 .4rem;
}
.footer__tagline {
    color: var(--c-dorado-luz);
    letter-spacing: .04em;
    margin-bottom: 2rem;
}
.footer__no-sell {
    margin-top: 2.5rem;
    font-size: 1.2rem;
    font-family: var(--f-display);
}
.footer__no-sell strong { color: var(--c-dorado-luz); }
.footer__question {
    font-style: italic;
    font-family: var(--f-display);
    color: var(--c-crema-dim);
    margin-bottom: 1.6rem;
}
.footer__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .9rem 1.6rem;
    margin: 2.5rem 0 2rem;
    font-size: .82rem;
    color: var(--c-crema-dim);
}
.footer__copy {
    font-size: .75rem;
    color: rgba(242,232,214,.4);
    margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .section { padding-block: clamp(3rem, 12vw, 5rem); }
    .testimonial-card { flex-basis: 270px; }
    .identify-list__item { font-size: 1rem; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO — nombre del artista
   ═══════════════════════════════════════════════════════════════ */
.hero__artist {
    font-family: var(--f-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    color: var(--c-dorado-luz);
    letter-spacing: .06em;
    margin: -.4rem 0 .5rem;
    opacity: .9;
}

/* ═══════════════════════════════════════════════════════════════
   BLOQUE 6 — video intro dentro del repertoire
   ═══════════════════════════════════════════════════════════════ */
.repertoire__video-intro {
    font-style: italic;
    font-family: var(--f-display);
    color: #4b443c;
    margin-bottom: 1rem;
}
.video-showcase--inline {
    margin: 0 0 3rem;
    padding-inline: 0;
}
.video-showcase--inline .video-showcase__frame {
    max-width: 800px;
}

/* ═══════════════════════════════════════════════════════════════
   CARRUSEL DE FOTOS — Bloque 8
   ═══════════════════════════════════════════════════════════════ */
.photo-carousel {
    position: relative;
    margin-top: 3.5rem;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.photo-carousel__track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: carousel-scroll 40s linear infinite;
    cursor: grab;
}
.photo-carousel__track:active { cursor: grabbing; }
.photo-carousel__track.is-dragging { animation-play-state: paused; }

@keyframes carousel-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.photo-carousel__item {
    flex: 0 0 320px;
    height: 220px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(242,232,214,.1);
}
.photo-carousel__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease-out);
}
.photo-carousel__item:hover img { transform: scale(1.06); }

/* Controles prev/next */
.photo-carousel__prev,
.photo-carousel__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(25,19,15,.6);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(242,232,214,.25);
    color: var(--c-crema);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background .3s, border-color .3s, opacity .3s;
    opacity: 0;
}
.photo-carousel:hover .photo-carousel__prev,
.photo-carousel:hover .photo-carousel__next { opacity: 1; }
.photo-carousel__prev { left: 1rem; }
.photo-carousel__next { right: 1rem; }
.photo-carousel__prev:hover,
.photo-carousel__next:hover { background: rgba(25,19,15,.85); border-color: var(--c-dorado-luz); }

/* Dots de paginación */
.photo-carousel__dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.4rem;
}
.photo-carousel__dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(242,232,214,.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .3s, transform .3s;
}
.photo-carousel__dot.is-active {
    background: var(--c-dorado-luz);
    transform: scale(1.4);
}

@media (max-width: 640px) {
    .photo-carousel__item { flex: 0 0 240px; height: 170px; }
    .photo-carousel__prev,
    .photo-carousel__next { opacity: 1; width: 38px; height: 38px; font-size: .9rem; }
}

/* ═══════════════════════════════════════════════════════════════
   BLOQUE 3 — Experience cards CON FOTO REAL
   ═══════════════════════════════════════════════════════════════ */
.experience-card--photo {
    padding: 0;
    overflow: hidden;
    border-radius: 4px;
    background: #fff;
    text-align: left;
}
.experience-card__img-wrap {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    display: block;
}
.experience-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .65s var(--ease-out);
}
.experience-card--photo:hover .experience-card__img-wrap img {
    transform: scale(1.06);
}
.experience-card--photo p {
    padding: 1rem 1.2rem 1.3rem;
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
    color: var(--c-noche);
    letter-spacing: .01em;
}

/* ═══════════════════════════════════════════════════════════════
   DIFF-CARD — variante con foto de artista
   ═══════════════════════════════════════════════════════════════ */
.diff-card__photo {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border-radius: 2px;
}
.diff-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(100%) contrast(1.05);
    transition: filter .5s var(--ease-out), transform .6s var(--ease-out);
}
.diff-card:hover .diff-card__photo img {
    filter: grayscale(60%) contrast(1.1);
    transform: scale(1.04);
}

/* ═══════════════════════════════════════════════════════════════
   ARTIST PHOTO — foto de Javier en secciones de cierre
   ═══════════════════════════════════════════════════════════════ */
.artist-photo {
    margin: 0 auto 2.5rem;
    width: 240px;
    position: relative;
}
.artist-photo::before {
    content: "";
    position: absolute;
    inset: 12px -12px -12px 12px;
    border: 1px solid rgba(201,162,75,.3);
    border-radius: 2px;
    pointer-events: none;
    transition: inset .4s var(--ease-out), border-color .4s;
}
.artist-photo:hover::before {
    inset: 6px -6px -6px 6px;
    border-color: rgba(201,162,75,.6);
}
.artist-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    filter: grayscale(100%) contrast(1.05);
    position: relative;
    z-index: 1;
}

.artist-photo--footer {
    width: 200px;
    margin-bottom: 2rem;
}

@media (max-width: 640px) {
    .artist-photo  { width: 180px; }
    .artist-photo--footer { width: 150px; }
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER-CTA (sección intermedia: Bohemia de Encanto + Reserva)
   ═══════════════════════════════════════════════════════════════ */
.section--footer-cta {
    text-align: center;
    background: var(--c-noche);
    color: var(--c-crema);
    padding-block: clamp(3.5rem, 8vw, 6rem);
}
.footer-cta__brand {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin: 0 0 .4rem;
}
.footer-cta__tagline {
    color: var(--c-dorado-luz);
    letter-spacing: .04em;
    margin-bottom: .6rem;
}
.footer-cta__reserva {
    font-family: var(--f-display);
    font-style: italic;
    color: var(--c-crema-dim);
    margin-bottom: 1.6rem;
}

/* ═══════════════════════════════════════════════════════════════
   ÚLTIMO LLAMADO (foto Javier + "Miles de canciones...")
   ═══════════════════════════════════════════════════════════════ */
.section--ultimo-llamado {
    text-align: center;
    background: var(--c-crema);
    padding-block: clamp(4rem, 9vw, 7rem);
}
.ultimo__title {
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(1.9rem, 5vw, 3rem);
    line-height: 1.18;
    color: var(--c-noche);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   HERO BOXED — video en recuadro, no de fondo
   ═══════════════════════════════════════════════════════════════ */
.hero--boxed {
    min-height: auto;
    background: var(--c-noche);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(3rem, 8vw, 5rem) var(--space-inline) clamp(2.5rem, 6vw, 4rem);
    gap: 0;
    text-align: center;
    overflow: visible;
}

/* Quitar position:absolute del hero original cuando sea boxed */
.hero--boxed .hero__media { display: none; }

.hero__content--top {
    position: static;
    max-width: 760px;
    width: 100%;
    padding: 0;
    margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
}
.hero__content--top .eyebrow {
    font-size: .78rem;
    letter-spacing: .18em;
    color: var(--c-dorado-luz);
    margin-bottom: .6rem;
    display: block;
}
.hero__content--bottom {
    position: static;
    max-width: 600px;
    width: 100%;
    padding: 0;
    margin-top: clamp(1.8rem, 4vw, 2.8rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.hero__desc {
    font-size: clamp(.88rem, 1.6vw, 1rem);
    color: var(--c-crema-dim);
    letter-spacing: .04em;
    margin: .4rem 0 0;
}

/* Video box */
.hero__video-box {
    position: relative;
    width: 100%;
    max-width: 900px;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #000;
    box-shadow: 0 24px 60px -16px rgba(0,0,0,.7), 0 0 0 1px rgba(242,232,214,.08);
}
.hero--boxed .hero__video {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Controles superpuestos del hero video */
.hero__video-controls {
    position: absolute;
    bottom: .8rem;
    right: .8rem;
    display: flex;
    gap: .5rem;
    z-index: 3;
}
.video-ctrl-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(25,19,15,.55);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(242,232,214,.2);
    color: var(--c-crema);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .25s, border-color .25s;
}
.video-ctrl-btn:hover { background: rgba(25,19,15,.8); border-color: var(--c-dorado-luz); }
.video-ctrl-btn svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
    .hero--boxed { padding-top: 2rem; }
    .hero__video-controls { bottom: .5rem; right: .5rem; }
    .video-ctrl-btn { width: 34px; height: 34px; }
    .video-ctrl-btn svg { width: 15px; height: 15px; }
}

/* ═══════════════════════════════════════════════════════════════
   DIFF-CARD sin icono
   ═══════════════════════════════════════════════════════════════ */
.diff-card--plain {
    padding: 2.2rem 1.8rem 2rem;
    text-align: center;
}
.diff-card--plain h4 {
    font-size: 1.4rem;
    margin-bottom: .6rem;
}
.diff-card--plain p { font-size: 1rem; }

/* ═══════════════════════════════════════════════════════════════
   CERCANÍA — foto grande centrada
   ═══════════════════════════════════════════════════════════════ */
.diff-cercania {
    margin-top: 2.5rem;
    text-align: center;
}
.diff-cercania__photo {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 50px -12px rgba(0,0,0,.3);
}
.diff-cercania__photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .7s var(--ease-out);
}
.diff-cercania:hover .diff-cercania__photo img { transform: scale(1.03); }
.diff-cercania__text h4 {
    font-family: var(--f-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--c-dorado);
    margin-bottom: .4rem;
}
.diff-cercania__text p {
    font-size: 1.05rem;
    color: var(--c-crema-dim);
}

/* ═══════════════════════════════════════════════════════════════
   VIDEO SHOWCASE — botón toggle Play/Pause visible
   ═══════════════════════════════════════════════════════════════ */
.video-showcase__play {
    /* mantiene visibilidad cuando está en pausa */
    transition: opacity .3s, transform .3s var(--ease-out);
}
.video-showcase__play.is-playing {
    /* en play: se oculta pero reaparece al hover */
    opacity: 0;
}
.video-showcase__frame:hover .video-showcase__play.is-playing {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   BOTÓN SÚPER PROMOCIÓN — trigger
   ═══════════════════════════════════════════════════════════════ */
.promo-trigger-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    margin-top: 1rem;
}
.btn-promo {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--f-body);
    font-weight: 800;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #E53E00 0%, #FF6B00 50%, #FF9500 100%);
    border: none;
    border-radius: 6px;
    padding: 1.1rem 2.4rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 0 rgba(255,107,0,.5),
        0 8px 28px -6px rgba(229,62,0,.7);
    animation: promo-pulse 1.8s ease-in-out infinite;
    transition: transform .2s, box-shadow .2s;
}
.btn-promo:hover {
    transform: scale(1.04) translateY(-2px);
    animation-play-state: paused;
    box-shadow: 0 12px 36px -6px rgba(229,62,0,.85);
}
.btn-promo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: promo-shine 2.4s ease-in-out infinite;
}
.btn-promo__fire { font-size: 1.3em; }

@keyframes promo-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,.5), 0 8px 28px -6px rgba(229,62,0,.7); }
    50%       { box-shadow: 0 0 0 10px rgba(255,107,0,0), 0 8px 28px -6px rgba(229,62,0,.7); }
}
@keyframes promo-shine {
    0%   { transform: translateX(-100%); }
    60%, 100% { transform: translateX(200%); }
}

.promo-trigger-hint {
    font-size: .8rem;
    color: rgba(242,232,214,.55);
    margin: 0;
    letter-spacing: .03em;
}

/* ═══════════════════════════════════════════════════════════════
   MODAL OVERLAY
   ═══════════════════════════════════════════════════════════════ */
.promo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,10,7,.88);
    backdrop-filter: blur(4px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: overlay-in .3s var(--ease-out);
}
.promo-overlay[hidden] { display: none; }

@keyframes overlay-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.promo-modal {
    background: #1C1108;
    border: 1px solid rgba(201,162,75,.3);
    border-radius: 10px;
    max-width: 480px;
    width: 100%;
    max-height: 92svh;
    overflow-y: auto;
    position: relative;
    animation: modal-in .4s var(--ease-out);
    box-shadow: 0 32px 80px -16px rgba(0,0,0,.8), 0 0 0 1px rgba(201,162,75,.15);
}
@keyframes modal-in {
    from { opacity: 0; transform: scale(.9) translateY(20px); }
    to   { opacity: 1; transform: none; }
}

/* Header del modal */
.promo-modal__header {
    background: linear-gradient(135deg, #8C1010 0%, #C02000 40%, #E84800 100%);
    padding: 1.8rem 2rem 1.4rem;
    text-align: center;
    position: relative;
    border-radius: 9px 9px 0 0;
}
.promo-header-flames {
    font-size: 1.8rem;
    letter-spacing: .2em;
    margin-bottom: .4rem;
}
.promo-modal__title {
    font-family: var(--f-body);
    font-weight: 900;
    font-size: clamp(1.5rem, 5vw, 2rem);
    color: #fff;
    margin: 0 0 .4rem;
    letter-spacing: .06em;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.promo-modal__sub {
    font-size: .85rem;
    color: rgba(255,255,255,.8);
    margin: 0 0 .8rem;
}

/* Contador */
.promo-timer {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    background: rgba(0,0,0,.4);
    border-radius: 8px;
    padding: .5rem 1.2rem;
    border: 1px solid rgba(255,255,255,.2);
}
.promo-timer__num {
    font-family: var(--f-body);
    font-weight: 900;
    font-size: 2.2rem;
    color: #fff;
    letter-spacing: .04em;
    min-width: 2.4ch;
    text-align: center;
    font-variant-numeric: tabular-nums;
}
.promo-timer__sep {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255,255,255,.7);
    animation: blink-sep .9s step-end infinite;
}
@keyframes blink-sep {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}
.promo-timer.is-urgent .promo-timer__num { color: #FFD600; }

/* Botón cerrar */
.promo-modal__close {
    position: absolute;
    top: .8rem; right: .8rem;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,.3);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.promo-modal__close:hover { background: rgba(0,0,0,.6); }

/* Body del modal */
.promo-modal__body {
    padding: 1.6rem 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

/* Escalera de precios */
.promo-step {
    width: 100%;
    border-radius: 8px;
    padding: .9rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .4rem;
    position: relative;
}
.promo-step--crossed {
    background: rgba(242,232,214,.05);
    border: 1px solid rgba(242,232,214,.1);
    opacity: .7;
}
.promo-step--mid {
    background: rgba(201,162,75,.1);
    border: 1px solid rgba(201,162,75,.3);
}
.promo-step--hot {
    background: rgba(229,62,0,.12);
    border: 1px solid rgba(229,62,0,.4);
}
.promo-step--mega {
    background: linear-gradient(135deg, rgba(140,16,16,.25), rgba(229,62,0,.2));
    border: 2px solid #E84800;
    box-shadow: 0 0 20px -6px rgba(232,72,0,.5);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.1rem 1.3rem;
}
.promo-step__badge {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #FF9500;
    background: rgba(255,149,0,.15);
    border-radius: 4px;
    padding: .2rem .6rem;
    margin-bottom: .4rem;
}
.promo-step__badge--mega {
    color: #FFD600;
    background: rgba(255,214,0,.15);
    font-size: .78rem;
}
.promo-step__label {
    font-size: .9rem;
    color: var(--c-crema-dim);
}
.promo-step__price { font-weight: 800; font-size: 1.5rem; }
.promo-step__price--tachado {
    text-decoration: line-through;
    color: rgba(242,232,214,.4);
    font-size: 1.2rem;
}
.promo-step__price--mid { color: var(--c-dorado-luz); }
.promo-step__price--hot { color: #FF6B00; font-size: 1.8rem; }
.promo-step__fine {
    font-size: .82rem;
    color: var(--c-crema-dim);
    margin: .4rem 0 0;
    font-style: italic;
}

.promo-mega-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-top: .3rem;
    flex-wrap: wrap;
}
.promo-mega-price__each {
    font-size: 2.2rem;
    font-weight: 900;
    color: #FFD600;
}
.promo-mega-price__each small { font-size: .55em; font-weight: 600; }
.promo-mega-price__total {
    font-size: 1rem;
    color: rgba(255,214,0,.7);
    font-weight: 600;
}

.promo-arrow {
    font-size: 1rem;
    color: rgba(242,232,214,.3);
    line-height: 1;
}
.promo-arrow--big { font-size: 1.4rem; color: #E84800; }

/* Caja de código */
.promo-code-box {
    width: 100%;
    background: rgba(201,162,75,.08);
    border: 1px dashed rgba(201,162,75,.5);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    margin-top: .8rem;
    text-align: center;
}
.promo-code-box__label {
    display: block;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--c-crema-dim);
    margin-bottom: .5rem;
}
.promo-code-box__code {
    font-family: "Courier New", monospace;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: .18em;
    color: var(--c-dorado-luz);
    background: rgba(201,162,75,.12);
    border-radius: 6px;
    padding: .4rem 1rem;
    display: inline-block;
    margin-bottom: .7rem;
}
.promo-code-box__copy {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .82rem;
    font-family: var(--f-body);
    font-weight: 600;
    color: var(--c-dorado-luz);
    background: transparent;
    border: 1px solid rgba(201,162,75,.4);
    border-radius: 4px;
    padding: .35rem .8rem;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.promo-code-box__copy:hover { background: var(--c-dorado); color: var(--c-noche); }
.promo-code-box__copy.copied { background: #25D366; color: #fff; border-color: #25D366; }

/* CTA WhatsApp del modal */
.btn-promo-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    width: 100%;
    margin-top: 1rem;
    background: #25D366;
    color: #0b3318;
    font-family: var(--f-body);
    font-weight: 800;
    font-size: clamp(.95rem, 2.5vw, 1.1rem);
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 24px -6px rgba(37,211,102,.5);
    transition: background .2s, transform .2s, box-shadow .2s;
    animation: promo-pulse-wa 2s ease-in-out infinite;
}
.btn-promo-wa:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -6px rgba(37,211,102,.7);
    animation-play-state: paused;
}
@keyframes promo-pulse-wa {
    0%, 100% { box-shadow: 0 8px 24px -6px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); }
    50%       { box-shadow: 0 8px 24px -6px rgba(37,211,102,.5), 0 0 0 8px rgba(37,211,102,0); }
}

.promo-modal__disclaimer {
    font-size: .75rem;
    color: rgba(242,232,214,.45);
    text-align: center;
    margin: .6rem 0 0;
    line-height: 1.5;
}

/* Cuando el timer expira */
.promo-timer.is-expired .promo-timer__num { color: #ff4444; }
.promo-overlay.is-expired .promo-modal__header {
    background: linear-gradient(135deg, #3a3a3a, #555);
}

@media (max-width: 480px) {
    .promo-modal { max-height: 95svh; }
    .promo-modal__header { padding: 1.4rem 1.2rem 1.1rem; }
    .promo-modal__body { padding: 1.2rem 1.2rem 1.6rem; }
    .promo-timer__num { font-size: 1.8rem; }
    .promo-mega-price__each { font-size: 1.8rem; }
}
