/* ══════════════════════════════════════════
   VARIABLES
══════════════════════════════════════════ */

:root {
  --pink:    #ff2d78;
  --cyan:    #00e5ff;
  --purple:  #8b1fe0;
  --orange:  #ff7b00;
  --yellow:  #ffe033;

  --bg:      #060810;
  --bg2:     #0b0d1a;
  --bg3:     #101224;
  --card:    #141728;
  --card2:   #1a1d32;

  --text:    #f0f2ff;
  --muted:   #6a6f90;

  --success: #00e5a0;
  --danger:  #ff2d55;
  --warn:    #ffaa00;

  --border:  rgba(255,45,120,.18);
  --r:       12px;
  --r-sm:    7px;

  --glow-p:  0 0 28px rgba(255,45,120,.5);
  --glow-c:  0 0 28px rgba(0,229,255,.45);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 2px; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  background: url('/img/web/img4-jason.jpg') center 28%/cover no-repeat;
  transform: scale(1.1);
  will-change: transform;
  transition: transform .05s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,8,16,.55)  0%,
    rgba(6,8,16,.68) 40%,
    rgba(6,8,16,.9) 80%,
    rgba(6,8,16,1)   100%
  );
}

.hero-title-wrap {
  display: grid;
  justify-items: center;
  gap: .35rem;
}
.hero-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(.72rem, 1.4vw, .9rem);
  font-weight: 700;
  letter-spacing: .42em;
  color: rgba(255,255,255,.72);
  padding-left: .42em;
}
.hero-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(4rem, 13vw, 9rem);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .82;
  color: #fff;
  text-shadow: 0 14px 50px rgba(0,0,0,.55);
}
.hero-title span {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.92);
  text-shadow: none;
}

/* Topbar */
.topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  z-index: 10;
  background: linear-gradient(180deg, rgba(6,8,16,.7), transparent);
}
.topbar-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--pink);
  text-shadow: 0 0 10px var(--pink);
}
.topbar-links { display: flex; gap: 2rem; }
.topbar-links a {
  color: rgba(255,255,255,.65);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .15s;
}
.topbar-links a:hover { color: #fff; }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1rem;
  animation: hero-in 1.2s cubic-bezier(.22,1,.36,1) both;
}

@keyframes hero-in {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .25em;
  color: var(--pink);
  border: 1px solid rgba(255,45,120,.4);
  padding: .28rem 1rem;
  border-radius: 2px;
  text-shadow: 0 0 10px var(--pink);
  animation: blink 3s ease-in-out infinite;
}

@keyframes blink {
  0%,90%,100% { opacity: 1; }
  95% { opacity: .35; }
}

/* Logo GTA VI estilo */
.hero-game-logo {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  line-height: 1;
}

.logo-vi {
  font-family: 'Prosto One', cursive;
  font-size: clamp(6rem, 18vw, 12rem);
  background: linear-gradient(160deg, var(--pink) 0%, #ff8c00 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(255,45,120,.6));
  animation: pulse-vi 4s ease-in-out infinite;
}

@keyframes pulse-vi {
  0%,100% { filter: drop-shadow(0 0 30px rgba(255,45,120,.6)); }
  50%     { filter: drop-shadow(0 0 50px rgba(0,229,255,.7)); }
}

.logo-gta {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.logo-gta span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: lowercase;
  letter-spacing: -.02em;
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0,0,0,.5);
  line-height: .92;
}

.hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.hero-prize-info {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}

.prize-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: .4rem 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  backdrop-filter: blur(4px);
}
.pill-icon { color: var(--cyan); display: flex; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .18em;
  padding: .9rem 2.8rem;
  border-radius: 3px;
  text-decoration: none;
  box-shadow: var(--glow-p);
  transition: transform .2s, box-shadow .2s;
  clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 45px rgba(255,45,120,.7); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .18em;
  padding: .88rem 2.8rem;
  border-radius: 3px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.35);
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.3);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .65rem;
  letter-spacing: .18em;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.4));
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%     { transform: scaleY(.5); opacity: .4; }
}

/* ══════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════ */
.stats-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.2rem 2.5rem;
  gap: .15rem;
}
.stat-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: .03em;
}
.stat-lbl {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Mensaje central de rifa */
.raffle-trust {
  max-width: 1140px;
  margin: -70vh auto 0;
  padding: 5rem 1.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  position: relative;
  z-index: 5;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, rgba(16,18,36,.97), var(--bg) 78%);
  box-shadow: 0 -30px 80px rgba(0,0,0,.32);
}
.raffle-kicker {
  color: var(--pink);
  font: 700 .72rem/1 'Manrope', sans-serif;
  letter-spacing: .2em;
}
.raffle-trust h2 {
  margin-top: .7rem;
  font: 800 clamp(2rem, 4vw, 3.8rem)/1.04 'Manrope', sans-serif;
  letter-spacing: -.045em;
}
.raffle-trust-copy p {
  max-width: 580px;
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.7;
}
.raffle-trust-points {
  display: grid;
  gap: .75rem;
}
.raffle-trust-points div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
}
.raffle-trust-points strong {
  color: var(--cyan);
  font: 800 .8rem/1 'Manrope', sans-serif;
}
.raffle-trust-points span { font-weight: 600; }

/* ══════════════════════════════════════════
   VIDEO SCRUB POR SCROLL
══════════════════════════════════════════ */
.scroll-film {
  position: relative;
  height: 320vh;
  background: #05060a;
}
.scroll-film-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #090b12 url('/img/web/img2-club.jpg') center/cover no-repeat;
  transform-origin: center;
  will-change: opacity, transform;
}
.scroll-film video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: brightness(.58) saturate(.88) contrast(1.04);
}
.scroll-film-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,6,10,.84) 0%, rgba(5,6,10,.3) 47%, rgba(5,6,10,.36) 100%),
    linear-gradient(180deg, rgba(5,6,10,.18), transparent 55%, rgba(5,6,10,.88));
}
.scroll-film-copy {
  position: absolute;
  z-index: 2;
  left: max(6vw, 1.5rem);
  bottom: 12vh;
  max-width: 620px;
  opacity: calc(1 - var(--film-exit, 0));
  transform: translateY(calc(var(--film-exit, 0) * -24px));
}
.scroll-film-copy span {
  color: var(--pink);
  font: 700 .74rem/1 'Manrope', sans-serif;
  letter-spacing: .28em;
}
.scroll-film-copy h2 {
  margin-top: .75rem;
  font: 800 clamp(2.4rem, 6vw, 5.5rem)/.98 'Manrope', sans-serif;
  letter-spacing: -.045em;
}
.scroll-film-copy p {
  margin-top: 1rem;
  color: rgba(255,255,255,.68);
  font-size: .9rem;
}
.scroll-progress {
  position: absolute;
  z-index: 3;
  left: 6vw;
  right: 6vw;
  bottom: 2.5rem;
  height: 2px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}
.scroll-progress span {
  display: block;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}
.scroll-film.video-missing::after {
  content: 'Añade el clip en public/video/gta6-scroll.mp4';
  position: absolute;
  z-index: 4;
  right: 1rem;
  bottom: 1rem;
  color: rgba(255,255,255,.46);
  font-size: .68rem;
}
.video-unlock {
  display: none;
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  gap: .7rem;
  padding: .78rem 1.05rem;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: rgba(7,9,16,.78);
  backdrop-filter: blur(12px);
  color: #fff;
  font: 750 .72rem/1 'Manrope', sans-serif;
  letter-spacing: .09em;
  cursor: pointer;
  box-shadow: 0 16px 50px rgba(0,0,0,.35);
}
.needs-video-unlock .video-unlock { display: flex; }
.video-unlock-icon {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  padding-left: 2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

/* ══════════════════════════════════════════
   GALERIA
══════════════════════════════════════════ */
.gallery-section {
  position: relative;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
  background: #000;
}

.gallery-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(4,6,12,.68) 0%, rgba(4,6,12,.25) 48%, rgba(4,6,12,.38) 100%),
              linear-gradient(180deg, rgba(4,6,12,.18), rgba(4,6,12,.55));
}

.gallery-track { position: relative; width: 100%; height: 100%; }

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.gallery-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center 38%;
  filter: brightness(.7) saturate(.86);
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.gallery-slide:nth-child(2) .slide-img { background-position: center 42%; }
.gallery-slide:nth-child(3) .slide-img { background-position: center 35%; }
.gallery-slide:nth-child(4) .slide-img { background-position: center 24%; }
.gallery-slide:nth-child(5) .slide-img { background-position: center 44%; }
.gallery-slide:nth-child(6) .slide-img { background-position: center 28%; }
.gallery-slide.active .slide-img { transform: scale(1); }

.slide-caption {
  position: absolute;
  bottom: 4rem;
  left: 4rem;
  color: #fff;
  z-index: 4;
  animation: caption-in .6s .3s both;
}
.gallery-slide:not(.active) .slide-caption { animation: none; opacity: 0; }

@keyframes caption-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.caption-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--pink);
  display: block;
  margin-bottom: .4rem;
}
.slide-caption p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: .06em;
  text-shadow: 0 2px 12px rgba(0,0,0,.8);
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(4px);
  transition: background .15s, border-color .15s;
}
.gallery-btn:hover { background: rgba(255,45,120,.3); border-color: var(--pink); }
.gallery-prev { left: 1.5rem; }
.gallery-next { right: 1.5rem; }

.gallery-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  gap: .5rem;
  z-index: 5;
}
.gdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.gdot.active { background: var(--pink); transform: scale(1.4); box-shadow: 0 0 8px var(--pink); }

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section       { padding: 6rem 1rem; }
.section-dark  { background: var(--bg2); }
.container     { max-width: 1140px; margin: 0 auto; }

.section-head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 3rem;
  justify-content: center;
}
.sh-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink));
}
.sh-line:last-child { background: linear-gradient(90deg, var(--pink), transparent); }
.sh-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: .18em;
  white-space: nowrap;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 2rem;
  margin-top: -2rem;
}

/* ══════════════════════════════════════════
   PREMIO
══════════════════════════════════════════ */
.premio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.premio-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.premio-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
}

.premio-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--pink);
  padding: 1.2rem 1.5rem .5rem;
}

.premio-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.premio-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center 30%;
  filter: brightness(.72) saturate(.88);
  transition: transform .6s ease;
}
.premio-card:hover .premio-img { transform: scale(1.04); }
.premio-img-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--card) 100%);
}

.premio-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 1.2rem 1.5rem .5rem;
}
.premio-desc {
  padding: 0 1.5rem 1rem;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.65;
}
.presale-notice {
  margin: 0 1.5rem 1.15rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(255,224,51,.24);
  border-left: 3px solid var(--yellow);
  border-radius: 8px;
  background: rgba(255,224,51,.055);
}
.presale-notice strong {
  color: var(--yellow);
  font-size: .78rem;
}
.presale-notice p {
  margin-top: .35rem;
  color: rgba(240,242,255,.72);
  font-size: .76rem;
  line-height: 1.55;
}
.premio-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding: 0 1.5rem 1.5rem;
}
.platform-tag {
  background: rgba(0,229,255,.08);
  border: 1px solid rgba(0,229,255,.25);
  color: var(--cyan);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .2rem .65rem;
  border-radius: 3px;
}

/* Como ganar */
.como-ganar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
}
.cg-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--pink);
  margin-bottom: 1.5rem;
}
.cg-steps { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.cg-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cg-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--pink);
  opacity: .3;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}
.cg-step strong { font-size: .9rem; display: block; margin-bottom: .2rem; }
.cg-step p { font-size: .82rem; color: var(--muted); line-height: 1.5; }

.sorteo-aviso {
  display: flex;
  gap: .75rem;
  background: rgba(255,45,120,.07);
  border: 1px solid rgba(255,45,120,.25);
  border-left: 3px solid var(--pink);
  border-radius: var(--r-sm);
  padding: .9rem 1rem;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.55;
  align-items: flex-start;
}
.sorteo-aviso strong { color: var(--text); }

/* ══════════════════════════════════════════
   BOLETOS
══════════════════════════════════════════ */
.boletos-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.leyenda { display: flex; flex-wrap: wrap; gap: 1rem; }
.ley-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.dot {
  width: 11px; height: 11px;
  border-radius: 2px;
  flex-shrink: 0;
}
.dot-libre       { background: var(--card2); border: 1px solid rgba(255,255,255,.2); }
.dot-seleccionado { background: var(--pink); box-shadow: 0 0 6px var(--pink); }
.dot-revision    { background: var(--warn); }
.dot-vendido     { background: rgba(255,45,85,.5); }

.quick-pick { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.qp-label {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.btn-qp {
  background: var(--card2);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .32rem .75rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all .15s;
}
.btn-qp:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-qp-clear { border-color: rgba(255,45,85,.35); color: var(--danger); }
.btn-qp-clear:hover { background: rgba(255,45,85,.12); border-color: var(--danger); }

/* Barra de progreso */
.boletos-progreso {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.bp-track {
  flex: 1;
  height: 4px;
  background: var(--card2);
  border-radius: 999px;
  overflow: hidden;
}
.bp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  border-radius: 999px;
  transition: width .5s ease;
  width: 0%;
}
.bp-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--muted);
  white-space: nowrap;
}

/* Grid boletos */
.boletos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: .5rem;
  margin-bottom: 6rem;
}

.boleto {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .13s;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.boleto-libre {
  background: var(--card);
  border-color: rgba(255,255,255,.1);
  color: var(--text);
}
.boleto-libre:hover {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 14px rgba(255,45,120,.35);
  transform: scale(1.1);
}
.boleto-seleccionado {
  background: rgba(255,45,120,.2);
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 14px rgba(255,45,120,.4);
  transform: scale(1.06);
}
.boleto-revision,
.boleto-en_revision {
  background: rgba(255,190,46,.2);
  border-color: rgba(255,190,46,.72);
  color: #ffd86b;
  box-shadow: inset 0 0 18px rgba(255,170,0,.08);
  cursor: not-allowed;
}
.boleto-pendiente_efectivo {
  background: rgba(255,190,46,.2);
  border-color: rgba(255,190,46,.72);
  color: #ffd86b;
  cursor: not-allowed;
}
.boleto-vendido {
  background: #080808;
  border-color: rgba(255,55,55,.72);
  color: rgba(255,255,255,.25);
  cursor: not-allowed;
}
.boleto-vendido .boleto-num {
  opacity: .16;
  text-decoration: line-through;
  transform: translateY(-10px);
}
.boleto-num { transition: opacity .2s, transform .2s; }
.boleto-en_revision .boleto-num,
.boleto-pendiente_efectivo .boleto-num { transform: translateY(-9px); }
.boleto-review,
.boleto-wasted {
  position: absolute;
  left: 50%;
  top: 65%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-weight: 900;
  line-height: 1;
}
.boleto-review {
  color: #ffd34f;
  font-family: 'Manrope', sans-serif !important;
  font-size: clamp(.38rem, .58vw, .48rem);
  letter-spacing: -.015em;
  text-shadow: 0 1px 8px rgba(255,190,46,.4);
}
.boleto-wasted {
  transform: translate(-50%, -50%) rotate(-4deg);
  color: #f13b3b;
  font-family: Impact, 'Arial Black', sans-serif !important;
  font-size: clamp(.56rem, .92vw, .76rem);
  letter-spacing: -.045em;
  text-transform: lowercase;
  text-shadow: 0 1px 10px rgba(241,59,59,.7);
}

/* Carrito flotante */
.carrito {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg3);
  border: 1px solid var(--pink);
  border-radius: 5px;
  box-shadow: var(--glow-p), 0 12px 40px rgba(0,0,0,.6);
  padding: .8rem 1rem .8rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 300;
  animation: pop .3s cubic-bezier(.175,.885,.32,1.275);
  white-space: nowrap;
  max-width: calc(100vw - 2rem);
}
@keyframes pop {
  from { transform: translateX(-50%) scale(.85); opacity: 0; }
  to   { transform: translateX(-50%) scale(1);   opacity: 1; }
}
.carrito-left { display: flex; flex-direction: column; gap: .2rem; }
.carrito-nums { display: flex; flex-wrap: wrap; gap: .25rem; max-width: 300px; }
.carrito-meta { display: flex; align-items: center; gap: .5rem; font-size: .8rem; }
.carrito-sep  { color: var(--muted); }
.carrito-total { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 800; color: var(--cyan); }
.btn-carrito {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border: none;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .15em;
  padding: .6rem 1.4rem;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity .15s, box-shadow .15s;
  clip-path: polygon(5px 0%,100% 0%,calc(100% - 5px) 100%,0% 100%);
}
.btn-carrito:hover { opacity: .88; box-shadow: var(--glow-p); }

/* ══════════════════════════════════════════
   METODOS PAGO
══════════════════════════════════════════ */
.metodos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.metodo-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.metodo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
}
.mc-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,45,120,.35);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
  margin-bottom: 1rem;
}
.metodo-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .15em;
  margin-bottom: 1rem;
}
.mc-desc { color: var(--muted); font-size: .88rem; line-height: 1.6; margin-bottom: 1.5rem; }

.cuenta-info { margin-bottom: 1.25rem; }
.cuenta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .88rem;
}
.cuenta-row:last-child { border-bottom: none; }
.cuenta-label { color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.cuenta-val   { font-weight: 600; }
.copiable { color: var(--cyan); cursor: pointer; border-bottom: 1px dashed rgba(0,229,255,.35); }
.copiable:hover { color: #fff; }

.concepto-aviso {
  background: rgba(255,170,0,.07);
  border: 1px solid rgba(255,170,0,.25);
  border-left: 3px solid var(--warn);
  border-radius: var(--r-sm);
  padding: .8rem 1rem;
  font-size: .83rem;
  line-height: 1.55;
}
.concepto-aviso strong { color: var(--warn); display: block; margin-bottom: .2rem; }
.concepto-aviso p { color: var(--muted); }

.ef-steps { display: flex; flex-direction: column; gap: .6rem; }
.ef-step {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .87rem;
  color: var(--muted);
}
.ef-step span {
  width: 20px; height: 20px;
  border: 1px solid var(--cyan);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   MODAL
══════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.active { display: flex; }

.modal {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--pink);
  border-radius: var(--r);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: var(--glow-p), 0 25px 70px rgba(0,0,0,.7);
  animation: modal-in .25s cubic-bezier(.175,.885,.32,1.275);
}
@keyframes modal-in {
  from { transform: scale(.93) translateY(24px); opacity: 0; }
  to   { transform: scale(1)   translateY(0);    opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,45,120,.1);
  border: 1px solid rgba(255,45,120,.3);
  color: var(--pink);
  width: 28px; height: 28px;
  border-radius: 3px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.modal-close:hover { background: rgba(255,45,120,.3); }

.modal-back {
  background: none;
  border: none;
  color: var(--cyan);
  font-family: 'Barlow', sans-serif;
  font-size: .82rem;
  cursor: pointer;
  margin-bottom: 1rem;
  padding: 0;
}
.modal-back:hover { text-decoration: underline; }

.modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .12em;
  margin-bottom: .25rem;
}
.modal-sub { color: var(--muted); font-size: .82rem; margin-bottom: 1.4rem; }
.hidden { display: none !important; }

/* Chips */
.resumen-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .28rem;
  margin-bottom: 1.2rem;
  min-height: 26px;
}
.chip {
  background: rgba(255,45,120,.14);
  border: 1px solid rgba(255,45,120,.35);
  color: var(--pink);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .15rem .45rem;
  border-radius: 3px;
}

/* Form */
.fgroup { margin-bottom: 1.15rem; }
.fgroup label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: .38rem;
}
.fgroup input[type="text"],
.fgroup input[type="tel"] {
  width: 100%;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: .92rem;
  padding: .62rem .9rem;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.fgroup input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255,45,120,.15); }

.phone-row { display: flex; gap: .5rem; align-items: center; }
.phone-pre {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  padding: .62rem .7rem;
  font-size: .82rem;
  color: var(--muted);
  white-space: nowrap;
}
.phone-row input { flex: 1; }

.qty-row { display: flex; align-items: center; gap: .6rem; margin-top: .35rem; }
.btn-qty {
  width: 30px; height: 30px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--cyan);
  font-size: 1rem;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.btn-qty:hover { background: rgba(0,229,255,.1); }
#qty-num { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800; min-width: 20px; text-align: center; }
.qty-extra-price { color: var(--cyan); font-size: .82rem; font-weight: 600; }
.qty-hint { font-size: .7rem; color: var(--muted); margin-top: .35rem; }

.precio-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .9rem 1rem;
  margin-bottom: 1.4rem;
}
.pb-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  padding: .25rem 0;
  color: var(--muted);
}
.pb-total {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--cyan);
  border-top: 1px solid var(--border);
  margin-top: .3rem;
  padding-top: .55rem;
}

.precio-mini {
  background: rgba(255,45,120,.06);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .5rem .9rem;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

/* Método opciones */
.metodo-opts { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.2rem; }
.metodo-opt { cursor: pointer; }
.metodo-opt input { display: none; }
.mo-body {
  display: flex;
  align-items: center;
  gap: .85rem;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-sm);
  padding: .75rem 1rem;
  transition: all .15s;
}
.metodo-opt input:checked + .mo-body {
  border-color: var(--pink);
  background: rgba(255,45,120,.07);
  box-shadow: 0 0 0 2px rgba(255,45,120,.18);
}
.mo-icon-w {
  width: 30px; height: 30px;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
}
.mo-body strong { font-size: .88rem; display: block; }
.mo-body small  { color: var(--muted); font-size: .74rem; }

/* Datos banco */
.banco-rows {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .85rem;
  margin-bottom: .85rem;
}
.banco-row {
  display: flex;
  justify-content: space-between;
  font-size: .83rem;
  padding: .35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.banco-row:last-child { border-bottom: none; }
.banco-lbl { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; }
.banco-val { font-weight: 600; }

.aviso-sm { font-size: .78rem; padding: .55rem .8rem; margin-bottom: .85rem; gap: .45rem; }
.aviso-sm p { color: var(--muted); }

/* Upload */
.upload-zone { margin-bottom: 1.2rem; }
.upload-lbl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .38rem;
  border: 1px dashed rgba(0,229,255,.28);
  border-radius: var(--r-sm);
  padding: 1.3rem;
  cursor: pointer;
  text-align: center;
  transition: border-color .15s, background .15s;
  color: var(--muted);
}
.upload-lbl:hover { border-color: var(--cyan); background: rgba(0,229,255,.04); }
.upload-lbl svg { color: var(--cyan); }
.upload-lbl span { font-size: .87rem; font-weight: 600; color: var(--text); }
.upload-lbl small { font-size: .73rem; }

.comp-preview {
  margin-top: .6rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: var(--card);
  border: 1px solid rgba(0,229,255,.3);
  border-radius: var(--r-sm);
  padding: .5rem .9rem;
  font-size: .82rem;
}
.prev-img { width: 42px; height: 42px; object-fit: cover; border-radius: 4px; }
.prev-name { font-weight: 600; word-break: break-all; }
.prev-actions { margin-left: auto; display: grid; justify-items: end; gap: .25rem; }
.prev-ok { color: var(--success); font-size: .68rem; font-weight: 800; }
.btn-replace-file {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--cyan);
  font-size: .7rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.efectivo-note {
  background: rgba(0,229,255,.05);
  border: 1px solid rgba(0,229,255,.22);
  border-left: 3px solid var(--cyan);
  border-radius: var(--r-sm);
  padding: .8rem 1rem;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.55;
}
.efectivo-note strong { color: var(--text); }

/* Botón */
.btn-next {
  width: 100%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  border: none;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: .15em;
  padding: .88rem;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: opacity .15s, box-shadow .15s;
  clip-path: polygon(5px 0%,100% 0%,calc(100% - 5px) 100%,0% 100%);
}
.btn-next:hover    { opacity: .9; box-shadow: var(--glow-p); }
.btn-next:disabled { opacity: .35; cursor: not-allowed; }

/* Confirmacion */
.conf-wrap { text-align: center; padding: .5rem 0; }
.conf-circle {
  width: 68px; height: 68px;
  border: 2px solid var(--pink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: var(--glow-p);
  color: var(--pink);
}
.conf-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .1em;
  margin-bottom: .4rem;
}
.conf-sub { color: var(--muted); font-size: .87rem; line-height: 1.6; margin-bottom: 1.4rem; }
.conf-chips { display: flex; flex-wrap: wrap; gap: .28rem; justify-content: center; margin-bottom: 1.2rem; }
.conf-badge {
  display: inline-block;
  border: 1px solid rgba(255,170,0,.35);
  color: var(--warn);
  background: rgba(255,170,0,.07);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .28rem .9rem;
  border-radius: 3px;
  margin-bottom: 1.2rem;
}
.conf-id {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .6rem .9rem;
  font-size: .7rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  word-break: break-all;
  text-align: left;
}
.btn-close-conf {
  background: var(--card2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .62rem 2rem;
  border-radius: 3px;
  cursor: pointer;
  transition: border-color .15s;
}
.btn-close-conf:hover { border-color: var(--pink); }

/* ══════════════════════════════════════════
   TOAST
══════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: .5rem 1.3rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  white-space: nowrap;
}
.toast.show    { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { border-color: var(--success); color: var(--success); }
.toast.error   { border-color: var(--danger);  color: var(--danger);  }

/* ══════════════════════════════════════════
   CONSULTA DE BOLETOS
══════════════════════════════════════════ */
.consulta-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(255,45,120,.12), transparent 38%),
    radial-gradient(circle at 85% 80%, rgba(0,229,255,.09), transparent 40%),
    var(--bg2);
  border-block: 1px solid var(--border);
}
.consulta-layout { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: 4rem; align-items: center; }
.consulta-copy h2 { margin: .65rem 0 1rem; font: 800 clamp(2rem,4vw,3.5rem)/1.02 'Manrope',sans-serif; letter-spacing: -.055em; }
.consulta-copy > p { max-width: 560px; color: var(--muted); line-height: 1.7; }
.consulta-form { display: flex; gap: .7rem; margin-top: 1.6rem; }
.consulta-phone { flex: 1; min-width: 0; display: flex; align-items: center; border: 1px solid var(--border); border-radius: 10px; background: rgba(255,255,255,.04); overflow: hidden; }
.consulta-phone:focus-within { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,229,255,.1); }
.consulta-phone span { padding: 0 .85rem; color: var(--cyan); font-weight: 700; border-right: 1px solid var(--border); }
.consulta-phone input { min-width: 0; width: 100%; padding: .95rem; border: 0; outline: 0; background: transparent; color: #fff; font-size: 1rem; }
.btn-consulta,.btn-descargar { border: 0; border-radius: 9px; background: linear-gradient(135deg,var(--pink),#ff6a45); color: #fff; font: 800 .72rem/1 'Manrope',sans-serif; letter-spacing: .08em; padding: 0 1.25rem; cursor: pointer; }
.btn-consulta:disabled { opacity: .55; cursor: wait; }
.reservation-expiry-note { max-width: 760px; margin: 0 auto 1.25rem; padding: .9rem 1rem; display: flex; align-items: center; justify-content: center; gap: .7rem; border: 1px solid rgba(255,211,90,.3); border-radius: 12px; background: rgba(255,211,90,.07); color: #e9e3d0; font-size: .8rem; line-height: 1.45; text-align: left; }
.reservation-expiry-note > strong { flex-shrink: 0; color: #ffd35a; font: 800 .65rem 'Manrope',sans-serif; letter-spacing: .08em; }
.reservation-expiry-note b { color: #ffd35a; }
.consulta-privacy { margin-top: .75rem; font-size: .72rem; }
.consulta-results { display: flex; flex-direction: column; gap: .8rem; min-height: 220px; }
.consulta-empty { min-height: 220px; display: grid; place-content: center; justify-items: center; gap: .7rem; text-align: center; border: 1px dashed rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.025); color: var(--muted); }
.consulta-empty span { display: grid; place-items: center; width: 64px; height: 64px; border: 1px solid rgba(0,229,255,.3); border-radius: 50%; color: var(--cyan); font: 800 1.2rem 'Manrope',sans-serif; }
.consulta-empty p { max-width: 300px; line-height: 1.5; }
.consulta-card { padding: 1.25rem; border: 1px solid var(--border); border-radius: 14px; background: rgba(10,12,25,.88); box-shadow: 0 16px 45px rgba(0,0,0,.2); }
.consulta-card-head,.consulta-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.consulta-card-head small,.consulta-card-foot small { display: block; color: var(--muted); font-size: .68rem; letter-spacing: .08em; }
.consulta-card-head h3 { margin-top: .25rem; font-size: 1rem; }
.consulta-status { flex-shrink: 0; padding: .45rem .65rem; border-radius: 999px; font: 800 .57rem 'Manrope',sans-serif; letter-spacing: .05em; }
.consulta-status.confirmado { color: #45e59a; background: rgba(69,229,154,.11); border: 1px solid rgba(69,229,154,.3); }
.consulta-status.pendiente { color: #ffd35a; background: rgba(255,211,90,.1); border: 1px solid rgba(255,211,90,.28); }
.consulta-status.cancelado { color: #ff6577; background: rgba(255,101,119,.1); border: 1px solid rgba(255,101,119,.28); }
.consulta-numeros { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1rem 0; }
.consulta-numeros span { padding: .42rem .55rem; border-radius: 6px; background: rgba(0,229,255,.09); color: var(--cyan); font: 800 .77rem 'Manrope',sans-serif; }
.consulta-card-foot { padding-top: 1rem; border-top: 1px solid var(--border); }
.consulta-card-foot strong { display: block; margin-bottom: .25rem; font-size: .8rem; }
.btn-descargar { min-height: 40px; padding-inline: .9rem; background: rgba(255,255,255,.08); border: 1px solid var(--border); }
.btn-descargar:hover { border-color: var(--cyan); color: var(--cyan); }
.turnstile-container { display: none; justify-content: center; margin: 1rem 0; min-height: 65px; }

/* ══════════════════════════════════════════
   TRANSMISIÓN EN VIVO
══════════════════════════════════════════ */
.live-event { padding: 1rem; background: var(--bg); }
.live-event-inner { max-width: 1140px; margin: 0 auto; padding: 2rem; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.25rem; border: 1px solid rgba(255,45,120,.25); border-radius: 18px; background: linear-gradient(135deg,rgba(255,45,120,.1),rgba(0,229,255,.05)); }
.live-dot { width: 14px; height: 14px; border-radius: 50%; background: #ff3d62; box-shadow: 0 0 0 7px rgba(255,61,98,.12),0 0 24px #ff3d62; animation: live-pulse 1.2s ease-in-out infinite alternate; }
@keyframes live-pulse { to { opacity: .45; transform: scale(.8); } }
.live-copy h2 { margin: .35rem 0; font: 800 clamp(1.35rem,3vw,2.2rem)/1.08 'Manrope',sans-serif; letter-spacing: -.04em; }
.live-copy p { color: var(--muted); }
.live-countdown { margin-top: .75rem; color: var(--cyan); font: 800 1rem 'Manrope',sans-serif; letter-spacing: .08em; }
.live-links { display: flex; gap: .6rem; flex-wrap: wrap; }
.btn-live { padding: .8rem 1rem; border: 1px solid rgba(60,120,255,.4); border-radius: 8px; background: rgba(60,120,255,.13); color: #8ab4ff; text-decoration: none; font-size: .72rem; font-weight: 800; }
.btn-live.alt { border-color: rgba(255,45,120,.4); background: rgba(255,45,120,.1); color: var(--pink); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 1rem 1.5rem;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .2em;
  color: var(--pink);
  text-shadow: 0 0 12px rgba(255,45,120,.4);
  margin-bottom: .75rem;
}
.footer-aviso {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 480px;
}
.footer-aviso strong { color: var(--text); }

.social-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--muted);
  margin-bottom: .75rem;
}
.social-btns { display: flex; flex-direction: column; gap: .6rem; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem 1.1rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  transition: transform .15s, box-shadow .15s;
  border: 1px solid transparent;
}
.social-btn:hover { transform: translateX(4px); }

.social-fb {
  background: rgba(24,119,242,.15);
  border-color: rgba(24,119,242,.4);
  color: #4a9ff5;
}
.social-fb:hover { box-shadow: 0 0 16px rgba(24,119,242,.4); }

.social-ig {
  background: rgba(255,45,120,.1);
  border-color: rgba(255,45,120,.35);
  color: var(--pink);
}
.social-ig:hover { box-shadow: var(--glow-p); }

.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: .72rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: .06em;
}

/* Tipografia unificada: limpia, amable y legible */
body [class] { font-family: 'Inter', system-ui, -apple-system, sans-serif; }
.hero-title,
.scroll-film-copy h2,
.sh-title,
.premio-name,
.cg-title,
.modal-title,
.footer-logo,
.stat-val,
.btn-primary,
.btn-outline,
.btn-carrito,
.btn-next {
  font-family: 'Manrope', 'Inter', sans-serif;
}
.sh-title,
.premio-name,
.cg-title,
.modal-title { letter-spacing: -.02em; }
.topbar-logo,
.hero-badge,
.caption-num,
.premio-tag,
.social-label { letter-spacing: .14em; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 800px) {
  .hero { min-height: 680px; height: 100svh; }
  .hero-title { font-size: clamp(2.75rem, 11vw, 5rem); letter-spacing: -.065em; white-space: nowrap; }
  .hero-content { gap: 1.15rem; width: 100%; max-width: 100vw; }
  .hero-prize-info { width: calc(100% - 2rem); max-width: 600px; }
  .raffle-trust {
    width: calc(100% - 1rem);
    grid-template-columns: 1fr;
    margin-top: -60svh;
    padding-block: 4rem;
    gap: 2rem;
  }
  .scroll-film { height: 260svh; }
  .scroll-film-sticky { height: 100svh; }
  .scroll-film video { object-position: 55% center; }
  .scroll-film-copy { bottom: 13vh; max-width: calc(100vw - 3rem); }
  .gallery-section { height: 58svh; min-height: 420px; }
  .premio-grid { grid-template-columns: 1fr; }
  .consulta-layout { grid-template-columns: 1fr; gap: 2rem; }
  .slide-caption { left: 1.5rem; bottom: 3rem; }
  .topbar-links { display: none; }
  .section { padding: 4.5rem 1rem; }
  .modal { max-height: calc(100svh - 1rem); overflow-y: auto; }
}
@media (max-width: 580px) {
  .topbar { padding: 1rem 1.1rem; }
  .hero-badge { font-size: .62rem; letter-spacing: .1em; }
  .hero-title { font-size: clamp(2.3rem, 9.4vw, 3.2rem); }
  .hero-tagline {
    width: calc(100% - 3rem);
    max-width: 340px;
    padding-inline: 0;
    font-size: .78rem;
    line-height: 1.5;
    letter-spacing: .045em;
    white-space: normal;
  }
  .prize-pill { width: 100%; justify-content: center; font-size: .74rem; }
  .hero-actions { width: min(100%, 320px); }
  .hero-actions a { width: 100%; text-align: center; }
  .raffle-trust { padding: 3.5rem 1rem; }
  .raffle-trust { margin-top: -55svh; }
  .raffle-trust-points div { padding: .85rem; }
  .scroll-film { height: 230svh; }
  .scroll-film-copy h2 { font-size: clamp(2.25rem, 12vw, 3.6rem); }
  .scroll-film-copy p { font-size: .78rem; }
  .scroll-progress { left: 1.5rem; right: 1.5rem; bottom: 1.5rem; }
  .stats-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 1.5rem 1rem;
    gap: 1.5rem .75rem;
  }
  .stat-sep { display: none; }
  .boletos-toolbar { align-items: flex-start; }
  .leyenda { gap: .65rem; }
  .boletos-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .38rem; }
  .boleto { font-size: .82rem; border-radius: 7px; }
  .boleto-wasted { font-size: .58rem; }
  .boleto-review { font-size: .34rem; }
  .carrito { border-radius: var(--r); max-width: calc(100vw - 1rem); width: calc(100vw - 1rem); }
  .carrito-nums { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .metodos-grid { grid-template-columns: 1fr; }
  .consulta-form,.consulta-card-foot { align-items: stretch; flex-direction: column; }
  .reservation-expiry-note { align-items: flex-start; flex-direction: column; }
  .btn-consulta { min-height: 48px; }
  .consulta-card-head { align-items: flex-start; flex-direction: column; }
  .footer-inner { flex-direction: column; }
  .live-event-inner { grid-template-columns: auto 1fr; padding: 1.35rem; }
  .live-links { grid-column: 1 / -1; }
}

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