/* =============================================================
   Veriluda — broadcast / matchday editorial (light)
   Saira Condensed (display) + Figtree (text)
   Hand-written CSS. Full-bleed, fluid clamp() units, mobile-first.
   ============================================================= */

:root {
  /* palette */
  --white: #ffffff;
  --ink: #0f172a;
  --ink-soft: #33415a;
  --ink-mute: #64748b;
  --green: #15803d;
  --green-deep: #116233;
  --green-tint: #e7f2ec;
  --amber: #f59e0b;
  --amber-deep: #b9770a;
  --amber-tint: #fdf3e0;
  --panel: #f1f3f5;
  --panel-2: #e9edf0;
  --line: #e3e7ea;
  --line-strong: #cfd6db;

  /* type */
  --display: "Saira Condensed", "Arial Narrow", sans-serif;
  --text: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* fluid scale */
  --fs-mega: clamp(3rem, 1.4rem + 8vw, 8rem);
  --fs-h1: clamp(2.4rem, 1.3rem + 5.2vw, 5.2rem);
  --fs-h2: clamp(1.85rem, 1.2rem + 2.6vw, 3.1rem);
  --fs-h3: clamp(1.4rem, 1.05rem + 1.5vw, 2rem);
  --fs-lead: clamp(1.06rem, 0.98rem + 0.5vw, 1.32rem);
  --fs-body: clamp(1rem, 0.96rem + 0.22vw, 1.09rem);
  --fs-sm: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --fs-xs: clamp(0.72rem, 0.7rem + 0.1vw, 0.78rem);

  /* rhythm */
  --gutter: clamp(1.1rem, 0.4rem + 4vw, 5.5rem);
  --section-y: clamp(3.4rem, 2rem + 6vw, 7rem);
  --radius: 4px;
  --radius-lg: 8px;

  /* motion (emil curves) */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --shadow-card: 0 1px 0 var(--line), 0 18px 40px -30px rgba(15, 23, 42, 0.5);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--text);
  font-size: var(--fs-body);
  line-height: 1.62;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 700; line-height: 0.98; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 2px; }

/* ---------- layout primitives ---------- */
.bleed { padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.measure { max-width: 66ch; }

.kicker {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: var(--fs-sm);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.kicker::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--amber);
  display: inline-block;
}

/* tabular scoreboard numerals */
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

/* =============================================================
   CAPTCHA GATE
   ============================================================= */
.gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  padding: var(--gutter);
}
.gate[hidden] { display: none; }
body.gate-open { overflow: hidden; }

.gate__card {
  width: min(440px, 100%);
  background: #0b1220;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gate__top {
  background: var(--green);
  padding: 0.55rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--fs-xs);
}
.gate__top span:last-child { color: var(--amber); }
.gate__live { display: inline-flex; align-items: center; gap: 0.4rem; }
.gate__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
@media (prefers-reduced-motion: no-preference) {
  .gate__dot { animation: pulse 1.6s var(--ease-in-out) infinite; }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.gate__body { padding: 1.6rem 1.4rem 1.7rem; }
.gate__body h1 {
  font-size: clamp(1.7rem, 1.3rem + 2vw, 2.4rem);
  margin-bottom: 0.4rem;
}
.gate__task {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: var(--fs-xs);
  color: var(--amber);
  margin: 0 0 0.5rem;
}
.gate__body p#gate-help { color: #9fb0c4; font-size: var(--fs-sm); margin-bottom: 1.1rem; }

.gate__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  margin: 0.2rem 0 0.9rem;
}
@media (max-width: 400px) { .gate__grid { grid-template-columns: repeat(3, 1fr); } }
.gate__icon {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: #0f1a2c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  color: #cdd8e6;
  transition: transform 150ms var(--ease-out), background 160ms var(--ease-out), border-color 160ms, color 160ms;
}
.gate__icon svg { width: 58%; height: 58%; display: block; }
.gate__icon:hover { background: #16263e; border-color: var(--green); color: #fff; transform: translateY(-2px); }
.gate__icon:active { transform: scale(0.95); }
.gate__icon.is-wrong { border-color: #e2564a; color: #ffb4a8; animation: gate-shake 360ms var(--ease-in-out); }
@keyframes gate-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .gate__icon.is-wrong { animation: none; }
}
.gate__err {
  color: #ffb4a8;
  font-size: var(--fs-sm);
  min-height: 1.2em;
  margin: 0 0 0.5rem;
}
.gate__hint { color: #7d90a6; font-size: var(--fs-xs); margin: 0; }
.gate__hint kbd {
  font-family: var(--display);
  font-size: 0.9em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  padding: 0.02rem 0.35rem;
  color: #cdd8e6;
}

/* =============================================================
   HEADER / NAV
   ============================================================= */
.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 62px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand svg { width: 30px; height: 30px; border-radius: 7px; flex: none; }
.brand b { color: var(--green); font-weight: 700; }

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  gap: clamp(1rem, 0.4rem + 1.6vw, 2rem);
  align-items: center;
}
.nav-links a {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.98rem;
  color: var(--ink-soft);
  padding: 0.3rem 0;
  position: relative;
  transition: color 160ms var(--ease-out);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 200ms var(--ease-out);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.burger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 9px 8px;
}
.burger span { width: 22px; height: 2px; background: var(--ink); transition: transform 200ms var(--ease-out), opacity 160ms; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0.4rem 0 0.9rem; }
.mobile-menu a {
  display: block;
  padding: 0.7rem var(--gutter);
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a[aria-current="page"] { color: var(--green); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .burger { display: none; }
  .mobile-menu { display: none !important; }
}

/* =============================================================
   HERO — scoreboard
   ============================================================= */
.hero {
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(21, 128, 61, 0.06), transparent 60%),
    var(--white);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.6rem, 1.5rem + 5vw, 5.5rem);
}
.hero__grid {
  display: grid;
  gap: clamp(1.8rem, 1rem + 3vw, 3.4rem);
  align-items: end;
}
.hero__title {
  font-size: var(--fs-h1);
  text-transform: uppercase;
  letter-spacing: -0.015em;
  max-width: 15ch;
}
.hero__title em { font-style: normal; color: var(--green); }
.hero__title .amber { color: var(--amber); }
.hero__lead {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 52ch;
  margin-top: 1.1rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.hero__note {
  margin-top: 1.3rem;
  font-size: var(--fs-sm);
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-left: 3px solid var(--amber);
  padding-left: 0.7rem;
}

/* scoreboard panel */
.board {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.board__top {
  background: var(--green);
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: var(--fs-xs);
}
.board__top .amber { color: var(--amber); }
.board__rows { display: grid; grid-template-columns: repeat(3, 1fr); }
.board__cell {
  padding: clamp(1rem, 0.6rem + 1.4vw, 1.7rem) 0.8rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}
.board__cell:last-child { border-right: 0; }
.board__num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.6rem, 1.6rem + 4vw, 4rem);
  line-height: 0.9;
  color: var(--amber);
}
.board__num.green { color: #4ade80; }
.board__label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9fb0c4;
  margin-top: 0.5rem;
}
.board__foot {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0.7rem 1rem;
  font-size: var(--fs-xs);
  color: #8ba0b5;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.35fr 0.95fr; }
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.02rem;
  padding: 0.66rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 140ms var(--ease-out), background 160ms var(--ease-out), border-color 160ms;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-deep); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); }

/* store buttons */
.store-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.95rem 0.5rem 0.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  transition: transform 140ms var(--ease-out), background 160ms var(--ease-out);
}
.store-btn:active { transform: scale(0.98); }
.store-btn:hover { background: #1e293b; }
.store-btn svg { width: 22px; height: 22px; flex: none; }
.store-btn .lbl { display: flex; flex-direction: column; line-height: 1.05; }
.store-btn .lbl small { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.72; }
.store-btn .lbl strong { font-family: var(--display); font-weight: 600; font-size: 1.02rem; letter-spacing: 0.01em; }
.store-btn--play { background: var(--green); border-color: var(--green); }
.store-btn--play:hover { background: var(--green-deep); }

/* screen-reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* =============================================================
   TABELA COMPARATIVA
   ============================================================= */
.compare { background: var(--panel); border-bottom: 1px solid var(--line); }
.compare__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); }
.compare__scroll:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.ctable {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: var(--fs-sm);
}
.ctable thead th {
  text-align: left;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--fs-xs);
  padding: 0.75rem 0.9rem;
  white-space: nowrap;
}
.ctable tbody th, .ctable tbody td { padding: 0.8rem 0.9rem; border-top: 1px solid var(--line); vertical-align: middle; }
.ctable tbody tr:nth-child(even) { background: var(--panel); }
.ctable tbody th {
  text-align: left;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1rem;
  color: var(--ink);
  min-width: 180px;
}
.ctable tbody th a { color: var(--ink); border-bottom: 2px solid transparent; transition: border-color 160ms var(--ease-out); }
.ctable tbody th a:hover { border-color: var(--green); }
.ctable td { color: var(--ink-soft); }
.tag {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  padding: 0.14rem 0.5rem;
  border-radius: 2px;
}
.tag--off { background: var(--green-tint); color: var(--green-deep); }
.tag--on { background: var(--amber-tint); color: var(--amber-deep); }
.compare__note {
  margin-top: 1rem;
  font-size: var(--fs-xs);
  color: var(--ink-mute);
  max-width: 78ch;
  border-left: 3px solid var(--amber);
  padding-left: 0.7rem;
}
.compare__note strong { color: var(--ink); }

/* =============================================================
   COLUNA DE OPINIÃO (editorial)
   ============================================================= */
.column { border-bottom: 1px solid var(--line); }
.column__grid { display: grid; gap: clamp(1.4rem, 0.8rem + 2vw, 2.6rem); }
.column__by {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--fs-sm);
  color: var(--ink);
  margin: 0.8rem 0 0.4rem;
}
.column__sig {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--green-deep);
  line-height: 1.05;
  margin: 0;
}
.column__sig span {
  display: block;
  font-family: var(--text);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--fs-xs);
  color: var(--ink-mute);
  margin-top: 0.35rem;
}
.column__head {
  font-size: var(--fs-h3);
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.column__body p:first-of-type::first-letter {
  font-family: var(--display);
  font-weight: 700;
  float: left;
  font-size: 3.4em;
  line-height: 0.78;
  padding: 0.08em 0.14em 0 0;
  color: var(--green);
}
.column__body p { color: var(--ink-soft); }
@media (min-width: 900px) {
  .column__grid { grid-template-columns: 0.42fr 1fr; align-items: start; }
  .column__meta { position: sticky; top: 84px; border-left: 3px solid var(--amber); padding-left: 1.1rem; }
}

/* =============================================================
   PARA QUEM É
   ============================================================= */
.audience { background: var(--ink); color: #cdd8e6; border-block: 1px solid rgba(255,255,255,0.08); }
.audience .kicker { color: #4ade80; }
.audience .sec-head h2 { color: #fff; }
.audience .sec-head p { color: #9fb0c4; }
.audience__grid { display: grid; gap: 1.1rem; }
.who {
  background: #0f1a2c;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 3px solid #4ade80;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.6rem;
}
.who--mid { border-top-color: var(--amber); }
.who__tag {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  color: #0f172a;
  background: #4ade80;
  padding: 0.16rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.9rem;
}
.who__tag--amber { background: var(--amber); }
.who h3 { color: #fff; font-size: 1.45rem; text-transform: uppercase; margin-bottom: 0.6rem; }
.who p { color: #9fb0c4; font-size: var(--fs-sm); }
.who__list { list-style: none; margin: 0.9rem 0 1rem; padding: 0; display: grid; gap: 0.5rem; }
.who__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: var(--fs-sm);
  color: #c6d2df;
}
.who__list li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border: 2px solid #4ade80;
  border-radius: 50%;
}
.who--mid .who__list li::before { border-color: var(--amber); }
.who__pick { margin: 0; font-size: var(--fs-sm); color: #90a2b6; }
.who__pick a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.35); }
.who__pick a:hover { border-color: var(--amber); color: var(--amber); }
@media (min-width: 820px) { .audience__grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   SECTION HEADER (broadcast lower-third)
   ============================================================= */
.sec-head { margin-bottom: clamp(1.6rem, 1rem + 2vw, 2.8rem); }
.sec-head h2 { font-size: var(--fs-h2); text-transform: uppercase; }
.sec-head p { margin-top: 0.7rem; color: var(--ink-soft); max-width: 60ch; }
.sec-head--between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
}

/* =============================================================
   FIXTURES (game reviews)
   ============================================================= */
.fixtures { display: grid; }
.fixture {
  border-top: 1px solid var(--line);
  padding-block: clamp(1.9rem, 1.2rem + 2.4vw, 3.2rem);
}
.fixture:last-child { border-bottom: 1px solid var(--line); }

.fixture__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}
.fixture__no {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 1.4rem + 3vw, 3.6rem);
  line-height: 0.8;
  color: var(--line-strong);
  letter-spacing: -0.02em;
}
.fixture__id h3 { font-size: var(--fs-h3); text-transform: uppercase; }
.fixture__studio {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--fs-xs);
  color: var(--ink-mute);
  text-align: right;
}
.fixture__studio b { display: block; color: var(--ink); font-size: 0.95rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.4rem;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  background: var(--green-tint);
  color: var(--green-deep);
}
.badge--amber { background: var(--amber-tint); color: var(--amber-deep); }

.fixture__body { display: grid; gap: clamp(1.2rem, 0.7rem + 2vw, 2.4rem); }
.fixture__media {
  margin: 0;
  position: relative;
}
.fixture__shot {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 260px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--panel);
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
.fixture__cap {
  font-size: var(--fs-xs);
  color: var(--ink-mute);
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.fixture__cap::before { content: ""; width: 14px; height: 2px; background: var(--amber); }

/* CSS fallback cover (no real icon available) */
.cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 260px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  display: grid;
  place-content: center;
  text-align: center;
  padding: 1rem;
  color: #fff;
  background:
    linear-gradient(135deg, #0f172a 0%, #15803d 100%);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 26px);
}
.cover span {
  position: relative;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
  font-size: clamp(1.3rem, 1rem + 1.5vw, 1.9rem);
}
.cover em { display: block; font-style: normal; color: var(--amber); font-size: 0.7em; margin-top: 0.3rem; }
.cover .ball {
  position: relative;
  width: 30px; height: 30px;
  margin: 0 auto 0.7rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset -6px -6px 0 rgba(15,23,42,0.12);
}

.fixture__text > p:first-child {
  font-size: var(--fs-lead);
  color: var(--ink);
  font-weight: 500;
}
.fixture__text p { color: var(--ink-soft); }
.fixture__text .measure { max-width: 64ch; }

.chips { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0.2rem 0 0.4rem; }
.chip {
  font-size: var(--fs-xs);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.26rem 0.55rem;
}
.chip b { color: var(--green-deep); }

@media (min-width: 760px) {
  .fixture__body { grid-template-columns: 260px 1fr; align-items: start; }
  .fixture:nth-child(even) .fixture__body { grid-template-columns: 1fr 260px; }
  .fixture:nth-child(even) .fixture__media { order: 2; }
  .fixture:nth-child(even) .fixture__shot,
  .fixture:nth-child(even) .cover { margin-left: auto; }
}

/* half-time divider */
.halftime {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 0.6rem + 1.4vw, 1.6rem) clamp(1.1rem, 0.7rem + 1.4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-block: clamp(1.6rem, 1rem + 2vw, 2.6rem);
}
.halftime span:first-child {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--fs-sm);
  color: var(--amber);
}
.halftime b { font-family: var(--display); font-weight: 600; text-transform: uppercase; font-size: 1.2rem; }

/* =============================================================
   COMO AVALIAMOS
   ============================================================= */
.rating { background: var(--green-tint); border-block: 1px solid var(--line); }
.rating__grid { display: grid; gap: 1.1rem; margin-top: clamp(1.6rem, 1rem + 2vw, 2.6rem); }
.crit {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--green);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem 1.4rem;
}
.crit:nth-child(2) { border-top-color: var(--amber); }
.crit:nth-child(4) { border-top-color: var(--amber); }
.crit__no { font-family: var(--display); font-weight: 700; color: var(--line-strong); font-size: 1.5rem; line-height: 1; }
.crit h3 { font-size: 1.35rem; text-transform: uppercase; margin: 0.5rem 0 0.5rem; }
.crit p { margin: 0; color: var(--ink-soft); font-size: var(--fs-sm); }
@media (min-width: 680px) { .rating__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .rating__grid { grid-template-columns: repeat(4, 1fr); } }

/* =============================================================
   FAQ
   ============================================================= */
.faq { max-width: 900px; }
.faq__list { margin-top: clamp(1.4rem, 1rem + 1.6vw, 2.2rem); border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.15rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(1.1rem, 0.95rem + 0.8vw, 1.4rem);
  color: var(--ink);
}
.faq__q .mark {
  flex: none;
  width: 26px; height: 26px;
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
}
.faq__q .mark::before, .faq__q .mark::after {
  content: "";
  position: absolute;
  background: var(--green);
  left: 50%; top: 50%;
  transition: transform 200ms var(--ease-out);
}
.faq__q .mark::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq__q .mark::after { width: 2px; height: 12px; transform: translate(-50%, -50%); }
.faq__q[aria-expanded="true"] .mark::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 260ms var(--ease-in-out);
}
@media (prefers-reduced-motion: reduce) { .faq__a { transition: none; } }
.faq__a > div { padding: 0 0 1.2rem; color: var(--ink-soft); max-width: 68ch; }

/* =============================================================
   CONTENT PAGES (about, legal, contact)
   ============================================================= */
.page-hero {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.4rem, 1.6rem + 3vw, 4rem);
}
.page-hero h1 { font-size: var(--fs-h1); text-transform: uppercase; max-width: 18ch; }
.page-hero p { margin-top: 1rem; color: var(--ink-soft); max-width: 60ch; font-size: var(--fs-lead); }

.prose { max-width: 72ch; }
.prose h2 { font-size: var(--fs-h3); text-transform: uppercase; margin: 2.4rem 0 0.8rem; }
.prose h3 { font-size: 1.25rem; text-transform: uppercase; margin: 1.6rem 0 0.5rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.1rem; margin: 0 0 1rem; }
.prose li { margin-bottom: 0.45rem; }
.prose a { color: var(--green-deep); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); }
.legal-note {
  background: var(--green-tint);
  border-left: 3px solid var(--green);
  padding: 1rem 1.1rem;
  border-radius: 3px;
  margin: 1.4rem 0;
  font-size: var(--fs-sm);
}

/* about split */
.about-grid { display: grid; gap: clamp(1.6rem, 1rem + 2vw, 3rem); }
.about-facts {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-self: start;
}
.about-facts dt {
  background: var(--panel);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--fs-xs);
  color: var(--ink-mute);
  padding: 0.6rem 1rem 0.3rem;
}
.about-facts dd { margin: 0; padding: 0 1rem 0.9rem; font-size: var(--fs-sm); border-bottom: 1px solid var(--line); }
.about-facts dd:last-child { border-bottom: 0; }
@media (min-width: 860px) { .about-grid { grid-template-columns: 1.4fr 0.8fr; } }

/* =============================================================
   CONTACT FORM
   ============================================================= */
.form { max-width: 560px; }
.field { display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label { font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: var(--fs-sm); }
.field input, .field textarea {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  transition: border-color 160ms var(--ease-out), box-shadow 160ms;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-tint);
}
.field textarea { min-height: 130px; resize: vertical; }
.field .hint { font-size: var(--fs-xs); color: var(--ink-mute); }
.consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: var(--fs-sm); color: var(--ink-soft); margin-bottom: 1.2rem; }
.consent input { margin-top: 0.2rem; width: 18px; height: 18px; accent-color: var(--green); flex: none; }
.form__ok {
  display: none;
  background: var(--green-tint);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  color: var(--green-deep);
  font-weight: 500;
}
.form__ok.show { display: block; }

.contact-grid { display: grid; gap: clamp(1.8rem, 1rem + 3vw, 3.5rem); }
.contact-cards { display: grid; gap: 1rem; align-self: start; }
.ccard { border: 1px solid var(--line); border-left: 3px solid var(--amber); border-radius: var(--radius); padding: 1.1rem 1.2rem; }
.ccard h3 { font-size: 1.15rem; text-transform: uppercase; margin-bottom: 0.3rem; }
.ccard p { margin: 0; color: var(--ink-soft); font-size: var(--fs-sm); }
.ccard a { color: var(--green-deep); }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1.2fr 0.9fr; } }

/* =============================================================
   404
   ============================================================= */
.err {
  min-height: 68vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding-block: 4rem;
}
.err__code {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(5rem, 3rem + 16vw, 14rem);
  line-height: 0.8;
  color: var(--green);
  letter-spacing: -0.03em;
}
.err__code span { color: var(--amber); }
.err h1 { font-size: var(--fs-h2); text-transform: uppercase; margin: 1rem 0 0.6rem; }
.err p { color: var(--ink-soft); max-width: 46ch; margin: 0 auto 1.6rem; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-foot {
  background: var(--ink);
  color: #c6d2df;
  padding-block: 0 2rem;
}

/* scoreboard ticker strip */
.foot-score {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-inline: calc(-1 * var(--gutter));
  padding-inline: var(--gutter);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--fs-xs);
  color: #90a2b6;
}
.foot-score__live, .foot-score__cell {
  padding: 0.85rem 1.1rem 0.85rem 0;
  margin-right: 1.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.foot-score__cell:last-child { border-right: 0; }
.foot-score__cell b { color: var(--amber); font-weight: 600; }
.foot-score__live { color: #4ade80; }
.foot-score__dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; flex: none; }
@media (prefers-reduced-motion: no-preference) {
  .foot-score__dot { animation: pulse 1.6s var(--ease-in-out) infinite; }
}

.foot-board {
  display: grid;
  gap: clamp(1.6rem, 1rem + 2vw, 3rem);
  padding-top: clamp(2rem, 1.4rem + 2vw, 3rem);
}
.foot-lead .foot-mail { margin-top: 0.7rem; font-size: var(--fs-sm); color: #90a2b6; }
.foot-lead .foot-mail a { color: #4ade80; border-bottom: 1px solid rgba(74, 222, 128, 0.4); }
.foot-lead .foot-mail a:hover { color: var(--amber); border-color: var(--amber); }
.foot-brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--display); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; color: #fff; }
.foot-brand svg { width: 30px; height: 30px; border-radius: 7px; }
.foot-brand b { color: #4ade80; }
.foot-about { margin-top: 0.9rem; max-width: 44ch; font-size: var(--fs-sm); color: #90a2b6; }
.foot-col h4 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--fs-xs);
  color: var(--amber);
  margin-bottom: 0.9rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.foot-col a { color: #c6d2df; font-size: var(--fs-sm); transition: color 160ms var(--ease-out); }
.foot-col a:hover { color: var(--amber); }
@media (min-width: 780px) { .foot-board { grid-template-columns: 1.7fr 1fr 1fr; } }

.disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: clamp(2rem, 1.4rem + 2vw, 3rem);
  padding-top: 1.4rem;
  font-size: var(--fs-xs);
  color: #7f93a8;
  line-height: 1.6;
  max-width: 100ch;
}
.foot-legal {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: #7f93a8;
}
.foot-legal nav { display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem; }
.foot-legal a:hover { color: var(--amber); }

/* =============================================================
   AOS-lite reveal fallback (if AOS blocked, content still shows)
   ============================================================= */
[data-aos] { will-change: transform, opacity; }
/* if AOS fails to load (CDN blocked), never leave content hidden */
html.aos-fallback [data-aos] { opacity: 1 !important; transform: none !important; }

/* skip link */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 300;
  border-radius: 0 0 4px 0;
}
.skip:focus { left: 0; }

/* Captcha target reference (language-independent "match this icon") */
.gate__target{display:flex;justify-content:center;margin:.6rem auto .2rem}
.gate__target-svg{width:clamp(64px,16vw,88px);height:clamp(64px,16vw,88px);padding:12px;
  border:2px solid var(--amber,#f59e0b);border-radius:16px;background:rgba(245,158,11,.10);
  color:var(--amber,#f59e0b);box-shadow:0 6px 18px rgba(0,0,0,.18)}
.gate__target-svg use{color:inherit}
.gate__help-en{display:block;opacity:.7;font-size:.9em;margin-top:.15rem}
