:root {
  --red: #c8102e;
  --red-dark: #a60d26;
  --red-soft: #fee7eb;
  --primary-ink: #c8102e; /* primaria legivel p/ texto; clube sobrescreve */
  --on-primary: #ffffff;  /* texto sobre a primaria; clube sobrescreve */
  --primary-on-dark: #c8102e; /* primaria legivel sobre fundo ESCURO (card escuro) */
  --hero-accent: #c8102e; /* acento do hero: primaria legivel sobre o scrim navy fixo; clube sobrescreve */
  --red-rgb: 200, 16, 46; /* primaria em r,g,b p/ rgba() decorativo; clube sobrescreve */
  --navy: #0d1b2a;
  --navy-2: #16263a;
  --ink: #0b1320;
  --muted: #5a6573;
  --line: #e6e8ec;
  --bg: #ffffff;
  --bg-soft: #f5f6f8;
  --bg-card: #ffffff;
  --shadow-sm: 0 1px 2px rgba(13, 27, 42, 0.04), 0 2px 8px rgba(13, 27, 42, 0.04);
  --shadow-md: 0 4px 14px rgba(13, 27, 42, 0.08), 0 2px 4px rgba(13, 27, 42, 0.04);
  --shadow-lg: 0 18px 40px -12px rgba(13, 27, 42, 0.18);
}

* {
  box-sizing: border-box;
}

/* Wrapper de tabela larga (#94): a tabela rola na horizontal DENTRO da caixa em
   vez de empurrar a página inteira no mobile. Usado em membros, carrinho, etc. */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}

.display {
  font-family: Poppins, "DM Sans", sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ============ HEADER ============ */
header.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
header.nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom-color: var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
header.nav.scrolled .brand {
  color: var(--ink);
}
.brand-mark {
  height: 38px;
  width: auto;
  min-width: 38px;
  display: grid;
  place-items: center;
}
/* Logo do clube (issue #21) — fallback do escudo genérico. Dimensiona pela
   altura/largura máxima preservando a proporção: logo horizontal ou quadrada
   ficam no tamanho certo (não espremidas numa caixa quadrada). */
.brand-mark img,
.brand-mark .brand-logo {
  max-height: 38px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.hero-star img,
.hero-star .hero-logo {
  max-height: 96px;
  max-width: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.brand-name {
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
/* Wordmark Clubeiros: O coral, conforme brand-guide */
.brand-o { color: var(--red); }
.brand-sub {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: -2px;
}
header.nav.scrolled .brand-sub {
  color: var(--muted);
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;   /* agrupa as ações + hambúrguer à direita */
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
header.nav.scrolled .nav-links a {
  color: var(--ink);
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
header.nav.scrolled .nav-links a:hover {
  background: var(--bg-soft);
  color: var(--primary-ink);
}
.nav-login {
  font-weight: 500;
  border-right: 1px solid var(--line);
  padding-right: 14px !important;
  margin-right: 4px;
}
header.nav:not(.scrolled):not(.platform) .nav-login {
  border-right-color: rgba(255, 255, 255, 0.18);
}
.nav-cta {
  background: var(--red);
  color: var(--on-primary) !important;
  padding: 10px 18px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.15s, transform 0.15s !important;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
}
/* Botão "Loja" — na cor PRINCIPAL do clube. Texto branco/preto escolhido
   por contraste da própria cor (clara → preto). */
.nav-loja {
  background: var(--red) !important;
  color: var(--on-primary) !important;
  padding: 10px 18px !important;
  border-radius: 8px;
  font-weight: 600 !important;
  white-space: nowrap;
  transition: filter 0.15s, transform 0.15s !important;
}
.nav-loja:hover {
  filter: brightness(0.92);
}
/* "Loja Oficial" fora do hambúrguer no mobile: escondido no desktop (a barra
   já tem o botão) e em telas muito estreitas, onde não cabe. */
.nav-loja-mobile { display: none; }
@media (max-width: 980px) {
  .nav-loja.nav-loja-mobile {
    display: inline-flex;
    align-items: center;
    margin-left: auto;   /* encosta no hambúrguer, à direita */
    padding: 9px 13px !important;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  /* O nome do clube divide espaço com o botão: encolhe e corta em 2 linhas
     em vez de empurrar o botão pra fora da tela (o header tem 76px fixos —
     sem o clamp, nome longo + subtítulo vazam pra fora da barra). */
  header.nav .brand { min-width: 0; }
  header.nav .brand > span:last-child { min-width: 0; }
  header.nav .brand-name {
    font-size: 17px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  header.nav .brand-sub {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 359px) {
  .nav-loja.nav-loja-mobile { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: clamp(560px, 80vh, 760px);
  color: #fff;
  overflow-x: clip;
  isolation: isolate;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  /* A imagem (com o scrim por cima) vem inline do template — capa por clube (#22). */
  background-size: cover;
  background-position: center;
}
.hero-credit {
  position: absolute;
  right: 14px;
  bottom: 10px;
  z-index: 1;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}
.hero-credit:hover {
  color: rgba(255, 255, 255, 0.85);
}
.hero-spot {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 20% 30%, rgba(var(--red-rgb), 0.2), transparent 60%),
    radial-gradient(50% 40% at 80% 30%, rgba(var(--red-rgb), 0.18), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  min-height: clamp(560px, 80vh, 760px);
  display: grid;
  /* `safe`: centraliza quando cabe (desktop), mas alinha ao topo quando o
     conteúdo é mais alto que a área (mobile) — sem isso a logo transborda
     pra cima e invade o header fixo. */
  place-items: safe center;
  text-align: center;
  padding: clamp(110px, 18vw, 140px) clamp(16px, 4vw, 28px) clamp(60px, 12vw, 100px);
}
/* Mobile: troca o grid por flex-column ancorado no topo. O grid (mesmo com
   `align-content: start`) tinha comportamento sutil em alguns devices e a logo
   subia por cima do nav fixo (76px). Flex `justify-content: flex-start` flui de
   cima pra baixo a partir do padding-top — a logo NUNCA invade o header. */
@media (max-width: 768px) {
  /* Seletor `.hero-inner.container` (especificidade 0,2,0) de propósito: o
     elemento carrega as duas classes e existe um `.container { padding: 0 16px }`
     no @media (max-width:480px) abaixo (0,1,0, porém DEPOIS no arquivo) que, por
     ser shorthand + source order, zerava o `padding-top` num `.hero-inner` puro —
     jogando a logo do hero pra baixo do header fixo no celular (≤480px). Subir a
     especificidade aqui faz o padding-top vencer em qualquer largura ≤768px. */
  .hero-inner.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    /* 76px do header + 44px de respiro absorvem o halo do drop-shadow da logo. */
    padding-top: 120px;
  }
  .hero-star, .hero-star .hero-logo, .hero-star img { max-height: 64px; }
}
.hero-star {
  width: auto;
  height: auto;
  max-height: 96px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 8px 30px rgba(var(--red-rgb), 0.45));
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.hero h1.display {
  font-size: clamp(40px, 11vw, 168px);
  line-height: 1.0;
  margin: 0 0 28px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
/* O nome do clube pode ser longo (ex: "Marechaaaaaais!" com 15 chars).
   Escala menos agressiva que a primeira linha pra evitar overflow nos
   tamanhos comuns de desktop. overflow-wrap só quebra se realmente não
   couber — nunca em desktop, só em mobile muito pequeno. */
.hero h1 .accent {
  color: var(--hero-accent);
  display: block;
  font-size: clamp(28px, 6.5vw, 118px);
  overflow-wrap: break-word;
  hyphens: none;
}
.hero p.lead {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary {
  background: var(--red);
  color: var(--on-primary);
  box-shadow: 0 8px 24px -8px rgba(var(--red-rgb), 0.6);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover {
  background: var(--navy-2);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--navy);
}

/* hero stats strip */
.hero-stats {
  position: relative;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  width: 100%;
  max-width: 980px;
}
.hero-stat {
  padding: clamp(14px, 2.5vw, 22px) clamp(8px, 2vw, 16px);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-stat:last-child {
  border-right: none;
}
.hero-stat .num {
  font-family: Poppins, sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1;
  color: #fff;
}
.hero-stat .lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
}

/* ============ SECTIONS ============ */
section.sec {
  padding: 60px 0;
  position: relative;
}
section.sec.soft {
  background: var(--bg-soft);
}
.sec-head {
  text-align: center;
  margin-bottom: 32px;
}
.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--red-soft);
  color: var(--primary-ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pill-label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}
h2.sec-title {
  font-family: Poppins, sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  margin: 0 0 18px;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.sec-sub {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

/* ============ O CLUBE ============ */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.value-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: var(--red-soft);
  display: grid;
  place-items: center;
  color: var(--primary-ink);
}
.value-card h3 {
  font-family: Poppins, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}
.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
/* Sem foto cadastrada — texto ocupa tudo, centrado e mais leve */
.about-grid.no-photo {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.about-grid.no-photo .about-text h3 {
  font-size: 52px;
}
.about-text h3 {
  font-family: Poppins, sans-serif;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 22px;
}
.about-text p {
  color: var(--muted);
  font-size: 16.5px;
  margin: 0 0 14px;
  line-height: 1.65;
}
.about-text p strong {
  color: var(--ink);
  font-weight: 600;
}
.about-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;          /* quadrada, ancora bem na coluna */
  width: 100%;                  /* preenche a coluna naturalmente */
  background: var(--navy);
  transform: rotate(-1.5deg);   /* leve giro tipo polaroid */
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1),
              box-shadow 0.3s ease;
  /* Sombra deslocada vermelha embaixo/esquerda — "amarra" a foto
     visualmente ao restante do site sem precisar de overflow:visible. */
  box-shadow:
    -12px 14px 0 0 var(--red),
    0 18px 40px -12px rgba(13, 27, 42, 0.25);
}
.about-photo:hover {
  transform: rotate(0deg) scale(1.01);
  box-shadow:
    -6px 8px 0 0 var(--red),
    0 22px 48px -12px rgba(13, 27, 42, 0.3);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 27, 42, 0.5) 100%);
}
.about-photo .badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  color: #fff;
  z-index: 2;
}
.about-photo .badge .y {
  font-family: Poppins, sans-serif;
  font-size: 38px;
  line-height: 1;
}
.about-photo .badge .t {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ============ TÍTULOS ============ */
.titles-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.title-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  color: inherit;
  text-decoration: none;
}
.title-trophy.tem-foto { background-size: cover; background-position: center; }
/* O 2º filho do grid hospeda .title-name + .title-meta (flex). Sem min-width:0
   o min-content do flex aninhado força a coluna 1fr a crescer além da viewport
   no mobile e o card inteiro estoura horizontalmente. */
.title-row > div:nth-child(2) { min-width: 0; }
.title-row:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--red);
  padding-left: 21px;
}
.title-trophy {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--primary-ink);
  display: grid;
  place-items: center;
}
.title-name {
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  overflow-wrap: anywhere;
}
.title-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.title-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.5;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  background: var(--bg-soft);
  color: var(--navy);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}
.chip.gold {
  background: #fff6e0;
  color: #8a6500;
}
.chip.silver {
  background: #eff1f4;
  color: #525c68;
}
.chip.bronze {
  background: #f6e7d7;
  color: #8a5320;
}
/* "Outra classificação": medalha de mérito (laço azul), não cinza apagado. */
.chip.honra {
  background: #e8eefc;
  color: #2f4b8f;
}
.chip.gray {
  background: var(--bg-soft);
  color: var(--muted);
}
/* Indica que o título tem vídeo vinculado. */
.chip.chip-video {
  background: #eef2f7;
  padding: 2px 8px;
}
.title-year {
  font-family: Poppins, sans-serif;
  font-size: 38px;
  color: var(--navy);
  opacity: 0.18;
  line-height: 1;
  letter-spacing: 0.02em;
}

/* ============ TREINADORES ============ */
.coaches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.coach-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}
.coach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.coach-photo {
  aspect-ratio: 4/3;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Viés de topo: retrato tem o rosto no terço superior; recorte central corta
     a cabeça. Ajuste fino por foto via foto_foco_y (style inline no template). */
  object-position: 50% 25%;
  filter: saturate(0.92) contrast(1.05);
}
.coach-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 27, 42, 0.85) 100%);
}
.coach-name-overlay {
  position: absolute;
  bottom: 16px;
  left: 18px;
  right: 18px;
  color: #fff;
  z-index: 2;
}
.coach-name-overlay .nm {
  font-family: Poppins, sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1;
}
.coach-name-overlay .pos {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 6px;
}
.coach-body {
  padding: 22px 22px 24px;
}
.coach-body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}
/* Bio do treinador: preview de 30 palavras + "Ver mais" (disclosure nativo,
   sem JS). A bio é HTML rico (Trix); o conteúdo completo herda a tipografia. */
.coach-bio,
.coach-bio-rico {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}
.coach-bio summary {
  display: block;
  cursor: pointer;
  list-style: none;
}
.coach-bio summary::-webkit-details-marker { display: none; }
.coach-bio-completa { margin-top: 10px; }
.coach-bio-completa > :first-child,
.coach-bio-rico > :first-child { margin-top: 0; }
.coach-bio-completa > :last-child,
.coach-bio-rico > :last-child { margin-bottom: 0; }
.coach-bio-menos { display: none; }
.coach-bio[open] .coach-bio-curta { display: none; }
.coach-bio[open] .coach-bio-menos { display: inline; }
.coach-bio-rotulo { color: var(--red); font-weight: 700; white-space: nowrap; }
.coach-bio summary:hover .coach-bio-rotulo { text-decoration: underline; }
.coach-meta {
  display: flex;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.coach-meta .m {
  display: flex;
  flex-direction: column;
}
.coach-meta .m .v {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  color: var(--navy);
  line-height: 1;
}
.coach-meta .m .k {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ============ ATLETAS ============ */
.roster-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 44px;
}
.filter-chip {
  background: #fff;
  border: 1.5px solid var(--line);
  color: var(--muted);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.filter-chip:hover {
  color: var(--navy);
  border-color: var(--navy);
}
.filter-chip.active {
  background: var(--red);
  color: var(--on-primary);
  border-color: var(--red);
}
.filter-chip .count {
  margin-left: 6px;
  font-size: 11px;
  opacity: 0.7;
  font-weight: 500;
}
.roster {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.athlete {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.athlete:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.athlete-photo {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.athlete-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Viés de topo (ver .coach-photo img). */
  object-position: 50% 25%;
  filter: saturate(0.85);
}
.athlete-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(13, 27, 42, 0.85) 100%);
  z-index: 1;
}
.athlete-num {
  position: absolute;
  top: 10px;
  right: 12px;
  font-family: Poppins, sans-serif;
  font-size: 38px;
  line-height: 1;
  color: #fff;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.athlete-cat-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--on-primary);
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.athlete-info {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: #fff;
  z-index: 2;
}
.athlete-name {
  font-family: Poppins, sans-serif;
  font-size: 19px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.athlete-pos {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
}
.roster-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 0;
  color: var(--muted);
  font-size: 14.5px;
}

/* ============ HORÁRIOS ============ */
.schedule {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sched-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sched-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.sched-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.sched-card:hover::before {
  transform: scaleX(1);
}
.sched-cat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}
.sched-cat .label {
  font-family: Poppins, sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.05;
}
.sched-cat .age {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.sched-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  padding: 10px 0;
  color: var(--ink);
}
.sched-row + .sched-row {
  border-top: 1px dashed var(--line);
}
.sched-row .ico {
  color: var(--primary-ink);
  display: grid;
  place-items: center;
  width: 18px;
}
.sched-row .lbl {
  color: var(--muted);
  min-width: 64px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sched-row .val {
  font-weight: 500;
}
.sched-cta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-ink);
}
.sched-cta:hover {
  color: var(--red-dark);
}

/* ============ NOTÍCIAS ============ */
.news {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 22px;
}
.news-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.news-img {
  aspect-ratio: 16/10;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-img img {
  transform: scale(1.04);
}
.news-card.featured {
  grid-row: span 1;
}
.news-card.featured .news-img {
  aspect-ratio: 16/11;
}
.news-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: var(--on-primary);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}
.news-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-date {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.news-card h4 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 10px;
}
.news-card.featured h4 {
  font-size: 24px;
}
.news-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}
.news-read {
  margin-top: 16px;
  color: var(--primary-ink);
  font-weight: 600;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============ AGENDA ============ */
.agenda {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.game-row {
  display: grid;
  grid-template-columns: 76px 1fr auto auto;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 24px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  color: inherit;          /* jogo com vídeo vira <a> — sem cara de link */
  text-decoration: none;
}
/* Chip "▶ Assistir" no jogo da agenda que tem vídeo (leva pro ClubeFlix). */
.game-assistir {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-ink, #C8102E);
}
a.game-row:hover .game-assistir { text-decoration: underline; }
.game-row:hover {
  transform: translateX(3px);
  box-shadow: var(--shadow-md);
}
.game-date {
  text-align: center;
  padding: 8px 0;
  background: var(--red-soft);
  border-radius: 10px;
  border: 2px solid transparent;
}
/* Jogo futuro: chip da data destacado com borda na cor do clube. */
.game-date.futuro {
  border-color: var(--primary-ink, #C8102E);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-ink, #C8102E) 14%, transparent);
}
.game-date .d {
  font-family: Poppins, sans-serif;
  font-size: 26px;
  line-height: 1;
  color: var(--primary-ink);
}
.game-date .m {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-ink);
  margin-top: 4px;
  font-weight: 600;
}
.game-date .y {
  font-size: 11px;
  color: var(--primary-ink);
  opacity: 0.7;
  font-weight: 600;
  margin-top: 2px;
}
.game-info .ttl {
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 6px;
}
.game-info .meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.game-info .meta .sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.5;
}
/* Contador de dias pro jogo futuro (Hoje / Amanhã / Faltam N dias). */
.game-countdown {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary-ink, #C8102E) 12%, transparent);
  color: var(--primary-ink, #C8102E);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.game-row .status {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.status.comp {
  background: var(--red-soft);
  color: var(--primary-ink);
}
.status.am {
  background: #e6f4fb;
  color: #1b6fa0;
}
.status.ev {
  background: #f1ecfb;
  color: #5b3cb0;
}
.game-time {
  font-family: Poppins, sans-serif;
  font-size: 24px;
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.03em;
}
.game-time .ampm {
  font-size: 12px;
  opacity: 0.6;
  margin-left: 2px;
}

/* ============ APOIE ============ */
.support {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.sup-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.sup-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.sup-card.dark {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}
.sup-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--red-soft);
  color: var(--primary-ink);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.sup-card.dark .sup-icon {
  background: rgba(var(--red-rgb), 0.18);
  color: var(--primary-on-dark);
}
.sup-card h3 {
  font-family: Poppins, sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.sup-card.dark h3 {
  color: #fff;
}
.sup-card p {
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  flex: 1;
}
.sup-card.dark p {
  color: rgba(255, 255, 255, 0.78);
}
.sup-card .level-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sup-card .level-list li {
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}
.sup-card.dark .level-list li {
  color: rgba(255, 255, 255, 0.78);
}
.sup-card .level-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.sup-cta {
  align-self: stretch;
  text-align: center;
  padding: 13px 18px;
  border-radius: 10px;
  background: var(--red);
  color: var(--on-primary);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s;
}
.sup-cta:hover {
  background: var(--red-dark);
}
.sup-cta.ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.sup-card.dark .sup-cta.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}
.sup-cta.ghost:hover {
  border-color: var(--navy);
}

/* PIX strip */
.pix-strip {
  margin-top: 28px;
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.pix-strip::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(var(--red-rgb), 0.25), transparent 60%);
  pointer-events: none;
}
.pix-strip .lab {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}
.pix-strip h3 {
  font-family: Poppins, sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}
.pix-key {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
}
.copy-btn {
  background: var(--red);
  color: var(--on-primary);
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.copy-btn:hover {
  background: var(--red-dark);
}
.copy-btn.copied {
  background: #1b7f4d;
}

/* ============ FOOTER ============ */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.foot-brand .brand {
  color: #fff;
  margin-bottom: 18px;
}
.foot-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 22px;
}
.foot-social {
  display: flex;
  gap: 10px;
}
.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background 0.15s;
}
.foot-social a:hover {
  background: var(--red);
}
.foot-col h5 {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fff;
  margin: 0 0 18px;
}
.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.foot-col ul a:hover {
  color: #fff;
}
.foot-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ===================================================================
   PLATAFORMA CLUBEIRO — landing page (rota /)
   =================================================================== */

/* Header da plataforma — variante branca sempre visível */
header.nav.platform {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom-color: var(--line);
}
header.nav.platform .brand,
header.nav.platform .nav-links a {
  color: var(--ink);
}
header.nav.platform .brand-sub {
  color: var(--muted);
}
header.nav.platform .nav-links a:hover {
  background: var(--bg-soft);
  color: var(--primary-ink);
}

/* Hero da plataforma */
.p-hero {
  position: relative;
  padding: 150px 0 90px;
  background: #fff;
  overflow: hidden;
  isolation: isolate;
}
.p-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(var(--red-rgb), 0.08), transparent 65%);
  z-index: -1;
}
.p-hero::after {
  content: "";
  position: absolute;
  top: 60px;
  right: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(13, 27, 42, 0.06), transparent 65%);
  z-index: -1;
}
.p-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.p-hero h1.display {
  font-size: clamp(54px, 7vw, 96px);
  color: var(--navy);
  margin: 18px 0 22px;
}
.p-hero h1 .accent {
  color: var(--primary-on-dark);
}
.p-hero .lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 32px;
}
.p-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.p-hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.p-hero-meta .check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.p-hero-meta .check .ico {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--primary-ink);
  display: grid;
  place-items: center;
}

/* Preview do site de clube — frame de browser */
.p-demo {
  position: relative;
}
.p-browser {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(0.4deg);
}
.p-browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #fafbfc;
}
.p-browser-dots {
  display: flex;
  gap: 6px;
}
.p-browser-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e6e8ec;
}
.p-browser-dots span:nth-child(1) {
  background: #ff5f57;
}
.p-browser-dots span:nth-child(2) {
  background: #febc2e;
}
.p-browser-dots span:nth-child(3) {
  background: #28c840;
}
.p-browser-url {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 10px;
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.p-browser-url .slug {
  color: var(--ink);
}
.p-browser-body {
  background: var(--navy);
  color: #fff;
  padding: 40px 28px 32px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.p-browser-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 18% 30%, rgba(var(--red-rgb), 0.28), transparent 60%),
    radial-gradient(50% 40% at 82% 30%, rgba(var(--red-rgb), 0.18), transparent 60%);
  pointer-events: none;
}
.p-browser-body .demo-eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.p-browser-body .demo-eyebrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.p-browser-body .demo-h1 {
  font-family: Poppins, sans-serif;
  font-size: 56px;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}
.p-browser-body .demo-h1 .red {
  color: var(--primary-on-dark);
  display: block;
}
.p-browser-body .demo-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  margin: 12px 0 22px;
  max-width: 320px;
  position: relative;
  z-index: 1;
}
.p-browser-body .demo-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  z-index: 1;
}
.p-browser-body .demo-stats .s {
  padding: 12px 8px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.p-browser-body .demo-stats .s:last-child {
  border-right: none;
}
.p-browser-body .demo-stats .n {
  font-family: Poppins, sans-serif;
  font-size: 24px;
  line-height: 1;
}
.p-browser-body .demo-stats .l {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}
.p-demo-tag {
  position: absolute;
  bottom: -18px;
  right: -8px;
  background: var(--red);
  color: var(--on-primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px -8px rgba(var(--red-rgb), 0.55);
  transform: rotate(-2deg);
}

/* Faixa de métricas/sociais */
.p-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.p-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.p-strip .n {
  font-family: Poppins, sans-serif;
  font-size: 38px;
  color: var(--navy);
  line-height: 1;
}
.p-strip .l {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}

/* Como funciona — 3 passos */
.p-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}
.p-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px 32px 32px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.p-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.p-step .num {
  font-family: Poppins, sans-serif;
  font-size: 64px;
  line-height: 1;
  color: var(--primary-ink);
  opacity: 0.18;
  position: absolute;
  top: 22px;
  right: 28px;
}
.p-step .ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--red-soft);
  color: var(--primary-ink);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.p-step h3 {
  font-family: Poppins, sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}
.p-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* Features grid — "o que seu clube terá" */
.p-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.p-feat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px 24px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.p-feat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.p-feat .ico {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--primary-ink);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.p-feat h4 {
  font-family: Poppins, sans-serif;
  font-size: 19px;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}
.p-feat p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* Painel do gestor — preview lateral */
.p-admin-preview {
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.p-admin-preview::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--red-rgb), 0.2), transparent 60%);
  pointer-events: none;
}
.p-admin-preview .pill-label {
  background: rgba(var(--red-rgb), 0.18);
}
.p-admin-preview h2.sec-title {
  color: #fff;
  text-align: left;
  margin-bottom: 22px;
}
.p-admin-preview p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 28px;
  line-height: 1.6;
}
.p-admin-preview .list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}
.p-admin-preview .list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.86);
}
.p-admin-preview .list li .ck {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: var(--on-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.p-admin-mock {
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 14px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}
.p-admin-mock .col-side {
  background: var(--bg-soft);
  border-radius: 10px;
  padding: 14px;
}
.p-admin-mock .col-side h5 {
  font-family: Poppins, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  margin: 0 0 12px;
  letter-spacing: 0.1em;
  color: var(--navy);
}
.p-admin-mock .toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  padding: 7px 8px;
  border-radius: 6px;
  color: var(--ink);
}
.p-admin-mock .toggle-row + .toggle-row {
  margin-top: 2px;
}
.p-admin-mock .toggle-row.active {
  background: rgba(var(--red-rgb), 0.08);
  color: var(--primary-ink);
  font-weight: 600;
}
.p-admin-mock .toggle {
  width: 24px;
  height: 14px;
  border-radius: 999px;
  background: var(--line);
  position: relative;
}
.p-admin-mock .toggle::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.p-admin-mock .toggle.on {
  background: var(--red);
}
.p-admin-mock .toggle.on::after {
  left: 11px;
}
.p-admin-mock .col-prev {
  background: var(--navy);
  border-radius: 10px;
  padding: 18px;
  color: #fff;
  position: relative;
  min-height: 200px;
  overflow: hidden;
}
.p-admin-mock .col-prev::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 30% 30%, rgba(var(--red-rgb), 0.25), transparent 65%);
}
.p-admin-mock .col-prev .mh {
  font-family: Poppins, sans-serif;
  font-size: 28px;
  line-height: 0.95;
  position: relative;
  z-index: 1;
}
.p-admin-mock .col-prev .mh .red {
  color: var(--primary-on-dark);
  display: block;
}
.p-admin-mock .col-prev .msub {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

/* Planos */
.p-plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}
.p-plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.p-plan:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.p-plan.featured {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.p-plan .tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--red);
  color: var(--on-primary);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.p-plan h3 {
  font-family: Poppins, sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.p-plan.featured h3 {
  color: #fff;
}
.p-plan .desc {
  margin: 0 0 22px;
  font-size: 14.5px;
  color: var(--muted);
}
.p-plan.featured .desc {
  color: rgba(255, 255, 255, 0.72);
}
.p-plan .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.p-plan .price .v {
  font-family: Poppins, sans-serif;
  font-size: 62px;
  line-height: 1;
  color: var(--navy);
}
.p-plan.featured .price .v {
  color: #fff;
}
.p-plan .price .u {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.p-plan.featured .price .u {
  color: rgba(255, 255, 255, 0.7);
}
.p-plan .price-note {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 26px;
}
.p-plan.featured .price-note {
  color: rgba(255, 255, 255, 0.6);
}
.p-plan ul.benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 12px;
  flex: 1;
}
.p-plan ul.benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
}
.p-plan.featured ul.benefits li {
  color: rgba(255, 255, 255, 0.86);
}
.p-plan ul.benefits li .ck {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--primary-ink);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.p-plan.featured ul.benefits li .ck {
  background: rgba(var(--red-rgb), 0.22);
}
.p-plan .plan-cta {
  text-align: center;
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--red);
  color: var(--on-primary);
  font-weight: 600;
  font-size: 14.5px;
  transition: background 0.15s;
}
.p-plan .plan-cta:hover {
  background: var(--red-dark);
}
.p-plan .plan-cta.outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.p-plan .plan-cta.outline:hover {
  border-color: var(--navy);
}

/* CTA final */
.p-final {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 80px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.p-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 20% 50%, rgba(var(--red-rgb), 0.22), transparent 60%),
    radial-gradient(50% 40% at 80% 50%, rgba(var(--red-rgb), 0.16), transparent 60%);
  pointer-events: none;
}
.p-final h2 {
  font-family: Poppins, sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.p-final h2 .accent {
  color: var(--primary-on-dark);
  display: block;
}
.p-final p {
  max-width: 540px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  position: relative;
  z-index: 1;
}
.p-final-cta {
  display: inline-flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}

/* Footer da plataforma */
footer.p-foot .foot-bottom .foot-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
footer.p-foot .foot-bottom .foot-meta a:hover {
  color: #fff;
}

/* Responsive plataforma */
@media (max-width: 980px) {
  .p-hero {
    padding: 130px 0 70px;
  }
  .p-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .p-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .p-steps {
    grid-template-columns: 1fr;
  }
  .p-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-admin-preview {
    grid-template-columns: 1fr;
    padding: 44px 28px;
    gap: 32px;
  }
  .p-plans {
    grid-template-columns: 1fr;
  }
  .p-final {
    padding: 56px 28px;
  }
}
@media (max-width: 600px) {
  .p-features {
    grid-template-columns: 1fr;
  }
  .p-admin-mock {
    grid-template-columns: 1fr;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .roster {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 980px) {
  /* Esconde nav-links inteira no mobile/tablet — vira drawer */
  .nav-links { display: none; }
  .roster {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-photo {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .values {
    grid-template-columns: repeat(2, 1fr);
  }
  .coaches {
    grid-template-columns: 1fr;
  }
  .schedule {
    grid-template-columns: 1fr;
  }
  .news {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stat:nth-child(2) {
    border-right: none;
  }
  .hero-stat:nth-child(1),
  .hero-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .pix-strip {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .game-row {
    grid-template-columns: 60px 1fr;
  }
  .game-row .status,
  .game-row .game-time {
    grid-column: 1 / -1;
  }
  .title-row {
    grid-template-columns: 40px 1fr;
  }
  .title-row .title-year {
    grid-column: 1 / -1;
    text-align: right;
  }
  section.sec {
    padding: 56px 0;
  }
}

@media (max-width: 768px) {
  .values {
    grid-template-columns: repeat(2, 1fr);
  }
  .coaches {
    grid-template-columns: repeat(2, 1fr);
  }
  .schedule {
    grid-template-columns: repeat(2, 1fr);
  }
  .roster {
    grid-template-columns: repeat(2, 1fr);
  }
  .news {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  section.sec {
    padding: 48px 0;
  }
  .about-text h3 {
    font-size: 32px;
  }
  .coach-name-overlay {
    font-size: 22px;
  }
  .sched-cat {
    font-size: 30px;
  }
  .athlete-num {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .values,
  .coaches,
  .schedule,
  .roster,
  .news,
  .foot-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-name {
    font-size: 18px;
  }
  .brand-sub {
    font-size: 10px;
  }
  section.sec {
    padding: 40px 0;
  }
  .container {
    padding: 0 16px;
  }
  .about-photo {
    max-width: 240px;
    box-shadow:
      -6px 8px 0 0 var(--red),
      0 12px 30px -10px rgba(13, 27, 42, 0.25);
  }
  .pix-strip {
    padding: 24px 20px;
  }
}

/* ============ BLOG ============ */
.blog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.blog-cover {
  aspect-ratio: 16/10;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.blog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-cover img {
  transform: scale(1.04);
}
.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}
.blog-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card h4 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
  color: var(--navy);
  margin: 0 0 12px;
}
.blog-card .excerpt {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}
.blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.blog-author img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.blog-author .info {
  flex: 1;
  min-width: 0;
}
.blog-author .name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.blog-author .meta {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.blog-author .meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.5;
}
.blog-cta {
  text-align: center;
  margin-top: 44px;
}

@media (max-width: 980px) {
  .blog { grid-template-columns: 1fr; gap: 18px; }
}

/* ============ CARROSSEL (preview de atletas na home) ============ */
.carousel { position: relative; }
.car-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 4px;
  padding: 4px 4px 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.car-track::-webkit-scrollbar { display: none; }
.car-item {
  flex: 0 0 240px;
  scroll-snap-align: start;
}
.car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid; place-items: center;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
  transition: opacity .18s, transform .12s, background .12s;
  line-height: 1;
  padding-bottom: 3px;
}
.car-arrow:hover { transform: translateY(-50%) scale(1.05); background: var(--bg-soft); }
.car-arrow.disabled { opacity: 0; pointer-events: none; }
.car-arrow.left { left: -12px; }
.car-arrow.right { right: -12px; }
@media (max-width: 700px) {
  .car-arrow { display: none; }
  .car-item { flex: 0 0 78%; }
}
/* Card de treinador no carrossel: mais largo que o de atleta (tem bio). */
.coach-card.car-item { flex-basis: 300px; }
@media (max-width: 700px) { .coach-card.car-item { flex-basis: 85%; } }

/* ============ "Ver tudo" CTA (após preview de cada seção) ============ */
.see-all {
  margin-top: 36px;
  text-align: center;
}
/* Destaque do nome "ClubeFlix" dentro de um botão/CTA (ex.: link da Agenda). */
.cf-mark { color: var(--red); font-weight: 800; letter-spacing: 0.01em; }

/* ============ MINI-HERO das páginas dedicadas ============ */
.page-hero {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  padding: 130px 0 56px;
  border-bottom: 1px solid var(--line);
}
.page-hero-crumb {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.page-hero-crumb a {
  color: var(--primary-ink);
  font-weight: 600;
}
.page-hero-crumb a:hover { color: var(--red-dark); text-decoration: underline; }
.page-hero-crumb .sep { color: var(--muted); opacity: 0.5; }
.page-hero-title {
  font-family: Poppins, sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.005em;
}
.page-hero-sub {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
  max-width: 600px;
}

/* ============ AGRUPADOR DE ANOS (página de títulos) ============ */
.ano-grupo + .ano-grupo { margin-top: 48px; }
.ano-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.ano-num {
  font-family: Poppins, sans-serif;
  font-size: 44px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.ano-count {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 980px) {
  .page-hero { padding: 110px 0 44px; }
  .ano-num { font-size: 32px; }
}

/* ============ NAIPE no cat-pill do atleta ============ */
.athlete-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.athlete-cat-pill .naipe-tag {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
  font-weight: 800;
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

/* ============ Filter-block (multi-fileira) na página de atletas ============ */
.filter-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg-soft);
  border-radius: 14px;
  margin-bottom: 36px;
}
.filter-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.filter-row .filter-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  min-width: 78px;
  flex-shrink: 0;
}
.filter-row .roster-filters {
  margin: 0;
  justify-content: flex-start;
  flex: 1;
}

@media (max-width: 700px) {
  .filter-block { padding: 14px 16px; }
  .filter-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============ PATROCINADORES ============ */
.patro-tier + .patro-tier { margin-top: 48px; }
.patro-tier-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 22px;
}

.patro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* 3 por linha (#57) */
  gap: 16px;
}
@media (max-width: 640px) {
  .patro-grid { grid-template-columns: repeat(2, 1fr); }
}

.patro {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 26px 20px;
  min-height: 110px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
  color: var(--ink);
}
.patro:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}
.patro img {
  max-width: 100%;
  max-height: 90px;   /* logos maiores e em cor (destaque, não acinzentadas) */
  width: auto;
  border-radius: 8px;  /* leve arredondamento (#57) */
}
.patro-master .patro img { max-height: 120px; }
.patro-nome {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  line-height: 1.2;
}
.patro-master .patro-nome { font-size: 15px; }
.patro-text {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.1;
}
.patro-master .patro-text { font-size: 22px; }
.patro-apoiador { padding: 18px 12px; min-height: 88px; }
.patro-apoiador .patro-text { font-size: 14px; }

.patro-empty {
  border: 2px dashed var(--line);
  background: transparent;
  flex-direction: column;
  gap: 8px;
}
.patro-empty:hover {
  border-color: var(--red);
  background: var(--red-soft);
}
.patro-empty-plus {
  font-family: Poppins, sans-serif;
  font-size: 32px;
  color: var(--primary-ink);
  line-height: 1;
}
.patro-empty-text {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.patro-empty:hover .patro-empty-text { color: var(--primary-ink); }

.patro-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============ CONTATO ============ */
.contato-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contato-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px 26px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contato-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.contato-ico {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--primary-ink);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.contato-titulo {
  font-family: Poppins, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.contato-info {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 10px;
}
.contato-sub {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.contato-canais,
.contato-redes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.canal,
.rede-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  background: var(--bg-soft);
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.canal:hover,
.rede-btn:hover {
  background: var(--red-soft);
  color: var(--primary-ink);
}
.canal svg,
.rede-btn svg {
  color: var(--primary-ink);
  flex-shrink: 0;
}
.canal-wa {
  background: #25d3661a;
}
.canal-wa svg { color: #25d366; }
.canal-wa:hover {
  background: #25d36633;
  color: #1ba350;
}
.canal-wa:hover svg { color: #1ba350; }

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

/* ============ HAMBÚRGUER + DRAWER MOBILE ============ */
[x-cloak] { display: none !important; }

/* Botão hambúrguer (oculto no desktop, aparece a partir de 980px) */
.hamburger {
  display: flex;
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  cursor: pointer;
  width: 46px;
  height: 40px;
  padding: 9px 11px;
  margin-left: 10px;
  color: #fff;                /* herda no hero escuro do clube */
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.15s, border-color 0.15s;
}
.hamburger:hover {
  background: rgba(255, 255, 255, 0.14);
}
header.nav.scrolled .hamburger,
header.nav.platform .hamburger,
header.nav.menu-open .hamburger {
  color: var(--ink);
  border-color: var(--line);
}
header.nav.scrolled .hamburger:hover,
header.nav.platform .hamburger:hover,
header.nav.menu-open .hamburger:hover {
  background: var(--bg-soft);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.18s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer — slide-down logo abaixo do header (76px) */
.mobile-drawer {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 32px -8px rgba(13, 27, 42, 0.18);
  padding: 18px 22px 22px;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
  z-index: 99;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav a {
  display: block;
  padding: 13px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 10px;
  transition: background 0.12s, color 0.12s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--bg-soft);
  color: var(--primary-ink);
}
.mobile-nav .nav-cta {
  margin-top: 12px;
  background: var(--red);
  color: var(--on-primary) !important;
  text-align: center;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.mobile-nav .nav-cta:hover {
  background: var(--red-dark);
}
.mobile-nav .nav-loja {
  background: var(--red) !important;
  color: var(--on-primary) !important;
  text-align: center;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.mobile-nav .nav-loja:hover {
  filter: brightness(0.92);
}
/* Loja Oficial no topo do drawer — primeiro item do menu mobile */
.mobile-nav .mobile-loja-topo {
  margin-bottom: 10px;
}
/* Ações principais no drawer: só no mobile (no desktop ficam na barra do topo) */
.mobile-acoes {
  display: none;
}
@media (max-width: 980px) {
  .mobile-acoes {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }
}

/* Quando o drawer está aberto no clube site, garante header sólido */
header.nav.menu-open {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom-color: var(--line);
}
header.nav.menu-open .brand,
header.nav.menu-open .brand-sub {
  color: var(--ink);
}
header.nav.menu-open .brand-sub { color: var(--muted); }

/* Mostra hambúrguer e habilita drawer a partir de 980px (tablet + mobile) */
@media (max-width: 980px) {
  .hamburger { display: flex; }
  .mobile-drawer { display: block; }
  /* Quando fechado, o x-show oculta; quando aberto, mostra com animação suave */
  .mobile-drawer { animation: drawer-in 0.2s ease-out; }
}

@keyframes drawer-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================================================================
   Modal de confirmação global (window.confirmar / [data-confirm]).
   Substitui o confirm() nativo — mesmo padrão em toda a aplicação.
   =================================================================== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000; padding: 20px;
  background: rgba(13, 27, 42, 0.55);
  display: flex; align-items: center; justify-content: center;
  animation: modal-fade 0.12s ease;
}
.modal-overlay[hidden] { display: none; }
.modal-box {
  background: #fff; border-radius: 16px; padding: 24px;
  width: 100%; max-width: 400px; box-shadow: var(--shadow-lg);
  animation: drawer-in 0.14s ease;
}
.modal-title {
  font-family: Poppins, sans-serif; font-size: 18px; font-weight: 600;
  margin: 0 0 8px; color: var(--navy);
}
.modal-msg { margin: 0 0 20px; color: var(--muted); font-size: 14.5px; line-height: 1.5; white-space: pre-line; }
.modal-acoes { display: flex; gap: 10px; justify-content: flex-end; }
.modal-acoes button {
  font: inherit; font-size: 14px; font-weight: 600; padding: 9px 16px;
  border-radius: 10px; cursor: pointer; border: 1.5px solid transparent;
}
.modal-cancel { background: #fff; border-color: var(--line); color: var(--muted); }
.modal-cancel:hover { background: var(--bg-soft); }
.modal-ok { background: var(--red); color: var(--on-primary); }
.modal-ok:hover { filter: brightness(0.95); }
.modal-ok.perigo { background: var(--red-dark); }
.modal-box.erro .modal-title { color: var(--red-dark); }
.modal-box.erro .modal-msg { color: var(--red-dark); }

@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }

/* Badge de status ativo/inativo (listas do admin) */
.badge-status {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; padding: 2px 8px; border-radius: 999px; font-weight: 600;
}
.badge-status.ativo { background: #1f9d57; }
.badge-status.inativo { background: var(--muted); }

/* Nav do super-admin (macro superadmin_nav) */
.sa-nav { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 10px 0; }
.sa-nav .container { display: flex; gap: 18px; font-size: 13.5px; flex-wrap: wrap; }
.sa-nav-link { color: var(--muted); text-decoration: none; }
.sa-nav-link:hover { color: var(--navy); }
.sa-nav-link.ativo { color: var(--primary-ink); font-weight: 600; }

/* ====================================================================
   Card clicável (notícia/blog levam pra página da matéria — #55)
   ==================================================================== */
.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

/* ====================================================================
   Matéria — página individual de notícia / artigo de blog (#55)
   ==================================================================== */
.materia { background: #fff; }

.materia-hero {
  position: relative;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  padding: 128px 0 40px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
/* Capa como fundo do hero: foto + scrim garantindo leitura do título */
.materia-hero:has(.materia-capa) { border-bottom: none; }
.materia-capa {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.materia-hero-inner { position: relative; z-index: 1; }
.materia-hero:has(.materia-capa) .materia-title,
.materia-hero:has(.materia-capa) .materia-meta,
.materia-hero:has(.materia-capa) .materia-autor .name { color: #fff; }
.materia-hero:has(.materia-capa) .materia-crumb a { color: #fff; opacity: 0.92; }
.materia-hero:has(.materia-capa) .materia-meta,
.materia-hero:has(.materia-capa) .materia-autor .meta { color: rgba(255, 255, 255, 0.82); }

.materia-crumb { margin-bottom: 18px; font-size: 13px; font-weight: 600; }
.materia-crumb a { color: var(--primary-ink); text-decoration: none; }
.materia-crumb a:hover { text-decoration: underline; }

.materia-cat {
  display: inline-block;
  background: var(--primary-ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.materia-title {
  font-family: Poppins, sans-serif;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
  color: var(--navy);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  max-width: 900px;
}
.materia-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}
.materia-data { display: inline-flex; align-items: center; gap: 6px; }

.materia-autor { display: flex; align-items: center; gap: 12px; }
.materia-autor img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.materia-autor .name { font-weight: 700; color: var(--navy); }
.materia-autor .meta { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; }
.materia-autor .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.5; }

.materia-wrap { max-width: 760px; padding-top: 44px; padding-bottom: 64px; }
.materia-lead {
  font-size: 21px;
  line-height: 1.5;
  color: var(--navy);
  font-weight: 500;
  margin: 0 0 28px;
}
.materia-vazia { color: var(--muted); font-style: italic; }

/* Tipografia do corpo (HTML rico já sanitizado no servidor) */
.materia-corpo { font-size: 18px; line-height: 1.75; color: var(--ink); }
.materia-corpo > *:first-child { margin-top: 0; }
.materia-corpo p { margin: 0 0 22px; }
.materia-corpo h2 {
  font-family: Poppins, sans-serif;
  font-size: 26px;
  line-height: 1.2;
  color: var(--navy);
  margin: 40px 0 14px;
}
.materia-corpo h3 {
  font-family: Poppins, sans-serif;
  font-size: 21px;
  color: var(--navy);
  margin: 32px 0 12px;
}
.materia-corpo ul,
.materia-corpo ol { margin: 0 0 22px; padding-left: 26px; }
.materia-corpo li { margin-bottom: 8px; }
.materia-corpo a { color: var(--primary-ink); text-decoration: underline; }
.materia-corpo blockquote {
  margin: 28px 0;
  padding: 8px 0 8px 22px;
  border-left: 4px solid var(--primary-ink);
  color: var(--navy);
  font-size: 20px;
  font-style: italic;
}
.materia-corpo pre {
  background: var(--bg-soft);
  padding: 16px 18px;
  border-radius: 10px;
  overflow-x: auto;
  font-size: 15px;
}
.materia-corpo code { font-family: ui-monospace, "Cascadia Code", monospace; font-size: 0.92em; }
.materia-corpo img,
.materia-corpo figure { max-width: 100%; height: auto; border-radius: 12px; margin: 12px 0 24px; }
.materia-corpo figure img { margin: 0; }
.materia-corpo figcaption { font-size: 14px; color: var(--muted); text-align: center; margin-top: 8px; }

.materia-voltar { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }

/* Título: foto no corpo + carrossel de vídeos (#títulos rico) */
.titulo-foto { margin: 0 0 28px; }
.titulo-foto img { width: 100%; border-radius: 14px; display: block; }
.titulo-videos-head {
  font-family: Poppins, sans-serif;
  font-size: 22px;
  color: var(--navy);
  margin: 36px 0 14px;
}
.titulo-videos { display: flex; flex-direction: column; gap: 12px; }
.titulo-video-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.titulo-video-row:hover { box-shadow: var(--shadow-md); border-color: var(--line); transform: translateY(-1px); }
.tvr-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: var(--navy) center / cover no-repeat;
  overflow: hidden;
}
.tvr-play {
  position: absolute; inset: 0; margin: auto;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy); font-size: 15px; padding-left: 3px;
}
.tvr-placar {
  position: absolute; left: 8px; bottom: 6px;
  font-family: Poppins, sans-serif; font-weight: 700; font-size: 18px;
  color: #fff; text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}
.tvr-placar i { font-style: normal; opacity: 0.75; margin: 0 3px; }
.tvr-title { font-family: Poppins, sans-serif; font-weight: 600; color: var(--navy); line-height: 1.3; }
.tvr-meta { color: var(--muted); font-size: 14px; margin-top: 4px; }
/* Playlist de partes na página do vídeo (#90): cada row é um <button>. */
.titulo-video-row.parte-item { width: 100%; font: inherit; text-align: left; cursor: pointer; }
.titulo-video-row.parte-item.ativa { border-color: var(--primary); box-shadow: var(--shadow-md); }
@media (max-width: 520px) { .titulo-video-row { grid-template-columns: 120px 1fr; } }

@media (max-width: 640px) {
  .materia-hero { padding: 104px 0 32px; }
  .materia-corpo { font-size: 17px; }
  .materia-lead { font-size: 19px; }
}

/* ====================================================================
   Vídeos dos jogos — estilo Netflix (#40)
   ==================================================================== */
/* Card */
.vid-card { display: block; color: inherit; text-decoration: none; }
.vid-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  overflow: hidden;
  box-shadow: var(--shadow-sm, 0 2px 10px rgba(0, 0, 0, 0.08));
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.vid-card:hover .vid-thumb { transform: scale(1.035); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22); }
.vid-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 20px;
  padding-left: 4px;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.16s, transform 0.16s;
}
.vid-card:hover .vid-play { opacity: 1; transform: scale(1); }
.vid-placar {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: Poppins, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.vid-placar i { font-style: normal; opacity: 0.7; margin: 0 4px; font-size: 18px; }
.vid-live {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-ink, #c8102e);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  animation: vid-pulse 1.6s ease-in-out infinite;
}
.vid-live.grande { position: static; display: inline-block; font-size: 13px; margin-bottom: 12px; }
@keyframes vid-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }

/* Chip de transmissão ao vivo (#). Estados controlados por JS (live-chips.js):
   - live-chip-pre: laranja "Transmissão ao vivo" (antes do jogo);
   - live-chip-on:  vermelho pulsante "● Ao vivo" (do início até +2h);
   - 2h depois o JS esconde o chip. */
.live-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.live-chip.grande { position: static; display: inline-block; font-size: 13px; margin-bottom: 12px; }
.live-chip-pre { background: #f2810c; }
/* "Ao vivo agora" é sempre vermelho vivo — independente da cor do clube.
   Só a bolinha pisca (não o chip todo). */
.live-chip-on  { background: #e60000; box-shadow: 0 0 0 3px rgba(230, 0, 0, .25); }
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #fff;
  vertical-align: middle;
  animation: vid-pulse 1.1s ease-in-out infinite;
}
.vid-info { padding: 12px 2px 4px; }
.vid-title {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  font-size: 15.5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vid-sub { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ===== ClubeFlix — página dedicada estilo Netflix (fundo escuro) ===== */
.flix-dark { background: #0f0f10; }
.flix-dark .vid-row-title { color: #fff; }
.flix-dark .vid-title { color: #fff; }
.flix-dark .vid-sub { color: #b3b3b3; }
.flix-search { position: relative; max-width: 520px; margin: 0 0 34px; }
.flix-search input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border-radius: 10px;
  border: 1px solid #2b2b2e;
  background: #1c1c1f;
  color: #fff;
  font-size: 15px;
}
.flix-search input::placeholder { color: #8a8a8f; }
.flix-search input:focus { outline: none; border-color: #6a6a72; background: #232327; }
.flix-search-ico {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  opacity: .75;
}
.flix-vazio { padding: 22px 2px; color: #b3b3b3; grid-column: 1 / -1; }
/* Total geral de vídeos no ClubeFlix (#90). */
.flix-total { margin: -22px 0 30px; color: #b3b3b3; font-size: 14px; }

/* Grade (home) */
.vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 860px) { .vid-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .vid-grid { grid-template-columns: 1fr; } }

/* Fileiras (página dedicada — usa o .car-track existente) */
.vid-row + .vid-row { margin-top: 40px; }
.vid-row-title {
  font-family: Poppins, sans-serif;
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 14px;
}
/* Contagem ao lado do título da fileira por categoria (#90). */
.vid-row-count {
  font-size: 14px; font-weight: 600; vertical-align: middle;
  color: var(--muted); margin-left: 8px;
}
.flix-dark .vid-row-count { color: #8a8a8f; }
.vid-row .car-item { flex-basis: 300px; }
@media (max-width: 700px) { .vid-row .car-item { flex-basis: 80%; } }

/* Destaque (hero do bloco/página) */
.vid-feature {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
  margin-bottom: 36px;
  color: #fff;
  text-decoration: none;
  background: var(--navy);
}
.vid-feature.alta { border-radius: 0; min-height: 52vh; margin-bottom: 0; }
/* Link que cobre o hero da página (hero é <div> pra não aninhar <a>). O corpo
   fica acima e deixa o clique "vazar" pro cover, menos nos seus próprios links. */
.vid-feature-cover { position: absolute; inset: 0; z-index: 1; }

/* Carrossel do hero (banners grandes deslizáveis). */
.hero-carousel { position: relative; }
.hero-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.hero-track::-webkit-scrollbar { display: none; }
.hero-slide { flex: 0 0 100%; scroll-snap-align: start; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
}
.hero-arrow:hover { background: rgba(0, 0, 0, .7); }
.hero-arrow.left { left: 16px; }
.hero-arrow.right { right: 16px; }
.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 16px; left: 0; right: 0;
  display: flex; gap: 8px; justify-content: center;
}
.hero-dot {
  width: 9px; height: 9px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255, 255, 255, .45);
}
.hero-dot.on { background: #fff; width: 26px; border-radius: 5px; }
@media (max-width: 700px) { .hero-arrow { display: none; } }
.vid-feature.alta .vid-feature-body { z-index: 2; pointer-events: none; }
.vid-feature.alta .vid-feature-body a,
.vid-feature.alta .vid-feature-body .vid-feature-cta { pointer-events: auto; }
.vid-feature-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vid-feature-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 27, 42, 0.92) 0%, rgba(13, 27, 42, 0.55) 55%, rgba(13, 27, 42, 0.25) 100%);
}
.vid-feature-body {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: inherit;
}
.vid-feature.alta .vid-feature-body { padding-top: 110px; padding-bottom: 48px; min-height: 52vh; }
.vid-feature-title {
  font-family: Poppins, sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.08;
  margin: 0 0 12px;
}
.vid-feature-title b { color: var(--primary-on-dark, #fff); }
.vid-feature-meta { font-size: 15px; opacity: 0.85; margin-bottom: 20px; }
.vid-feature-cta { background: #fff; color: var(--navy); border: none; }

/* Página do vídeo (player) */
.video-page { padding: 96px 0 64px; background: #fff; }
.video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}
.video-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* Facade do player: thumb + play; o iframe do YouTube só carrega ao clicar. */
.yt-facade { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0;
  cursor: pointer; background: #000; display: grid; place-items: center; }
.yt-facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.yt-facade-play { position: relative; z-index: 1; width: 76px; height: 76px; border-radius: 50%;
  background: rgba(0, 0, 0, .55); color: #fff; display: grid; place-items: center;
  font-size: 30px; padding-left: 5px; transition: background .15s, transform .15s; }
.yt-facade:hover .yt-facade-play { background: #e60000; transform: scale(1.06); }
.video-head { padding: 24px 0 8px; }
.video-title { font-family: Poppins, sans-serif; font-size: clamp(24px, 3.5vw, 36px); color: var(--navy); margin: 0 0 12px; }
.video-placar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Poppins, sans-serif;
  color: var(--navy);
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.video-placar b { font-size: 30px; line-height: 1; }
.video-placar i { font-style: normal; color: var(--muted); }
.video-placar span { color: var(--muted); font-weight: 600; }
.video-meta { color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.video-desc { font-size: 17px; line-height: 1.7; color: var(--ink); max-width: 760px; }
.video-page .vid-row { margin-top: 44px; }
