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

:root {
  --bg:       #04050f;
  --bg-2:     #080b1a;
  --bg-card:  #0b0d20;
  --bg-card2: #0e1128;
  --ink:      #f0f2ff;
  --ink-soft: #a0a8cc;
  --ink-mute: #3a3f6a;
  --ar:       #74ACDF;
  --ar-glow:  rgba(116,172,223,.25);
  --br:       #009C3B;
  --br-glow:  rgba(0,156,59,.25);
  --gold:     #F6B40E;
  --gold-dim: rgba(246,180,14,.15);
  --line:     rgba(255,255,255,.06);
  --radius:   14px;
  --ease-out: cubic-bezier(.16,1,.3,1);
}

html { overflow-x: clip; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; }

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

/* ── SPLASH ──────────────────────────────────────────────────── */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  animation: splashSafety .01s 4s forwards;
}
@keyframes splashSafety { to { opacity: 0; pointer-events: none; } }
.splash.is-out { opacity: 0; pointer-events: none; transition: opacity .6s var(--ease-out); }

.splash-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -2px;
  color: var(--ink);
}
.splash-logo span { color: var(--gold); }

.splash-bar {
  margin-top: 24px;
  width: 160px; height: 2px;
  background: var(--ink-mute);
  border-radius: 2px;
  overflow: hidden;
}
.splash-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ar), var(--gold));
  animation: splashLoad 1.8s var(--ease-out) forwards;
}
@keyframes splashLoad { from { width: 0 } to { width: 100% } }

/* ── CUSTOM CURSOR ───────────────────────────────────────────── */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9000; }
.cursor-dot {
  position: fixed; width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: transform .1s;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1.5px solid rgba(246,180,14,.5);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: transform .18s var(--ease-out), width .25s, height .25s, opacity .25s;
  opacity: 0;
}
.cursor.is-ready .cursor-ring { opacity: 1; }
.cursor.is-hover .cursor-ring { width: 56px; height: 56px; border-color: var(--ar); opacity: .7; }

@media (hover: none) { .cursor { display: none; } }

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: background .4s, backdrop-filter .4s, padding .4s, box-shadow .4s;
}
.nav.scrolled {
  background: rgba(4,5,15,.85);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  letter-spacing: -1px; color: var(--ink);
  margin-right: auto;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--ink-soft); transition: color .25s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: .875rem; font-weight: 700;
  background: var(--gold); color: #000;
  padding: 9px 20px; border-radius: 8px;
  transition: opacity .25s, transform .2s;
}
.nav-cta:hover { opacity: .9; transform: translateY(-1px); }

@media (max-width: 768px) { .nav-links { display: none; } }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  filter: brightness(.45) saturate(.7);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(4,5,15,.4) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(4,5,15,.2) 0%, rgba(4,5,15,.85) 100%);
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; opacity: .35;
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 860px; padding: 120px 32px 80px;
  text-align: center;
}

.hero-eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 28px;
  font-size: .85rem; font-weight: 600;
  color: var(--ink-soft); letter-spacing: 1px;
}
.badge-live {
  background: rgba(246,180,14,.15);
  border: 1px solid rgba(246,180,14,.3);
  color: var(--gold);
  padding: 4px 12px; border-radius: 20px;
  font-size: .8rem;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.6} }

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: .95;
  color: var(--ink);
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--ar) 0%, var(--gold) 50%, var(--ar) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer { to { background-position: 200% 0; } }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 500px; margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .75rem; letter-spacing: 2px; color: var(--ink-mute);
  text-transform: uppercase;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--ink-mute), transparent); animation: scrollBounce 2s infinite; }
@keyframes scrollBounce { 0%,100%{transform:scaleY(1)} 50%{transform:scaleY(.6)} }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 24px; border-radius: 12px;
  font-size: .95rem; font-weight: 700;
  letter-spacing: .3px;
  transition: transform .25s var(--ease-out), box-shadow .25s, opacity .25s;
  cursor: none;
}
.btn:hover { transform: translateY(-3px); }
.btn-ar {
  background: rgba(116,172,223,.12);
  border: 1.5px solid rgba(116,172,223,.3);
  color: var(--ar);
}
.btn-ar:hover { background: rgba(116,172,223,.2); box-shadow: 0 8px 32px var(--ar-glow); }
.btn-br {
  background: rgba(0,156,59,.12);
  border: 1.5px solid rgba(0,156,59,.3);
  color: var(--br);
}
.btn-br:hover { background: rgba(0,156,59,.2); box-shadow: 0 8px 32px var(--br-glow); }
.btn-large { padding: 18px 32px; font-size: 1.05rem; }
.btn-flag { font-size: 1.2rem; }
.btn-arrow { transition: transform .25s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ── TICKER ──────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(246,180,14,.04);
  padding: 14px 0;
}
.ticker-track {
  display: flex; gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 0 28px;
  font-size: .78rem; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--ink-soft);
}
.ticker-item::after { content: '·'; color: var(--gold); font-size: 1rem; }

/* ── STATS ───────────────────────────────────────────────────── */
.stats-section { padding: 60px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  background: var(--bg-card);
  padding: 36px 28px;
  text-align: center;
  transition: background .3s;
}
.stat-item:hover { background: var(--bg-card2); }
.stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .8rem; font-weight: 500;
  color: var(--ink-mute); letter-spacing: .5px;
  text-transform: uppercase;
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── SECTION COMMONS ─────────────────────────────────────────── */
.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; display: block;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -1.5px;
  line-height: 1.1; color: var(--ink);
  margin-bottom: 24px; text-wrap: balance;
}
.section-title.centered { text-align: center; }

/* ── ABOUT ───────────────────────────────────────────────────── */
.about-section { padding: 100px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-body {
  font-size: 1.05rem; color: var(--ink-soft);
  line-height: 1.75; margin-bottom: 16px;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag {
  background: var(--gold-dim); border: 1px solid rgba(246,180,14,.2);
  color: var(--gold); font-size: .78rem; font-weight: 600;
  padding: 6px 14px; border-radius: 30px; letter-spacing: .5px;
}

.about-visual { position: relative; }
.about-img-wrap {
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3; position: relative;
}
.about-img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.8); }
.about-img-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(116,172,223,.25), transparent 70%);
}
.about-card {
  position: absolute; bottom: -20px; left: -24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 600; color: var(--ink-soft);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.card-dot { width: 8px; height: 8px; border-radius: 50%; animation: pulse 2s infinite; }
.card-dot.green { background: var(--br); box-shadow: 0 0 8px var(--br); }
.floating { animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ── HOW ─────────────────────────────────────────────────────── */
.how-section { padding: 100px 0; background: var(--bg-2); }
.how-header { text-align: center; margin-bottom: 64px; }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.how-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.how-item:hover { border-color: rgba(246,180,14,.2); transform: translateY(-4px); }
.how-item::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(246,180,14,.06), transparent 70%);
  pointer-events: none;
}
.how-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem; font-weight: 700;
  color: rgba(246,180,14,.12);
  line-height: 1; margin-bottom: 16px;
  letter-spacing: -2px;
}
.how-title {
  font-size: 1.1rem; font-weight: 700;
  color: var(--ink); margin-bottom: 12px;
}
.how-body { font-size: .95rem; color: var(--ink-soft); line-height: 1.7; }

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

/* ── CHANNELS ────────────────────────────────────────────────── */
.channels-section { padding: 100px 0; }
.channels-header { text-align: center; margin-bottom: 56px; }
.channels-sub { font-size: 1rem; color: var(--ink-soft); max-width: 480px; margin: 0 auto; text-align: center; }
.channels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.channel-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 40px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease-out), border-color .35s, box-shadow .35s;
}
.channel-card:hover { transform: translateY(-6px); }
.channel-card.ar:hover { border-color: rgba(116,172,223,.3); box-shadow: 0 20px 60px var(--ar-glow); }
.channel-card.br:hover { border-color: rgba(0,156,59,.3); box-shadow: 0 20px 60px var(--br-glow); }
.channel-card::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.channel-card.ar::before { background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(116,172,223,.08), transparent 65%); }
.channel-card.br::before { background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0,156,59,.08), transparent 65%); }
.channel-card:hover::before { opacity: 1; }

.ch-flag { font-size: 2.5rem; }
.ch-handle {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem; font-weight: 700;
  letter-spacing: -1px;
}
.ch-handle.ar { color: var(--ar); }
.ch-handle.br { color: var(--br); }
.ch-label { font-size: .85rem; font-weight: 600; color: var(--ink-mute); letter-spacing: 1px; text-transform: uppercase; }
.ch-divider { height: 1px; background: var(--line); }
.ch-features { display: flex; flex-direction: column; gap: 10px; }
.ch-feature { font-size: .9rem; color: var(--ink-soft); display: flex; gap: 10px; align-items: flex-start; }
.ch-feature::before { content: '→'; color: var(--gold); flex-shrink: 0; }
.ch-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px; border-radius: 12px;
  font-size: .95rem; font-weight: 700;
  transition: transform .25s var(--ease-out), box-shadow .25s;
  margin-top: auto;
}
.ch-cta:hover { transform: translateY(-2px); }
.ch-cta.ar { background: var(--ar); color: #000; box-shadow: 0 0 0 var(--ar-glow); }
.ch-cta.ar:hover { box-shadow: 0 8px 32px var(--ar-glow); }
.ch-cta.br { background: var(--br); color: #fff; }
.ch-cta.br:hover { box-shadow: 0 8px 32px var(--br-glow); }

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

/* ── MUNDIAL ─────────────────────────────────────────────────── */
.mundial-section {
  position: relative; padding: 120px 0;
  overflow: hidden;
}
.mundial-bg { position: absolute; inset: 0; }
.mundial-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.25) saturate(.5); transform: scale(1.05); }
.mundial-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(4,5,15,.6), rgba(4,5,15,.85));
}
.mundial-content { position: relative; z-index: 1; text-align: center; }
.mundial-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700; letter-spacing: -3px;
  line-height: .95; color: var(--ink);
  margin-bottom: 48px; text-wrap: balance;
}
.mundial-title em { font-style: normal; color: var(--gold); }

.countdown-wrap {
  display: inline-flex; gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 20px; overflow: hidden;
  margin-bottom: 40px;
}
.countdown-item {
  padding: 28px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.cd-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; color: var(--gold);
  line-height: 1;
  transition: transform .3s var(--ease-out);
}
.cd-label { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-mute); }
.countdown-sep { font-size: 2.5rem; font-weight: 700; color: var(--ink-mute); align-self: center; padding: 0 4px; }

.mundial-sub { font-size: 1.05rem; color: var(--ink-soft); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
.mundial-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

@media (max-width: 600px) {
  .countdown-item { padding: 20px 16px; }
  .countdown-sep { font-size: 1.5rem; }
}

/* ── FINAL CTA ───────────────────────────────────────────────── */
.final-cta { padding: 100px 0; }
.final-inner {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card2) 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 72px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(246,180,14,.08), transparent 60%);
  pointer-events: none;
}
.final-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700; letter-spacing: -3px;
  color: var(--ink); margin-bottom: 16px;
}
.final-sub { font-size: 1rem; color: var(--ink-soft); margin-bottom: 40px; }
.final-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); padding: 48px 0 32px; }
.footer-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; }
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700; display: block; margin-bottom: 12px; }
.footer-logo span { color: var(--gold); }
.footer-disc { font-size: .78rem; color: var(--ink-mute); max-width: 380px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .875rem; color: var(--ink-mute); transition: color .25s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .75rem; color: var(--ink-mute); }

/* ── REVEAL ANIMATIONS ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
/* Defensive for split+reveal combos */
.reveal[data-split] { opacity: 1; transform: none; }

.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.split-word.is-visible { opacity: 1; transform: translateY(0); }

/* ── MISC ────────────────────────────────────────────────────── */
::selection { background: rgba(246,180,14,.2); color: var(--ink); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--ink-mute); border-radius: 3px; }

/* ── SELECTOR DE IDIOMA (i18n) ───────────────────────────── */
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: flex; gap: 4px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10); border-radius: 999px; padding: 3px; }
.lang-btn {
  font-family: inherit; font-size: 12px; font-weight: 600; letter-spacing: .02em;
  color: rgba(255,255,255,0.55); background: transparent; border: none; cursor: pointer;
  padding: 5px 10px; border-radius: 999px; transition: all .25s ease; white-space: nowrap; line-height: 1;
}
.lang-btn:hover { color: #fff; }
.lang-btn.active { background: #F6B40E; color: #0b1220; box-shadow: 0 2px 10px rgba(246,180,14,.35); }
@media (max-width: 720px) {
  .nav-links { display: none; }
  .lang-btn { padding: 5px 8px; font-size: 11px; }
  .lang-switch { gap: 2px; }
}
