/* =============================================================================
   FEM — Liga de FutCraft
   Identidade: estádio noturno sob refletor + geometria de bloco (Minecraft).
   Cantos "pixelados", verde de gramado, âmbar de refletor, tipografia angular.
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

/* ---------------------------------------------------------------- tokens */
:root {
  /* superfícies — noite de estádio */
  --bg-0:   #070b09;
  --bg-1:   #0b120f;
  --bg-2:   #101a16;
  --bg-3:   #16241e;
  --bg-4:   #1d2f27;

  /* cores da liga */
  --grama:      #00e07a;   /* verde do gramado sob refletor */
  --grama-esc:  #00a95c;
  --grama-luz:  #6bffb4;
  --refletor:   #ffb703;   /* âmbar — artilharia, MVP, troféus */
  --refletor-q: #ff8f00;
  --sangue:     #ff3d5a;   /* ao vivo, derrota, cartão */
  --gelo:       #7dd3fc;

  /* texto */
  --txt:     #e9f2ed;
  --txt-2:   #a8bcb2;
  --txt-3:   #6e847a;
  --txt-4:   #47564f;

  /* linhas */
  --linha:   rgba(0, 224, 122, .13);
  --linha-2: rgba(233, 242, 237, .07);

  /* tipografia */
  --display: 'Archivo Black', 'Arial Black', system-ui, sans-serif;
  --ui:      'Chakra Petch', 'Segoe UI', system-ui, sans-serif;

  /* geometria de bloco */
  --pixel: 6px;
  --nav-h: 68px;

  /* sombras */
  --sombra:    0 18px 45px -20px rgba(0, 0, 0, .95);
  --sombra-lg: 0 32px 80px -30px rgba(0, 0, 0, 1);
  --brilho:    0 0 0 1px var(--linha), 0 0 40px -18px var(--grama);
}

/* corte de canto "pixelado" — a assinatura visual do site */
.pix {
  clip-path: polygon(
    0 var(--pixel), var(--pixel) var(--pixel), var(--pixel) 0,
    calc(100% - var(--pixel)) 0, calc(100% - var(--pixel)) var(--pixel), 100% var(--pixel),
    100% calc(100% - var(--pixel)), calc(100% - var(--pixel)) calc(100% - var(--pixel)),
    calc(100% - var(--pixel)) 100%, var(--pixel) 100%,
    var(--pixel) calc(100% - var(--pixel)), 0 calc(100% - var(--pixel))
  );
}
.pix-tl { clip-path: polygon(var(--pixel) 0, 100% 0, 100% 100%, 0 100%, 0 var(--pixel)); }

/* ---------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg-0);
  color: var(--txt);
  font-family: var(--ui);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 400; letter-spacing: -.02em; line-height: 1.02; }
p { margin: 0 0 .8em; }
::selection { background: var(--grama); color: #04140c; }

/* barra de rolagem */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-4); border: 2px solid var(--bg-0); }
::-webkit-scrollbar-thumb:hover { background: var(--grama-esc); }

/* ---------------------------------------------------------------- atmosfera */
/* refletor no topo + grid de chunk + granulado */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(120% 70% at 50% -10%, rgba(0, 224, 122, .16), transparent 60%),
    radial-gradient(80% 50% at 88% 8%, rgba(255, 183, 3, .10), transparent 62%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0) 45%);
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(var(--linha) 1px, transparent 1px),
    linear-gradient(90deg, var(--linha) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(110% 80% at 50% 0%, #000 10%, transparent 75%);
}

.grao {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------------- layout */
.wrap { width: min(1240px, 92vw); margin-inline: auto; }
.secao { padding: 64px 0; }
.secao-tit {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 26px;
}
.secao-tit h2 { font-size: clamp(24px, 3.4vw, 40px); text-transform: uppercase; }
.secao-tit .sub {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--grama); font-weight: 600; margin-bottom: 8px; display: block;
}
.grid { display: grid; gap: 18px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.g-side { grid-template-columns: minmax(0, 1fr) 340px; align-items: start; }

/* ---------------------------------------------------------------- navbar */
.nav {
  position: sticky; top: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(7, 11, 9, .78);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--linha);
  transition: height .3s ease, background .3s ease;
}
.nav.encolhido { height: 54px; background: rgba(7, 11, 9, .94); }
.nav .wrap { display: flex; align-items: center; gap: 28px; width: min(1240px, 94vw); }

.marca { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.marca-escudo {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--grama), var(--grama-esc));
  color: #04140c; font-family: var(--display); font-size: 17px; letter-spacing: -.04em;
  box-shadow: 0 0 26px -6px var(--grama);
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}
.marca:hover .marca-escudo { transform: rotate(-8deg) scale(1.08); }
.marca-txt { font-family: var(--display); font-size: 20px; letter-spacing: -.03em; line-height: 1; }
.marca-txt small {
  display: block; font-family: var(--ui); font-size: 9px; font-weight: 600;
  letter-spacing: .3em; color: var(--txt-3); margin-top: 3px;
}

.menu { display: flex; gap: 4px; margin-left: auto; align-items: center; }
.menu a {
  position: relative; padding: 9px 14px; font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--txt-3);
  transition: color .2s ease;
}
.menu a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--grama); transform: scaleX(0); transform-origin: left;
  transition: transform .28s cubic-bezier(.65, 0, .35, 1);
}
.menu a:hover { color: var(--txt); }
.menu a:hover::after, .menu a.ativo::after { transform: scaleX(1); }
.menu a.ativo { color: var(--grama); }

.nav-acoes { display: flex; align-items: center; gap: 8px; }
.btn-busca {
  display: flex; align-items: center; gap: 8px; padding: 7px 12px;
  background: var(--bg-2); border: 1px solid var(--linha); cursor: pointer;
  font-size: 12px; color: var(--txt-3); transition: all .2s ease;
}
.btn-busca:hover { border-color: var(--grama); color: var(--txt); }
.btn-busca kbd {
  font-family: var(--ui); font-size: 10px; padding: 1px 5px;
  background: var(--bg-4); border: 1px solid var(--linha-2); color: var(--txt-3);
}
.hamburguer { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburguer span { display: block; width: 22px; height: 2px; background: var(--txt); margin: 4px 0; transition: .3s; }

/* ---------------------------------------------------------------- botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px; border: 0; cursor: pointer;
  font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: var(--grama); color: #04140c;
  clip-path: polygon(0 var(--pixel), var(--pixel) var(--pixel), var(--pixel) 0,
    calc(100% - var(--pixel)) 0, calc(100% - var(--pixel)) var(--pixel), 100% var(--pixel),
    100% calc(100% - var(--pixel)), calc(100% - var(--pixel)) calc(100% - var(--pixel)),
    calc(100% - var(--pixel)) 100%, var(--pixel) 100%,
    var(--pixel) calc(100% - var(--pixel)), 0 calc(100% - var(--pixel)));
  transition: background .2s ease, transform .15s ease, box-shadow .25s ease;
}
.btn:hover { background: var(--grama-luz); transform: translateY(-2px); box-shadow: 0 10px 30px -12px var(--grama); }
.btn:active { transform: translateY(0); }
.btn-2 { background: var(--bg-3); color: var(--txt); box-shadow: inset 0 0 0 1px var(--linha); }
.btn-2:hover { background: var(--bg-4); color: var(--grama); box-shadow: inset 0 0 0 1px var(--grama); }
.btn-ouro { background: var(--refletor); color: #221600; }
.btn-ouro:hover { background: #ffd04d; box-shadow: 0 10px 30px -12px var(--refletor); }
.btn-sm { padding: 7px 14px; font-size: 11px; }

/* ---------------------------------------------------------------- cartões */
.card {
  position: relative; background: var(--bg-1);
  border: 1px solid var(--linha); padding: 22px;
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
/* marcas de canto — HUD de jogo */
.card::before, .card::after {
  content: ''; position: absolute; width: 9px; height: 9px; pointer-events: none;
  border-color: var(--grama); opacity: .45; transition: opacity .25s ease;
}
.card::before { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.card::after { bottom: -1px; right: -1px; border-bottom: 2px solid; border-right: 2px solid; }
.card:hover { border-color: rgba(0, 224, 122, .32); background: var(--bg-2); }
.card:hover::before, .card:hover::after { opacity: 1; }
.card-tit {
  font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--txt-3); margin-bottom: 16px; display: flex; align-items: center;
  justify-content: space-between; gap: 10px;
}
.card-tit em { font-style: normal; color: var(--grama); }

/* ---------------------------------------------------------------- pílulas */
.pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 3px 9px;
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: var(--bg-3); color: var(--txt-2); border: 1px solid var(--linha-2);
}
.pill-verde  { background: rgba(0, 224, 122, .12); color: var(--grama); border-color: rgba(0, 224, 122, .3); }
.pill-ouro   { background: rgba(255, 183, 3, .12); color: var(--refletor); border-color: rgba(255, 183, 3, .3); }
.pill-vivo   { background: rgba(255, 61, 90, .14); color: var(--sangue); border-color: rgba(255, 61, 90, .35); }
.pill-vivo::before {
  content: ''; width: 6px; height: 6px; background: var(--sangue);
  border-radius: 50%; animation: pulsa 1.4s infinite;
}
@keyframes pulsa { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .3; transform: scale(.7); } }

/* ---------------------------------------------------------------- escudos */
.escudo {
  --s: 44px;
  width: var(--s); height: var(--s); flex: 0 0 var(--s);
  display: grid; place-items: center; overflow: hidden;
  background: var(--bg-3); position: relative;
  font-family: var(--display); font-size: calc(var(--s) * .34); letter-spacing: -.03em;
  box-shadow: inset 0 0 0 1px var(--linha-2);
}
.escudo img { width: 100%; height: 100%; object-fit: contain; padding: 8%; }
.escudo-xs { --s: 26px; }
.escudo-sm { --s: 34px; }
.escudo-lg { --s: 64px; }
.escudo-xl { --s: 104px; }

/* ---------------------------------------------------------------- HERO */
.hero { position: relative; padding: 56px 0 24px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 44px; align-items: center; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 9px; padding: 5px 13px;
  background: rgba(0, 224, 122, .1); border: 1px solid rgba(0, 224, 122, .28);
  color: var(--grama); font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 74px); line-height: .92;
  text-transform: uppercase; margin-bottom: 20px;
  overflow-wrap: break-word; hyphens: none;
}
.hero h1 .traco {
  display: block;
  background: linear-gradient(96deg, var(--grama) 10%, var(--refletor) 92%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: 16px; color: var(--txt-2); max-width: 46ch; margin-bottom: 28px; }
.hero-acoes { display: flex; gap: 12px; flex-wrap: wrap; }

/* placar em destaque do hero */
.placar-destaque {
  position: relative; background: var(--bg-1); border: 1px solid var(--linha);
  padding: 26px 24px; overflow: hidden;
}
.placar-destaque::before {
  content: ''; position: absolute; inset: 0; opacity: .2; pointer-events: none;
  background: repeating-linear-gradient(115deg,
    transparent 0 26px, rgba(255, 255, 255, .028) 26px 52px);
}
.pd-topo {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-bottom: 22px; position: relative;
}
.pd-comp { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.pd-times { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; position: relative; }
.pd-time { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; min-width: 0; }
.pd-time b { font-size: 13px; font-weight: 600; line-height: 1.25; }
.pd-gols { font-family: var(--display); font-size: clamp(34px, 6vw, 58px); line-height: 1; letter-spacing: -.04em; }
.pd-x { font-family: var(--display); font-size: 15px; color: var(--txt-4); }
.pd-rodape {
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--linha-2);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 12px; color: var(--txt-3); position: relative;
}

/* ---------------------------------------------------------------- ticker */
.ticker {
  border-block: 1px solid var(--linha); background: var(--bg-1);
  overflow: hidden; padding: 11px 0; position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker-fita { display: flex; gap: 40px; width: max-content; animation: correr 42s linear infinite; }
.ticker:hover .ticker-fita { animation-play-state: paused; }
@keyframes correr { to { transform: translateX(-50%); } }
.ticker-item {
  display: flex; align-items: center; gap: 9px; font-size: 12px;
  font-weight: 600; white-space: nowrap; color: var(--txt-2);
}
.ticker-item b { font-family: var(--display); font-size: 14px; color: var(--txt); }
.ticker-item .sep { color: var(--grama); }

/* ---------------------------------------------------------------- números */
.numeros { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--linha); border: 1px solid var(--linha); }
.numero { background: var(--bg-1); padding: 24px 18px; text-align: center; transition: background .25s ease; }
.numero:hover { background: var(--bg-2); }
.numero b { display: block; font-family: var(--display); font-size: clamp(28px, 4.6vw, 46px); line-height: 1; letter-spacing: -.03em; }
.numero span { display: block; margin-top: 8px; font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--txt-3); }
.numero:nth-child(2) b { color: var(--grama); }
.numero:nth-child(3) b { color: var(--refletor); }
.numero:nth-child(4) b { color: var(--gelo); }

/* ---------------------------------------------------------------- jogo (linha) */
.jogo {
  display: block; background: var(--bg-1); border: 1px solid var(--linha);
  border-left: 3px solid var(--bg-4); transition: all .22s ease; cursor: pointer;
}
.jogo:hover { border-left-color: var(--grama); background: var(--bg-2); transform: translateX(3px); }
.jogo.aberto { border-left-color: var(--grama); background: var(--bg-2); }
.jogo-topo {
  display: flex; align-items: center; gap: 12px; padding: 8px 16px;
  border-bottom: 1px solid var(--linha-2); font-size: 11px; color: var(--txt-3);
  letter-spacing: .1em; text-transform: uppercase; font-weight: 600; flex-wrap: wrap;
}
.jogo-topo .comp { color: var(--txt-2); }
.jogo-corpo { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; padding: 16px; }
.jogo-time { display: flex; align-items: center; gap: 11px; min-width: 0; }
.jogo-time.dir { flex-direction: row-reverse; text-align: right; }
.jogo-time b { font-size: 14px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.jogo-time.perdeu b { color: var(--txt-3); }
.jogo-placar {
  display: flex; align-items: center; gap: 10px; font-family: var(--display);
  font-size: 26px; line-height: 1; letter-spacing: -.03em; white-space: nowrap;
}
.jogo-placar .x { font-size: 13px; color: var(--txt-4); }
.jogo-placar .hora { font-size: 15px; color: var(--txt-2); font-family: var(--ui); font-weight: 600; }
.jogo-pen { font-size: 11px; color: var(--refletor); font-weight: 700; font-family: var(--ui); letter-spacing: .06em; }
.jogo-detalhe {
  display: none; padding: 0 16px 16px; border-top: 1px dashed var(--linha-2);
  animation: abre .3s ease;
}
.jogo.aberto .jogo-detalhe { display: block; }
@keyframes abre { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.jd-linha {
  display: flex; align-items: center; gap: 10px; padding: 7px 0;
  font-size: 13px; border-bottom: 1px solid var(--linha-2);
}
.jd-linha:last-child { border-bottom: 0; }
.jd-min { font-family: var(--display); font-size: 11px; color: var(--txt-3); min-width: 44px; }
.jd-assist { color: var(--txt-3); font-size: 12px; font-style: italic; }
.jd-mvp {
  margin-top: 12px; padding: 11px 14px; display: flex; align-items: center; gap: 11px;
  background: linear-gradient(96deg, rgba(255, 183, 3, .13), transparent);
  border-left: 3px solid var(--refletor);
}
.jd-mvp b { font-size: 14px; }
.jd-mvp span { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--refletor); font-weight: 700; }

/* ---------------------------------------------------------------- tabela */
.tabela-wrap { overflow-x: auto; border: 1px solid var(--linha); background: var(--bg-1); }
table.fem { width: 100%; border-collapse: collapse; min-width: 620px; }
table.fem thead th {
  padding: 12px 10px; text-align: center; font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--txt-3);
  background: var(--bg-2); border-bottom: 1px solid var(--linha); white-space: nowrap;
}
table.fem thead th:nth-child(2) { text-align: left; }
table.fem tbody td { padding: 11px 10px; text-align: center; border-bottom: 1px solid var(--linha-2); font-size: 14px; }
table.fem tbody td:nth-child(2) { text-align: left; }
table.fem tbody tr { transition: background .18s ease; cursor: pointer; }
table.fem tbody tr:hover { background: var(--bg-2); }
table.fem tbody tr:last-child td { border-bottom: 0; }
.td-pos { font-family: var(--display); font-size: 14px; position: relative; width: 46px; }
.td-pos::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 3px; background: var(--bg-4); }
tr.zona-1 .td-pos::before { background: var(--grama); }
tr.zona-2 .td-pos::before { background: var(--gelo); }
tr.zona-3 .td-pos::before { background: var(--sangue); }
.td-time { display: flex; align-items: center; gap: 10px; }
.td-time b { font-size: 14px; font-weight: 600; }
.td-p { font-family: var(--display); font-size: 16px; color: var(--grama); }
.forma { display: flex; gap: 3px; justify-content: center; }
.forma i {
  width: 17px; height: 17px; display: grid; place-items: center; font-style: normal;
  font-size: 9px; font-weight: 700; color: #04140c; background: var(--txt-4);
}
.forma i.V { background: var(--grama); }
.forma i.E { background: var(--txt-3); }
.forma i.D { background: var(--sangue); color: #fff; }

/* ---------------------------------------------------------------- ranking */
.rank { display: flex; flex-direction: column; }
.rank-item {
  display: flex; align-items: center; gap: 13px; padding: 11px 4px;
  border-bottom: 1px solid var(--linha-2); transition: background .18s ease; cursor: pointer;
}
.rank-item:hover { background: var(--bg-2); }
.rank-item:last-child { border-bottom: 0; }
.rank-pos {
  width: 26px; text-align: center; font-family: var(--display);
  font-size: 15px; color: var(--txt-4); flex-shrink: 0;
}
.rank-item:nth-child(1) .rank-pos { color: var(--refletor); }
.rank-item:nth-child(2) .rank-pos { color: #cfd8dc; }
.rank-item:nth-child(3) .rank-pos { color: #cd7f32; }
.rank-info { flex: 1; min-width: 0; }
.rank-info b { display: block; font-size: 14px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rank-info span { font-size: 11px; color: var(--txt-3); }
.rank-valor { font-family: var(--display); font-size: 20px; letter-spacing: -.03em; }
.rank-valor.ouro { color: var(--refletor); }
.rank-valor.verde { color: var(--grama); }

/* pódio de artilharia */
.podio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-items: end; margin-bottom: 24px; }
.podio-item { position: relative; background: var(--bg-1); border: 1px solid var(--linha); padding: 20px 14px; text-align: center; transition: transform .3s ease; }
.podio-item:hover { transform: translateY(-6px); }
.podio-item .medalha {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 26px; display: grid; place-items: center;
  font-family: var(--display); font-size: 12px; color: #04140c; background: var(--txt-3);
}
.podio-item.p1 { border-color: rgba(255, 183, 3, .45); padding-block: 30px; }
.podio-item.p1 .medalha { background: var(--refletor); box-shadow: 0 0 24px -4px var(--refletor); }
.podio-item.p2 .medalha { background: #cfd8dc; }
.podio-item.p3 .medalha { background: #cd7f32; }
.podio-item b { display: block; font-size: 14px; margin: 10px 0 3px; }
.podio-item span { font-size: 11px; color: var(--txt-3); }
.podio-item .gols { font-family: var(--display); font-size: 30px; margin-top: 8px; letter-spacing: -.03em; }
.podio-item.p1 .gols { color: var(--refletor); font-size: 38px; }

/* ---------------------------------------------------------------- times */
.times-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; }
.time-card {
  position: relative; background: var(--bg-1); border: 1px solid var(--linha);
  padding: 26px 18px 20px; text-align: center; overflow: hidden;
  transition: transform .3s cubic-bezier(.34, 1.3, .64, 1), border-color .3s ease;
}
.time-card::before {
  content: ''; position: absolute; inset: 0 0 auto; height: 3px;
  background: var(--cor, var(--grama)); transform: scaleX(.25); transform-origin: left;
  transition: transform .35s cubic-bezier(.65, 0, .35, 1);
}
.time-card::after {
  content: ''; position: absolute; left: 50%; top: -40%; width: 150%; height: 120%;
  transform: translateX(-50%); pointer-events: none; opacity: 0;
  background: radial-gradient(closest-side, var(--cor, var(--grama)), transparent 70%);
  transition: opacity .35s ease;
}
.time-card:hover { transform: translateY(-7px); border-color: var(--cor, var(--grama)); }
.time-card:hover::before { transform: scaleX(1); }
.time-card:hover::after { opacity: .12; }
.time-card .escudo { margin: 0 auto 14px; }
.time-card b { display: block; font-size: 15px; font-weight: 600; margin-bottom: 4px; position: relative; }
.time-card span { font-size: 11px; color: var(--txt-3); letter-spacing: .08em; text-transform: uppercase; position: relative; }
.time-card .mini {
  display: flex; justify-content: center; gap: 14px; margin-top: 14px;
  padding-top: 13px; border-top: 1px solid var(--linha-2); position: relative;
}
.time-card .mini div { text-align: center; }
.time-card .mini b { font-family: var(--display); font-size: 17px; margin: 0; }
.time-card .mini span { font-size: 9px; letter-spacing: .14em; }

/* cabeçalho da página de time */
.time-hero {
  position: relative; padding: 44px; margin-bottom: 30px; overflow: hidden;
  background: linear-gradient(112deg, color-mix(in srgb, var(--cor, var(--grama)) 22%, var(--bg-1)), var(--bg-1) 62%);
  border: 1px solid var(--linha);
  display: flex; align-items: center; gap: 30px; flex-wrap: wrap;
}
.time-hero::before {
  content: ''; position: absolute; inset: 0; opacity: .16; pointer-events: none;
  background: repeating-linear-gradient(105deg, transparent 0 34px, rgba(255, 255, 255, .04) 34px 68px);
}
.time-hero h1 { font-size: clamp(30px, 5.4vw, 60px); text-transform: uppercase; position: relative; }
.time-hero .meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; position: relative; }
.time-record { display: flex; gap: 1px; margin-left: auto; background: var(--linha); position: relative; }
.time-record div { background: var(--bg-1); padding: 14px 18px; text-align: center; min-width: 66px; }
.time-record b { display: block; font-family: var(--display); font-size: 24px; line-height: 1; }
.time-record span { font-size: 9px; letter-spacing: .18em; color: var(--txt-3); text-transform: uppercase; }

/* ---------------------------------------------------------------- jogador */
.jogador-hero {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  background: var(--bg-1); border: 1px solid var(--linha); padding: 34px; margin-bottom: 26px;
  position: relative; overflow: hidden;
}
.jogador-hero::before {
  content: ''; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  background: radial-gradient(closest-side, rgba(0, 224, 122, .16), transparent);
}
.avatar {
  width: 92px; height: 92px; flex-shrink: 0; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--bg-4), var(--bg-2));
  font-family: var(--display); font-size: 34px; color: var(--grama);
  box-shadow: inset 0 0 0 1px var(--linha);
}
.jogador-hero h1 { font-size: clamp(26px, 4.6vw, 46px); position: relative; }
.stats-linha { display: grid; grid-template-columns: repeat(auto-fit, minmax(112px, 1fr)); gap: 1px; background: var(--linha); border: 1px solid var(--linha); margin-bottom: 26px; }
.stat-box { background: var(--bg-1); padding: 18px 14px; text-align: center; }
.stat-box b { display: block; font-family: var(--display); font-size: 30px; line-height: 1; letter-spacing: -.03em; }
.stat-box span { display: block; margin-top: 7px; font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--txt-3); }
.barra { height: 6px; background: var(--bg-3); overflow: hidden; margin-top: 8px; }
.barra i { display: block; height: 100%; background: linear-gradient(90deg, var(--grama-esc), var(--grama)); width: 0; transition: width 1s cubic-bezier(.65, 0, .35, 1); }

/* ---------------------------------------------------------------- filtros */
.filtros { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; align-items: center; }
.chip {
  padding: 7px 15px; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; background: var(--bg-2); border: 1px solid var(--linha);
  color: var(--txt-3); cursor: pointer; transition: all .2s ease; white-space: nowrap;
}
.chip:hover { color: var(--txt); border-color: var(--grama); }
.chip.ativo { background: var(--grama); border-color: var(--grama); color: #04140c; }
.chip.ativo.ouro { background: var(--refletor); border-color: var(--refletor); color: #221600; }
select.campo, input.campo {
  padding: 8px 12px; background: var(--bg-2); border: 1px solid var(--linha);
  color: var(--txt); font-size: 13px; outline: none; transition: border-color .2s;
}
select.campo:focus, input.campo:focus { border-color: var(--grama); }

/* abas */
.abas { display: flex; gap: 2px; border-bottom: 1px solid var(--linha); margin-bottom: 22px; overflow-x: auto; }
.aba {
  padding: 11px 18px; background: none; border: 0; border-bottom: 2px solid transparent;
  cursor: pointer; font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--txt-3); white-space: nowrap; transition: all .2s ease;
}
.aba:hover { color: var(--txt); }
.aba.ativo { color: var(--grama); border-bottom-color: var(--grama); }

/* ---------------------------------------------------------------- busca (Ctrl+K) */
.busca-overlay {
  position: fixed; inset: 0; z-index: 500; display: none;
  background: rgba(4, 8, 6, .82); backdrop-filter: blur(8px);
  padding-top: 12vh; justify-content: center;
}
.busca-overlay.aberto { display: flex; animation: fade .2s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.busca-caixa {
  width: min(620px, 92vw); height: fit-content; max-height: 66vh;
  background: var(--bg-1); border: 1px solid rgba(0, 224, 122, .3);
  box-shadow: var(--sombra-lg); display: flex; flex-direction: column;
  animation: sobe .28s cubic-bezier(.34, 1.4, .64, 1);
}
@keyframes sobe { from { opacity: 0; transform: translateY(18px) scale(.97); } to { opacity: 1; transform: none; } }
.busca-caixa input {
  width: 100%; padding: 18px 20px; background: none; border: 0;
  border-bottom: 1px solid var(--linha); font-size: 17px; outline: none;
}
.busca-res { overflow-y: auto; padding: 6px; }
.busca-res a {
  display: flex; align-items: center; gap: 12px; padding: 10px 13px;
  transition: background .15s ease; cursor: pointer;
}
.busca-res a:hover, .busca-res a.sel { background: var(--bg-3); }
.busca-res b { font-size: 14px; font-weight: 600; }
.busca-res small { color: var(--txt-3); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.busca-vazio { padding: 30px; text-align: center; color: var(--txt-3); font-size: 13px; }

/* ---------------------------------------------------------------- rodapé */
.rodape { border-top: 1px solid var(--linha); background: var(--bg-1); padding: 44px 0 26px; margin-top: 60px; }
.rodape-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 34px; margin-bottom: 30px; }
.rodape h4 { font-family: var(--ui); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--txt-3); margin-bottom: 14px; }
.rodape a { display: block; padding: 4px 0; font-size: 13px; color: var(--txt-2); transition: color .2s ease; }
.rodape a:hover { color: var(--grama); }
.rodape-base {
  border-top: 1px solid var(--linha-2); padding-top: 20px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 11px; color: var(--txt-4); letter-spacing: .06em;
}

/* ---------------------------------------------------------------- utilidades */
.vazio { padding: 50px 20px; text-align: center; color: var(--txt-3); }
.vazio b { display: block; font-family: var(--display); font-size: 19px; color: var(--txt-2); margin-bottom: 7px; }
.skel { background: linear-gradient(90deg, var(--bg-2) 25%, var(--bg-3) 50%, var(--bg-2) 75%); background-size: 200% 100%; animation: skel 1.4s infinite; }
@keyframes skel { to { background-position: -200% 0; } }
.esconde { display: none !important; }
.mono { font-variant-numeric: tabular-nums; }
.txt-3 { color: var(--txt-3); }
.txt-verde { color: var(--grama); }
.txt-ouro { color: var(--refletor); }
.centro { text-align: center; }
.mt0 { margin-top: 0; } .mt2 { margin-top: 22px; } .mb2 { margin-bottom: 22px; }

/* entrada em cascata */
.reveal { opacity: 0; transform: translateY(16px); animation: reveal .55s cubic-bezier(.22, 1, .36, 1) forwards; }
@keyframes reveal { to { opacity: 1; transform: none; } }
.reveal:nth-child(1) { animation-delay: .02s; }
.reveal:nth-child(2) { animation-delay: .07s; }
.reveal:nth-child(3) { animation-delay: .12s; }
.reveal:nth-child(4) { animation-delay: .17s; }
.reveal:nth-child(5) { animation-delay: .22s; }
.reveal:nth-child(6) { animation-delay: .27s; }
.reveal:nth-child(7) { animation-delay: .32s; }
.reveal:nth-child(8) { animation-delay: .37s; }
.reveal:nth-child(n+9) { animation-delay: .42s; }

/* toast */
.toasts { position: fixed; right: 20px; bottom: 20px; z-index: 700; display: flex; flex-direction: column; gap: 9px; }
.toast {
  background: var(--bg-3); border-left: 3px solid var(--grama); padding: 13px 18px;
  font-size: 13px; box-shadow: var(--sombra); animation: sobe .3s ease; max-width: 340px;
}
.toast.erro { border-left-color: var(--sangue); }

/* ---------------------------------------------------------------- responsivo */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .g-side, .g3, .g4 { grid-template-columns: 1fr; }
  .rodape-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .menu {
    position: fixed; inset: var(--nav-h) 0 auto; flex-direction: column; gap: 0;
    background: var(--bg-1); border-bottom: 1px solid var(--linha);
    padding: 12px; display: none;
  }
  .menu.aberto { display: flex; animation: abre .25s ease; }
  .menu a { padding: 13px; font-size: 14px; }
  .hamburguer { display: block; order: 3; }
  .nav .wrap { gap: 12px; }
  .btn-busca span { display: none; }
  .g2, .numeros, .podio { grid-template-columns: 1fr; }
  .numeros { gap: 1px; }
  .secao { padding: 40px 0; }
  .jogo-corpo { grid-template-columns: 1fr; gap: 10px; }
  .jogo-time.dir { flex-direction: row; text-align: left; }
  .jogo-placar { justify-content: flex-start; }
  .time-hero, .jogador-hero { padding: 24px; }
  .time-record { margin-left: 0; width: 100%; }
  .time-record div { flex: 1; min-width: 0; padding: 12px 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .ticker-fita { animation: none; }
}
