/* ===================================================================
   Follow Advisor — Copa 2026 Hub | FIFA 26 Pop-Art Edition
   =================================================================== */

:root {
  /* FIFA 2026 inspired palette */
  --c-cream: #FFF4E0;
  --c-ink: #0A0A0A;
  --c-paper: #FFFFFF;

  --c-red: #FF3D1F;
  --c-blue: #2540DD;
  --c-purple: #6B3DE0;
  --c-lilac: #B89AFF;
  --c-lime: #C8E839;
  --c-teal: #2DD4BF;
  --c-coral: #FF9978;
  --c-yellow: #FFC93A;

  --c-bg: var(--c-cream);
  --c-fg: var(--c-ink);
  --c-line: rgba(10,10,10,0.12);
  --c-line-strong: rgba(10,10,10,0.5);
  --c-muted: #6B6256;

  /* Legacy aliases used in script-injected HTML */
  --bg-base: var(--c-cream);
  --bg-surface: var(--c-paper);
  --bg-elevated: var(--c-cream);
  --accent-primary: var(--c-red);
  --accent-secondary: var(--c-blue);
  --accent-tertiary: var(--c-purple);
  --accent-brand: var(--c-blue);
  --text-primary: var(--c-ink);
  --text-secondary: var(--c-muted);
  --text-muted: rgba(10,10,10,0.4);
  --border-subtle: rgba(10,10,10,0.1);
  --border-strong: rgba(10,10,10,0.3);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 200ms;
  --t-base: 350ms;
  --t-slow: 500ms;

  --font-display: 'Space Grotesk', 'Arial Black', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --max: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --r-pill: 999px;
  --r-card: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--c-cream);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Subtle paper grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,153,120,0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(37,64,221,0.04) 0%, transparent 40%);
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; color: inherit; }

::selection { background: var(--c-lime); color: var(--c-ink); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--c-cream); }
::-webkit-scrollbar-thumb { background: var(--c-ink); border-radius: 10px; border: 2px solid var(--c-cream); }

/* ============================ Utilities */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink);
  background: var(--c-paper);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--c-ink);
  margin-bottom: 20px;
}
.muted { color: var(--c-muted); font-weight: 500; }
.hidden { display: none !important; }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--c-red), var(--c-purple), var(--c-blue), var(--c-lime));
  z-index: 1000;
  transition: width 80ms linear;
}

/* Custom cursor */
.cursor {
  position: fixed;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-ink);
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 250ms var(--ease);
  opacity: 0;
}
.cursor.visible { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.cursor.active { transform: translate(-50%, -50%) scale(2.2); background: var(--c-red); }
@media (hover: none) { .cursor { display: none; } }

/* ============================ Header */
.site-header {
  position: fixed;
  top: 12px; left: 12px; right: 12px;
  z-index: 100;
  padding: 0;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: var(--r-pill);
  transition: all var(--t-base) var(--ease);
}
.site-header.scrolled {
  top: 8px;
  background: var(--c-ink);
  color: var(--c-paper);
}
.site-header.scrolled .site-nav a { color: var(--c-paper); }
.site-header.scrolled .site-nav a:hover { color: var(--c-lime); }
.site-header.scrolled .btn-ghost { color: var(--c-paper); border-color: var(--c-paper); }


.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 20px 10px 22px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  height: 24px;
  width: auto;
}
.site-nav {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.site-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink);
  position: relative;
  transition: color var(--t-fast);
  letter-spacing: -0.01em;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  width: 0; height: 6px;
  border-radius: var(--r-pill);
  background: var(--c-red);
  transform: translateX(-50%);
  transition: width var(--t-base) var(--ease);
}
.site-nav a:hover::after { width: 24px; }

/* ============================ Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--c-ink);
  cursor: pointer;
  transition: transform var(--t-base) var(--bounce), background var(--t-base), color var(--t-base), box-shadow var(--t-base);
  white-space: nowrap;
  letter-spacing: -0.01em;
  position: relative;
  box-shadow: 4px 4px 0 var(--c-ink);
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--c-ink);
}
.btn:active { transform: translate(2px, 2px); box-shadow: 0px 0px 0 var(--c-ink); }
.btn-sm { padding: 9px 16px; font-size: 12px; box-shadow: 3px 3px 0 var(--c-ink); }
.btn-sm:hover { box-shadow: 4px 4px 0 var(--c-ink); }
.btn-lg { padding: 18px 32px; font-size: 16px; box-shadow: 5px 5px 0 var(--c-ink); }
.btn-block { width: 100%; justify-content: center; }
.btn-primary { background: var(--c-red); color: var(--c-paper); }
.btn-primary:hover { background: var(--c-ink); }
.btn-ghost { background: var(--c-paper); color: var(--c-ink); }
.btn-ghost:hover { background: var(--c-lime); }

/* ============================ Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px var(--gutter) 80px;
  overflow: hidden;
  background: #0A0A0A;
  color: var(--c-paper);
}
#heroCanvas { display: none; }
.hero-overlay { display: none; }

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Horizontal gradient stripe behind navbar area */
.hero-stripe {
  position: absolute;
  top: 88px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg,
    #FF3D1F 0%,
    #FF8A2A 14%,
    #FFC93A 28%,
    #C8E839 42%,
    #2DD4BF 56%,
    #2540DD 72%,
    #6B3DE0 88%,
    #B89AFF 100%);
  border-radius: 0;
  opacity: 0.95;
}
.hero-stripe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    #FF3D1F 0%,
    #FF8A2A 14%,
    #FFC93A 28%,
    #C8E839 42%,
    #2DD4BF 56%,
    #2540DD 72%,
    #6B3DE0 88%,
    #B89AFF 100%);
  filter: blur(24px);
  opacity: 0.5;
  transform: scaleY(4);
}
.hero-stripe-glow {
  position: absolute;
  inset: -40px 0;
  background: linear-gradient(90deg,
    rgba(255,61,31,0.4) 0%,
    rgba(255,201,58,0.3) 28%,
    rgba(200,232,57,0.3) 42%,
    rgba(45,212,191,0.3) 56%,
    rgba(37,64,221,0.5) 72%,
    rgba(107,61,224,0.4) 88%);
  filter: blur(50px);
  opacity: 0.7;
}

/* Blue accent blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: blob-float 14s ease-in-out infinite;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: #2540DD;
  top: 20%;
  left: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: #1E3A8A;
  bottom: -100px;
  right: 10%;
  animation-delay: -5s;
}
.hero-blob-3 {
  width: 300px; height: 300px;
  background: #2540DD;
  top: 50%;
  right: -50px;
  animation-delay: -9s;
  opacity: 0.4;
}
@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-30px, 40px) scale(0.97); }
}

/* Dot grid texture */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  grid-template-rows: auto auto auto auto;
  gap: 28px 48px;
  align-items: start;
  color: var(--c-paper);
}
.hero-badge {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--c-paper);
  width: fit-content;
  box-shadow: none;
}
.dot-live {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--c-red);
  animation: pulse-live 1.6s infinite;
}
@keyframes pulse-live {
  0% { box-shadow: 0 0 0 0 rgba(255,61,31,0.7); }
  70% { box-shadow: 0 0 0 12px rgba(255,61,31,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,61,31,0); }
}

.hero-title {
  grid-column: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--c-paper);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-26 {
  position: absolute;
  right: -80px;
  top: -180px;
  font-size: clamp(220px, 28vw, 420px);
  font-weight: 700;
  font-family: var(--font-display);
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.18);
  letter-spacing: -0.06em;
  line-height: 1;
  z-index: -1;
  opacity: 1;
  pointer-events: none;
  user-select: none;
}
.ht-line { display: block; }
.ht-accent {
  color: var(--c-lime);
  font-style: italic;
}
.hero-sub {
  grid-column: 1;
  max-width: 540px;
  font-size: clamp(15px, 1.4vw, 19px);
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  font-weight: 500;
}
.hero-ctas {
  grid-column: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero .btn-primary { background: var(--c-red); color: var(--c-paper); border-color: var(--c-paper); box-shadow: 4px 4px 0 rgba(255,255,255,0.2); }
.hero .btn-primary:hover { background: var(--c-paper); color: var(--c-ink); border-color: var(--c-paper); box-shadow: 6px 6px 0 rgba(255,255,255,0.3); }
.hero .btn-ghost { background: rgba(255,255,255,0.04); backdrop-filter: blur(10px); color: var(--c-paper); border-color: rgba(255,255,255,0.4); box-shadow: 4px 4px 0 rgba(255,255,255,0.15); }
.hero .btn-ghost:hover { background: var(--c-paper); color: var(--c-ink); border-color: var(--c-paper); box-shadow: 6px 6px 0 rgba(255,255,255,0.25); }

.countdown {
  grid-column: 2;
  grid-row: 2 / 5;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--c-paper);
  border-radius: 28px;
  align-self: center;
  box-shadow: 6px 6px 0 rgba(37,64,221,0.4);
}
.cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}
.cd-num {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--c-paper);
  line-height: 1;
  letter-spacing: -0.04em;
}
.cd-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-lime);
  margin-top: 6px;
  font-weight: 600;
}
.cd-sep {
  color: var(--c-lime);
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  opacity: 0.5;
  line-height: 1;
}

.hero-stats {
  grid-column: 1 / -1;
  display: flex;
  gap: 0;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1.5px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hs {
  display: flex;
  flex-direction: column;
  padding-right: 48px;
  border-right: 1.5px solid rgba(255,255,255,0.1);
  margin-right: 0;
}
.hs:last-child { border-right: none; }
.hs-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 4vw, 56px);
  color: var(--c-paper);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hs:nth-child(1) .hs-num { color: var(--c-red); }
.hs:nth-child(2) .hs-num { color: #4D7AFF; }
.hs:nth-child(3) .hs-num { color: var(--c-lime); }
.hs:nth-child(4) .hs-num { color: var(--c-paper); }
.hs-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  font-weight: 600;
}

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
  font-weight: 600;
}
.scroll-dot {
  fill: rgba(255,255,255,0.7);
  animation: scroll-dot 1.8s var(--ease) infinite;
}
@keyframes scroll-dot {
  0%, 20% { transform: translateY(0); opacity: 1; }
  80%, 100% { transform: translateY(8px); opacity: 0; }
}

/* ============================ Sections */
.section {
  padding: 120px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  color: var(--c-ink);
}
.section-head p {
  font-size: 17px;
  color: var(--c-ink);
  max-width: 640px;
  line-height: 1.55;
  font-weight: 500;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Section dividers — number badges */
.section::before {
  content: attr(data-num);
  display: none;
}

/* ============================ Mapa */
.section-map {
  background: var(--c-blue);
  color: var(--c-paper);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  overflow: hidden;
}
.section-map .section-head,
.section-map .map-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-map .section-head h2,
.section-map .section-head p { color: var(--c-paper); }
.section-map .eyebrow {
  background: var(--c-lime);
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.section-map::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  right: -200px; top: -200px;
  background: var(--c-purple);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}

.map-wrap { position: relative; }
.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 3;
  background: var(--c-paper);
  border: 2px solid var(--c-ink);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--c-ink);
}
#mapSvg { width: 100%; height: 100%; display: block; }
/* Re-style country shapes via JS by id */
.city-dot {
  cursor: pointer;
  transition: transform var(--t-base) var(--ease);
}
.city-dot-pulse {
  animation: pulse-dot 2.5s var(--ease) infinite;
  transform-origin: center;
}
.city-dot-pulse-2 {
  animation: pulse-dot 2.5s var(--ease) infinite;
  animation-delay: 1.25s;
  transform-origin: center;
}
@keyframes pulse-dot {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(3); opacity: 0; }
}
.city-label {
  fill: var(--c-ink);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-base);
}
.city-dot-group:hover .city-label,
.city-dot-group.brasil .city-label { opacity: 1; }

.map-hover-card {
  position: absolute;
  pointer-events: none;
  background: var(--c-ink);
  color: var(--c-paper);
  border: 2px solid var(--c-ink);
  border-radius: 16px;
  padding: 14px 18px;
  min-width: 240px;
  box-shadow: 5px 5px 0 var(--c-red);
  opacity: 0;
  transform: translate(-50%, -120%) translateY(8px);
  transition: opacity var(--t-fast), transform var(--t-fast);
  z-index: 10;
}
.map-hover-card.visible { opacity: 1; transform: translate(-50%, -120%) translateY(0); }
.map-hover-card .mh-city {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 4px;
  color: var(--c-paper);
}
.map-hover-card .mh-stadium { font-size: 12px; color: var(--c-lime); margin-bottom: 10px; font-weight: 500; }
.map-hover-card .mh-meta {
  display: flex;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.map-hover-card .mh-meta strong { color: var(--c-lime); }

.map-legend {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--c-ink);
  flex-wrap: wrap;
}
.map-legend > div {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  padding: 5px 10px;
  border-radius: var(--r-pill);
}
.dot { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid var(--c-ink); }
.dot-usa { background: var(--c-red); }
.dot-mex { background: var(--c-lime); }
.dot-can { background: var(--c-purple); }

.map-mobile-list { display: none; }
.mml-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: 16px;
  margin-bottom: 10px;
  transition: all var(--t-base) var(--bounce);
  box-shadow: 3px 3px 0 var(--c-ink);
}
.mml-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--c-red);
}
.mml-card .mc-left { display: flex; align-items: center; gap: 12px; }
.mml-card .mc-flag { font-size: 22px; }
.mml-card .mc-name { font-weight: 700; font-size: 15px; }
.mml-card .mc-stadium { font-size: 12px; color: var(--c-muted); }
.mml-card .mc-games {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-red);
}

/* ============================ Side panel */
.side-panel {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.side-panel.open { pointer-events: auto; }
.side-panel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.5);
  opacity: 0;
  transition: opacity var(--t-base);
}
.side-panel.open .side-panel-backdrop { opacity: 1; }
.side-panel-inner {
  position: absolute;
  top: 0; right: 0;
  width: 100%;
  max-width: 520px;
  height: 100%;
  background: var(--c-cream);
  border-left: 2px solid var(--c-ink);
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.side-panel.open .side-panel-inner { transform: translateX(0); }

.sp-cover {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-bottom: 2px solid var(--c-ink);
}
.sp-cover::before {
  content: '';
  position: absolute;
  inset: -50px;
  background:
    radial-gradient(circle at 30% 40%, var(--c-yellow) 0 80px, transparent 81px),
    radial-gradient(circle at 70% 60%, var(--c-coral) 0 100px, transparent 101px),
    radial-gradient(circle at 50% 30%, var(--c-lilac) 0 60px, transparent 61px);
  opacity: 0.9;
  filter: blur(1px);
}
.sp-cover-meta {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.sp-flag {
  font-size: 36px;
  background: var(--c-paper);
  border: 2px solid var(--c-ink);
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  margin-bottom: 8px;
}
.sp-stadium-name {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-ink);
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  width: fit-content;
}
.sp-stadium-placeholder {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--c-ink);
  letter-spacing: 0.2em;
  background: rgba(255,255,255,0.7);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-weight: 600;
}
.sp-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-paper);
  border: 2px solid var(--c-ink);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 3px 3px 0 var(--c-ink);
  transition: transform var(--t-fast) var(--bounce);
}
.sp-close:hover { transform: rotate(90deg); background: var(--c-red); color: var(--c-paper); }
.sp-body { padding: 28px; }
.sp-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}
.sp-destaque {
  font-size: 14px;
  color: var(--c-ink);
  background: var(--c-lime);
  border: 1.5px solid var(--c-ink);
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 28px;
  font-weight: 600;
}
.sp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}
.sp-stat {
  padding: 16px;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: 14px;
}
.sp-stat .sps-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}
.sp-stat .sps-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -0.02em;
}
.sp-section { margin-bottom: 32px; }
.sp-section h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink);
  margin-bottom: 14px;
  display: inline-block;
  background: var(--c-coral);
  border: 1.5px solid var(--c-ink);
  padding: 4px 12px;
  border-radius: var(--r-pill);
}
.sp-flights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.sp-flight-card {
  padding: 14px;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: 14px;
}
.sp-flight-card .sfc-lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 600;
}
.sp-flight-card .sfc-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: -0.02em;
}
.sp-hotels { display: flex; flex-direction: column; gap: 8px; }
.sp-hotel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: 14px;
}
.sp-hotel-row .shr-tier { font-weight: 700; font-size: 14px; }
.sp-hotel-row .shr-price {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  background: var(--c-lime);
  border: 1.5px solid var(--c-ink);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}
.sp-tips { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sp-tips li {
  position: relative;
  padding: 10px 14px 10px 36px;
  font-size: 13px;
  color: var(--c-ink);
  line-height: 1.5;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: 12px;
  font-weight: 500;
}
.sp-tips li::before {
  content: '✦';
  position: absolute;
  left: 12px; top: 10px;
  color: var(--c-red);
  font-size: 16px;
  font-weight: 700;
}
.sp-games-list { display: flex; flex-direction: column; gap: 6px; }
.sp-game-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: 12px;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--t-base) var(--bounce);
  font-weight: 500;
}
.sp-game-mini:hover {
  background: var(--c-yellow);
  transform: translateX(4px);
}
.sp-game-mini .sgm-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-muted);
  font-weight: 600;
}
.sp-game-mini .sgm-teams { display: flex; align-items: center; gap: 6px; font-weight: 600; }

/* ============================ Filters & table */
.section-jogos { padding-top: 120px; }
.filters {
  position: sticky;
  top: 80px;
  z-index: 30;
  background: var(--c-paper);
  border: 2px solid var(--c-ink);
  border-radius: 20px;
  padding: 16px 20px;
  margin-bottom: 32px;
  box-shadow: 5px 5px 0 var(--c-ink);
}
.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
}
.filter-row + .filter-row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1.5px solid var(--c-line);
}
.filter-group { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.filter-group > label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 700;
}
.filter-group select {
  padding: 9px 32px 9px 14px;
  background: var(--c-cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230A0A0A' stroke-width='2'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1.5px solid var(--c-ink);
  border-radius: 12px;
  appearance: none;
  font-size: 13px;
  font-weight: 600;
  min-width: 180px;
  cursor: pointer;
  transition: all var(--t-fast);
}
.filter-group select:hover { background-color: var(--c-yellow); }
.filter-group select:focus { outline: none; box-shadow: 3px 3px 0 var(--c-ink); }

.filter-dates { flex: 1; min-width: 0; max-width: 100%; }
.date-strip {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.date-strip::-webkit-scrollbar { height: 4px; }
.date-chip {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7px 11px;
  background: var(--c-cream);
  border: 1.5px solid var(--c-ink);
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--t-fast);
  min-width: 56px;
}
.date-chip:hover { background: var(--c-yellow); }
.date-chip.active {
  background: var(--c-ink);
  color: var(--c-paper);
}
.date-chip .dc-day {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.date-chip .dc-mo {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
  opacity: 0.8;
}

.switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}
.switch input { display: none; }
.switch-track {
  position: relative;
  width: 40px; height: 22px;
  background: var(--c-cream);
  border: 1.5px solid var(--c-ink);
  border-radius: 100px;
  transition: background var(--t-fast);
}
.switch-thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: var(--c-ink);
  border-radius: 50%;
  transition: transform var(--t-base) var(--bounce);
}
.switch input:checked + .switch-track { background: var(--c-lime); }
.switch input:checked + .switch-track .switch-thumb { transform: translateX(18px); }

.filter-view {
  display: flex;
  flex-direction: row;
  gap: 0;
  padding: 3px;
  background: var(--c-cream);
  border: 1.5px solid var(--c-ink);
  border-radius: 12px;
}
.view-btn {
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-ink);
  border-radius: 9px;
  transition: all var(--t-fast);
  letter-spacing: -0.01em;
}
.view-btn.active { background: var(--c-ink); color: var(--c-lime); }

.filter-count {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-ink);
  font-weight: 700;
  background: var(--c-lime);
  border: 1.5px solid var(--c-ink);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.jogos-view { min-height: 400px; }
.jogos-day-group { margin-bottom: 36px; }
.jogos-day-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--c-ink);
}
.jogos-day-header h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.jogos-day-header span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--c-paper);
  background: var(--c-ink);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

.jogo-card {
  display: grid;
  grid-template-columns: 64px 1fr auto 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px 16px 20px;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: 16px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all var(--t-base) var(--bounce);
  position: relative;
}
.jogo-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--c-ink);
}
.jogo-card.has-brasil {
  background: var(--c-lime);
}
.jogo-card.has-brasil:hover { box-shadow: 5px 5px 0 var(--c-red); }
.jogo-card.is-final { background: var(--c-yellow); border-width: 2px; }
.jogo-card.is-semi { background: var(--c-coral); }

.jogo-time { display: flex; flex-direction: column; gap: 2px; }
.jogo-time .jt-local {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.jogo-time .jt-brt {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--c-muted);
  letter-spacing: 0.05em;
  font-weight: 600;
}
.jogo-team {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.jogo-team-home { justify-content: flex-end; text-align: right; }
.jogo-team .jt-flag {
  font-size: 22px;
  flex-shrink: 0;
}
.jogo-team .jt-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.jogo-team .jt-name.tbd { color: var(--c-muted); font-weight: 500; }
.jogo-vs {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--c-ink);
  font-weight: 700;
  background: var(--c-cream);
  border: 1.5px solid var(--c-ink);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.jogo-card.has-brasil .jogo-vs { background: var(--c-paper); }
.jogo-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}
.jogo-meta .jm-fase {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink);
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  padding: 2px 8px;
  border-radius: var(--r-pill);
}
.jogo-card.has-brasil .jm-fase,
.jogo-card.is-final .jm-fase,
.jogo-card.is-semi .jm-fase { background: var(--c-cream); }
.jogo-meta .jm-cidade {
  font-size: 13px;
  color: var(--c-ink);
  font-weight: 600;
}
.jogo-price {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-ink);
  text-align: right;
  letter-spacing: -0.01em;
}
.jogo-price-lbl {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--c-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
  font-weight: 600;
}

/* Bracket */
.jogos-bracket {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
}
.bracket-col {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 10px;
  min-width: 200px;
}
.bracket-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-paper);
  background: var(--c-ink);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  text-align: center;
  width: fit-content;
  margin: 0 auto 8px;
}
.bracket-match {
  padding: 10px 12px;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: 14px;
  font-size: 12px;
  cursor: pointer;
  transition: all var(--t-base) var(--bounce);
  font-weight: 600;
}
.bracket-match:hover { transform: translateY(-3px); box-shadow: 4px 4px 0 var(--c-ink); }
.bracket-match .bm-date {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--c-muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.bracket-match .bm-team { display: flex; align-items: center; gap: 8px; padding: 4px 0; }
.bracket-match.is-final { background: var(--c-yellow); }
.bracket-match.is-semi { background: var(--c-coral); }

/* ============================ Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  pointer-events: none;
}
.modal.open { pointer-events: auto; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  opacity: 0;
  transition: opacity var(--t-base);
}
.modal.open .modal-backdrop { opacity: 1; }
.modal-inner {
  position: relative;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--c-cream);
  border: 2px solid var(--c-ink);
  border-radius: 24px;
  transform: scale(0.95);
  opacity: 0;
  transition: transform var(--t-base) var(--bounce), opacity var(--t-base);
  box-shadow: 10px 10px 0 var(--c-red);
}
.modal.open .modal-inner { transform: scale(1); opacity: 1; }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-paper);
  border: 2px solid var(--c-ink);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 3px 3px 0 var(--c-ink);
  transition: transform var(--t-fast) var(--bounce);
}
.modal-close:hover { transform: rotate(90deg); background: var(--c-red); color: var(--c-paper); }
.modal-head {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 2px solid var(--c-ink);
}
.modal-head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
}

/* Modal: partida */
.mp-head {
  padding: 36px 24px 28px;
  background: var(--c-blue);
  color: var(--c-paper);
  border-bottom: 2px solid var(--c-ink);
  position: relative;
  overflow: hidden;
}
.mp-head::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  right: -150px; top: -150px;
  background: var(--c-purple);
  border-radius: 50%;
  opacity: 0.7;
}
.mp-head::after {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  left: -100px; bottom: -100px;
  background: var(--c-coral);
  border-radius: 50%;
  opacity: 0.6;
}
.mp-head > * { position: relative; z-index: 1; }
.mp-fase {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-ink);
  background: var(--c-lime);
  border: 1.5px solid var(--c-ink);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
  display: inline-block;
}
.mp-matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
.mp-team { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.mp-team .mpt-flag {
  font-size: 56px;
  background: var(--c-paper);
  border: 2px solid var(--c-ink);
  width: 96px; height: 96px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 24px;
}
.mp-team .mpt-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--c-paper);
}
.mp-vs {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-ink);
  background: var(--c-lime);
  border: 2px solid var(--c-ink);
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.mp-when {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.mp-when > span {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  color: var(--c-ink);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-weight: 600;
}
.mp-when strong { color: var(--c-ink); }
.mp-destaque {
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--c-yellow);
  border: 1.5px solid var(--c-ink);
  border-radius: 12px;
  font-size: 14px;
  color: var(--c-ink);
  text-align: center;
  font-weight: 600;
}
.mp-body { padding: 28px 24px; }
.mp-body h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-ink);
  margin: 28px 0 14px;
  display: inline-block;
  background: var(--c-coral);
  border: 1.5px solid var(--c-ink);
  padding: 4px 12px;
  border-radius: var(--r-pill);
}
.mp-body h4:first-child { margin-top: 0; }
.mp-ingressos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
}
.mp-ing-card {
  padding: 14px 10px;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: 14px;
  text-align: center;
}
.mp-ing-card .mic-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 6px;
}
.mp-ing-card .mic-brl {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -0.02em;
}
.mp-ing-card .mic-usd {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--c-muted);
  margin-top: 2px;
  font-weight: 600;
}
.mp-ing-card.vip { background: var(--c-yellow); }
.mp-ing-card.vip .mic-cat { color: var(--c-ink); }
.mp-timeline { display: flex; flex-direction: column; gap: 10px; }
.mp-timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 16px;
  background: var(--c-paper);
  border-radius: 14px;
  border: 1.5px solid var(--c-ink);
  align-items: start;
}
.mp-timeline-item .mti-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-ink);
  background: var(--c-lime);
  border: 1.5px solid var(--c-ink);
  padding: 3px 8px;
  border-radius: var(--r-pill);
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}
.mp-timeline-item .mti-text {
  font-size: 13px;
  color: var(--c-ink);
  line-height: 1.5;
  font-weight: 500;
}
.mp-cta { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }

/* ============================ Seleções */
.section-selecoes {
  background: var(--c-paper);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.section-selecoes .section-head,
.section-selecoes .selecoes-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.selecoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.selecao-card {
  position: relative;
  padding: 22px 20px 20px;
  background: var(--c-cream);
  border: 1.5px solid var(--c-ink);
  border-radius: 18px;
  cursor: pointer;
  transition: all var(--t-base) var(--bounce);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.selecao-card::after {
  content: '';
  position: absolute;
  width: 140px; height: 140px;
  right: -50px; bottom: -50px;
  background: var(--card-c1, var(--c-lilac));
  border-radius: 50%;
  opacity: 0.18;
  transition: transform var(--t-slow) var(--ease);
  z-index: 0;
}
.selecao-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--c-ink);
}
.selecao-card:hover::after { transform: scale(1.5); opacity: 0.3; }

.selecao-card:nth-child(5n+1) { background: var(--c-paper); }
.selecao-card:nth-child(5n+2) { background: var(--c-lilac); }
.selecao-card:nth-child(5n+3) { background: var(--c-paper); }
.selecao-card:nth-child(5n+4) { background: var(--c-coral); }
.selecao-card:nth-child(5n) { background: var(--c-paper); }

.selecao-card.is-brasil {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--c-lime) !important;
  border-width: 2px;
  position: relative;
}
.selecao-card.is-brasil::before {
  content: '🏆';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 48px;
  opacity: 0.5;
}
.selecao-card.is-brasil .sc-flag { font-size: 80px; }
.selecao-card.is-brasil .sc-name {
  font-size: 44px;
  line-height: 0.95;
}
.sc-flag {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.sc-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.sc-grupo {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--c-ink);
  position: relative;
  z-index: 1;
  background: var(--c-cream);
  border: 1.5px solid var(--c-ink);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  width: fit-content;
}
.selecao-card:nth-child(5n+2) .sc-grupo,
.selecao-card:nth-child(5n+4) .sc-grupo { background: var(--c-paper); }
.sc-grupo strong { color: var(--c-red); }
.sc-cities {
  margin-top: 12px;
  font-size: 12px;
  color: var(--c-ink);
  line-height: 1.5;
  position: relative;
  z-index: 1;
  font-weight: 500;
}
.sc-destaque {
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
  color: var(--c-ink);
  position: relative;
  z-index: 1;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  font-weight: 600;
}
.sc-next {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-muted);
  position: relative;
  z-index: 1;
  font-weight: 600;
}
.sc-next strong { color: var(--c-ink); font-family: var(--font-display); font-size: 14px; }

/* Modal seleção */
.ms-head {
  padding: 40px 24px 28px;
  text-align: center;
  position: relative;
  background: var(--c-purple);
  color: var(--c-paper);
  border-bottom: 2px solid var(--c-ink);
  overflow: hidden;
}
.ms-head::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  right: -100px; top: -100px;
  background: var(--c-coral);
  border-radius: 50%;
  opacity: 0.6;
}
.ms-flag {
  font-size: 80px;
  background: var(--c-paper);
  border: 2px solid var(--c-ink);
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 28px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ms-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  margin: 16px 0 10px;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 1;
}
.ms-meta {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.ms-meta > span {
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--c-lime);
  color: var(--c-ink);
  border: 1.5px solid var(--c-ink);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-weight: 700;
}
.ms-body { padding: 28px 24px; }

/* ============================ Planejador IA */
.section-ia {
  background: var(--c-coral);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  overflow: hidden;
}
.section-ia .section-head,
.section-ia .ia-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-ia .eyebrow { background: var(--c-paper); }
.section-ia::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  left: -200px; bottom: -100px;
  background: var(--c-yellow);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}

.ia-shell {
  background: var(--c-paper);
  border: 2px solid var(--c-ink);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--c-ink);
  position: relative;
  z-index: 1;
}
.ia-chat {
  padding: 24px;
  min-height: 240px;
  max-height: 500px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ia-welcome {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ia-avatar {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--c-blue);
  border: 1.5px solid var(--c-ink);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-paper);
}
.ia-welcome-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.ia-welcome-text p { font-size: 14px; color: var(--c-muted); line-height: 1.55; font-weight: 500; }

.ia-msg {
  max-width: 85%;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.55;
  white-space: pre-wrap;
  border: 1.5px solid var(--c-ink);
  font-weight: 500;
}
.ia-msg.user {
  align-self: flex-end;
  background: var(--c-blue);
  color: var(--c-paper);
  border-bottom-right-radius: 4px;
}
.ia-msg.assistant {
  align-self: flex-start;
  background: var(--c-cream);
  border-bottom-left-radius: 4px;
}
.ia-msg.assistant strong { color: var(--c-red); }

.ia-msg .typing-dots { display: inline-flex; gap: 4px; }
.ia-msg .typing-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-red);
  animation: typing 1.4s infinite;
}
.ia-msg .typing-dots span:nth-child(2) { animation-delay: 0.2s; background: var(--c-blue); }
.ia-msg .typing-dots span:nth-child(3) { animation-delay: 0.4s; background: var(--c-lime); }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.ia-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px 20px;
  border-bottom: 1.5px solid var(--c-line);
}
.chip {
  padding: 8px 14px;
  background: var(--c-cream);
  border: 1.5px solid var(--c-ink);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink);
  transition: all var(--t-fast) var(--bounce);
  cursor: pointer;
}
.chip:hover {
  background: var(--c-yellow);
  transform: translate(-1px, -1px);
  box-shadow: 2px 2px 0 var(--c-ink);
}
.ia-form { padding: 18px 24px 24px; }
.ia-form textarea {
  width: 100%;
  min-height: 60px;
  max-height: 200px;
  padding: 14px 16px;
  background: var(--c-cream);
  border: 1.5px solid var(--c-ink);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  resize: none;
  outline: none;
  transition: box-shadow var(--t-fast);
}
.ia-form textarea:focus { box-shadow: 3px 3px 0 var(--c-ink); }
.ia-form-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 14px; flex-wrap: wrap; }

/* Planner modal */
.modal-planner .modal-inner { max-width: 820px; }
.planner-body { display: flex; flex-direction: column; }
.planner-body .ia-chat { max-height: 60vh; min-height: 300px; }

.fab-ai {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--c-red);
  border: 2px solid var(--c-ink);
  color: var(--c-paper);
  display: flex; align-items: center; justify-content: center;
  z-index: 50;
  box-shadow: 4px 4px 0 var(--c-ink);
  transition: transform var(--t-base) var(--bounce);
}
.fab-ai:hover {
  transform: rotate(20deg) scale(1.05);
  background: var(--c-lime);
  color: var(--c-ink);
  box-shadow: 6px 6px 0 var(--c-ink);
}

/* ============================ Calculadora */
.section-calc {
  background: var(--c-purple);
  color: var(--c-paper);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  overflow: hidden;
}
.section-calc .section-head,
.section-calc .calc-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-calc .section-head h2,
.section-calc .section-head p { color: var(--c-paper); }
.section-calc .eyebrow {
  background: var(--c-lime);
  color: var(--c-ink);
}
.section-calc::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  right: -250px; top: -200px;
  background: var(--c-blue);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}

.calc-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: var(--c-cream);
  border: 2px solid var(--c-ink);
  border-radius: 28px;
  padding: 36px;
  position: relative;
  z-index: 1;
  box-shadow: 10px 10px 0 var(--c-ink);
  color: var(--c-ink);
}
.calc-inputs { display: flex; flex-direction: column; gap: 24px; }
.calc-group { display: flex; flex-direction: column; gap: 8px; }
.calc-group > label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 700;
}
.calc-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-red);
  letter-spacing: -0.02em;
  text-transform: none;
}
.calc-group input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: 100px;
  outline: none;
}
.calc-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px; height: 24px;
  background: var(--c-red);
  border: 2px solid var(--c-ink);
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--t-fast) var(--bounce);
}
.calc-group input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-group input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px;
  background: var(--c-red);
  border: 2px solid var(--c-ink);
  border-radius: 50%;
  cursor: pointer;
}
.range-ticks {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--c-muted);
  padding: 0 4px;
  font-weight: 600;
}
.seg-control {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: 12px;
}
.seg-control button {
  flex: 1;
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-ink);
  border-radius: 9px;
  transition: all var(--t-fast);
  letter-spacing: -0.01em;
}
.seg-control button.active {
  background: var(--c-ink);
  color: var(--c-lime);
}
.multi-pick { display: flex; flex-wrap: wrap; gap: 6px; }
.mp-chip {
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--t-fast) var(--bounce);
  color: var(--c-ink);
}
.mp-chip:hover { background: var(--c-yellow); }
.mp-chip.active { background: var(--c-red); color: var(--c-paper); }

.calc-output {
  background: var(--c-ink);
  color: var(--c-paper);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.calc-total { text-align: center; }
.calc-total-lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-lime);
  margin-bottom: 10px;
  font-weight: 700;
}
.calc-total-val {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 56px);
  color: var(--c-paper);
  letter-spacing: -0.04em;
  line-height: 1;
  transition: color var(--t-base);
}
.calc-total-pp {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  font-weight: 600;
}
.calc-chart { display: flex; flex-direction: column; gap: 8px; }
.cc-row {
  display: grid;
  grid-template-columns: 120px 1fr 90px;
  gap: 10px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
}
.cc-row .cc-lbl { color: rgba(255,255,255,0.75); }
.cc-row .cc-bar {
  height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}
.cc-row .cc-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width var(--t-slow) var(--ease);
}
.cc-row .cc-val { text-align: right; color: var(--c-paper); font-weight: 700; }
.calc-breakdown {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
  border-top: 1.5px solid rgba(255,255,255,0.15);
}
.calc-breakdown li {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}
.calc-breakdown li span:first-child { color: rgba(255,255,255,0.7); }
.calc-breakdown li span:last-child { color: var(--c-paper); font-weight: 700; }

/* ============================ Why us */
.section-why { padding-bottom: 80px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  padding: 32px;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: 24px;
  transition: all var(--t-base) var(--bounce);
}
.why-card:nth-child(1) { background: var(--c-lilac); }
.why-card:nth-child(2) { background: var(--c-lime); }
.why-card:nth-child(3) { background: var(--c-coral); }
.why-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--c-ink);
}
.why-card:hover .why-icon { transform: rotate(360deg); }
.why-icon {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-ink);
  margin-bottom: 24px;
  transition: transform 800ms var(--ease);
}
.why-card:nth-child(2) .why-icon { background: var(--c-paper); }
.why-card:nth-child(3) .why-icon { background: var(--c-paper); }
.why-icon svg { width: 36px; height: 36px; }
.why-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.why-card p {
  font-size: 14px;
  color: var(--c-ink);
  line-height: 1.6;
  font-weight: 500;
}

/* ============================ FAQ */
.section-faq {
  background: var(--c-yellow);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  overflow: hidden;
}
.section-faq .section-head,
.section-faq .faq-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-faq .eyebrow { background: var(--c-paper); }
.section-faq::before {
  content: '?';
  position: absolute;
  font-family: var(--font-display);
  font-size: 600px;
  font-weight: 700;
  color: var(--c-red);
  opacity: 0.08;
  right: -50px;
  top: -100px;
  line-height: 1;
  pointer-events: none;
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--t-fast);
}
.faq-item[open] {
  background: var(--c-cream);
  box-shadow: 4px 4px 0 var(--c-ink);
}
.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-ink);
  background: var(--c-lime);
  border: 1.5px solid var(--c-ink);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform var(--t-base) var(--bounce);
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--c-red); color: var(--c-paper); }
.faq-content {
  padding: 0 24px 24px;
  color: var(--c-ink);
  font-size: 14px;
  line-height: 1.65;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 500;
}
.faq-content strong { color: var(--c-red); }

/* ============================ CTA Final */
.section-cta { padding: 80px var(--gutter); }
.cta-card {
  background: var(--c-ink);
  color: var(--c-paper);
  border: 2px solid var(--c-ink);
  border-radius: 32px;
  padding: clamp(48px, 8vw, 96px);
  text-align: center;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  left: -200px; bottom: -200px;
  background: var(--c-red);
  border-radius: 50%;
  opacity: 0.5;
}
.cta-card::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  right: -150px; top: -150px;
  background: var(--c-blue);
  border-radius: 50%;
  opacity: 0.5;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card .eyebrow { background: var(--c-lime); color: var(--c-ink); }
.cta-card h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 20px 0 24px;
  color: var(--c-paper);
}
.cta-card p {
  max-width: 580px;
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 36px;
  font-weight: 500;
}
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ============================ Footer */
.site-footer {
  background: var(--c-cream);
  border-top: 2px solid var(--c-ink);
  padding: 64px var(--gutter) 24px;
  position: relative;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1.5px solid var(--c-line);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; max-width: 320px; align-items: flex-start; }
.footer-brand .brand-logo { height: 36px; width: auto; display: block; align-self: flex-start; }
.footer-brand p { font-size: 13px; color: var(--c-muted); font-weight: 500; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-ink);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--c-ink);
  padding: 6px 0;
  transition: color var(--t-fast);
  font-weight: 500;
}
.footer-col a:hover { color: var(--c-red); }
.footer-bottom {
  max-width: var(--max);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--c-muted);
  letter-spacing: 0.05em;
  font-weight: 600;
}
.ai-badge {
  color: var(--c-ink);
  background: var(--c-lime);
  border: 1.5px solid var(--c-ink);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.08em;
}

/* ============================ Responsive */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .countdown { grid-column: 1; grid-row: auto; }
  .hero-stats { gap: 0; }
  .hs { padding-right: 28px; }
  .why-grid { grid-template-columns: 1fr; }
  .calc-shell { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .selecao-card.is-brasil { grid-column: span 2; grid-row: auto; }
  .hero-26 { right: -40px; top: -120px; opacity: 0.5; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .header-inner > .btn { display: none; }
  .hero { padding-top: 120px; }
  .hero-26 { display: none; }
  .hero-stats { flex-direction: row; gap: 0; flex-wrap: wrap; }
  .hs { padding: 0 16px 0 0; }
  .section { padding: 80px var(--gutter); }
  .section-map { padding: 80px 0; }
  .section-selecoes { padding: 80px 0; }
  .section-ia { padding: 80px 0; }
  .section-calc { padding: 80px 0; }
  .section-faq { padding: 80px 0; }
  .map-container { display: none; }
  .map-mobile-list { display: block; }
  .filters { top: 76px; }
  .filter-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .filter-group select { min-width: 0; }
  .jogo-card {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
    padding: 16px;
  }
  .jogo-team-home, .jogo-vs, .jogo-meta, .jogo-price { grid-column: 1 / -1; }
  .jogo-team-home { justify-content: flex-start; text-align: left; }
  .jogos-bracket {
    grid-template-columns: repeat(5, 200px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .bracket-col { scroll-snap-align: start; }
  .selecoes-grid { grid-template-columns: repeat(2, 1fr); }
  .selecao-card.is-brasil { grid-column: 1 / -1; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .side-panel-inner { max-width: 100%; }
  .cursor { display: none; }
  .calc-shell { padding: 24px; }
}

@media (max-width: 480px) {
  .countdown { padding: 16px; gap: 4px; box-shadow: 5px 5px 0 var(--c-red); }
  .cd-block { min-width: 48px; }
  .cd-num { font-size: 28px; }
  .cd-sep { font-size: 24px; }
  .selecoes-grid { grid-template-columns: 1fr; }
  .selecao-card.is-brasil { grid-column: 1; }
  .mp-matchup { grid-template-columns: 1fr; gap: 14px; }
}
