/* ============================================================
   PRODE MUNDIAL OECE 2026 — Estilos
   Argentina · Fútbol · Mundial · Mobile-first
   ============================================================ */

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

:root {
  /* Argentina palette — protagonistas */
  --arg-celeste:   #74ACDF;
  --arg-celeste-d: #4A8EC2;
  --arg-celeste-l: #A8CCEB;
  --arg-white:     #FFFFFF;
  --arg-gold:      #F6B40E;
  --arg-gold-d:    #D4980A;

  /* Argentina deep blues — cálidos, no fríos */
  --c-navy:        #003A7A;   /* azul Argentina profundo, cálido */
  --c-blue-dark:   #004D9F;   /* AFA azul */
  --c-blue:        #0060BF;
  --c-blue-mid:    #1B78D0;
  --c-blue-light:  #3A91E0;
  --c-celeste:     #74ACDF;

  /* Pitch green accent */
  --c-pitch:       #2D6A4F;
  --c-pitch-light: #40916C;

  /* Neutrals — tinte celeste cálido */
  --c-bg:          #EFF6FD;   /* fondo ligeramente celeste */
  --c-surface:     #FFFFFF;
  --c-surface-2:   #E3F0FA;
  --c-border:      #C2D9EE;
  --c-text:        #00285A;   /* texto azul Argentina, no negro puro */
  --c-text-muted:  #3A6080;
  --c-text-light:  #6A90B0;

  /* Shadows — cálidas celeste */
  --shadow-sm:  0 1px 4px rgba(0,58,122,.08);
  --shadow-md:  0 4px 20px rgba(0,58,122,.14);
  --shadow-lg:  0 8px 40px rgba(0,58,122,.18);
  --shadow-xl:  0 20px 70px rgba(0,58,122,.24);
  --shadow-arg: 0 8px 32px rgba(116,172,223,.4);

  /* Radius */
  --r-sm: 8px; --r-md: 12px; --r-lg: 18px; --r-xl: 24px; --r-2xl: 32px; --r-full: 9999px;

  /* Spacing */
  --sp-1:4px; --sp-2:8px; --sp-3:12px; --sp-4:16px; --sp-5:20px;
  --sp-6:24px; --sp-8:32px; --sp-10:40px; --sp-12:48px; --sp-16:64px; --sp-20:80px;

  /* Fonts */
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-display: 'Exo 2', 'Inter', sans-serif;

  /* Transitions */
  --tr-fast: 150ms ease-out;
  --tr-mid:  250ms ease-out;
  --tr-slow: 380ms ease-out;
}

html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
body {
  font-family: var(--font-sans);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  width: 100%;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1000;
  padding: var(--sp-3) var(--sp-4);
  background: #fff; color: var(--c-navy);
  border-radius: var(--r-sm); font-weight: 700;
  box-shadow: var(--shadow-lg);
  transform: translateY(-150%);
  transition: transform var(--tr-fast);
}
.skip-link:focus { transform: translateY(0); }

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid #FFD740;
  outline-offset: 3px;
}

section[id] { scroll-margin-top: 82px; }

/* ── Container ────────────────────────────────────────────── */
.container {
  width: 100%; max-width: 1120px;
  margin: 0 auto; padding: 0 var(--sp-5);
}
@media (min-width: 768px) { .container { padding: 0 var(--sp-8); } }

/* ── Pill label ───────────────────────────────────────────── */
.pill {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-blue); background: rgba(17,69,160,.08);
  border: 1px solid rgba(17,69,160,.15);
  border-radius: var(--r-full); padding: 3px var(--sp-3);
  margin-bottom: var(--sp-4);
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--arg-gold); animation: blink 2s infinite;
}
@keyframes blink {
  0%,100%{opacity:1;transform:scale(1)}
  50%    {opacity:.5;transform:scale(1.4)}
}

/* ── Section titles ───────────────────────────────────────── */
.s-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -.025em; color: var(--c-text);
}
.s-desc {
  font-size: 1rem; color: var(--c-text-muted);
  max-width: 560px; line-height: 1.7; margin-top: var(--sp-3);
}

/* ── Sections ─────────────────────────────────────────────── */
.section     { padding: var(--sp-16) 0; }
.section-alt { background: var(--c-surface); padding: var(--sp-16) 0; }
.s-head      { margin-bottom: var(--sp-10); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--sp-2); padding: var(--sp-4) var(--sp-8);
  border-radius: var(--r-full); font-size: 1rem; font-weight: 700;
  cursor: pointer; border: none; text-decoration: none; min-height: 52px;
  white-space: nowrap;
  transition: transform var(--tr-fast), box-shadow var(--tr-fast), background var(--tr-fast);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-icon   { width: 22px; height: 22px; flex-shrink: 0; }

.btn-participar {
  background: linear-gradient(135deg, var(--arg-gold) 0%, #E8A000 100%);
  color: var(--c-navy);
  font-size: 1.1rem;
  padding: var(--sp-4) var(--sp-10);
  box-shadow: 0 6px 28px rgba(246,180,14,.5);
  border-radius: 50px;
  letter-spacing: .01em;
}
.btn-participar:hover {
  background: linear-gradient(135deg, #FFD740 0%, var(--arg-gold) 100%);
  box-shadow: 0 10px 36px rgba(246,180,14,.65);
  transform: translateY(-3px);
}
.btn-participar .btn-icon {
  width: 26px; height: 26px;
}

.btn-primary {
  background: var(--c-blue);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--c-blue-dark);
  box-shadow: var(--shadow-lg);
}

/* ═══════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background var(--tr-mid),
    border-color var(--tr-mid),
    box-shadow var(--tr-mid),
    backdrop-filter var(--tr-mid);
}
.header.scrolled {
  background: rgba(0,58,122,.95);
  border-bottom-color: rgba(116,172,223,.16);
  box-shadow: 0 4px 30px rgba(0,0,0,.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header.menu-open {
  background: rgba(0,58,122,.98);
  border-bottom-color: rgba(116,172,223,.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Argentina stripe top */
.header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,
    var(--arg-celeste) 0%, var(--arg-celeste) 33%,
    var(--arg-white)   33%, var(--arg-white)   66%,
    var(--arg-celeste) 66%, var(--arg-celeste) 100%
  );
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: var(--sp-4); margin-top: 3px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.nav-logo img   { height: 48px; width: auto; object-fit: contain; filter: brightness(0) invert(1); }
.nav-logo-wrap  { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name  {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 900;
  color: var(--arg-celeste); letter-spacing: .02em;
}
.nav-logo-sub   { font-size: .6rem; font-weight: 600; color: var(--arg-celeste); letter-spacing: .1em; text-transform: uppercase; }

/* Desktop links */
.nav-links { display: none; align-items: center; gap: 2px; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.65);
  padding: var(--sp-2) var(--sp-3); border-radius: var(--r-sm);
  transition: color var(--tr-fast), background var(--tr-fast);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-links a.active:not(.nav-cta) {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.nav-links .nav-cta {
  background: var(--arg-celeste); color: var(--c-navy);
  font-weight: 700; padding: 6px var(--sp-5) !important;
  border-radius: var(--r-full) !important;
  transition: background var(--tr-fast), transform var(--tr-fast), box-shadow var(--tr-fast) !important;
}
.nav-links .nav-cta:hover {
  background: var(--arg-celeste-d); color: #fff !important;
  transform: translateY(-1px); box-shadow: var(--shadow-arg) !important;
}

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: var(--sp-2); border-radius: var(--r-sm);
  transition: background var(--tr-fast);
}
.hamburger:hover { background: rgba(255,255,255,.08); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.8); border-radius: 2px;
  transition: transform var(--tr-mid), opacity var(--tr-mid);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) { .hamburger { display: none; } }
@media (max-width: 479px) {
  .header .container { padding-left: var(--sp-4); padding-right: var(--sp-4); }
  .nav { gap: var(--sp-2); }
  .nav-logo { gap: var(--sp-2); min-width: 0; }
  .nav-logo img { height: 38px; }
  .nav-logo-wrap { min-width: 0; }
  .nav-logo-name {
    font-size: .9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 2px;
  padding: var(--sp-3) var(--sp-5) var(--sp-5);
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,58,122,.98);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: .95rem; font-weight: 500; color: rgba(255,255,255,.65);
  padding: var(--sp-3); border-radius: var(--r-sm);
  transition: color var(--tr-fast), background var(--tr-fast);
}
.mobile-menu a:hover { color: #fff; background: rgba(255,255,255,.07); }
.mobile-menu a.active:not(.mobile-menu-cta) { color: #fff; background: rgba(255,255,255,.1); }
.mobile-menu .mobile-menu-cta {
  justify-content: center;
  margin-top: var(--sp-2);
  background: var(--arg-gold);
  color: var(--c-navy);
  font-weight: 800;
  text-align: center;
  border-radius: var(--r-full);
}
.mobile-menu .mobile-menu-cta:hover { background: #FFD740; color: var(--c-navy); }

/* ═══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background-color: #003A7A;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center 56%;
  background-repeat: no-repeat;
  height: 100vh;
  height: 100svh;
  max-height: 100dvh;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(116,172,223,.16), transparent 34%),
    radial-gradient(circle at 82% 72%, rgba(246,180,14,.1), transparent 30%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,25,70,.9) 0%, rgba(0,43,105,.7) 43%, rgba(0,54,125,.3) 76%, rgba(0,44,105,.2) 100%),
    linear-gradient(180deg, rgba(0,20,55,.2) 0%, rgba(0,30,75,.55) 100%);
}

/* Pitch lines */
.hero-field {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 2;
}
.hero-field svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Gradient overlay */
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    radial-gradient(ellipse at 25% 55%, rgba(255,255,255,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 15%, rgba(246,180,14,.12)  0%, transparent 40%),
    linear-gradient(180deg, rgba(0,58,122,0) 0%, rgba(0,42,100,.45) 100%);
}

@media (max-width: 767px), (orientation: portrait) and (max-width: 1024px) {
  .hero {
    background-image: url('assets/hero-mobile.jpg');
    background-position: center center;
  }

  .hero::before {
    background:
      radial-gradient(circle at 72% 16%, rgba(246,180,14,.12), transparent 32%),
      linear-gradient(180deg, rgba(0,35,90,.08), rgba(0,35,90,.22));
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(0,28,75,.86) 0%, rgba(0,42,102,.68) 72%, rgba(0,48,112,.48) 100%),
      linear-gradient(180deg, rgba(0,20,55,.32) 0%, rgba(0,30,75,.68) 100%);
  }

  .hero-overlay {
    background:
      radial-gradient(ellipse at 20% 45%, rgba(255,255,255,.07), transparent 45%),
      linear-gradient(180deg, rgba(0,42,100,.05) 0%, rgba(0,35,85,.42) 100%);
  }
}


.hero > .container {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  padding-top: calc(67px + clamp(var(--sp-4), 4vh, var(--sp-10)));
  padding-bottom: clamp(var(--sp-5), 5vh, var(--sp-12));
}

.hero-inner {
  position: relative;
  width: 100%;
  display: grid; grid-template-columns: 1fr;
  gap: var(--sp-10); align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr auto; gap: var(--sp-12); }
}

/* Left content */
.hero-content {
  display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-6);
  width: 100%; min-width: 0;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: rgba(116,172,223,.15); border: 1px solid rgba(116,172,223,.25);
  border-radius: var(--r-full); padding: 5px var(--sp-4);
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--arg-celeste);
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--arg-gold); animation: blink 2s infinite; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900; line-height: .95;
  letter-spacing: -.04em; color: #fff;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero-title .line-gold  { color: var(--arg-celeste); display: block; }
.hero-title .line-small {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 700; letter-spacing: -.01em;
  color: rgba(255,255,255,.75); display: block; margin-top: 4px;
}

.hero-sub {
  font-size: clamp(.95rem, 2.2vw, 1.1rem);
  color: rgba(255,255,255,.72); width: 100%; max-width: 500px; line-height: 1.7;
  overflow-wrap: anywhere;
}
.hero-sub strong { color: var(--arg-celeste); }

/* Buttons */
.hero-btns {
  display: flex; flex-direction: column; gap: var(--sp-3);
  width: 100%; max-width: min(420px, 100%);
}
@media (min-width: 480px) {
  .hero-btns { flex-direction: row; max-width: none; }
}
@media (max-width: 479px) {
  .hero > .container {
    width: 100%;
    max-width: 100vw;
    padding-left: var(--sp-5);
    padding-right: var(--sp-5);
  }
  .hero-inner,
  .hero-content,
  .hero-sub,
  .hero-btns {
    width: 100%;
    min-width: 0;
  }
  .hero-inner,
  .hero-content {
    max-width: 350px;
  }
  .hero-sub,
  .hero-btns {
    max-width: 100%;
  }
  .hero-sub {
    font-size: .9rem;
    line-height: 1.55;
  }
  .hero-btns .btn {
    width: 100%;
    max-width: 100%;
  }
  .hero .btn-participar {
    padding: var(--sp-3) var(--sp-4);
    font-size: 1rem;
    white-space: normal;
    text-align: center;
  }
  .hero-note {
    line-height: 1.45;
  }
}

.hero-note {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: .78rem; color: rgba(255,255,255,.68);
  max-width: 100%;
}
.hero-note svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--arg-celeste); }

/* Right — Trophy/stadium illustration */
.hero-visual {
  display: none;
  position: relative; flex-shrink: 0;
  align-items: center; justify-content: center;
}
@media (min-width: 900px) { .hero-visual { display: flex; } }

.hero-scene {
  width: 360px; height: 445px;
  filter: drop-shadow(0 24px 60px rgba(116,172,223,.25))
          drop-shadow(0 8px 30px rgba(246,180,14,.2));
  animation: float-scene 5s ease-in-out infinite;
}
@keyframes float-scene {
  0%,100% { transform: translateY(0px); }
  50%     { transform: translateY(-10px); }
}

/* Confetti gentle drift */
.confetti-grp {
  animation: confetti-drift 8s ease-in-out infinite;
}
@keyframes confetti-drift {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%     { transform: translateY(-6px) rotate(2deg); }
  66%     { transform: translateY(4px) rotate(-1deg); }
}

/* Ribbon / bottom wave */
.hero-bottom {
  position: relative; z-index: 2;
  flex: 0 0 65px;
}
.hero-ribbon {
  background: linear-gradient(90deg, var(--arg-celeste) 0%, #fff 50%, var(--arg-celeste) 100%);
  height: 5px;
}
.hero-wave {
  background: var(--c-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
  height: 60px; margin-top: -1px;
}

@media (max-height: 720px) {
  .hero > .container {
    padding-top: calc(67px + var(--sp-3));
    padding-bottom: var(--sp-4);
  }
  .hero-content { gap: var(--sp-4); }
  .hero-title { font-size: clamp(2.55rem, 9vh, 4.8rem); }
  .hero-title .line-small { font-size: clamp(1.05rem, 3.2vh, 1.6rem); }
  .hero-sub { line-height: 1.55; }
  .hero-bottom { flex-basis: 45px; }
  .hero-wave { height: 40px; }
}

@media (max-height: 560px) {
  .hero-content { gap: var(--sp-3); }
  .hero-title { font-size: clamp(2.15rem, 8vh, 3.4rem); }
  .hero-sub { font-size: .88rem; line-height: 1.4; }
  .btn-participar {
    min-height: 46px;
    padding: var(--sp-3) var(--sp-6);
    font-size: 1rem;
  }
  .hero-note { font-size: .7rem; }
  .hero-bottom { flex-basis: 29px; }
  .hero-wave { height: 24px; }
}

/* ═══════════════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════════════ */
.stats-strip {
  background:
    radial-gradient(circle at 8% 15%, rgba(116,172,223,.24), transparent 28%),
    radial-gradient(circle at 92% 85%, rgba(246,180,14,.12), transparent 26%),
    linear-gradient(120deg, #002B68 0%, #004D9F 52%, #0876C9 100%);
  padding: var(--sp-12) 0;
  position: relative; overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}
.stats-strip::after {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  right: -180px; top: -260px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(255,255,255,.025),
    0 0 0 110px rgba(255,255,255,.018);
}
.stats-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }

.stat-item {
  --stat-accent: #C9E7FF;
  --stat-accent-rgb: 201,231,255;
  min-width: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--stat-accent-rgb),.13), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  display: grid; grid-template-columns: auto 1fr; align-items: center; gap: var(--sp-4);
  box-shadow: 0 18px 45px rgba(0,24,70,.22), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative; overflow: hidden;
  transition: transform var(--tr-mid), border-color var(--tr-mid), box-shadow var(--tr-mid);
}
.stat-item:nth-child(1) { --stat-accent: #FFD740; --stat-accent-rgb: 255,215,64; }
.stat-item:nth-child(2) { --stat-accent: #C9E7FF; --stat-accent-rgb: 201,231,255; }
.stat-item:nth-child(3) { --stat-accent: #FFFFFF; --stat-accent-rgb: 255,255,255; }
.stat-item::before {
  content: '';
  position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 3px; border-radius: 0 var(--r-full) var(--r-full) 0;
  background: var(--stat-accent);
  box-shadow: 0 0 18px rgba(var(--stat-accent-rgb),.65);
}
.stat-item::after {
  content: '';
  position: absolute; width: 90px; height: 90px;
  right: -38px; bottom: -48px;
  border: 1px solid rgba(var(--stat-accent-rgb),.16);
  border-radius: 50%;
}
@media (min-width: 720px) {
  .stat-item {
    min-height: 156px;
    padding: var(--sp-6);
    grid-template-columns: auto 1fr;
    text-align: left;
  }
}
@media (hover: hover) {
  .stat-item:hover {
    transform: translateY(-7px);
    border-color: rgba(var(--stat-accent-rgb),.42);
    box-shadow: 0 24px 55px rgba(0,24,70,.32), 0 0 28px rgba(var(--stat-accent-rgb),.08);
  }
}
.stat-icon-wrap {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  color: var(--stat-accent);
}
.stat-icon-wrap img {
  width: 42px; height: 42px;
  display: block;
  object-fit: contain;
  position: relative; z-index: 1;
}
.stat-icon-gold img {
  filter:
    brightness(0) saturate(100%)
    invert(82%) sepia(91%) saturate(1452%) hue-rotate(338deg) brightness(104%) contrast(102%)
    drop-shadow(0 5px 10px rgba(0,25,70,.28));
}
.stat-icon-celeste img {
  filter:
    brightness(0) saturate(100%)
    invert(90%) sepia(20%) saturate(642%) hue-rotate(174deg) brightness(103%) contrast(102%)
    drop-shadow(0 5px 10px rgba(0,25,70,.28));
}
.stat-icon-white img {
  filter:
    brightness(0) invert(1)
    drop-shadow(0 5px 10px rgba(0,25,70,.28));
}
.stat-icon-gold {
  color: var(--stat-accent);
}
.stat-icon-celeste {
  color: var(--stat-accent);
}
.stat-icon-white {
  color: var(--stat-accent);
}
.stat-copy { min-width: 0; position: relative; z-index: 1; }
.stat-kicker {
  display: block;
  margin-bottom: 4px;
  font-size: .62rem; font-weight: 800;
  color: var(--stat-accent);
  text-transform: uppercase; letter-spacing: .13em;
}
.stat-val {
  font-family: var(--font-display); font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 900;
  color: #fff; letter-spacing: -.025em; line-height: 1.12;
}
.stat-lbl {
  margin-top: 7px;
  font-size: .76rem; font-weight: 600;
  color: rgba(255,255,255,.64); text-transform: uppercase; letter-spacing: .07em;
}
.stat-lbl strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
}

/* ═══════════════════════════════════════════════════════════
   CÓMO PARTICIPAR
══════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-5);
}
@media (min-width: 640px)  { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: var(--sp-8) var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-4);
  position: relative; overflow: hidden;
  transition: transform var(--tr-mid), box-shadow var(--tr-mid), border-color var(--tr-mid);
}
.step-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--arg-celeste), var(--arg-gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--tr-mid);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--arg-celeste);
}
.step-card:hover::after { transform: scaleX(1); }

/* Large number background */
.step-card-bg-num {
  position: absolute; right: -8px; top: -10px;
  font-family: var(--font-display); font-size: 7rem; font-weight: 900;
  color: rgba(17,69,160,.05); line-height: 1; pointer-events: none; user-select: none;
}

.step-header {
  display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-3);
}
.step-num-badge {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-blue), var(--arg-celeste));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 900;
  color: #fff; box-shadow: var(--shadow-arg);
}
.step-title { font-size: 1.05rem; font-weight: 700; color: var(--c-text); line-height: 1.3; margin: 0; }
.step-desc  { font-size: .875rem; color: var(--c-text-muted); line-height: 1.65; }
.step-desc strong { color: var(--c-text); }

/* ═══════════════════════════════════════════════════════════
   PUNTUACIÓN
══════════════════════════════════════════════════════════ */
/* Argentina jersey pattern section */
.section-pitch {
  background: linear-gradient(160deg, #003A7A 0%, #0060BF 55%, #3A91E0 100%);
  padding: var(--sp-16) 0; position: relative; overflow: hidden;
}

.section-pitch .s-head {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Scoring card */
.scoring-card {
  --scoring-inner-radius: calc(var(--r-2xl) - 4px);
  background: #fff;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--r-2xl);
  max-width: 800px; margin: 0 auto;
  padding: 4px;
  box-shadow: 0 20px 55px rgba(0,28,82,.28);
  overflow: hidden;
}

.scoring-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--scoring-inner-radius);
  overflow: hidden;
}
.scoring-table thead tr {
  background: var(--c-surface-2);
}
.scoring-table th {
  padding: var(--sp-3) var(--sp-5);
  text-align: left; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--c-text-muted);
}
.scoring-table th:last-child { text-align: right; }

.scoring-table tbody tr { --score-accent: var(--c-border); }
.scoring-table tbody tr:nth-child(1) { --score-accent: var(--arg-gold); }
.scoring-table tbody tr:nth-child(2) { --score-accent: var(--arg-celeste); }
.scoring-table tbody tr:nth-child(3) { --score-accent: #9BB0C7; }

.scoring-table td {
  padding: var(--sp-5); font-size: .95rem;
  background: #fff;
  border-top: 1px solid var(--c-border);
  color: var(--c-text);
  vertical-align: middle; line-height: 1.5;
  transition: background var(--tr-fast);
}
.scoring-table td:first-child {
  border-left: 4px solid var(--score-accent);
}
.scoring-table td:last-child {
  text-align: right; white-space: nowrap;
}
@media (hover: hover) {
  .scoring-table tbody tr:hover td { background: #F5FAFF; }
}

.scoring-table td > strong {
  display: block;
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.3;
}
.scoring-table td > small {
  color: var(--c-text-muted);
  font-size: .78rem;
  display: block;
  margin-top: 4px;
  line-height: 1.45;
}

.pts-badge {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  min-width: 104px; padding: 8px var(--sp-4);
  border-radius: var(--r-full);
  font-family: var(--font-display); font-weight: 800;
}
.pts-badge b { font-size: 1.35rem; line-height: 1; }
.pts-badge span { font-family: var(--font-sans); font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; }
.pts-6 { background: #FFF2C2; color: #7A5700; }
.pts-3 { background: #DCEFFF; color: #004D9F; }
.pts-0 { background: #EDF1F5; color: #5C6F82; }

/* ═══════════════════════════════════════════════════════════
   PREMIO
══════════════════════════════════════════════════════════ */

.prize-dest-heading {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 800;
  color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .1em;
  margin-top: var(--sp-10); margin-bottom: var(--sp-5);
  display: flex; align-items: center; gap: var(--sp-3);
}
.prize-dest-heading::before, .prize-dest-heading::after {
  content: ''; flex: 1; height: 1px; background: var(--c-border);
}

/* Destinations row — full width below the grid */
.prize-dest-row {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-5);
  margin-top: var(--sp-8);
}
@media (min-width: 640px) { .prize-dest-row { grid-template-columns: repeat(3, 1fr); } }

/* Destination card */
.dest-card {
  border: 0; padding: 0; background: transparent;
  border-radius: var(--r-2xl); position: relative;
  height: 220px;
  cursor: pointer;
  perspective: 1100px;
  font: inherit; color: inherit; text-align: left;
  transition: transform var(--tr-mid);
}
.dest-card:hover { transform: translateY(-6px); }
.dest-card-inner {
  display: block;
  position: relative; width: 100%; height: 100%;
  border-radius: inherit;
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.2,.7,.2,1);
  box-shadow: var(--shadow-lg);
}
.dest-card.is-flipped .dest-card-inner { transform: rotateY(180deg); }
.dest-card:hover .dest-card-inner { box-shadow: var(--shadow-xl); }
.dest-card-face {
  position: absolute; inset: 0;
  display: block;
  border-radius: inherit;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.dest-card-front { background: inherit; }
.dest-card-back {
  transform: rotateY(180deg);
  padding: var(--sp-6);
  display: flex; flex-direction: column; justify-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(246,180,14,.2), transparent 35%),
    linear-gradient(145deg, #003A7A, #0060BF);
  border: 1px solid rgba(255,255,255,.15);
}
.dest-card-back-region {
  font-size: .62rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--arg-celeste-l);
}
.dest-card-back strong {
  font-family: var(--font-display);
  font-size: 1.65rem; line-height: 1;
  margin: var(--sp-2) 0 var(--sp-3);
}
.dest-card-back > span:not(.dest-card-back-region) {
  font-size: .82rem; line-height: 1.55;
  color: rgba(255,255,255,.78);
}
.dest-card-back small {
  margin-top: auto;
  padding-top: var(--sp-3);
  font-size: .66rem; font-weight: 700;
  color: rgba(255,255,255,.48);
  text-transform: uppercase; letter-spacing: .08em;
}

/* Fallback gradients per destination (shown when image fails or while loading) */
.dest-salta    { background: linear-gradient(155deg, #C2693C 0%, #8B3A1A 50%, #5C2006 100%); }
.dest-bariloche{ background: linear-gradient(155deg, #2E6B8A 0%, #1A4A6B 50%, #0D2B45 100%); }
.dest-iguazu   { background: linear-gradient(155deg, #2D7A3A 0%, #1A5226 50%, #0C3015 100%); }

.dest-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s ease;
}
.dest-card:hover img { transform: scale(1.07); }
.dest-card.is-flipped img { transform: scale(1.07); }

.dest-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,10,30,.85) 0%,
    rgba(0,10,30,.35) 45%,
    rgba(0,0,0,.08)   100%
  );
}
.dest-card-region {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,.45); backdrop-filter: blur(8px);
  border-radius: 20px; padding: 3px 10px;
  font-size: .62rem; font-weight: 700; color: rgba(255,255,255,.85);
  text-transform: uppercase; letter-spacing: .09em;
}
.dest-card-hint {
  position: absolute; top: 14px; right: 14px;
  padding: 4px 9px;
  border-radius: var(--r-full);
  background: rgba(0,0,0,.38);
  color: rgba(255,255,255,.82);
  backdrop-filter: blur(8px);
  font-size: .58rem; font-weight: 700;
  letter-spacing: .04em;
}
.dest-card-bottom {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
}
.dest-card-name {
  display: block;
  font-family: var(--font-display); font-size: 1.55rem; font-weight: 900;
  color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.6); letter-spacing: -.01em;
  line-height: 1;
}
.dest-card-tagline {
  display: block;
  font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.7);
  margin-top: 4px; text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* Main prize card */
.prize-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-2xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform var(--tr-mid), box-shadow var(--tr-mid);
  max-width: 720px; margin: 0 auto;
}
.prize-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.prize-card-top {
  background: linear-gradient(135deg, #002B6B 0%, #004DAF 55%, #2A7ACF 100%);
  padding: var(--sp-8) var(--sp-8) var(--sp-6);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-8);
}
.prize-card-top::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(246,180,14,.14) 0%, transparent 55%),
              radial-gradient(circle at 15% 80%, rgba(116,172,223,.12) 0%, transparent 40%);
}
.prize-card-top-text { position: relative; z-index: 1; min-width: 0; }

.prize-title-row {
  display: flex; align-items: center; gap: var(--sp-3);
  position: relative; z-index: 1; margin-bottom: var(--sp-2);
}
.prize-main-title {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 900;
  color: #fff; line-height: 1.1; letter-spacing: -.02em;
  position: relative; z-index: 1; margin: 0;
}
.prize-main-sub { font-size: .875rem; color: rgba(255,255,255,.6); margin-top: 4px; position: relative; z-index: 1; }

.prize-stars {
  position: relative; z-index: 1; flex-shrink: 0;
  display: flex; flex-direction: column; align-items: flex-end; gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-5);
  border: 1px solid rgba(255,255,255,.2); border-radius: 18px;
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}
.prize-stars-icons { display: flex; align-items: center; gap: var(--sp-2); }
.prize-stars-icons svg {
  width: 30px; height: 30px; fill: var(--arg-gold);
  filter: drop-shadow(0 3px 5px rgba(0,20,60,.35));
}
.prize-stars span {
  color: rgba(255,255,255,.82); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; white-space: nowrap;
}

/* Argentina flag strip */
.flag-strip {
  height: 6px;
  background: linear-gradient(90deg,
    var(--arg-celeste) 0%, var(--arg-celeste) 33%,
    #fff               33%, #fff               66%,
    var(--arg-celeste) 66%, var(--arg-celeste) 100%
  );
}

.prize-items { padding: var(--sp-6) var(--sp-8); display: flex; flex-direction: column; gap: 0; }
.prize-row {
  display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-4) 0; border-bottom: 1px solid var(--c-border);
}
.prize-row:last-child { border-bottom: none; }
.prize-row-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--c-surface-2); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.prize-row-icon svg { width: 18px; height: 18px; color: var(--c-blue); }
.prize-row-info { flex: 1; }
.prize-row-lbl  { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--c-text-muted); }
.prize-row-val  { font-size: .95rem; font-weight: 600; color: var(--c-text); margin-top: 1px; }

.prize-footer-note {
  margin: 0 var(--sp-8) var(--sp-6);
  background: var(--c-surface-2); border-radius: var(--r-md);
  padding: var(--sp-4); font-size: .8rem; color: var(--c-text-muted); line-height: 1.6;
}

/* Right column */
.prize-side { display: flex; flex-direction: column; gap: var(--sp-5); }

.prize-big-num {
  background: linear-gradient(135deg, var(--arg-celeste) 0%, #A8D8F0 50%, var(--arg-celeste-d) 100%);
  border-radius: var(--r-2xl); padding: var(--sp-10) var(--sp-8);
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(246,180,14,.3);
}
.prize-big-num::before {
  content: '✈';
  position: absolute; right: 16px; bottom: -8px;
  font-size: 6rem; opacity: .12; line-height: 1;
}
.prize-big-n {
  font-family: var(--font-display); font-size: 5.5rem; font-weight: 900;
  color: var(--c-navy); line-height: 1; letter-spacing: -.05em;
}
.prize-big-lbl {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  color: var(--c-navy); opacity: .75; text-transform: uppercase; letter-spacing: .06em;
}
.prize-big-num .prize-big-num-shadow { box-shadow: 0 8px 32px rgba(116,172,223,.4); }

.prize-mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.prize-mini {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
}
.prize-mini-lbl { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--c-text-muted); }
.prize-mini-val {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 900;
  color: var(--c-blue); line-height: 1.1; margin-top: 2px;
}
.prize-mini-sub { font-size: .72rem; color: var(--c-text-muted); }

.prize-cash-card {
  background: linear-gradient(135deg, rgba(45,106,79,.06), rgba(64,145,108,.06));
  border: 1px solid rgba(45,106,79,.18);
  border-radius: var(--r-lg); padding: var(--sp-5) var(--sp-6);
  display: flex; align-items: flex-start; gap: var(--sp-3);
}
.prize-cash-card svg { width: 22px; height: 22px; color: #2D6A4F; flex-shrink: 0; margin-top: 1px; }
.prize-cash-text { font-size: .875rem; color: var(--c-text); line-height: 1.6; }
.prize-cash-text strong { color: #2D6A4F; }

/* ═══════════════════════════════════════════════════════════
   TERMS — Link + Floating Window
══════════════════════════════════════════════════════════ */
.terms-section {
  background: linear-gradient(160deg, #002B5C 0%, #004D9F 100%);
  padding: var(--sp-16) 0;
  position: relative; overflow: hidden;
}
.terms-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent 0px, transparent 60px,
    rgba(116,172,223,.03) 60px, rgba(116,172,223,.03) 120px
  );
}

.terms-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: var(--sp-6); max-width: 640px;
  margin: 0 auto; text-align: center;
}
.terms-content .s-title { color: #fff; }
.terms-content .s-desc  { color: rgba(255,255,255,.72) !important; }

/* The link-style trigger */
.terms-link-btn {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl); padding: var(--sp-4) var(--sp-6);
  font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.8);
  cursor: pointer; transition: background var(--tr-fast), border-color var(--tr-fast), color var(--tr-fast);
  text-decoration: none;
}
.terms-link-btn:hover {
  background: rgba(116,172,223,.15);
  border-color: var(--arg-celeste);
  color: var(--arg-celeste);
}
.terms-link-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.terms-disclaimer {
  font-size: .78rem; color: rgba(255,255,255,.3); line-height: 1.65; max-width: 520px;
}
.terms-disclaimer strong { color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════════════════════════
   TERMS MODAL
══════════════════════════════════════════════════════════ */
.t-backdrop {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,42,100,.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: flex-end; justify-content: center;
  padding: 0;
  opacity: 0; pointer-events: none;
  transition: opacity var(--tr-mid);
}
@media (min-width: 640px) {
  .t-backdrop { align-items: center; padding: var(--sp-5); }
}
.t-backdrop.open { opacity: 1; pointer-events: auto; }

.t-modal {
  background: var(--c-surface);
  width: 100%; max-width: 740px; max-height: 92dvh;
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: translateY(48px);
  transition: transform var(--tr-slow);
}
@media (min-width: 640px) {
  .t-modal {
    border-radius: var(--r-2xl);
    max-height: 88dvh;
    transform: scale(.96) translateY(20px);
  }
}
.t-backdrop.open .t-modal { transform: translateY(0); }
@media (min-width: 640px) {
  .t-backdrop.open .t-modal { transform: scale(1) translateY(0); }
}

/* Drag handle (mobile) */
.t-handle {
  width: 40px; height: 4px; background: var(--c-border);
  border-radius: 2px; margin: var(--sp-3) auto var(--sp-1);
  flex-shrink: 0;
}
@media (min-width: 640px) { .t-handle { display: none; } }

/* Header */
.t-header {
  display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-6) var(--sp-4);
  border-bottom: 1px solid var(--c-border); flex-shrink: 0;
}
.t-header-icon {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--c-blue), var(--arg-celeste));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.t-header-icon svg { width: 20px; height: 20px; color: #fff; }
.t-header-text { flex: 1; }
.t-header-title { font-size: 1rem; font-weight: 700; color: var(--c-text); }
.t-header-sub   { font-size: .75rem; color: var(--c-text-muted); margin-top: 1px; }
.t-close {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--c-surface-2); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--tr-fast);
}
.t-close:hover { background: var(--c-border); }
.t-close svg { width: 16px; height: 16px; color: var(--c-text-muted); }

/* TOC */
.t-toc {
  display: flex; flex-wrap: wrap; gap: var(--sp-2); padding: var(--sp-4) var(--sp-6);
  border-bottom: 1px solid var(--c-border); flex-shrink: 0;
}
.t-toc a {
  display: inline-flex; align-items: center;
  background: var(--c-surface-2); border: 1px solid var(--c-border);
  border-radius: var(--r-full); padding: 4px var(--sp-3);
  font-size: .72rem; font-weight: 600; color: var(--c-text-muted);
  white-space: nowrap; transition: background var(--tr-fast), color var(--tr-fast);
  text-decoration: none;
}
.t-toc a:hover { background: rgba(17,69,160,.08); color: var(--c-blue); }

/* Body scroll area */
.t-body {
  overflow-y: auto; padding: var(--sp-6);
  font-size: .875rem; color: var(--c-text-muted); line-height: 1.8;
}
.t-body::-webkit-scrollbar { width: 4px; }
.t-body::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 2px; }

.t-section { margin-bottom: var(--sp-8); scroll-margin-top: var(--sp-4); }
.t-section:last-child { margin-bottom: 0; }

.t-section-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: var(--r-sm);
  background: rgba(17,69,160,.1); color: var(--c-blue);
  font-size: .78rem; font-weight: 800; flex-shrink: 0; margin-right: var(--sp-2);
}
.t-h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 800;
  color: var(--c-text); letter-spacing: -.01em;
  display: flex; align-items: center; margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-3); border-bottom: 1px solid var(--c-border);
}
.t-p   { margin-bottom: var(--sp-3); }
.t-p:last-child { margin-bottom: 0; }
.t-p strong { color: var(--c-text); }

.t-ol, .t-ul {
  margin: var(--sp-2) 0 var(--sp-3) var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-1);
}
.t-ol { list-style: decimal; }
.t-ul { list-style: disc; }

.t-table {
  width: 100%; border-collapse: collapse;
  margin: var(--sp-3) 0; font-size: .83rem;
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--c-border);
}
.t-table th {
  background: var(--c-surface-2); padding: var(--sp-3) var(--sp-4);
  text-align: left; font-weight: 700; color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
}
.t-table th:last-child { text-align: right; }
.t-table td { padding: var(--sp-3) var(--sp-4); border-top: 1px solid var(--c-border); }
.t-table td:last-child { text-align: right; font-weight: 700; color: var(--c-blue); }

.t-footer {
  padding: var(--sp-4) var(--sp-6);
  border-top: 1px solid var(--c-border);
  background: var(--c-surface-2);
  font-size: .8rem; font-weight: 600; color: var(--c-text-muted);
  flex-shrink: 0;
}
.t-footer strong { color: var(--c-text); }

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════════ */
.cta-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(116,172,223,.28), transparent 32%),
    radial-gradient(circle at 85% 80%, rgba(246,180,14,.16), transparent 28%),
    linear-gradient(145deg, #F7FBFF 0%, #EAF5FF 55%, #DCEEFF 100%);
  padding: var(--sp-16) 0; text-align: center; position: relative; overflow: hidden;
  border-top: 6px solid var(--arg-celeste);
}
/* Hexagonal pattern */
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50V18L28 2l28 16v32z' fill='none' stroke='rgba(0,58,122,0.045)' stroke-width='1'/%3E%3C/svg%3E");
}

.cta-inner {
  position: relative; z-index: 1;
  max-width: 760px;
}
.cta-title {
  font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3.2rem); font-weight: 900;
  color: var(--c-navy); letter-spacing: -.03em; margin-bottom: var(--sp-3);
}
.cta-title span { color: var(--c-blue); }
.cta-sub  { font-size: 1rem; color: var(--c-text-muted); margin-bottom: var(--sp-8); }
.cta-btns { display: flex; flex-direction: column; gap: var(--sp-3); align-items: center; }
@media (min-width: 480px) { .cta-btns { flex-direction: row; justify-content: center; } }
.cta-note {
  margin-top: var(--sp-4);
  font-size: .78rem;
  color: var(--c-text-muted);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(180deg, #003A7A 0%, #002B5C 100%);
  color: rgba(255,255,255,.65);
  border-top: 3px solid var(--arg-celeste);
  padding: var(--sp-12) 0 var(--sp-8);
}

/* Argentina stripe on top */
.footer-stripe {
  height: 4px; margin-bottom: var(--sp-12);
  background: linear-gradient(90deg,
    var(--arg-celeste) 0%, var(--arg-celeste) 33%,
    rgba(255,255,255,.8) 33%, rgba(255,255,255,.8) 66%,
    var(--arg-celeste) 66%, var(--arg-celeste) 100%
  );
}

.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--sp-8);
  margin-bottom: var(--sp-10); align-items: stretch;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }

.footer-brand { display: flex; flex-direction: column; gap: var(--sp-4); }
.footer-logo  { display: flex; align-items: center; gap: var(--sp-3); }
.footer-logo-img {
  width: auto; height: 120px;
  object-fit: contain; object-position: left center;
  filter: brightness(0) invert(1); opacity: .9;
  display: block;
}
.footer-logo-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; color: #fff; }
.footer-desc  { font-size: .85rem; line-height: 1.7; max-width: 300px; }

.footer-col h4 {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.35);
  margin-bottom: var(--sp-4);
}
.footer-links { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-links a {
  font-size: .85rem; color: rgba(255,255,255,.5);
  transition: color var(--tr-fast);
}
.footer-links a:hover { color: var(--arg-celeste); }

.footer-addr { font-size: .85rem; font-style: normal; line-height: 1.75; }
.footer-addr strong { color: rgba(255,255,255,.75); }

.footer-div {
  border: none; border-top: 1px solid rgba(255,255,255,.07);
  margin-bottom: var(--sp-6);
}
.footer-bottom {
  display: flex; flex-direction: column; gap: var(--sp-3);
  font-size: .73rem; color: rgba(255,255,255,.3); line-height: 1.6;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL TOP
══════════════════════════════════════════════════════════ */
#scrollTop {
  position: fixed; bottom: 20px; right: 18px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-blue); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(12px);
  pointer-events: none;
  transition: opacity var(--tr-mid), transform var(--tr-mid), background var(--tr-fast);
}
#scrollTop.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scrollTop:hover { background: var(--c-blue-dark); }
#scrollTop svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}
.anim { opacity:0; animation: fadeUp .55s ease-out forwards; }
.d1 { animation-delay:.1s; } .d2 { animation-delay:.2s; }
.d3 { animation-delay:.3s; } .d4 { animation-delay:.4s; }

@media (max-width: 639px) {
  .section, .section-alt, .section-pitch, .terms-section, .cta-section {
    padding-top: var(--sp-12);
    padding-bottom: var(--sp-12);
  }
  .s-head { margin-bottom: var(--sp-8); }
  .scoring-card {
    --scoring-inner-radius: calc(var(--r-xl) - 3px);
    border-radius: var(--r-xl);
    padding: 3px;
  }
  .scoring-table th { padding: var(--sp-3); }
  .scoring-table td { padding: var(--sp-4) var(--sp-3); }
  .scoring-table td > strong { font-size: .88rem; }
  .scoring-table td > small { font-size: .68rem; }
  .pts-badge { min-width: 58px; padding: 7px var(--sp-2); flex-direction: column; gap: 1px; border-radius: var(--r-md); }
  .pts-badge b { font-size: 1.2rem; }
  .pts-badge span { font-size: .52rem; }
  .prize-card-top {
    padding: var(--sp-6);
    gap: var(--sp-4);
  }
  .prize-main-title { font-size: 1.45rem; }
  .prize-stars { gap: var(--sp-1); padding: var(--sp-3); border-radius: 14px; }
  .prize-stars-icons { gap: 4px; }
  .prize-stars-icons svg { width: 21px; height: 21px; }
  .prize-stars span { font-size: .58rem; letter-spacing: .04em; }
  .prize-items { padding: var(--sp-4) var(--sp-5); }
  .prize-footer-note { margin: 0 var(--sp-5) var(--sp-5); }
  .prize-dest-heading { font-size: .9rem; }
  .dest-card { height: 190px; border-radius: var(--r-xl); }
  .dest-card-hint { top: auto; bottom: 14px; right: 14px; }
  .dest-card-back { padding: var(--sp-5); }
  .dest-card-back strong { font-size: 1.45rem; }
  .dest-card-back > span:not(.dest-card-back-region) { font-size: .76rem; }
  .t-toc {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: var(--sp-3) var(--sp-4);
    scrollbar-width: none;
  }
  .t-toc::-webkit-scrollbar { display: none; }
  .t-header { gap: var(--sp-3); padding: var(--sp-3) var(--sp-4); }
  .t-header-icon { display: none; }
  .t-body { padding: var(--sp-5) var(--sp-4); }
  .t-footer { padding: var(--sp-3) var(--sp-4); font-size: .72rem; }
  .footer-logo-img { height: 90px; }
}

.reveal {
  opacity:0; transform:translateY(20px);
  transition: opacity .55s ease-out, transform .55s ease-out;
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* Stagger for grids */
.reveal-stagger > *:nth-child(1) { transition-delay:.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay:.12s; }
.reveal-stagger > *:nth-child(3) { transition-delay:.19s; }
.reveal-stagger > *:nth-child(4) { transition-delay:.26s; }

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