/* ═══════════════════════════════════════════════════════════════════════════
   GENTE DO BARRA — main.css
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── 1. TOKENS / CUSTOM PROPERTIES ────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --c-navy:    #091d3d;
  --c-blue:    #0e4993;
  --c-accent:  #58a1ff;
  --c-light:   #f6f6f6;
  --c-gray:    #e4e4e6;
  --c-white:   #ffffff;
  --c-gold:    #c9a520;   /* estrela do escudo */
  --c-dark:    #0d0d0d;
  --c-text:    #111827;
  --c-text-2:  #374151;
  --c-muted:   #6b7280;
  --c-border:  #d1d5db;

  /* Superfícies claras (editorial / artigos) */
  --c-surface:   #ffffff;
  --c-surface-2: #f4f6f9;
  --c-surface-3: #e8ecf2;

  /* Gradiente de identidade */
  --gradient-brand: linear-gradient(90deg, var(--c-navy) 0%, var(--c-blue) 60%, #b3d4ff 100%);

  /* Semantic */
  --c-promo:   #16a34a;
  --c-relg:    #dc2626;
  --c-live:    #ef4444;
  --c-win:     #16a34a;
  --c-draw:    #f59e0b;
  --c-loss:    #dc2626;

  /* Typography */
  --font-display: 'Bebas Neue', 'Barlow Condensed', sans-serif;
  --font-headline: 'Barlow Condensed', 'Barlow', sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;
  --font-mono:    'Courier New', monospace;

  /* Layout */
  --container:    1400px;
  --container-sm: 900px;
  --gap-sm:       16px;

  /* Espaçamento — grid de 4px */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  /* Radius */
  --r-xs:   2px;
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   20px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.06);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(9,29,61,.10);
  --shadow-lg: 0 8px 24px rgba(9,29,61,.14);
  --shadow-xl: 0 16px 40px rgba(9,29,61,.18);

  /* Transitions */
  --t-fast:   150ms ease;
  --t-normal: 250ms ease;
}

/* ─── 2. RESET & BASE ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

/* Custom Blue Scrollbar (Inspired by Bayer, but Blue) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: #2ab5ff; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: #0095f0; }
* { scrollbar-width: thin; scrollbar-color: #2ab5ff #000; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-light);
  -webkit-font-smoothing: antialiased;
}

/* --- Responsive Team Names --- */
.team-name-short { display: none !important; }
@media (max-width: 640px) {
    .team-name-full { display: none !important; }
    .team-name-short { display: inline-block !important; }
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }
ul, ol { list-style: none; }

/* ─── 3. CONTAINER ──────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gap);
}

/* ─── 4. TYPOGRAPHY ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--c-navy);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.section-title--light { color: var(--c-white); }
.section-title--dark  { color: var(--c-navy); }

.section-link {
  font-family: var(--font-headline);
  font-size: .875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-blue);
  transition: color var(--t-fast);
  white-space: nowrap;
}
.section-link:hover { color: var(--c-accent); }
.section-link--light { color: var(--c-accent); }
.section-link--light:hover { color: var(--c-white); }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  margin-bottom: 2rem;
}

/* ─── 5. BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  font-family: var(--font-headline);
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.btn--primary {
  background: var(--c-blue);
  color: var(--c-white);
}
.btn--primary:hover { background: var(--c-navy); transform: translateY(-1px); }

.btn--accent {
  background: var(--c-accent);
  color: var(--c-navy);
}
.btn--accent:hover { background: var(--c-white); transform: translateY(-1px); }

/* ─── 6. BADGE ──────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: .2rem .6rem;
  font-family: var(--font-headline);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: var(--r-sm);
}

.badge--cat {
  background: var(--cat-color, var(--c-blue));
  color: #fff;
  margin-bottom: .5rem;
}

/* ─── 7. TOPBAR ─────────────────────────────────────────────────────────────── */
.topbar {
  background: #000;
  color: #fff;
  font-size: .7rem;
  font-family: var(--font-headline);
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  gap: 1.5rem;
}

.topbar__left { display: flex; align-items: center; gap: 1rem; overflow: hidden; justify-content: center; }
.topbar__date { white-space: nowrap; text-transform: capitalize; font-weight: 600; color: #fff; }

.topbar__match {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity var(--t-fast);
}
.topbar__match:hover { opacity: .75; }
.topbar__match-label { color: #fff; text-transform: uppercase; font-weight: 900; font-size: .65rem; background: rgba(255,255,255,.12); padding: 1px 6px; border-radius: 3px; }

.topbar__right { display: none; }
.topbar__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--c-navy);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.topbar__social:hover { background: rgba(9,29,61,.1); }

/* ─── 8. HEADER ─────────────────────────────────────────────────────────────── */
.site-header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: none;
  box-shadow: none;
}

/* Header refinements */
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  height: 72px;
}

/* Logo text fallback */
.site-header__logo-text {
  display: flex;
  align-items: baseline;
  gap: .25em;
  font-family: var(--font-display);
  letter-spacing: .05em;
}
.logo-gente  { font-size: 1.6rem; color: var(--c-white); }
.logo-do     { font-size: 1.1rem; color: var(--c-gold); }
.logo-barra  { font-size: 1.6rem; color: var(--c-accent); }

/* Logo imagem */
.site-header__brand .custom-logo,
.site-header__logo-img img { max-height: 72px; width: auto; }
.site-header__logo-img { display: flex; align-items: center; }

/* Footer logo — limita tamanho do custom logo */
.footer-brand__logo .custom-logo,
.footer-brand__logo img { max-height: 72px; width: auto; }

/* Estrela dourada decorativa */
.star-gold { color: var(--c-gold); }
.topbar__match-label { color: var(--c-gold); text-transform: uppercase; font-weight: 600; font-size: .65rem; }

/* Navigation */
.main-navigation { flex: 1; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  justify-content: center;
}

.nav-menu li { position: relative; }

.nav-menu a {
  display: block;
  padding: .5rem .75rem;
  font-family: var(--font-headline);
  font-size: clamp(.75rem, 1.2vw, .9rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  white-space: nowrap;
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
  color: var(--c-accent);
}

/* Dropdown */
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--c-navy);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 200;
}
.nav-menu li:hover > .sub-menu { display: block; }
.nav-menu .sub-menu a { padding: .6rem 1rem; font-size: .8rem; }

/* Header Actions */
.site-header__actions { display: flex; align-items: center; gap: .5rem; height: 100%; }

/* Jogos button — outlined style */
.btn-jogos {
  border: 2px solid rgba(255,255,255,.35);
  color: #fff;
  font-family: var(--font-headline);
  font-size: .8rem;
  font-weight: 900;
  padding: 0 1.1rem;
  height: 38px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.btn-jogos:hover { border-color: var(--c-accent); color: var(--c-accent); background: rgba(88,161,255,.08); }

/* Últimas Notícias — filled blue */
.btn-noticias {
  background: var(--c-blue);
  color: #fff;
  font-family: var(--font-headline);
  font-size: .8rem;
  font-weight: 900;
  padding: 0 1.25rem;
  height: 38px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
  white-space: nowrap;
}
.btn-noticias:hover { background: var(--c-accent); color: var(--c-navy); }

.btn-search {
  color: #fff;
  width: 44px;
  height: 44px;
  transition: color var(--t-fast);
}
.btn-search:hover { color: var(--c-accent); }

.btn-hamburger {
  display: none;
  width: 72px;
  height: 72px;
  background: var(--c-blue);
  color: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-right: -1rem;
}
.btn-hamburger:hover { background: var(--c-navy); }
.btn-hamburger span { width: 28px; height: 3px; background: #fff; border-radius: 0; }

/* Search Overlay */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--c-navy);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 0;
  z-index: 99;
}
.search-overlay[hidden] { display: none; }
.search-overlay__form {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-md);
  padding: .5rem 1rem;
}
.search-overlay__form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--c-white);
  font-family: var(--font-body);
  font-size: 1rem;
}
.search-overlay__form input::placeholder { color: rgba(255,255,255,.4); }
.search-overlay__form button { color: rgba(255,255,255,.7); transition: color var(--t-fast); }
.search-overlay__form button:hover { color: var(--c-accent); }

/* ─── 9. MOBILE MENU ────────────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(14, 73, 147, 0.15) 100%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: 300;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(-100%);
  transition: transform var(--t-normal);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu.is-open {
  transform: translateX(0);
}
/* Mobile menu refinements */
.mobile-menu__inner {
  padding: 5rem 2rem 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.mobile-nav-menu { list-style: none; margin: 0; padding: 0; }
.mobile-nav-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s ease;
}
.mobile-nav-menu li:hover {
  background: rgba(255, 255, 255, 0.03);
}
.mobile-nav-menu a {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: .05em;
  transition: color var(--t-fast);
}
.mobile-nav-menu a:hover { color: var(--c-accent); }
.mobile-menu__socials {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}
.mobile-menu__social {
  font-family: var(--font-headline);
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu__social:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Mobile quick CTA buttons */
.mobile-menu__ctas {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}
.mobile-menu__cta-btn {
  display: block;
  text-align: center;
  padding: .9rem 1rem;
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 12px;
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .15);
  transition: all 0.3s ease;
}
.mobile-menu__cta-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .3);
  transform: translateY(-2px);
}
.mobile-menu__cta-btn--primary {
  background: linear-gradient(135deg, var(--c-blue) 0%, rgba(59, 130, 246, 0.8) 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
}
.mobile-menu__cta-btn--primary:hover {
  background: linear-gradient(135deg, var(--c-accent) 0%, rgba(59, 130, 246, 1) 100%);
  border-color: var(--c-accent);
  color: var(--c-navy);
}

/* ─── 10. HERO ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--c-navy);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9, 29, 61, .1) 0%,
    rgba(9, 29, 61, .4) 40%,
    rgba(9, 29, 61, .92) 100%
  );
}

/* Full-hero clickable overlay (sits below content) */
.hero__link-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 5rem 7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

/* Hero container override when using __layout */
.hero > .container {
  position: relative;
  z-index: 2;
}

/* Bottom row: title left + CTA right */
.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: auto; /* badge is now absolute → push content to bottom */
}

.hero__inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: var(--c-white);
  line-height: 1;
  letter-spacing: .02em;
}
.hero__title a { color: inherit; transition: color var(--t-fast); }
.hero__title a:hover { color: var(--c-accent); }

.hero__excerpt {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  flex-wrap: wrap;
}
.hero__sep { opacity: .5; }
.hero__meta time { color: rgba(255,255,255,.75); }

/* Hero badge + CTA (new style) */
.hero__badge-wrap { position: absolute; top: 1.5rem; display: inline-block; margin-bottom: 0; z-index: 5; }
.hero__badge-wrap::before { content: ''; position: absolute; inset: 0; background: var(--c-white); filter: blur(16px); opacity: .4; }
.hero__badge {
  position: relative;
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-navy);
  padding: .5rem 2rem;
  font-family: var(--font-headline);
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2em;
  box-shadow: 0 0 24px rgba(88,161,255,.5);
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  color: var(--c-white);
  padding: .85rem 2rem;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 100px;
  font-family: var(--font-headline);
  font-size: .85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 4px 24px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.2);
  flex-shrink: 0;
  align-self: flex-end;
  white-space: nowrap;
}
.hero__cta:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.3);
}
.hero__cta svg { transition: transform var(--t-fast); }
.hero__cta:hover svg { transform: translateX(4px); }

/* Geometric shapes */
.hero__geo { position: absolute; top: 0; right: 0; width: 50%; height: 100%; pointer-events: none; z-index: 0; opacity: .15; }
.hero__geo-circle { position: absolute; border-radius: 50%; filter: blur(60px); }
.hero__geo-circle--1 { width: 320px; height: 320px; top: 10%; right: 10%; background: var(--c-accent); }
.hero__geo-circle--2 { width: 400px; height: 400px; bottom: 15%; right: 20%; background: var(--c-white); }
.hero__geo-diamond { position: absolute; top: 30%; right: 8%; width: 120px; height: 120px; border: 8px solid rgba(255,255,255,.3); transform: rotate(45deg); }

/* Hero wave */
.hero__wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero__wave svg { width: 100%; height: 80px; display: block; }

/* Cut diagonal */
.hero__cut {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--c-light);
  clip-path: polygon(0 100%, 100% 0%, 100% 100%);
}

/* ─── 11. MATCHES STRIP ─────────────────────────────────────────────────────── */
.section-matches {
  padding: 2rem 0;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-gray);
}

.section-matches__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.matches-strip {
  display: flex;
  gap: var(--gap-sm);
  overflow-x: auto;
  padding-bottom: .5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--c-gray) transparent;
}

.match-card {
  flex: 0 0 auto;
  width: clamp(220px, 22vw, 280px);
  background: var(--c-light);
  border: 1px solid var(--c-gray);
  border-radius: var(--r-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
  position: relative;
  overflow: hidden;
  color: var(--c-text);
}
.match-card::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: var(--c-blue);
}
.match-card--ao_vivo::before { background: var(--c-live); }
.match-card--encerrado::before { background: var(--c-muted); }
.match-card:hover { border-color: var(--c-accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.match-card__live-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: var(--c-live);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .2rem .5rem;
  border-radius: 20px;
  align-self: flex-start;
}

.match-card__comp {
  font-family: var(--font-headline);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-muted);
}

.match-card__teams {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.match-card__team {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  text-align: center;
}


.match-card__escudo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.match-card__escudo-placeholder {
  width: 40px;
  height: 40px;
  background: var(--c-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.match-card__team-name {
  font-family: var(--font-headline);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--c-text);
  text-align: center;
  line-height: 1.2;
}

.match-card__score {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex-shrink: 0;
}

.match-card__score-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--c-navy);
  min-width: 1.5ch;
  text-align: center;
}
.match-card__score-sep { color: var(--c-muted); font-family: var(--font-display); font-size: 1.2rem; }

.match-card__datetime {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.match-card__date { font-family: var(--font-headline); font-size: .85rem; font-weight: 700; color: var(--c-navy); }
.match-card__time { font-family: var(--font-display); font-size: 1.4rem; color: var(--c-blue); }
.match-card__vs { font-family: var(--font-display); font-size: 1.4rem; color: var(--c-muted); }

.match-card__info {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  font-size: .7rem;
  color: var(--c-muted);
  text-align: center;
  border-top: 1px solid var(--c-gray);
  padding-top: .5rem;
}
.match-card__tv {
  font-weight: 600;
  color: var(--c-blue);
}

/* Pulse dot for live */
.pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}

/* ─── 12. NEWS SECTION ──────────────────────────────────────────────────────── */
.section-news {
  padding: 3rem 0 4rem;
}

.section-news__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
}

.news-grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid var(--c-navy);
  padding-bottom: .75rem;
}

/* Featured 2-up */
.news-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-sm);
  margin-bottom: var(--gap);
}

/* News Card */
.news-card { background: var(--c-white); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow var(--t-fast), transform var(--t-fast); }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.news-card--featured { display: flex; flex-direction: column; }

.news-card__img-link { display: block; overflow: hidden; }
.news-card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-card__img { transform: scale(1.03); }
.news-card__img-placeholder { width: 100%; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--c-navy), var(--c-blue)); }

.news-card__body { padding: 1rem; flex: 1; display: flex; flex-direction: column; gap: .4rem; }

.news-card__title {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--c-navy);
}
.news-card__title a { color: inherit; transition: color var(--t-fast); }
.news-card__title a:hover { color: var(--c-blue); }

.news-card__excerpt { font-size: .875rem; color: var(--c-muted); line-height: 1.5; flex: 1; }
.news-card__meta { display: flex; align-items: center; gap: .5rem; font-size: .75rem; color: var(--c-muted); flex-wrap: wrap; margin-top: auto; padding-top: .5rem; }


/* List cards */
.news-list { display: flex; flex-direction: column; gap: var(--space-3); }

.news-card--list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--c-surface-3);
  box-shadow: var(--shadow-xs);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-surface);
  transition: box-shadow var(--t-fast), transform var(--t-fast);
}
.news-card--list:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.news-card--list .news-card__img-link {
  flex-shrink: 0;
  width: 180px;
  overflow: hidden;
}
.news-card--list .news-card__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform var(--t-normal);
}
.news-card--list:hover .news-card__img { transform: scale(1.04); }
.news-card--list .news-card__body {
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  justify-content: center;
}
.news-card--list .news-card__title {
  font-size: 1rem;
  color: var(--c-text);
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.3;
}
.news-card--list .news-card__title a { color: var(--c-text); }
.news-card--list .news-card__title a:hover { color: var(--c-blue); }
.news-card--list .news-card__excerpt {
  font-size: .85rem;
  color: var(--c-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card--list .news-card__meta { font-size: .73rem; color: var(--c-muted); }

/* ─── 13. SIDEBAR ───────────────────────────────────────────────────────────── */
.section-news__sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.sidebar-block {
  background: rgba(9,29,61,.55);
  backdrop-filter: blur(40px) saturate(1.8);
  -webkit-backdrop-filter: blur(40px) saturate(1.8);
  border: 1px solid rgba(74,158,255,.18);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.07);
}

.sidebar-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  background: rgba(26,111,255,.2);
  border-bottom: 1px solid rgba(74,158,255,.2);
}

.sidebar-block__title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-headline);
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-white);
}
.sidebar-block__more {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--c-accent);
  transition: color var(--t-fast);
}
.sidebar-block__more:hover { color: var(--c-white); }

/* Coluna items in sidebar */
.coluna-list { padding: .5rem; }
.coluna-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem .5rem;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.coluna-item:hover { background: var(--c-light); }
.coluna-item__avatar { border-radius: 50%; width: 40px; height: 40px; flex-shrink: 0; }
.coluna-item__info { display: flex; flex-direction: column; gap: .1rem; overflow: hidden; }
.coluna-item__author { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-blue); }
.coluna-item__title { font-size: .875rem; font-weight: 600; color: var(--c-text); line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Sidebar news items */
.sidebar-news-item {
  display: flex;
  gap: .75rem;
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--t-fast);
}
.sidebar-news-item:last-child { border-bottom: none; }
.sidebar-news-item:hover { background: rgba(255,255,255,.07); }
.sidebar-news-item__img { width: 64px; height: 48px; object-fit: cover; border-radius: var(--r-sm); flex-shrink: 0; }
.sidebar-news-item__info { display: flex; flex-direction: column; gap: .25rem; }
.sidebar-news-item__title { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.9); line-height: 1.3; }
.sidebar-news-item__date { font-size: .7rem; color: rgba(255,255,255,.5); }

/* ─── 14. STANDINGS TABLE ───────────────────────────────────────────────────── */
.standings-table-wrap { overflow-x: auto; }

.standings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .8rem;
}

.standings-table thead th {
  background: rgba(0,0,0,.04);
  padding: .4rem .5rem;
  font-family: var(--font-headline);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-muted);
  text-align: center;
  border-bottom: 2px solid var(--c-border);
}
.standings-table thead .standings-table__team { text-align: left; }

.standings-table__row td {
  padding: .45rem .5rem;
  border-bottom: 1px solid var(--c-gray);
  text-align: center;
}

.standings-table__row:last-child td { border-bottom: none; }

.standings-table__row--promo td:first-child { border-left: 3px solid var(--c-promo); }
.standings-table__row--relg  td:first-child { border-left: 3px solid var(--c-relg); }
.standings-table__row--club { background: rgba(88, 161, 255, .08); }
.standings-table__row--club td { font-weight: 600; }

.standings-table__pos .pos-indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: .7rem;
  font-weight: 700;
}
.pos-indicator--up      { background: rgba(22, 163, 74, .15); color: var(--c-promo); }
.pos-indicator--down    { background: rgba(220, 38, 38, .15); color: var(--c-relg); }
.pos-indicator--neutral { background: rgba(107, 114, 128, .1); color: var(--c-muted); }

.standings-table__team { text-align: left !important; }
.standings-table__team-row { display: flex; align-items: center; gap: .4rem; }

.standings-table__logo { width: 20px; height: 20px; object-fit: contain; }
.standings-table__logo-placeholder {
  width: 20px;
  height: 20px;
  background: var(--c-blue);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .55rem;
  font-weight: 700;
  text-transform: uppercase;
  flex-shrink: 0;
}

.standings-table__team-name { font-size: .8rem; font-weight: 500; }
.standings-table__team-name--club { font-weight: 700; color: var(--c-navy); }
.standings-table__star { color: var(--c-accent); font-size: .65rem; }

.standings-table__pts strong { font-size: .95rem; color: var(--c-navy); }

.standings-table__gd--pos { color: var(--c-promo); }
.standings-table__gd--neg { color: var(--c-relg); }

.form-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: .55rem;
  font-weight: 700;
  color: #fff;
}
.form--w { background: var(--c-win); }
.form--d { background: var(--c-draw); }
.form--l { background: var(--c-loss); }

.standings-legend {
  display: flex;
  gap: 1.5rem;
  padding: .75rem 1rem;
  font-size: .7rem;
  color: var(--c-muted);
  flex-wrap: wrap;
  border-top: 1px solid var(--c-gray);
}
.standings-legend__item { display: flex; align-items: center; gap: .35rem; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-dot--promo { background: var(--c-promo); }
.legend-dot--relg  { background: var(--c-relg); }

.standings-empty { padding: 1.5rem; color: var(--c-muted); font-size: .875rem; text-align: center; }

/* Tabs — dark-background context (front-page navy bg) */
.standings-tabs {
  display: flex;
  gap: .25rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255,255,255,.18);
}
.standings-tab {
  padding: .5rem 1.25rem;
  font-family: var(--font-headline);
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.45);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.standings-tab:hover { color: rgba(255,255,255,.85); }
.standings-tab--active { color: var(--c-white); border-bottom-color: var(--c-accent); }

.standings-panel { display: none; }
.standings-panel--active { display: block; }

/* ─── 15. COLUMNS / COLUNAS ─────────────────────────────────────────────────── */
.section-columns {
  background: var(--c-navy);
  padding: 4rem 0 5rem;
  position: relative;
}

/* Cut-paper top (GFCA style) */
.cut-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--c-light);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.columns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--gap);
  margin-top: 2rem;
}

.column-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.column-card:hover { background: rgba(255,255,255,.1); border-color: var(--c-accent); transform: translateY(-3px); }

.column-card__img-wrap { overflow: hidden; }
.column-card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .4s ease; }
.column-card:hover .column-card__img { transform: scale(1.04); }

.column-card__body { padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }

.column-card__author-info { display: flex; align-items: center; gap: .75rem; }
.column-card__avatar { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--c-accent); }
.column-card__author-name { display: block; font-size: .875rem; font-weight: 700; color: var(--c-white); }
.column-card__label { display: block; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: var(--c-accent); }

.column-card__title { font-size: 1rem; color: var(--c-white); line-height: 1.3; }
.column-card__title a { color: inherit; transition: color var(--t-fast); }
.column-card__title a:hover { color: var(--c-accent); }

.column-card__excerpt { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.5; }

.column-card__read {
  font-family: var(--font-headline);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--c-accent);
  transition: color var(--t-fast);
  margin-top: auto;
}
.column-card__read:hover { color: var(--c-white); }

/* ─── 16. STANDINGS SECTION ─────────────────────────────────────────────────── */
.section-standings {
  padding: 4rem 0;
  background: var(--c-white);
}

/* ─── 17. ARCHIVE ───────────────────────────────────────────────────────────── */
.archive-hero {
  background: var(--c-navy);
  padding: 3rem 0;
  margin-bottom: 2rem;
}
.archive-hero__badge {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-accent);
  margin-bottom: .5rem;
}
.archive-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--c-white);
  letter-spacing: .02em;
}
.archive-hero__desc { color: rgba(255,255,255,.7); margin-top: .75rem; max-width: 600px; }
.archive-hero__author { display: flex; align-items: center; gap: 1rem; }
.archive-hero__avatar { border-radius: 50%; border: 3px solid var(--c-accent); }

.archive-page { padding-bottom: 4rem; }
.archive-page__layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
}

/* Match row archive */
.matches-archive { display: flex; flex-direction: column; gap: .5rem; }
.match-row {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.25rem;
  background: var(--c-white);
  border: 1px solid var(--c-gray);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  border-left: 4px solid var(--c-blue);
}
.match-row--ao_vivo { border-left-color: var(--c-live); }
.match-row--encerrado { border-left-color: var(--c-muted); }
.match-row:hover { border-color: var(--c-accent); box-shadow: var(--shadow-sm); }

/* Match row — date column */
.match-row__date {
  display: flex; flex-direction: column; align-items: center;
  font-family: var(--font-headline); font-weight: 700; font-size: .8rem; color: var(--c-muted);
  padding-right: .75rem; border-right: 1px solid var(--c-gray);
}
.match-row__day { font-size: .85rem; color: var(--c-text); font-weight: 700; }
.match-row__time { font-size: .75rem; color: var(--c-muted); }
.match-row__live-badge { display: flex; align-items: center; gap: .3rem; font-size: .65rem; font-weight: 700; color: var(--c-live); text-transform: uppercase; }

/* Match row — teams */
.match-row__teams {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; padding: 0 1rem;
}
.match-row__team-block {
  display: flex; align-items: center; gap: .5rem; flex: 1;
}
.match-row__team-block--away { flex-direction: row-reverse; }
.match-row__team-name { font-family: var(--font-headline); font-weight: 700; font-size: .9rem; color: var(--c-text); }
.match-row__crest { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
.match-row__crest-ph {
  width: 28px; height: 28px; background: var(--c-blue); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .55rem; font-weight: 900; flex-shrink: 0;
}

/* Match row — center score / VS */
.match-row__center { display: flex; flex-direction: column; align-items: center; gap: .1rem; min-width: 70px; flex-shrink: 0; }
.match-row__score { font-family: var(--font-display); font-size: 1.3rem; color: var(--c-navy); display: flex; align-items: center; gap: .3rem; }
.match-row__score strong { font-size: 1.4rem; }
.match-row__score-sep { font-size: .9rem; color: var(--c-muted); font-weight: 400; }
.match-row__enc { font-size: .6rem; font-weight: 700; text-transform: uppercase; color: var(--c-muted); letter-spacing: .06em; }
.match-row__vs { font-family: var(--font-display); font-size: 1.2rem; color: var(--c-muted); }

/* Match row — meta (venue/comp) */
.match-row__meta { display: flex; flex-direction: column; align-items: flex-end; gap: .15rem; padding-left: .75rem; min-width: 120px; }
.match-row__comp { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--c-blue); }
.match-row__venue { font-size: .72rem; color: var(--c-muted); text-align: right; }

/* ─── 18. SINGLE ARTICLE — Layout v2 ────────────────────────────────────────── */

body.single-post { background: var(--c-surface-2); }

/* ── Barra de progresso de leitura ── */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 9999;
  pointer-events: none;
  transition: transform 80ms linear;
}

/* ── Topbar: voltar + categoria ── */
.article-topbar {
  background: var(--c-navy);
  padding: .65rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.article-topbar__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.article-topbar__back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.65);
  font-family: var(--font-headline);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  transition: color var(--t-fast);
}
.article-topbar__back:hover { color: var(--c-accent); }

/* ── Cabeçalho editorial: título + deck ── */
.article-header-editorial {
  background: var(--c-surface);
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid var(--c-surface-3);
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  color: var(--c-navy);
  line-height: 1.05;
  letter-spacing: .01em;
  margin-bottom: 1rem;
}

/* ── Byline: autor + share (ole.com.ar style) ── */
.article-byline {
  background: var(--c-surface);
  padding: .875rem 0;
  border-bottom: 1px solid var(--c-surface-3);
}
.article-byline__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.article-byline__author-block {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.article-byline__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.article-byline__info {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.article-byline__name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--c-text);
  font-family: var(--font-headline);
}
.article-byline__meta {
  font-size: .75rem;
  color: var(--c-muted);
}
.article-byline__share {
  display: flex;
  align-items: center;
  gap: .4rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--c-surface-3);
  background: transparent;
  color: var(--c-text-2);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  flex-shrink: 0;
}
.share-btn:hover { background: var(--c-surface-2); }
.share-btn--fb:hover  { background: #1877f2; color: #fff; border-color: #1877f2; }
.share-btn--x:hover   { background: #000;    color: #fff; border-color: #000; }
.share-btn--wa:hover  { background: #25d366; color: #fff; border-color: #25d366; }
.share-btn--copy.share-btn--copied { background: var(--c-win); color: #fff; border-color: var(--c-win); }

/* ── Imagem destaque (abaixo do título) ── */
.article-cover {
  background: var(--c-surface);
  padding: 1.25rem 0 0;
}
.article-inner--wide { max-width: 860px; }
.article-cover__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r-md);
  display: block;
}
.article-cover__caption {
  font-size: .78rem;
  color: var(--c-muted);
  text-align: right;
  padding: .4rem .25rem 0;
  font-style: italic;
  letter-spacing: .01em;
}

/* ── Coluna de leitura ── */
.article-inner {
  max-width: 720px;
  margin-inline: auto;
}
.article-body {
  background: var(--c-surface);
  padding: 2.5rem 0 4rem;
}

/* ── Leia Também — strip horizontal ── */
.related-strip {
  background: var(--c-navy);
  padding: 2.5rem 0 3rem;
}
.related-strip__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: var(--c-white);
  letter-spacing: .05em;
  margin-bottom: 1.25rem;
  padding-left: .875rem;
  border-left: 3px solid var(--c-accent);
}
.related-strip__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  text-decoration: none;
  transition: opacity var(--t-fast);
}
.related-card:hover { opacity: .8; }
.related-card__img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: #0c2348;
  flex-shrink: 0;
}
.related-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-normal);
}
.related-card:hover .related-card__img { transform: scale(1.04); }
.related-card__placeholder { width: 100%; height: 100%; background: #162e55; }
.related-card__body { display: flex; flex-direction: column; gap: .3rem; }
.related-card__cat {
  font-family: var(--font-headline);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-accent);
}
.related-card__title {
  font-family: var(--font-headline);
  font-size: .975rem;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-card__date {
  font-size: .72rem;
  color: rgba(255,255,255,.45);
}

/* ── Responsivo ── */
@media (max-width: 768px) {
  .article-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .article-byline__row { gap: .75rem; }
  .related-strip__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: .5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .related-strip__track::-webkit-scrollbar { display: none; }
  .related-card {
    min-width: 220px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}
@media (max-width: 480px) {
  .article-byline__share { display: none; } /* share esconde em mobile muito pequeno */
  .article-cover__img { border-radius: 0; }
  .article-header-editorial { padding: 1.75rem 0 1rem; }
}

/* Article Hero */
.article-hero {
  position: relative;
  height: clamp(340px, 56vh, 580px);
  overflow: hidden;
  background: var(--c-navy);
}
.article-hero__img-wrap {
  position: absolute;
  inset: 0;
}
.article-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(9,29,61,.95) 0%,
    rgba(9,29,61,.6) 40%,
    rgba(9,29,61,.15) 100%
  );
}

.article-hero__back {
  position: absolute;
  top: 1.5rem;
  left: 5%;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-white);
  font-family: var(--font-headline);
  font-size: 0.85rem;
  font-weight: 700;
  background: rgba(9, 29, 61, 0.4);
  padding: 0.5rem 1rem;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.article-hero__back:hover { background: var(--c-accent); color: var(--c-navy); }

.article-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 2.5rem;
}
.article-hero--no-img { height: clamp(240px, 38vh, 380px); }
.article-hero--no-img .article-hero__overlay {
  background: linear-gradient(135deg, var(--c-navy) 0%, #1a3a6e 100%);
}

.article-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  color: var(--c-white);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-top: .6rem;
  max-width: 820px;
}
.article-hero__meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  margin-top: .65rem;
  flex-wrap: wrap;
}
.article-hero__meta strong { color: rgba(255,255,255,1); font-weight: 600; }
.article-hero__sep { opacity: .5; }
.article-hero__meta time { color: rgba(255,255,255,.9); }

/* Article Body: fundo branco — editorial sempre legível */
.article-body {
  background: var(--c-surface);
  padding: 2.5rem 0 4.5rem;
}

/* Coluna de leitura centralizada — largura máxima para conforto visual */
.article-inner {
  max-width: 720px;
  margin-inline: auto;
}

body.single-post .article-content p, body.single-post .article-deck {
  color: var(--c-text);
  font-size: 1.0625rem;
  line-height: 1.78;
}
body.single-post .article-content h2 {
  color: var(--c-navy);
  font-family: var(--font-headline);
  font-weight: 600;
}
body.single-post .article-content h3,
body.single-post .article-content h4 {
  color: var(--c-navy);
  font-family: var(--font-body);
  font-weight: 600;
}
body.single-post .article-content blockquote {
  background: var(--c-surface-2);
  border-left: 4px solid var(--c-accent);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  color: var(--c-text);
  font-size: clamp(1rem, 5vw, 1.1rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
body.single-post .article-content blockquote p {
  color: var(--c-text) !important;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
body.single-post .article-content blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-style: normal;
  text-transform: uppercase;
  color: var(--c-blue);
  letter-spacing: 0.05em;
}

/* Cards Dark mode para leia também */
.news-card.news-card--dark {
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 0;
  border: none;
  background: var(--c-navy);
  border-bottom: 4px solid var(--c-white);
  overflow: hidden;
}
.news-card--dark .news-card__img-link { height: 100%; display: block; }
.news-card--dark .news-card__img { height: 100%; width: 100%; object-fit: cover; }
.news-card--dark .news-card__body {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,29,61,0.95) 0%, rgba(9,29,61,0.1) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  pointer-events: none;
}
.news-card--dark .news-card__title a { color: var(--c-white); font-family: var(--font-display); font-size: 1.35rem; text-transform: uppercase; line-height: 1.1; pointer-events: auto; }
.news-card--dark .badge--cat { align-self: flex-start; margin-bottom: auto; background: var(--c-accent); color: var(--c-navy); }
.news-card--dark .news-card__meta { color: #ccc; margin-top: 0.5rem; font-size: 0.8rem; font-weight: bold; pointer-events: auto; }
.news-card--dark .btn-arrow-nw {
  position: absolute;
  bottom: 0px; 
  right: 1.5rem;
  background: var(--c-accent);
  color: var(--c-navy);
  padding: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  pointer-events: auto;
  transition: transform var(--t-fast);
}
.news-card--dark .btn-arrow-nw:hover { transform: scale(1.1); }

.single-news { padding: 0; }
.single-news__layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  color: var(--c-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--c-blue); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--c-navy); }
.breadcrumb__sep { opacity: .5; }
.breadcrumb__current { color: var(--c-text); font-weight: 500; }

.article-header { margin-bottom: 2rem; }
.article-header__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--c-navy);
  line-height: 1.05;
  letter-spacing: .01em;
  margin-bottom: 1rem;
}
.article-header__deck { font-size: 1.1rem; color: var(--c-muted); line-height: 1.5; margin-bottom: 1rem; }

.article-header__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1rem;
  border-block: 1px solid var(--c-gray);
}

.article-header__author-block { display: flex; align-items: center; gap: .75rem; }
.article-header__avatar { border-radius: 50%; }
.article-header__author { font-size: .875rem; font-weight: 500; color: var(--c-muted); }
.article-header__author strong { color: var(--c-text); }
.article-header__meta-row { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--c-muted); }
.article-header__sep { opacity: .5; }


/* Share */
.article-share { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.article-share__label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--c-muted); }
.article-share__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  color: #fff;
  font-size: .75rem;
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.article-share__btn:hover { opacity: .85; transform: translateY(-1px); }
.article-share__btn--fb { background: #1877f2; }
.article-share__btn--tw { background: #000; }
.article-share__btn--wa { background: #25d366; }
.article-share__btn--copy { background: var(--c-gray); color: var(--c-text); }

/* Share bar pinned to top of article body */
.article-share--top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid var(--c-surface-3);
  border-bottom: 1px solid var(--c-surface-3);
  margin-bottom: 1.75rem;
}

/* Article deck / intro */
.article-deck {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--c-text-2);
  border-left: 3px solid var(--c-accent);
  padding-left: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 500;
  font-style: italic;
}

.article-featured-img { margin-bottom: 2rem; border-radius: var(--r-md); overflow: hidden; }
.article-featured-img__img { width: 100%; }
.article-featured-img__caption { padding: .5rem 0; font-size: .8rem; color: var(--c-muted); text-align: center; font-style: italic; }

/* Article Content */
.article-content {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--c-text);
  max-width: 100%;
}
.article-content h2 {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-navy);
  margin: 2.5rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--c-surface-3);
}
.article-content h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-navy);
  margin: 2rem 0 .5rem;
}
.article-content p { margin-bottom: 1.4rem; }
.article-content a { color: var(--c-blue); text-decoration: underline; text-underline-offset: 3px; }
.article-content a:hover { color: var(--c-navy); }
.article-content blockquote {
  border-left: 4px solid var(--c-accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--c-surface-2);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 1rem;
  font-style: italic;
  color: var(--c-text);
}
.article-content ul, .article-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: .4rem; }
.article-content img { border-radius: var(--r-md); margin-block: 1.5rem; width: 100%; }
.article-content figure { margin-block: 1.5rem; }
.article-content figcaption { font-size: .8rem; color: var(--c-muted); text-align: center; font-style: italic; padding-top: .4rem; }
.article-content table { 
  width: 100%; 
  border-collapse: collapse; 
  margin-bottom: 1.5rem; 
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  overflow: hidden;
}
.article-content th, .article-content td { 
  padding: .8rem 1rem; 
  border: 1px solid rgba(255,255,255,0.08); 
  text-align: left; 
}

@media (max-width: 768px) {
  .article-content table:not(.vision-standings) {
    display: block;
    border: none;
    background: none;
  }
  .article-content table:not(.vision-standings) thead { display: none; }
  .article-content table:not(.vision-standings) tr {
    display: block;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 10px;
  }
  .article-content table:not(.vision-standings) td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    padding: 8px 5px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
  }
  .article-content table:not(.vision-standings) td:last-child { border-bottom: none; }
  .article-content table:not(.vision-standings) td::before {
    content: attr(data-label);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.65rem;
    color: var(--c-blue);
    margin-right: 15px;
    flex-shrink: 0;
  }
  /* Fallback for tables without data-labels (like Ficha Técnica) */
  .article-content table:not(.vision-standings) td:only-child { display: block; }
}

/* Tags */
.article-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 2rem 0; }
.article-tag {
  padding: .3rem .75rem;
  background: var(--c-light);
  border: 1px solid var(--c-gray);
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--c-blue);
  transition: background var(--t-fast), color var(--t-fast);
}
.article-tag:hover { background: var(--c-blue); color: #fff; border-color: var(--c-blue); }

/* Author box */
.author-box {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--c-light);
  border-radius: var(--r-md);
  margin: 2.5rem 0;
  border: 1px solid var(--c-gray);
}
.author-box__avatar { border-radius: 50%; flex-shrink: 0; }
.author-box__label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--c-muted); }
.author-box__name { font-size: 1.1rem; font-weight: 700; color: var(--c-navy); margin-block: .2rem .5rem; }
.author-box__bio { font-size: .875rem; color: var(--c-muted); margin-bottom: .75rem; }
.author-box__link { font-size: .8rem; font-weight: 600; color: var(--c-blue); transition: color var(--t-fast); }
.author-box__link:hover { color: var(--c-navy); }

/* Post navigation */
.post-navigation { margin: 2rem 0; }
.post-navigation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-sm);
}
.post-nav-item {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem 1.25rem;
  background: var(--c-white);
  border: 1px solid var(--c-gray);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.post-nav-item:hover { border-color: var(--c-accent); box-shadow: var(--shadow-sm); }
.post-nav-item--next { text-align: right; }
.post-nav-item__dir { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--c-blue); }
.post-nav-item__title { font-size: .9rem; font-weight: 600; color: var(--c-navy); }

/* ─── SHORTCODES EDITORIAIS ──────────────────────────────────────────────────── */

/* ── [gdb_citacao] ── */
.gdb-quote {
  margin: 3rem 0;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.gdb-quote__text {
  font-family: 'Vinila Variable', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
  font-style: italic;
  margin-bottom: 2rem;
  border: none;
  padding: 0;
  background: none;
}

.gdb-quote__cite {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-style: normal;
}

.gdb-quote__cite::before {
  content: '';
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.gdb-quote__author {
  font-family: 'Vinila Variable', sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.gdb-quote__role {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── [gdb_classificacao] — Tabela Mobile First ── */
.vision-standings {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Vinila Variable', sans-serif;
  font-size: 0.75rem;
}

.vision-standings th {
  padding: 8px 4px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.55rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vision-standings td {
  padding: 8px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: #fff;
}

@media (min-width: 768px) {
  .vision-standings { font-size: 0.85rem; }
  .vision-standings th { padding: 12px 8px; font-size: 0.65rem; letter-spacing: 1.5px; }
  .vision-standings td { padding: 12px 8px; }
}

.vision-pos-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .vision-pos-box { width: 24px; height: 24px; border-radius: 6px; font-size: 0.75rem; }
}

.vision-team-cell {
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: left;
}

@media (min-width: 768px) {
  .vision-team-cell { gap: 10px; padding-left: 15px; }
}

.vision-team-crest { width: 18px; height: 18px; object-fit: contain; }
@media (min-width: 768px) { .vision-team-crest { width: 24px; height: 24px; } }

.vision-team-name {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  font-size: 0.65rem;
}

@media (min-width: 768px) {
  .vision-team-name { font-size: 0.8rem; }
}

.vision-pts { color: #58a1ff; font-weight: 900; }

/* ── [gdb_botao] ── */
.gdb-btn-wrap {
  margin: 2rem 0;
  display: flex;
}
.gdb-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-pill);
  font-family: var(--font-headline);
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.gdb-btn:hover { transform: translateY(-2px); }
.gdb-btn--azul   { background: var(--c-blue);   color: #fff; }
.gdb-btn--azul:hover { background: var(--c-navy); }
.gdb-btn--acento { background: var(--c-accent);  color: var(--c-navy); }
.gdb-btn--acento:hover { background: var(--c-blue); color: #fff; }
.gdb-btn--branco { background: var(--c-surface); color: var(--c-navy); border: 1.5px solid var(--c-surface-3); }
.gdb-btn--branco:hover { background: var(--c-surface-2); }

/* ── [gdb_jogo] — Card de jogo inline ── */
.gdb-match-card {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.25rem;
  margin: 1.5rem 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .gdb-match-card {
    padding: 1.75rem;
    border-radius: 24px;
    margin: 2.5rem 0;
  }
}

.gdb-match-card:hover { 
  background: rgba(255, 255, 255, 0.06); 
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.gdb-match-card__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Vinila Variable', sans-serif;
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .gdb-match-card__meta {
    font-size: 0.65rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
}

.gdb-match-card__live {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--c-live);
}

.gdb-match-card__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .gdb-match-card__teams { gap: 1.5rem; }
}

.gdb-match-card__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 0; /* Permite truncamento */
}

.gdb-match-card__crest {
  height: 40px;
  width: auto;
}

@media (min-width: 768px) {
  .gdb-match-card__crest { height: 60px; }
}

.gdb-match-card__crest-ph {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Vinila Variable', sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
  .gdb-match-card__crest-ph { width: 60px; height: 60px; font-size: 0.8rem; }
}

.gdb-match-card__name {
  font-family: 'Vinila Variable', sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

@media (min-width: 768px) {
  .gdb-match-card__name { font-size: 0.85rem; }
}

.gdb-match-card__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}

@media (min-width: 768px) {
  .gdb-match-card__center { min-width: 80px; }
}

.gdb-match-card__score {
  font-family: 'Vinila Variable', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

@media (min-width: 768px) {
  .gdb-match-card__score { font-size: 2rem; letter-spacing: -2px; }
}

.gdb-match-card__vs {
  font-family: 'Vinila Variable', sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .gdb-match-card__vs { font-size: 1rem; }
}

.gdb-match-card__vs {
  font-family: 'Vinila Variable', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
}

.gdb-match-card__venue {
  text-align: center;
  margin-top: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.gdb-destaque {
  margin: 2.5rem 0;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.gdb-destaque--info { border-color: rgba(88, 161, 255, 0.2); }
.gdb-destaque--aviso { border-color: rgba(245, 158, 11, 0.2); }
.gdb-destaque--alerta { border-color: rgba(239, 68, 68, 0.2); }

.gdb-destaque__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.gdb-destaque__body {
  font-family: 'Inter', sans-serif;
  font-size: 0.925rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.gdb-destaque__body p { margin: 0; color: inherit; }

/* ─── 19. PAGINATION ────────────────────────────────────────────────────────── */
.pagination, .post-navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin: 2.5rem 0;
}

.pagination .page-numbers,
.nav-links a, .nav-links span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 .75rem;
  border-radius: var(--r-sm);
  background: var(--c-white);
  border: 1px solid var(--c-gray);
  font-family: var(--font-headline);
  font-size: .875rem;
  font-weight: 600;
  color: var(--c-text);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.pagination .current, .nav-links .current {
  background: var(--c-blue);
  border-color: var(--c-blue);
  color: var(--c-white);
}
.pagination a:hover { background: var(--c-navy); border-color: var(--c-navy); color: var(--c-white); }

/* ─── 20. FOOTER ────────────────────────────────────────────────────────────── */
.site-footer { position: relative; }

.footer-widgets {
  background: var(--c-navy);
  padding: 3rem 0;
  border-top: 3px solid var(--c-blue);
}

.footer-widgets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.widget__title {
  font-family: var(--font-headline);
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-accent);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.widget { color: rgba(255,255,255,.75); font-size: .875rem; }
.widget a { color: rgba(255,255,255,.75); transition: color var(--t-fast); }
.widget a:hover { color: var(--c-accent); }
.widget ul li { padding: .3rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }

.footer-brand {
  background: #060f1f;
  padding: 2.5rem 0;
}
.footer-brand__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand__logo { display: flex; flex-direction: column; gap: .5rem; }
.footer-logo-text {
  display: flex;
  align-items: baseline;
  gap: .25em;
  font-family: var(--font-display);
}
.footer-logo-text span:first-child, .footer-logo-text span:last-child { font-size: 1.4rem; color: var(--c-white); }
.footer-logo-text span:nth-child(2) { font-size: 1rem; color: var(--c-accent); }
.footer-brand__tagline { font-size: .75rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; }

.footer-nav__list { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-nav__list a { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.6); transition: color var(--t-fast); }
.footer-nav__list a:hover { color: var(--c-accent); }

.footer-socials { display: flex; gap: .75rem; }
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.7);
  transition: background var(--t-fast), color var(--t-fast);
}
.footer-social:hover { background: var(--c-blue); color: var(--c-white); }

.footer-copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  background: #051226;
  padding: 1.5rem 0;
  text-align: center;
}
.footer-copyright__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copyright p {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  margin: 0;
}

@media (max-width: 768px) {
  /* Globalized Mobile Footer (Premium Home Style) */
  .site-footer { text-align: center !important; }
  .footer-brand { width: 100% !important; text-align: center !important; }
  .footer-brand__inner { display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; width: 100% !important; gap: 1.5rem; text-align: center !important; }
  .footer-brand__logo { display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; width: 100% !important; flex: 1; }
  .footer-brand__logo img { margin: 0 auto !important; display: block !important; }
  .footer-nav { width: 100% !important; display: flex !important; justify-content: center !important; margin: 1.5rem 0 !important; }
  .footer-nav__list { display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; gap: 1rem !important; padding: 0 !important; list-style: none !important; width: 100% !important; text-align: center !important; }
  .footer-nav__list li { text-align: center !important; width: 100% !important; display: flex !important; justify-content: center !important; align-items: center !important; margin: 0 !important; }
  .footer-nav__list li a { text-align: center !important; width: auto !important; display: inline-block !important; padding: 0.5rem 0; font-weight: 700; text-transform: uppercase; font-family: var(--font-display); font-size: 0.95rem; }
  .footer-socials { justify-content: center !important; width: 100% !important; margin: 1.5rem auto !important; display: flex !important; gap: 1.5rem !important; }
  .footer-copyright__inner { flex-direction: column !important; text-align: center !important; gap: 1rem; padding-bottom: 2.5rem !important; align-items: center !important; }
  
  /* Home Championship Selector Visibility */
  .comp-tabs-mobile-nav { display: block !important; width: 100% !important; max-width: 320px !important; margin: 0 auto 1.5rem !important; }
  .standings-tabs { display: none !important; }
}

/* ─── 21. UTILITY ───────────────────────────────────────────────────────────── */
.no-posts { padding: 2rem; text-align: center; color: var(--c-muted); }

/* Static page */
.static-page { padding: 3rem 0 5rem; }
.static-page__header { margin-bottom: 2rem; border-bottom: 3px solid var(--c-navy); padding-bottom: 1rem; }
.static-page__title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--c-navy); }
.static-page__cover { border-radius: var(--r-md); overflow: hidden; margin-bottom: 2rem; }

/* 404 */
.error-404 { padding: 5rem 0; text-align: center; }
.error-404__number { font-family: var(--font-display); font-size: clamp(6rem, 15vw, 12rem); color: var(--c-blue); line-height: 1; opacity: .15; }
.error-404__title { font-family: var(--font-display); font-size: 2rem; color: var(--c-navy); margin-top: -2rem; }
.error-404__text { color: var(--c-muted); margin: 1rem auto; max-width: 400px; }
.error-404__actions { margin: 1.5rem 0; }
.error-404 .search-form { display: flex; max-width: 400px; margin: 1.5rem auto 0; gap: .5rem; }
.error-404 .search-field { flex: 1; padding: .65rem 1rem; border: 1px solid var(--c-gray); border-radius: var(--r-sm); font-family: var(--font-body); }
.error-404 .search-submit { padding: .65rem 1.25rem; background: var(--c-blue); color: #fff; border: none; border-radius: var(--r-sm); font-family: var(--font-headline); font-weight: 700; cursor: pointer; }

/* ─── 21b. SINGLE PARTIDA (MATCH HERO) ─────────────────────────────────────── */

.match-hero {
  background: var(--c-navy);
  padding: 3rem 0 4rem;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.match-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(14,73,147,.4) 0%, transparent 70%);
  pointer-events: none;
}
.match-hero--ao_vivo { background: linear-gradient(135deg, #1a0f0f 0%, var(--c-navy) 100%); }
.match-hero__comp {
  font-family: var(--font-headline);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-accent);
  margin-bottom: .5rem;
}
.match-hero__live-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--c-live);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3rem .75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.match-hero__scoreboard {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}
.match-hero__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  flex: 1;
  max-width: 200px;
}
.match-hero__escudo { width: 80px; height: 80px; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,0,0,.4)); }
.match-hero__escudo-placeholder {
  width: 80px; height: 80px;
  background: var(--c-blue); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase;
}
.match-hero__team-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--c-white); text-align: center; letter-spacing: .05em; text-transform: uppercase; }
.match-hero__center { text-align: center; flex-shrink: 0; }
.match-hero__score {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-size: clamp(3rem, 8vw, 5rem);
  color: var(--c-white); letter-spacing: .02em;
}
.match-hero__score-sep { color: rgba(255,255,255,.4); }
.match-hero__status-label { font-family: var(--font-headline); font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--c-muted); margin-top: .25rem; }
.match-hero__upcoming { display: flex; flex-direction: column; align-items: center; }
.match-hero__upcoming-date { font-family: var(--font-headline); font-size: .9rem; color: rgba(255,255,255,.7); }
.match-hero__upcoming-time { font-family: var(--font-display); font-size: 3rem; color: var(--c-accent); line-height: 1; }
.match-hero__upcoming-vs { font-family: var(--font-display); font-size: 2rem; color: rgba(255,255,255,.3); }
.match-hero__info {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.6);
  position: relative; z-index: 1;
}
.match-hero__tv { font-weight: 600; color: var(--c-accent); }
.match-content { max-width: 800px; margin: 3rem auto; }

/* ─── 21c. MATCH SECTIONS (timeline, resumo, público/renda) ─────────────── */
.match-section {
  margin-bottom: 2.5rem;
}

.match-section__title {
  font-family: var(--font-headline);
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-muted);
  border-bottom: 2px solid var(--c-gray);
  padding-bottom: .5rem;
  margin-bottom: 1.25rem;
}

/* Resumo */
.match-resumo {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-text);
  text-align: justify;
  hyphens: auto;
}

/* ── Horizontal Timeline (estilo GloboEsporte) ─────────────────────────────── */

.match-section--timeline .match-section__title { margin-bottom: 1rem; }

/* Wrapper with arrows */
.htl-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--c-light);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  overflow: hidden;
}

.htl-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 100%;
  min-height: 64px;
  background: var(--c-white);
  border: none;
  border-right: 1px solid var(--c-border);
  font-size: 1.4rem;
  color: var(--c-muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast), color var(--t-fast);
}
.htl-arrow--next { border-right: none; border-left: 1px solid var(--c-border); }
.htl-arrow:hover { background: var(--c-navy); color: var(--c-white); }

/* Scrollable track */
.htl-track {
  flex: 1;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.htl-track::-webkit-scrollbar { display: none; }

/* Individual pill */
.htl-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: .6rem .75rem;
  min-width: 64px;
  cursor: pointer;
  border-right: 1px solid var(--c-border);
  transition: background var(--t-fast);
  position: relative;
  user-select: none;
}
.htl-pill:last-child { border-right: none; }
.htl-pill:hover,
.htl-pill--active { background: var(--c-white); }

.htl-pill__min {
  font-family: var(--font-headline);
  font-size: .65rem;
  font-weight: 900;
  color: var(--c-muted);
  line-height: 1;
}
.htl-pill--active .htl-pill__min { color: var(--c-blue); }

.htl-pill__crest { width: 22px; height: 22px; object-fit: contain; }
.htl-pill__crest-ph {
  width: 22px; height: 22px;
  background: var(--c-navy); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .5rem; font-weight: 900;
}

.htl-pill__icon {
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
}
.htl-pill__icon svg { width: 18px; height: 18px; }

/* Color coding by event */
.htl-pill--cartao_amarelo .htl-pill__icon svg { color: #f59e0b; }
.htl-pill--cartao_vermelho .htl-pill__icon svg { color: #dc2626; }
.htl-pill--cartao_duplo .htl-pill__icon svg { color: #dc2626; }
.htl-pill--gol .htl-pill__icon svg,
.htl-pill--gol_penalti .htl-pill__icon svg { color: var(--c-blue); }
.htl-pill--penalti_perdido .htl-pill__icon svg { color: var(--c-muted); }
.htl-pill--substituicao .htl-pill__icon svg { color: var(--c-promo); }

/* Home highlight */
.htl-pill--home { border-top: 2px solid var(--c-blue); }
.htl-pill--away { border-top: 2px solid var(--c-muted); }

/* Detail panel */
.htl-detail {
  margin-top: .75rem;
  min-height: 60px;
}
.htl-detail__item {
  display: none;
  align-items: center;
  gap: 1rem;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-blue);
  padding: .85rem 1.25rem;
  border-radius: var(--r-sm);
  animation: fadeInUp .2s ease;
}
.htl-detail__item--active { display: flex; }

.htl-detail__item.htl-detail__item--cartao_amarelo { border-left-color: #f59e0b; }
.htl-detail__item.htl-detail__item--cartao_vermelho { border-left-color: #dc2626; }
.htl-detail__item.htl-detail__item--gol,
.htl-detail__item.htl-detail__item--gol_penalti { border-left-color: var(--c-blue); }
.htl-detail__item.htl-detail__item--substituicao { border-left-color: var(--c-promo); }

.htl-detail__icon { width: 28px; height: 28px; flex-shrink: 0; }
.htl-detail__icon svg { width: 28px; height: 28px; }
.htl-detail__icon--cartao_amarelo svg { color: #f59e0b; }
.htl-detail__icon--cartao_vermelho svg { color: #dc2626; }
.htl-detail__icon--gol svg,
.htl-detail__icon--gol_penalti svg { color: var(--c-blue); }
.htl-detail__icon--substituicao svg { color: var(--c-promo); }
.htl-detail__icon--penalti_perdido svg { color: var(--c-muted); }

.htl-detail__body {
  flex: 1;
  display: flex; flex-direction: column; gap: .1rem;
}
.htl-detail__label {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--c-muted);
}
.htl-detail__player {
  font-size: 1rem; font-weight: 700; color: var(--c-navy);
}
.htl-detail__assist,
.htl-detail__obs { font-size: .8rem; color: var(--c-muted); }

.htl-detail__meta {
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
}
.htl-detail__crest { width: 32px; height: 32px; object-fit: contain; }
.htl-detail__min {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 900; color: var(--c-navy);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Público e renda */
.match-stats-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.match-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  background: #f8f9fc;
  border: 1px solid var(--c-gray);
  border-radius: 4px;
  padding: 1rem 1.5rem;
  min-width: 130px;
  text-align: center;
}

.match-stat-item__icon { font-size: 1.4rem; }
.match-stat-item__value { font-family: var(--font-headline); font-size: 1.1rem; font-weight: 900; color: var(--c-navy); }
.match-stat-item__label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--c-muted); }

/* ─── 22. RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .section-news__layout { grid-template-columns: 1fr 300px; }
  .single-news__layout { grid-template-columns: 1fr 280px; }
  .archive-page__layout { grid-template-columns: 1fr 280px; }
}

@media (max-width: 900px) {
  :root { 
    --gap: 12px; 
    --container-padding: 12px;
  }

  .topbar__date, .topbar__match { display: none; }

  .main-navigation { display: none; }
  .btn-hamburger { display: flex; }

  .section-news__layout,
  .single-news__layout,
  .archive-page__layout { grid-template-columns: 1fr; }

  .section-news__sidebar,
  .single-news__sidebar,
  .archive-page__sidebar { display: none; }

  .news-featured { grid-template-columns: 1fr; }

  .footer-widgets__grid { grid-template-columns: 1fr 1fr; }
  .footer-brand__inner { flex-direction: column; align-items: flex-start; }
  .footer-copyright__inner { flex-direction: column; text-align: center; }

  .post-navigation__grid { grid-template-columns: 1fr; }

  .hero { min-height: 60vh; }
  .hero__cut { height: 40px; }
  .cut-top::before { height: 40px; }
  .section-columns { padding: 3rem 0 4rem; }
}

@media (max-width: 600px) {
  .news-card--list { flex-direction: column; }
  .news-card--list .news-card__img-link { width: 100%; height: 180px; }
  .news-card--list .news-card__img { width: 100%; height: 100%; aspect-ratio: 16/9; }
  .news-card--list .news-card__body { padding: var(--space-4); }

  .footer-widgets__grid { grid-template-columns: 1fr; }
  .footer-nav__list { flex-direction: column; gap: .75rem; }

  .article-header__meta { flex-direction: column; }
  .article-share { flex-wrap: wrap; }
  .author-box { flex-direction: column; align-items: center; text-align: center; }

  .hero__content { padding-block: 2rem 3rem; }

  .standings-table__form, 
  .standings-table__gd { display: none; }

  /* Mobile Menu Premium Reveal */
  .mobile-menu { 
    display: block; 
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
  }
  .mobile-menu.is-open { 
    transform: translateX(0);
    opacity: 1;
  }
  
  .nav-menu li a {
    padding: 12px 16px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
}

@media (max-width: 480px) {
  .columns-grid { grid-template-columns: 1fr; }
  .matches-strip { gap: var(--gap-sm); }
  .match-card { width: 240px; }
}

/* ─── 23. FIGMA VISUAL SYSTEM ───────────────────────────────────────────────── */

/* Section label: ● TITLE + blue underline */
.section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  padding-bottom: .75rem;
  margin-bottom: 1.75rem;
  border-bottom: 3px solid var(--c-blue);
}
.section-label__title {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3.5vw, 1.45rem);
  color: var(--c-navy);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1;
}
.section-label__title::before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  background: var(--c-blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.section-label__link {
  font-family: var(--font-headline);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-blue);
  display: flex;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
  transition: color var(--t-fast);
}
.section-label__link:hover { color: var(--c-navy); }

.section-label--light .section-label__title { color: var(--c-white); }
.section-label--light .section-label__title::before { background: var(--c-accent); }
.section-label--light { border-bottom-color: rgba(255,255,255,.2); }
.section-label--light .section-label__link { color: var(--c-accent); }
.section-label--light .section-label__link:hover { color: var(--c-white); }

/* Hero with right side panel */
.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: flex-end;
  padding-block: 3rem 5rem;
}
.hero__main { display: flex; flex-direction: column; gap: 1rem; }
.hero__panel { display: flex; flex-direction: column; gap: .85rem; padding-bottom: 2rem; }

/* Hero: Próximo Jogo card */
.hero-match-card {
  background: rgba(6,18,38,.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md);
  overflow: hidden;
}
.hero-match-card__label {
  background: var(--c-blue);
  padding: .45rem .85rem;
  font-family: var(--font-headline);
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-white);
}
.hero-match-card__body { padding: .85rem 1rem 1rem; }
.hero-match-card__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .35rem 0 .5rem;
}
.hero-match-card__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  flex: 1;
}
.hero-match-card__escudo { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); }
.hero-match-card__escudo-ph {
  width: 40px; height: 40px;
  background: var(--c-blue); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-headline); font-size: .75rem; font-weight: 700;
}
.hero-match-card__name {
  font-family: var(--font-headline);
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em;
  color: rgba(255,255,255,.9); text-align: center; line-height: 1.2;
}
.hero-match-card__vs {
  display: flex; flex-direction: column; align-items: center; gap: .05rem; flex-shrink: 0;
}
.hero-match-card__date { font-family: var(--font-headline); font-size: .65rem; font-weight: 700; color: var(--c-accent); text-transform: uppercase; }
.hero-match-card__time { font-family: var(--font-display); font-size: 1.4rem; color: var(--c-white); line-height: 1; }
.hero-match-card__sep { font-family: var(--font-display); font-size: .9rem; color: rgba(255,255,255,.35); }
.hero-match-card__info {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  font-size: .62rem; color: rgba(255,255,255,.45);
  border-top: 1px solid rgba(255,255,255,.07); padding-top: .45rem; flex-wrap: wrap;
}
.hero-match-card__comp { font-weight: 700; color: var(--c-accent); }

/* Hero: Season stats card */
.hero-stats-card {
  background: rgba(6,18,38,.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md);
  overflow: hidden;
}
.hero-stats-card__label {
  padding: .45rem .85rem;
  font-family: var(--font-headline);
  font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hero-stats-card__grid { display: grid; grid-template-columns: 1fr 1fr; }
.hero-stats-card__item {
  padding: .75rem .85rem;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-stats-card__item:nth-child(2n) { border-right: none; }
.hero-stats-card__item:nth-child(3),
.hero-stats-card__item:nth-child(4) { border-bottom: none; }
.hero-stats-card__value { font-family: var(--font-display); font-size: 1.65rem; color: var(--c-accent); line-height: 1; }
.hero-stats-card__stat { font-family: var(--font-headline); font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.45); margin-top: .18rem; }

/* News card: image-overlay style */
.news-card--overlay {
  position: relative;
  overflow: hidden;
  background: var(--c-navy);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
}
.news-card--overlay .news-card__img-link {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.news-card--overlay .news-card__img {
  width: 100%; height: 100%;
  object-fit: cover; aspect-ratio: auto;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-card--overlay:hover .news-card__img { transform: scale(1.08); }

/* News Card Portrait Density (Cruzeiro Style) */
@media (max-width: 768px) {
  .news-card--overlay {
    aspect-ratio: 4/5;
    min-height: 280px;
  }
}

.news-card--overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(6,18,38,0.7) 60%, rgba(6,18,38,0.98) 100%);
  pointer-events: none; z-index: 1;
  transition: opacity 0.3s ease;
}
.news-card--overlay:hover::after { opacity: 0.85; }

.news-card--overlay .news-card__body {
  position: relative; z-index: 2;
  margin-top: auto; padding: 1.25rem;
  background: transparent;
  gap: .35rem;
  transition: transform 0.3s ease;
}
.news-card--overlay:hover .news-card__body { transform: translateY(-5px); }

.news-card--overlay .news-card__title { 
  color: var(--c-white); 
  font-size: clamp(1rem, 4vw, 1.25rem); 
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}
.news-card--overlay .news-card__title a { color: inherit; }
.news-card--overlay .news-card__title a:hover { color: var(--c-accent); }
.news-card--overlay .news-card__excerpt { color: rgba(255,255,255,.75); }
.news-card--overlay .news-card__meta { color: rgba(255,255,255,.55); }
.news-card--overlay .badge--cat {
  position: relative; z-index: 3;
  align-self: flex-start;
  margin: 1rem 1.25rem 0;
}
.news-featured .news-card--overlay { min-height: 340px; }

/* Gold corner triangle */
.news-card--featured {
  position: relative;
}
.news-card--featured::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 28px 28px 0;
  border-color: transparent var(--c-gold) transparent transparent;
  z-index: 5;
}

/* Circle read-more button */
.btn--circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--c-blue);
  color: var(--c-white);
  border-radius: 50%;
  font-size: 1rem; line-height: 1;
  transition: background var(--t-fast), transform var(--t-fast);
  flex-shrink: 0;
}
.btn--circle:hover { background: var(--c-accent); transform: scale(1.1); color: var(--c-navy); }

/* Responsive hero panel */
@media (max-width: 1060px) {
  .hero__layout { grid-template-columns: 1fr 260px; }
}
@media (max-width: 780px) {
  .hero__layout { grid-template-columns: 1fr; }
  .hero__panel { display: none; }
}

/* ─── 24. TORN PAPER DESIGN SYSTEM ──────────────────────────────────────────── */

/* Dark page background */
body { background: var(--c-navy); }

/* Square corners — design uses sharp edges */
:root {
  --r-sm: 0px;
  --r-md: 0px;
  --r-lg: 0px;
}

/* Make section-news dark */
.section-news { background: transparent; }
.section-news__layout { grid-template-columns: 1fr; }
.section-news__sidebar { display: none; }

/* Section matches on dark bg */
.section-matches { background: transparent; border-bottom: 1px solid rgba(255,255,255,.08); }

/* Section columns: keep dark, remove extra cut */
.section-columns { background: transparent; }
.cut-top::before { display: none; }

/* Archive e single: fundo claro — editorial */
.archive-page  { background: var(--c-surface-2); }
.static-page   { background: var(--c-surface-2); }
.single-news   { background: var(--c-surface-2); }
/* hero do archive mantém navy — identidade */
.archive-hero  { background: var(--c-navy); border-bottom: none; }
.archive-page__main { background: var(--c-surface-2); padding-top: var(--space-6); }
.no-posts { color: var(--c-muted); font-style: italic; padding: var(--space-8) 0; }

/* Sidebar — liquid glass no contexto de archive/single */
.sidebar-block { background: rgba(9,29,61,.55); backdrop-filter: blur(40px) saturate(1.8); -webkit-backdrop-filter: blur(40px) saturate(1.8); border: 1px solid rgba(74,158,255,.18); }
.sidebar-news-item:hover { background: rgba(255,255,255,.07); }
.sidebar-news-item__title { color: rgba(255,255,255,.9); }

/* Post nav */
.post-nav-item { background: var(--c-surface); border-color: var(--c-surface-3); }
.post-nav-item__title { color: var(--c-navy); }
.post-nav-item:hover { border-color: var(--c-blue); box-shadow: var(--shadow-sm); }

/* Paginação — light */
.pagination .page-numbers, .nav-links a, .nav-links span {
  background: var(--c-surface); border-color: var(--c-surface-3); color: var(--c-text);
}
.pagination a:hover { background: var(--c-blue); border-color: var(--c-blue); color: #fff; }
.pagination .current { background: var(--c-navy); border-color: var(--c-navy); color: #fff; }

/* Article on dark — apenas fora do article-body (que tem fundo branco) */
.breadcrumb { color: rgba(255,255,255,.5); }
.article-header__title { color: var(--c-white); }
/* .article-content fica em modo claro — não sobrescrever aqui */
.author-box { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.author-box__name { color: var(--c-white); }

/* ── Torn Paper Cards ──────────────────────────────────────────────────────── */
.torn-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  cursor: pointer;
  transition: transform var(--t-normal), box-shadow var(--t-normal);
}
.torn-card:hover { transform: scale(1.02); box-shadow: 0 16px 48px rgba(0,0,0,.6); }

/* Image fill */
.torn-card__img-wrap { position: absolute; inset: 0; z-index: 0; }
.torn-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.torn-card:hover .torn-card__img { transform: scale(1.1); }

/* Gradient overlay variants */
.torn-card::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none; z-index: 1;
}
.torn-card--primary::after  { background: linear-gradient(to top, var(--c-navy) 0%, rgba(9,29,61,.85) 45%, rgba(9,29,61,.25) 100%); }
.torn-card--secondary::after { background: linear-gradient(to top, var(--c-blue) 0%, rgba(14,73,147,.85) 45%, rgba(14,73,147,.2) 100%); }
.torn-card--accent::after   { background: linear-gradient(to top, var(--c-accent) 0%, rgba(88,161,255,.85) 45%, rgba(88,161,255,.2) 100%); }

/* Content layer */
.torn-card__body {
  position: relative; z-index: 2;
  padding: 1.5rem 2rem;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
}

/* Category badge */
.torn-card__badge {
  display: inline-block;
  background: var(--c-accent);
  color: var(--c-navy);
  padding: .35rem 1.25rem;
  font-size: .62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .2em;
  border-radius: 0;
  margin-bottom: 1rem;
  align-self: flex-start;
  box-shadow: 0 0 20px rgba(88,161,255,.4);
}
.torn-card--accent .torn-card__badge { background: var(--c-navy); color: var(--c-white); box-shadow: none; }

/* Title */
.torn-card__title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--c-white);
  line-height: .95;
  letter-spacing: .01em;
  margin-bottom: .85rem;
  text-shadow: none;
}
.torn-card--accent .torn-card__title { color: var(--c-navy); }
.torn-card__title a { color: inherit; }
.torn-card__title a:hover { opacity: .85; }

/* Footer row: date + arrow */
.torn-card__footer {
  display: flex; align-items: center; justify-content: space-between;
}
.torn-card__date { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.8); }
.torn-card--accent .torn-card__date { color: rgba(9,29,61,.75); }
.torn-card__arrow {
  width: 44px; height: 44px;
  background: var(--c-accent);
  color: var(--c-navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-fast), transform var(--t-fast);
}
.torn-card:hover .torn-card__arrow { background: var(--c-white); transform: scale(1.1); }
.torn-card--accent .torn-card__arrow { background: var(--c-navy); color: var(--c-white); }

/* Torn card sizes */
.torn-card--lg { min-height: 550px; }
.torn-card--md { min-height: 420px; }
.torn-card--sm { min-height: 320px; }

/* Title sizes per size */
.torn-card--lg .torn-card__title { font-size: clamp(1.8rem, 3.5vw, 3rem); }
.torn-card--md .torn-card__title { font-size: clamp(1.4rem, 2.5vw, 2.25rem); }
.torn-card--sm .torn-card__title { font-size: clamp(1.2rem, 2vw, 1.75rem); }

/* ── Asymmetric news grid ──────────────────────────────────────────────────── */
.news-torn-grid {
  display: flex !important;
  flex-direction: row !important;
  gap: 2px !important;
  margin-bottom: 2rem !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  height: clamp(340px, 48vw, 540px) !important;
}
.news-torn-grid__main { flex: 2 1 0 !important; min-width: 0 !important; overflow: hidden !important; border-radius: 0 !important; }
.news-torn-grid__side { flex: 1 1 0 !important; display: flex !important; flex-direction: column !important; gap: 2px !important; }

/* Alternating layout: RTL trick — children reset to LTR */
.news-torn-grid--reverse { direction: rtl; }
.news-torn-grid--reverse .news-torn-grid__main,
.news-torn-grid--reverse .news-torn-grid__side,
.news-torn-grid--reverse .news-torn-grid__side > a { direction: ltr; }

/* Card image & overlay layers */
.nectar-feat-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform .5s ease;
}
.nectar-feat-card:hover .nectar-feat-card__img { transform: scale(1.04); }
/* Gradient apenas na base — preserva cores reais da imagem */
.nectar-feat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 12, 30, 0.92) 0%,
    rgba(5, 12, 30, 0.55) 40%,
    rgba(5, 12, 30, 0.15) 70%,
    transparent 100%
  );
  z-index: 2;
}

.news-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── Nectar Feat Card (Used in portal & competitions) ───────────────────── */
.nectar-feat-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  background: var(--c-navy);
}

.nectar-feat-card:hover img,
.nectar-feat-card:hover .nectar-feat-card__img { transform: scale(1.05); }

.nectar-feat-card__body {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Badge topo, Content base */
  padding: 2.25rem;
  box-sizing: border-box;
}

.nectar-feat-card__badge-main,
.nectar-feat-card__badge-side {
  position: static; /* Sai do posicionamento absoluto para obedecer ao flex */
  display: inline-block;
  align-self: flex-start;
  background: #ffffff !important;
  color: #091d3d !important;
  padding: .45rem 1.15rem;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  z-index: 4;
}

.nectar-feat-card__title-main,
.nectar-feat-card__title-side {
  color: #ffffff !important;
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  margin: 1.5rem 0 .4rem 0;
  line-height: 1;
  text-shadow: none;
}

.nectar-feat-card__title-main { font-size: clamp(1.6rem, 4vw, 3rem); }
.nectar-feat-card__title-side { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.nectar-feat-card__date {
  color: #ffffff !important;
  font-size: .75rem;
  font-weight: 700;
  opacity: .85;
}

.nectar-feat-card__arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52px;
  height: 52px;
  background: rgba(9, 29, 61, 0.8);
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, transform .3s ease;
  z-index: 5;
}

.nectar-feat-card:hover .nectar-feat-card__arrow {
  background: var(--c-blue);
  color: var(--c-white);
}

.nectar-feat-card__arrow svg {
  width: 22px;
  height: 22px;
  transition: transform .3s ease;
}
.nectar-feat-card:hover .nectar-feat-card__arrow svg { transform: translate(2px, -2px); }

/* ── Section header: bold icon style ──────────────────────────────────────── */
.section-hdr {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.section-hdr__icon {
  background: var(--c-accent);
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.section-hdr__icon--blue { background: var(--c-blue); }
.section-hdr__icon svg { width: 28px; height: 28px; color: var(--c-navy); }
.section-hdr__icon--blue svg { color: var(--c-white); }
.section-hdr__icon--crest { background: transparent; padding: 4px; }
.section-hdr__icon--crest img { width: 100%; height: 100%; object-fit: contain; }
/* Section header refinements */
.section-hdr__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: -.01em;
  text-shadow: none;
}
.section-hdr__line {
  height: 4px;
  width: 8rem;
  background: var(--c-accent);
  margin-top: .45rem;
}
.section-hdr__line--blue { background: var(--c-blue); }

/* ── HeroInfoGrid: white torn-paper bar ────────────────────────────────────── */
.hero-info-bar {
  position: relative;
  margin-top: -3.5rem;
  z-index: 20;
  padding-bottom: 2rem;
}
.hero-info-bar__paper {
  background: var(--c-white);
  color: var(--c-text);
  position: relative;
  box-shadow: 0 8px 48px rgba(0,0,0,.4);
  padding: 1.75rem 0 1.25rem;
}
.hero-info-bar__tape {
  position: absolute;
  top: -14px;
  width: 80px; height: 28px;
  background: #fbbf24;
  z-index: 30;
  box-shadow: 0 3px 8px rgba(0,0,0,.25);
}
.hero-info-bar__tape--l { left: 48px; transform: rotate(12deg); }
.hero-info-bar__tape--r { right: 48px; transform: rotate(-12deg); }
.hero-info-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hero-info-bar__col {
  padding: .75rem 1.5rem;
  border-right: 1px solid var(--c-gray);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-info-bar__col:last-child { border-right: none; }
.hero-info-bar__label {
  font-size: .6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-muted);
  margin-bottom: .75rem;
  text-align: center;
}
/* next match */
.hero-info-bar__match { display: flex; align-items: center; gap: .75rem; justify-content: center; }
.hero-info-bar__escudo { width: 36px; height: 36px; object-fit: contain; }
.hero-info-bar__escudo-ph { width: 36px; height: 36px; background: var(--c-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-headline); font-size: .7rem; font-weight: 900; }
.hero-info-bar__match-teams { font-size: .95rem; font-weight: 900; text-transform: uppercase; color: var(--c-navy); line-height: 1.2; }
.hero-info-bar__match-date { font-size: .75rem; font-weight: 700; color: var(--c-muted); }
/* last result */
.hero-info-bar__result-wrap { display: flex; flex-direction: column; gap: .4rem; align-items: center; }
.hero-info-bar__result { display: flex; align-items: center; justify-content: center; gap: .75rem; }
.hero-info-bar__result-meta { font-size: .7rem; font-weight: 700; color: var(--c-muted); text-align: center; text-transform: uppercase; letter-spacing: .05em; }
.hero-info-bar__score-box { background: var(--c-accent); padding: .3rem 1.25rem; font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--c-navy); }
.hero-info-bar__result-escudo { width: 30px; height: 30px; object-fit: contain; }
.hero-info-bar__result-ph { width: 30px; height: 30px; background: var(--c-gray); color: var(--c-navy); display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 900; }
/* standings mini */
.hero-info-bar__standing { 
    display: flex; 
    align-items: center; 
    padding: .5rem .85rem !important; 
    font-size: .8rem;
    gap: 10px;
}
.hero-info-bar__standing--club { background: var(--c-accent); font-weight: 900; color: var(--c-navy); border-radius: 4px; }
.hero-info-bar__standing-pos { font-weight: 900; color: var(--c-muted); min-width: 32px; flex-shrink: 0; }
.hero-info-bar__standing--club .hero-info-bar__standing-pos { color: var(--c-navy); }
.hero-info-bar__standing-name { flex: 1; font-weight: 600; color: var(--c-text); text-transform: uppercase; font-size: 0.75rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-info-bar__standing--club .hero-info-bar__standing-name { font-weight: 900; color: var(--c-navy); }
.hero-info-bar__standing-pts { font-weight: 900; color: var(--c-muted); font-size: .75rem; min-width: 45px; text-align: right; flex-shrink: 0; }
.hero-info-bar__standing--club .hero-info-bar__standing-pts { color: var(--c-navy); }

/* ── Stats block ────────────────────────────────────────────────────────────── */
.stats-block {
  background: linear-gradient(135deg, var(--c-blue) 0%, var(--c-accent) 55%, var(--c-blue) 100%);
  color: var(--c-navy);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.stats-block::before,
.stats-block::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  pointer-events: none;
}
.stats-block::before { width: 200px; height: 200px; top: -60px; right: -60px; }
.stats-block::after { width: 120px; height: 120px; bottom: -30px; left: -30px; }
.stats-block__header { margin-bottom: 1.5rem; position: relative; z-index: 1; }
.stats-block__title { font-family: var(--font-display); font-size: 2rem; font-weight: 900; text-transform: uppercase; color: var(--c-navy); line-height: 1; }
.stats-block__line { height: 4px; width: 6rem; background: var(--c-navy); margin-top: .4rem; }
.stats-block__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; position: relative; z-index: 1; }
.stats-block__item {
  border-left: 4px solid var(--c-navy);
  padding: .5rem .85rem .7rem;
  background: rgba(255,255,255,.15);
  transition: background var(--t-fast), padding-left var(--t-fast);
}
.stats-block__item:hover { background: rgba(255,255,255,.28); padding-left: 1.1rem; }
.stats-block__value { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--c-navy); line-height: 1; display: flex; align-items: center; gap: .35rem; }
.stats-block__label { font-size: .6rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--c-navy); opacity: .75; margin-top: .2rem; }
.stats-block__trend { font-size: .8rem; font-weight: 700; color: var(--c-navy); opacity: .7; margin-top: .25rem; }

/* ── Matches widget ────────────────────────────────────────────────────────── */
.matches-wdg {
  background: var(--c-white);
  border-left: 8px solid var(--c-accent);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  color: var(--c-text);
}
.matches-wdg__header {
  background: linear-gradient(135deg, var(--c-navy), var(--c-blue));
  padding: 1.25rem 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.matches-wdg__header::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 8rem; height: 100%;
  background: var(--c-accent); opacity: .2;
  transform: skewX(12deg);
}
.matches-wdg__header-inner { display: flex; align-items: center; gap: .75rem; position: relative; z-index: 1; }
.matches-wdg__header-icon { background: transparent; padding: .25rem; display: flex; align-items: center; justify-content: center; }
.matches-wdg__header-icon svg { width: 22px; height: 22px; color: var(--c-white); }
.matches-wdg__header-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; text-transform: uppercase; color: var(--c-white); line-height: 1; }
.matches-wdg__header-sub { font-size: .7rem; font-weight: 500; color: rgba(255,255,255,.65); margin-top: .15rem; }
.matches-wdg__section { padding: 1.1rem 1.5rem; border-bottom: 3px solid var(--c-gray); }
.matches-wdg__section:last-of-type { border-bottom: none; }
.match-result-meta__tv { font-family: var(--font-headline); font-size: .8rem; font-weight: 600; text-transform: uppercase; color: var(--c-muted); margin-bottom: 2rem; }

/* ─── 40. NEWS SPORT FOOTER WIDGET ───────────────────────────────────────────── */
.hero-info-bar--news-footer { margin: 3rem 0; width: 100%; max-width: 1040px; }
.hero-info-bar--news-footer .hero-info-bar__paper { box-shadow: 0 10px 40px rgba(0,0,0,0.1); }

/* Widget helper classes (migrated from inline styles) */
.hero-info-bar__vs-sep { font-size: 10px; color: #ccc; font-weight: 900; margin: 0 2px; }
.hero-info-bar__match-text { min-width: 0; }
.hero-info-bar__match-teams { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-info-bar__empty { font-size: .8rem; color: var(--c-muted); }
.hero-info-bar__col--last { border-right: none; }
.ge-tv { display: flex; align-items: center; gap: 4px; }
.ge-tv svg { flex-shrink: 0; }

/* News footer widget — score box colours */
.hero-info-bar--news-footer .hero-info-bar__match { gap: 1rem; justify-content: flex-start; }
.hero-info-bar--news-footer .hero-info-bar__crests-compact { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.hero-info-bar--news-footer .hero-info-bar__result-escudo { width: 32px; height: 32px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }
.hero-info-bar--news-footer .hero-info-bar__score-box--win  { background: #16a34a; color: #fff; }
.hero-info-bar--news-footer .hero-info-bar__score-box--loss { background: #dc2626; color: #fff; }
.hero-info-bar--news-footer .hero-info-bar__score-box--draw { background: #0f1c3f; color: #fff; }

/* Keep nsf styles if needed elsewhere, but nsf-wrapper was the specific container */
.nsf-wrapper { display: none; } /* Hide old wrapper if it still exists in any template */


.nsf-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 0.75rem;
  min-width: 0;
}
@media (min-width: 900px) {
  .nsf-block {
    padding: 0 1.25rem;
  }
}

.nsf-divider {
  display: none;
  width: 1px;
  height: 80px;
  background-color: #f1f2f5;
  margin: 0 1rem;
}
@media (min-width: 900px) {
  .nsf-divider { display: block; }
}

.nsf-block__header {
  font-family: var(--font-headline);
  font-size: .62rem;
  font-weight: 900;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nsf-block__header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-gray);
  opacity: 0.5;
}

.nsf-block__content { width: 100%; display: flex; flex-direction: column; }

/* Próximo Jogo */
.nsf-matchup { display: flex; align-items: center; gap: 1rem; }
.nsf-matchup__crests { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.nsf-matchup__crests img { width: 32px; height: 32px; object-fit: contain; }
.nsf-matchup__vs { font-family: var(--font-display); font-size: 0.9rem; color: #ccc; font-weight: 400; }
.nsf-matchup__info { flex: 1; min-width: 0; }
.nsf-matchup__teams { font-family: var(--font-headline); font-size: 0.85rem; font-weight: 800; color: var(--c-navy); margin-bottom: 0.1rem; text-transform: uppercase; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nsf-matchup__meta { font-size: 0.65rem; color: var(--c-muted); font-weight: 700; text-transform: uppercase; opacity: 0.8; }

/* Último Resultado */
.nsf-result { display: flex; align-items: center; gap: 1rem; }
.nsf-result__row { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.nsf-result__crest { width: 30px; height: 30px; object-fit: contain; }
.nsf-score {
  font-family: var(--font-display);
  font-size: 1.1rem;
  padding: .2rem .75rem;
  color: #fff;
  border-radius: 2px;
  letter-spacing: 0.05em;
  font-weight: 900;
}
.nsf-result__meta { flex: 1; font-size: 0.65rem; color: var(--c-muted); font-weight: 700; text-transform: uppercase; }

/* Classificação */
.nsf-table { width: 100%; border-collapse: separate; border-spacing: 0; font-family: var(--font-body); font-size: .75rem; table-layout: fixed; }
.nsf-table td { padding: .55rem .4rem; border-bottom: 1px solid #f1f2f5; transition: background 0.2s ease; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nsf-table tr:last-child td { border-bottom: none; }
.nsf-table__row--club td { background-color: var(--c-accent) !important; color: var(--c-navy) !important; font-weight: 800; border-bottom: none; }
.nsf-table__row--club td:first-child { border-top-left-radius: 4px; border-bottom-left-radius: 4px; padding-left: 0.75rem; }
.nsf-table__row--club td:last-child { border-top-right-radius: 4px; border-bottom-right-radius: 4px; padding-right: 0.75rem; }
.nsf-table__pos { color: #8a9bb5; width: 28px; text-align: center; font-weight: 900; font-family: var(--font-display); font-size: 0.8rem; }
.nsf-table__row--club .nsf-table__pos { color: var(--c-navy); }
.nsf-table__name { font-weight: 700; color: #1a2a4a; font-family: var(--font-headline); text-transform: uppercase; font-size: 0.75rem; width: auto; overflow: hidden; text-overflow: ellipsis; }
.nsf-table__pts { text-align: right; color: var(--c-navy); white-space: nowrap; font-size: .75rem; font-weight: 500; width: 55px; }
.nsf-table__pts span { font-weight: 900; }
.nsf-table__row--club .nsf-table__name, .nsf-table__row--club .nsf-table__pts { color: var(--c-navy); }

/* Score highlight colors */
.nsf-score--win { background: #16a34a !important; color: #fff !important; }
.nsf-score--draw { background: #0f1c3f !important; color: #fff !important; }
.nsf-score--loss { background: #dc2626 !important; color: #fff !important; }
.nsf-score--live { background: #2271b1 !important; color: #fff !important; animation: gdb-pulse 2s infinite ease-in-out; }


/* Crest placeholders */
.nsf-result__crest-ph { width: 30px; height: 30px; background: var(--c-gray); color: var(--c-navy); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 900; border-radius: 50%; text-transform: uppercase; }


.nsf-empty { font-size: .875rem; color: #9ca3af; font-style: italic; }
.matches-wdg__rows { display: flex; flex-direction: column; gap: .65rem; }
/* upcoming row */
.matches-wdg__row {
  border: 2px solid var(--c-gray);
  padding: .65rem .85rem;
  position: relative; overflow: hidden;
  transition: border-color var(--t-fast);
}
.matches-wdg__row:hover { border-color: var(--c-accent); }
.matches-wdg__row::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--c-accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform var(--t-fast);
}
.matches-wdg__row:hover::before { transform: scaleY(1); }
.matches-wdg__row-meta { display: flex; align-items: center; justify-content: space-between; font-size: .6rem; font-weight: 700; color: var(--c-muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .45rem; padding-left: .4rem; }
.matches-wdg__row-meta-right { font-weight: 900; color: var(--c-navy); }
.matches-wdg__row-teams { display: flex; align-items: center; justify-content: space-between; padding-left: .4rem; }
.matches-wdg__team { display: flex; align-items: center; gap: .4rem; flex: 1; }
.matches-wdg__team--away { flex-direction: row-reverse; }
.matches-wdg__team-crest { width: 28px; height: 28px; object-fit: contain; }
.matches-wdg__team-ph { width: 28px; height: 28px; background: var(--c-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .55rem; font-weight: 900; }
.matches-wdg__team-name { font-size: .8rem; font-weight: 900; text-transform: uppercase; color: var(--c-navy); }
.matches-wdg__team--barra .matches-wdg__team-name { color: var(--c-blue); }
.matches-wdg__vs-sep { font-family: var(--font-display); font-size: 1.1rem; color: var(--c-muted); padding: 0 .5rem; }
/* result row */
.matches-wdg__result {
  border-left: 4px solid var(--c-gray);
  padding: .5rem .85rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--t-fast);
}
.matches-wdg__result:hover { background: var(--c-light); }
.matches-wdg__result--win { border-left-color: var(--c-promo); }
.matches-wdg__result--draw { border-left-color: var(--c-draw); }
.matches-wdg__result-info { font-size: .6rem; font-weight: 700; text-transform: uppercase; color: var(--c-muted); letter-spacing: .05em; }
.matches-wdg__result-teams { font-size: .8rem; font-weight: 900; text-transform: uppercase; color: var(--c-navy); margin-top: .15rem; }
.matches-wdg__result-score { background: var(--c-light); padding: .25rem .75rem; font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; color: var(--c-navy); white-space: nowrap; }
.matches-wdg__result-score--win { color: var(--c-promo); }
.matches-wdg__footer { display: block; background: #2ab5ff; color: var(--c-navy); text-align: center; padding: .85rem; font-family: var(--font-headline); font-size: .8rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; transition: background var(--t-fast); }
.matches-wdg__footer:hover { background: #1ca3e8; color: var(--c-navy); }

/* ── Results Carousel (estilo Bayer 04) ─────────────────────────────────────── */
.matches-wdg__section--results { padding: 0 !important; border-bottom: none !important; }
.res-carousel__hdr { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.5rem .5rem; }
.res-carousel__controls { display: flex; align-items: center; gap: .35rem; }
.res-carousel__btn { background: var(--c-light); border: none; cursor: pointer; color: var(--c-navy); width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; border-radius: 2px; transition: background var(--t-fast); }
.res-carousel__btn:hover { background: #2ab5ff; }
.res-carousel__btn svg { pointer-events: none; display: block; }
.res-carousel__counter { font-size: .65rem; font-weight: 900; color: var(--c-muted); min-width: 1.8rem; text-align: center; font-family: var(--font-headline); }
.res-carousel__track { display: flex; overflow: hidden; width: 100%; }
.res-slide { flex: 0 0 100%; min-width: 0; padding: .5rem 1.25rem 1.1rem; border-top: 3px solid var(--c-gray); }
.res-slide--win  { border-top-color: var(--c-promo); }
.res-slide--draw { border-top-color: var(--c-draw); }
.res-slide--loss { border-top-color: var(--c-relg); }
.res-slide__meta { display: flex; justify-content: space-between; align-items: center; font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-muted); margin-bottom: .9rem; }
.res-slide__date { font-weight: 900; color: var(--c-navy); }
.res-slide__matchup { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: .5rem; }
.res-slide__team { display: flex; flex-direction: column; align-items: center; gap: .42rem; min-width: 0; }
.res-slide__crest { width: 62px; height: 62px; object-fit: contain; }
.res-slide__crest-ph { width: 62px; height: 62px; background: var(--c-blue); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .7rem; font-weight: 900; }
.res-slide__name { font-size: .6rem; font-weight: 900; text-transform: uppercase; color: var(--c-navy); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 100%; line-height: 1.25; }
.res-slide__score-wrap { display: flex; justify-content: center; align-items: center; }
.res-slide__score-val { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: var(--c-navy); line-height: 1; letter-spacing: -.03em; white-space: nowrap; }
.res-slide__footer { text-align: center; margin-top: .7rem; }
.res-slide__result-badge { font-family: var(--font-headline); font-size: .52rem; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; padding: .2rem .65rem; display: inline-block; }
.res-slide__result-badge--win  { background: var(--c-promo); color: #fff; }
.res-slide__result-badge--draw { background: var(--c-draw); color: var(--c-navy); }
.res-slide__result-badge--loss { background: var(--c-relg); color: #fff; }

/* Info layout: stats (2/3) + matches (1/3) */
.info-row { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; margin-bottom: 4rem; align-items: start; }

/* ── Jogos & Resultados layout (gt-block / gt-layout) ──────────────────────── */
.gt-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1.5rem;
  align-items: start;
}
.gt-block {
  background: var(--c-white);
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
  overflow: hidden;
}
.gt-block__head {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  background: var(--c-navy);
  color: var(--c-white);
  padding: .65rem 1.25rem;
}
.gt-block__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--c-white);
}
.gt-block__sub {
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .info-row { grid-template-columns: 1fr; }
  .gt-layout { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  /* Hero: stack badge + content vertically, button full-width */
  .hero__bottom { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .hero__cta { align-self: stretch; justify-content: center; width: 100%; }
  .hero__inner { max-width: 100%; }
  /* Info bar */
  .hero-info-bar { margin-top: -2rem; }
}
@media (max-width: 768px) {
  
  .nectar-feat-card__body { padding: 1.5rem !important; }
  .nectar-feat-card__title-main { font-size: 1.6rem !important; }
  .nectar-feat-card__title-side { font-size: 1.3rem !important; }
  .nectar-feat-card__arrow { width: 44px !important; height: 44px !important; }

  .news-more-grid { grid-template-columns: 1fr 1fr; }
  .hero-info-bar__grid { grid-template-columns: 1fr; }
  .hero-info-bar__col { border-right: none; border-bottom: 1px solid var(--c-gray); }
  .hero-info-bar__col:last-child { border-bottom: none; }
  .hero-info-bar__tape--r { display: none; }
  .section-hdr__title { font-size: clamp(1.5rem, 6vw, 2.5rem); }
  .torn-card--lg { min-height: 400px; }
  .torn-card--md { min-height: 280px; }
}
@media (max-width: 600px) {
  .hero { min-height: 60vh; }
  .hero__content { padding-block: 1.5rem 3rem; }
  .hero__title { font-size: clamp(1.6rem, 7vw, 2.5rem); }
  .hero__excerpt { display: none; }
  .hero-info-bar__paper { padding: 1rem; }
  .hero-info-bar__tape { display: none; }
  .stats-block__grid { grid-template-columns: 1fr 1fr; }
  .matches-wdg__row-meta-right { display: none; }
  .article-hero { height: 60vh !important; }
  .article-hero__title { font-size: clamp(1.4rem, 5vw, 1.8rem); line-height: 1.1; }
}
@media (max-width: 500px) {
  .news-more-grid { grid-template-columns: 1fr; }
  .hero-info-bar__grid { grid-template-columns: 1fr; }
}

/* ── Front page: mobile layout fixes ──────────────────────────────────────── */
@media (max-width: 900px) {
  /* gt-layout já vai pra 1fr em 1100px, mas garante espaçamento OK em tablet */
  .gt-layout { gap: 1rem; }
  .standings-tabs { flex-wrap: wrap; }
  .standings-tab { font-size: .8rem; padding: .45rem .9rem; }

  /* news-more-grid: 2 colunas até 600px */
  .news-more-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }

  /* section headers: menos margem */
  .section-hdr { margin-bottom: 1.75rem; }
}

@media (max-width: 768px) {
  /* section header icon menor */
  .section-hdr__icon { width: 46px; height: 46px; }
  .section-hdr__icon svg { width: 22px; height: 22px; }
  .section-hdr { gap: 1rem; margin-bottom: 1.5rem; }

  /* standings table: esconde colunas menos importantes */
  .standings-table th:nth-child(n+7),
  .standings-table td:nth-child(n+7) { display: none; }

  /* gt-block clip-path: reduz chamfer em telas pequenas */
  .gt-block {
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  }

  /* matches-wdg team name: mais espaço no mobile */
  .matches-wdg__team-name { font-size: .75rem; }
  .matches-wdg__row-meta { font-size: .58rem; }

  /* hero-info-bar: menos padding no paper */
  .hero-info-bar__paper { padding: 1rem 0 .75rem; }

  /* footer widgets: 1 coluna */
  .footer-widgets__grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ── Erros responsividade mobile (relatório plugin) ───────────────────────── */
@media (max-width: 900px) {
  /* Erro 4: Article share — área de toque mínima 44px */
  .article-share__btn { width: 44px; height: 44px; }

  /* Erro 5: Botão voltar no artigo */
  .article-hero__back { min-height: 44px; display: inline-flex; align-items: center; }
}

@media (max-width: 600px) {
  /* Erro 3: Hero slider dots — expande área de toque sem afetar visual */
  .hero-slider-dot { position: relative !important; }
  .hero-slider-dot::after {
    content: '';
    position: absolute;
    top: -16px; right: -16px; bottom: -16px; left: -16px;
  }

  /* Erro 7: hero-info-bar label — fonte mínima legível */
  .hero-info-bar__label { font-size: .7rem; }

  /* Erro 8: Remove transform scale do hero bg — evita overflow interno */
  .hero__bg { transform: none !important; }
  .hero:hover .hero__bg { transform: none !important; }

  /* Erro 9: Elemento decorativo ultrapassa viewport — ocultar em mobile */
  .hero__geo-diamond { display: none; }
  .hero__geo-circle--2 { display: none; }
}

@media (max-width: 480px) {
  /* container: padding menor */
  .container { padding-inline: 14px; }

  /* section-hdr: compacto */
  .section-hdr { gap: .75rem; margin-bottom: 1.25rem; }
  .section-hdr__icon { width: 40px; height: 40px; }
  .section-hdr__icon svg { width: 20px; height: 20px; }

  /* hero-info-bar: sem fitas decorativas */
  .hero-info-bar__tape { display: none; }
  .hero-info-bar__col { padding: .6rem .75rem; }

  /* standings table: esconde ainda mais colunas */
  .standings-table th:nth-child(n+6),
  .standings-table td:nth-child(n+6) { display: none; }

  /* news-more-grid: 1 coluna */
  .news-more-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* match row archive: simplifica */
  .match-row { padding: .75rem 1rem; gap: .5rem; }
  .match-row__meta { display: none; }
  .match-row__team-name { font-size: .8rem; }

    /* Hero - Levantar bloco de textos para equilibrar com o topo */
    .hero__content-inner { padding-bottom: 120px !important; }

  /* hero: altura menor em celular */
  .hero-slide-item { min-height: 65svh !important; }
}

/* ─── 25. PRINT ─────────────────────────────────────────────────────────────── */
@media print {
  .site-header, .topbar, .site-footer, .section-matches,
  .section-columns, .section-standings, .article-share,
  .single-news__sidebar, .post-navigation { display: none; }
  .single-news__layout { grid-template-columns: 1fr; }
  .article-content { font-size: 12pt; }
}

/* ─── 26. SINGLE POST — LIGHT EDITORIAL ─────────────────────────────────────
   O article-body tem fundo branco. Texto sempre escuro para leitura.
   ────────────────────────────────────────────────────────────────────────── */

/* Article text — escuro sobre fundo branco */
body.single-post .article-content { color: var(--c-text); }
body.single-post .article-content h2,
body.single-post .article-content h3 { color: var(--c-navy); }

/* Author box */
body.single-post .author-box { background: var(--c-light); border-color: var(--c-border); }
body.single-post .author-box__label { color: var(--c-muted); }
body.single-post .author-box__name { color: var(--c-navy); }
body.single-post .author-box__bio { color: var(--c-text); }

/* Post navigation */
body.single-post .post-nav-item { background: var(--c-light); border-color: var(--c-border); }
body.single-post .post-nav-item__dir { color: var(--c-blue); }
body.single-post .post-nav-item__title { color: var(--c-navy); }
body.single-post .post-nav-item:hover { border-color: var(--c-blue); background: var(--c-white); }

/* Sidebar blocks */
body.single-post .sidebar-block { background: rgba(9,29,61,.6); backdrop-filter: blur(40px) saturate(1.8); -webkit-backdrop-filter: blur(40px) saturate(1.8); border: 1px solid rgba(74,158,255,.18); }
body.single-post .sidebar-block__header { background: rgba(26,111,255,.2); border-bottom: 1px solid rgba(74,158,255,.2); }
body.single-post .sidebar-news-item__title { color: rgba(255,255,255,.9); }
body.single-post .sidebar-news-item__date { color: rgba(255,255,255,.5); }
body.single-post .sidebar-news-item:hover { background: rgba(255,255,255,.07); }

/* Standings table inside sidebar */
body.single-post .standings-table thead th { background: rgba(0,0,0,.03); color: var(--c-muted); border-bottom-color: var(--c-border); }
body.single-post .standings-table__row td { border-bottom-color: var(--c-gray); }
body.single-post .standings-table__team-name { color: var(--c-text); }
body.single-post .standings-table__team-name--club { color: var(--c-navy); }
body.single-post .standings-table__pts strong { color: var(--c-navy); }
body.single-post .standings-legend { border-top-color: var(--c-gray); color: var(--c-muted); }
body.single-post .standings-empty { color: var(--c-muted); }

/* Pagination */
body.single-post .pagination .page-numbers,
body.single-post .nav-links a,
body.single-post .nav-links span { background: var(--c-light); border-color: var(--c-border); color: var(--c-text); }
body.single-post .pagination a:hover { background: var(--c-navy); border-color: var(--c-navy); color: var(--c-white); }
body.single-post .no-posts { color: var(--c-muted); }

/* Responsive: article hero */
@media (max-width: 1100px) {
  .single-news__layout { grid-template-columns: 1fr 280px; }
}
@media (max-width: 900px) {
  .article-hero { height: clamp(260px, 45vw, 380px); }
  .article-hero__title { font-size: clamp(1.4rem, 5vw, 1.8rem); line-height: 1.1; }
}
@media (max-width: 768px) {
  .single-news__layout { grid-template-columns: 1fr; }
  .single-news__sidebar { display: none; }
  .article-hero { height: clamp(240px, 50vw, 360px); }
  .article-hero__meta { font-size: .75rem; }
  .article-deck { font-size: 1.05rem; }
}

/* ─── 27. ARCHIVE-PARTIDA & SINGLE-PARTIDA WHITE BG ─────────────────────────── */

body.post-type-archive-partida,
body.single-partida {
  background: var(--c-white);
  color: var(--c-text);
}

/* Archive partida: revert dark-mode sidebar/archive */
body.post-type-archive-partida .archive-hero {
  background: var(--c-navy);
  border-bottom: none;
}
body.post-type-archive-partida .archive-hero .archive-hero__badge { color: var(--c-accent); }
body.post-type-archive-partida .archive-hero__title { color: var(--c-white); }
body.post-type-archive-partida .archive-page { background: var(--c-white); }
body.post-type-archive-partida .sidebar-block { background: rgba(9,29,61,.55); backdrop-filter: blur(40px) saturate(1.8); -webkit-backdrop-filter: blur(40px) saturate(1.8); border: 1px solid rgba(74,158,255,.18); }
body.post-type-archive-partida .sidebar-block__header { background: rgba(26,111,255,.2); border-bottom: 1px solid rgba(74,158,255,.2); }
body.post-type-archive-partida .standings-table thead th { background: rgba(0,0,0,.03); color: var(--c-muted); border-bottom-color: var(--c-border); }
body.post-type-archive-partida .standings-table__row td { border-bottom-color: var(--c-gray); }
body.post-type-archive-partida .standings-table__team-name { color: var(--c-text); }
body.post-type-archive-partida .standings-table__pts strong { color: var(--c-navy); }
body.post-type-archive-partida .standings-legend { border-top-color: var(--c-gray); color: var(--c-muted); }
body.post-type-archive-partida .no-posts { color: var(--c-muted); }

/* Match rows on white bg */
body.post-type-archive-partida .match-row {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-blue);
}
body.post-type-archive-partida .match-row--encerrado { border-left-color: var(--c-muted); }
body.post-type-archive-partida .match-row--ao_vivo { border-left-color: var(--c-live); }
body.post-type-archive-partida .match-row:hover { border-color: var(--c-accent); box-shadow: var(--shadow-sm); }

/* Single partida: content below match-hero is white */

body.single-partida .container > .match-content,
body.single-partida > main > .container { background: var(--c-white); }

/* Sections inside single-partida */
body.single-partida .match-section__title { color: var(--c-navy); border-bottom-color: var(--c-border); }
body.single-partida .match-resumo { color: var(--c-text); }
body.single-partida .match-stat-item__value { color: var(--c-navy); }
body.single-partida .match-stat-item__label { color: var(--c-muted); }

/* Timeline on white bg */
body.single-partida .match-timeline { background: transparent; }
body.single-partida .match-timeline__event { border-bottom-color: var(--c-gray); }
body.single-partida .match-timeline__player { color: var(--c-text); }
body.single-partida .match-timeline__min { color: var(--c-muted); }
body.single-partida .match-timeline__obs,
body.single-partida .match-timeline__assist { color: var(--c-muted); }
body.single-partida .match-timeline__team-tag { color: var(--c-muted); border-color: var(--c-border); }

/* Match row on competition page */
.match-row {
    background: #fff;
    padding: 1.25rem 1.5rem;
    margin-bottom: .75rem;
    border: 1px solid #eef1f6;
    border-radius: 4px;
    display: block;
    text-decoration: none;
    transition: all .2s ease;
}
.match-row:hover { border-color: var(--c-blue); box-shadow: 0 4px 12px rgba(0,0,0,0.05); }

.match-row__teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .5rem 0;
}

.match-row__team-block {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex: 1;
    min-width: 0;
    justify-content: flex-end;
    flex-direction: row-reverse;
}
.match-row__team-block--away {
    flex-direction: row;
    justify-content: flex-start;
}

.match-row__team-name {
    font-family: var(--font-headline);
    font-size: .85rem;
    font-weight: 700;
    color: var(--c-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.match-row__crest { width: 32px; height: 32px; object-fit: contain; }
.match-row__crest-ph { width: 32px; height: 32px; background: #eee; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 800; color: #888; }

.match-row__center {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.match-row__score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--c-navy);
    line-height: 1;
}
.match-row__score-sep { color: #ccc; font-size: 1rem; font-family: var(--font-body); font-weight: 400; }
.match-row__vs { font-family: var(--font-display); font-size: 1.2rem; color: #ccc; }

.match-row__venue-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .65rem;
    font-weight: 600;
    color: #888;
    margin-bottom: .6rem;
    text-transform: none;
    letter-spacing: 0;
}

.match-row__cta {
    display: block;
    text-align: center;
    font-family: var(--font-headline);
    font-size: .68rem;
    font-weight: 900;
    color: #00a859; /* GE Green */
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: .75rem;
    padding-top: .75rem;
    border-top: 1px solid #f0f2f5;
}

@media (max-width: 768px) {
  .match-row { padding: 1rem .75rem; }
  .match-row__team-block { flex: 1; }
  .match-row__team-name { font-size: .75rem; max-width: 80px; }
  .match-row__venue-top { font-size: .55rem; }
}

/* ─── 28. GE-STYLE TIMELINE (single-partida) ────────────────────────────────── */

/* Pênaltis no scoreboard */
.match-hero__penaltis {
  display: flex; align-items: center; gap: .5rem;
  margin-top: .35rem; justify-content: center;
  padding: .2rem .6rem;
  background: rgba(255,255,255,.12);
  border-radius: 20px;
  width: fit-content; margin-inline: auto;
}
.match-hero__penaltis-label {
  font-family: var(--font-headline);
  font-size: .55rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.55);
}
.match-hero__penaltis-score {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 900; color: var(--c-accent);
}

/* Pênaltis na archive */
.match-row__pen {
  font-size: .65rem; font-weight: 700; color: var(--c-accent);
  display: block; text-align: center; margin-top: .1rem;
  letter-spacing: .02em;
}

/* Timeline GE-style: container vertical */
.ge-timeline {
  display: flex; flex-direction: column; gap: 0;
  padding: .5rem 0;
}

/* Card de evento estilo GE */
.ge-tl-card {
  display: flex; align-items: center; gap: 1rem;
  padding: .85rem 1rem;
  background: #fff;
  border-bottom: 1px solid #eef0f4;
  transition: background var(--t-fast);
}
.ge-tl-card:first-child { border-radius: 6px 6px 0 0; }
.ge-tl-card:last-child  { border-bottom: none; border-radius: 0 0 6px 6px; }
body.single-partida .ge-tl-card:hover { background: #f7f9ff; }

/* Coluna de tempo */
.ge-tl-card__time {
  min-width: 48px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .1rem;
  flex-shrink: 0;
}
.ge-tl-card__time strong {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 900;
  color: var(--c-navy); line-height: 1;
}
.ge-tl-card__time span {
  font-size: .6rem; font-weight: 700;
  text-transform: uppercase; color: var(--c-muted); letter-spacing: .05em;
}

/* Ícone circular por tipo */
.ge-tl-card__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ge-tl-card__icon svg { width: 20px; height: 20px; }
.ge-tl-card__icon--gol,
.ge-tl-card__icon--gol_penalti    { background: #dcfce7; color: #15803d; }
.ge-tl-card__icon--penalti_perdido { background: #fee2e2; color: #dc2626; }
.ge-tl-card__icon--cartao_amarelo  { background: #fef9c3; color: #ca8a04; }
.ge-tl-card__icon--cartao_vermelho { background: #fee2e2; color: #dc2626; }
.ge-tl-card__icon--substituicao    { background: #e0f2fe; color: #0369a1; }
.ge-tl-card__icon--var             { background: #f3e8ff; color: #7e22ce; }
.ge-tl-card__icon--penaltis,
.ge-tl-card__icon--penalti_cobrado { background: #fef3c7; color: #b45309; }
.ge-tl-card__icon--intervalo,
.ge-tl-card__icon--inicio_jogo,
.ge-tl-card__icon--fim_jogo        { background: #f1f5f9; color: #475569; }
.ge-tl-card__icon--finalizacao_perigosa,
.ge-tl-card__icon--pressao         { background: #ffe4e6; color: #be123c; }

/* Corpo do card */
.ge-tl-card__body { flex: 1; min-width: 0; }
.ge-tl-card__label {
  font-size: .62rem; font-weight: 700;
  text-transform: uppercase; color: var(--c-muted); letter-spacing: .05em;
}
.ge-tl-card__player {
  display: flex; align-items: baseline; gap: .5rem; margin-top: .15rem; flex-wrap: wrap;
}
.ge-tl-card__player-main {
  font-family: var(--font-headline); font-size: .95rem; font-weight: 800;
  color: var(--c-navy); line-height: 1.2;
}
.ge-tl-card__player-out {
  font-size: .75rem; color: var(--c-muted); font-weight: 500;
}
.ge-tl-card__desc { font-size: .72rem; color: var(--c-muted); margin-top: .25rem; }

/* Info do time (escudo + badge) */
.ge-tl-card__team-info {
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
  flex-shrink: 0;
}
.ge-tl-card__crest { width: 32px; height: 32px; object-fit: contain; }
.ge-tl-card__team-badge {
  font-size: .55rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: .06em; padding: .15rem .5rem; border-radius: 20px;
}
.ge-tl-card__team-badge--home { background: #dbeafe; color: #1e40af; }
.ge-tl-card__team-badge--away { background: #fce7f3; color: #9d174d; }

/* Linha separadora de período */
.ge-tl-card--intervalo,
.ge-tl-card--penaltis,
.ge-tl-card--inicio_jogo,
.ge-tl-card--fim_jogo {
  background: var(--c-light);
  border-top: 2px solid var(--c-blue);
  border-bottom: 2px solid var(--c-blue);
  justify-content: center;
  padding: .6rem 1rem;
}
.ge-tl-card--intervalo .ge-tl-card__label,
.ge-tl-card--penaltis .ge-tl-card__label,
.ge-tl-card--inicio_jogo .ge-tl-card__label,
.ge-tl-card--fim_jogo .ge-tl-card__label {
  font-size: .75rem; color: var(--c-navy); font-weight: 900;
  text-transform: uppercase; letter-spacing: .08em;
}

/* Responsive */
@media (max-width: 600px) {
  .ge-tl-card { gap: .65rem; padding: .7rem .65rem; }
  .ge-tl-card__time strong { font-size: .85rem; }
  .ge-tl-card__icon { width: 32px; height: 32px; }
  .ge-tl-card__icon svg { width: 16px; height: 16px; }
  .ge-tl-card__player-main { font-size: .85rem; }
}

/* ─── 29. STANDINGS TABLE — STYLE GE ────────────────────────────────────────── */

.gdb-standings-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  padding: 0 .75rem .75rem;
}

.gdb-standings-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
  color: #333;
}

/* Header GE style */
.gdb-standings-tbl thead tr {
  border-bottom: 2px solid var(--c-accent);
}
.gdb-standings-tbl thead th {
  padding: .75rem;
  font-family: var(--font-headline);
  font-size: .65rem;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: .08em;
  color: #fff;
  background: var(--c-navy); /* Navy Background */
  text-align: center;
  white-space: nowrap;
}
.gdb-standings-tbl__th-pos {
  text-align: left !important;
  padding-left: 1rem !important;
  min-width: 200px;
}
.gdb-standings-tbl__th-pts { color: #fff !important; }

/* Rows */
.gdb-standings-tbl__row {
  border-bottom: 1px solid #f0f2f5;
  transition: background .15s;
}
.gdb-standings-tbl__row:hover { background: #f7f9ff; }
.gdb-standings-tbl__row--club { background: rgba(14, 73, 147, .04) !important; } /* Barra Highlight */
.gdb-standings-tbl__row--club:hover { background: rgba(14, 73, 147, .08) !important; }

.gdb-standings-tbl__row td {
  padding: .65rem .75rem;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

/* Club cell: num + crest + name */
.gdb-standings-tbl__club-cell {
  display: flex !important;
  align-items: center;
  gap: .6rem;
  text-align: left !important;
  padding-left: .25rem !important;
  min-width: 200px;
}

/* Position number bubble */
.gdb-standings-tbl__pos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 3px;
  font-size: .75rem;
  font-weight: 900;
  flex-shrink: 0;
}
.gdb-standings-tbl__pos--acesso      { color: #1e40af; background: #dbeafe; }
.gdb-standings-tbl__pos--playoff     { color: #854d0e; background: #fef9c3; }
.gdb-standings-tbl__pos--rebaixamento{ color: #991b1b; background: #fee2e2; }
.gdb-standings-tbl__pos--neutral     { color: #4b5563; background: #f3f4f6; }

/* Crest */
.gdb-standings-tbl__crest {
  width: 24px; height: 24px;
  object-fit: contain; flex-shrink: 0;
}
.gdb-standings-tbl__crest-ph {
  width: 24px; height: 24px;
  background: #e5e7eb; color: #6b7280;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .55rem; font-weight: 900; flex-shrink: 0;
  border-radius: 2px;
}

/* Club name */
.gdb-standings-tbl__name {
  font-family: var(--font-headline);
  font-size: .85rem; 
  font-weight: 700; 
  color: #111;
  text-transform: uppercase;
  white-space: nowrap;
}
.gdb-standings-tbl__row--club .gdb-standings-tbl__name { color: var(--c-navy); font-weight: 800; }

/* Points column */
.gdb-standings-tbl__pts { font-weight: 900 !important; color: #111 !important; font-size: .9rem !important; }

/* Accent columns (V, %) */
.gdb-standings-tbl__accent { color: #059669 !important; font-weight: 700; }

/* Legend bar */
.gdb-standings-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.25rem;
  border-top: 1px solid #e8eaed;
  font-size: .65rem;
  font-weight: 700;
  color: #888;
  text-transform: lowercase;
  letter-spacing: .03em;
  background: #fafafa;
}
.gdb-standings-legend__item {
  display: flex; align-items: center; gap: .35rem;
  position: relative;
}
.gdb-standings-legend__item::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.gdb-standings-legend__item--acesso::before      { background: #1e40af; }
.gdb-standings-legend__item--playoff::before { background: #fef9c3; border-color: #facc15; }
.gdb-standings-legend__item--rebaixamento::before { background: #fee2e2; border-color: #f87171; }
.gdb-standings-legend__item--vitoria::before     { background: #059669; }
.gdb-standings-legend__item--empate::before      { background: #9ca3af; }
.gdb-standings-legend__item--derrota::before     { background: #ef4444; }

/* Responsive: hide less important cols on mobile */
@media (max-width: 600px) {
  .gdb-standings-tbl thead th:is(:nth-child(7),:nth-child(8)),
  .gdb-standings-tbl tbody td:is(:nth-child(7),:nth-child(8)) { display: none; }
  .gdb-standings-tbl__club-cell { min-width: 140px; }
}

/* ─── COMPETITION PAGE ──────────────────────────────────────────────── */

/* Hero */
.comp-page__hero {
  position: relative;
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--comp-color, var(--c-blue)) 100%);
  padding: 3.5rem 0 2.5rem;
  overflow: hidden;
}
.comp-page__hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bg-card.png') center / cover no-repeat;
  opacity: .22;
  pointer-events: none;
  z-index: 0;
}
.comp-page__hero::after { display: none; }
.comp-page__hero-inner {
  position: relative;
  z-index: 1;
}
.comp-page__hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-family: var(--font-headline);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  padding: .3rem .9rem;
  border-radius: var(--r-sm);
  margin-bottom: 1rem;
  border: 1px solid rgba(255,255,255,.2);
}
.comp-page__hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .5rem;
}
.comp-page__hero-icon { font-size: .75em; }
.comp-page__hero-crest { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; filter: drop-shadow(0 2px 6px rgba(0,0,0,.3)); }
.comp-page__hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  font-family: var(--font-body);
}

/* Layout grid: standings + matches */
.comp-page__grid {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 2.5rem 0;
  align-items: flex-start;
}
.comp-page__standings { flex: 1; min-width: 0; }
.comp-page__matches { width: 380px; flex-shrink: 0; }
.comp-page__grid--full {
  display: block;
}
.comp-page__grid--full .comp-page__matches {
  width: 100%;
  max-width: 100%;
}
.comp-page__grid--full .comp-page__standings {
  display: none;
}

/* Section headers inside comp page */
.comp-section-header {
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
}
.comp-section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #ffffff;
  letter-spacing: .03em;
  text-transform: uppercase;
}

/* gt-block head: crest icon */
.gt-block__head { align-items: center; }
.gt-block__crest { width: 30px; height: 30px; object-fit: contain; flex-shrink: 0; }

/* News section */
.comp-page__news {
  padding-bottom: 3rem;
  border-top: 2px solid var(--c-gray);
  margin-top: 0;
  padding-top: 2rem;
}
.comp-section-header--news { border-bottom-color: var(--c-blue); }

/* ── Round navigator ─────────────────────────────────────────────────── */
.round-nav { display: flex; align-items: center; justify-content: center; gap: .75rem; padding: .75rem 1.25rem; border-bottom: 1px solid var(--c-gray); background: var(--c-light); }
.round-nav__btn { background: none; border: none; cursor: pointer; color: var(--c-navy); display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; transition: background var(--t-fast); }
.round-nav__btn:hover:not(:disabled) { background: var(--c-gray); }
.round-nav__btn:disabled { opacity: .3; cursor: default; }
.round-nav__btn svg { pointer-events: none; }
.round-nav__label { font-family: var(--font-headline); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: var(--c-navy); min-width: 120px; text-align: center; }
.round-panels .round-panel { display: none; }
.match-row__venue-top { grid-column: 1 / -1; font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-muted); padding-bottom: .4rem; border-bottom: 1px solid var(--c-gray); margin-bottom: .35rem; display: flex; justify-content: space-between; }

/* ── Tie card (bracket horizontal GE-style) ──────────────────────────── */
.gdb-bracket-grid { display: flex; flex-direction: column; gap: .75rem; padding: 1rem 1.25rem 1.25rem; width: 100%; box-sizing: border-box; }
.tie-card { background: var(--c-white); border: 1px solid var(--c-gray); overflow: hidden; width: 100%; box-sizing: border-box; min-width: 0; clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px); }
.tie-card--two-legs { display: grid; grid-template-columns: 1fr auto 1fr; width: 100%; }
.tie-card__single-wrap { padding: 1.25rem 1.5rem; }
.tie-card__leg { padding: 1.25rem 1.25rem; display: flex; flex-direction: column; gap: .4rem; min-width: 0; overflow: hidden; }
.tie-card__leg--volta { border-left: 1px solid var(--c-gray); }
.tie-card__leg-label { font-family: var(--font-headline); font-size: .58rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: var(--c-accent); }
.tie-card__meta { font-size: .6rem; font-weight: 600; color: var(--c-muted); text-transform: uppercase; letter-spacing: .04em; }
.tie-card__matchup { 
    display: grid; 
    grid-template-columns: 1fr auto 1fr; 
    align-items: center; 
    gap: 1.25rem; 
    text-decoration: none; 
    color: inherit; 
    padding: .5rem 0; 
    min-width: 0; 
    width: 100%; 
    max-width: 450px; 
    margin: 0 auto; 
}
.tie-card__team { display: flex; align-items: center; gap: .5rem; min-width: 0; overflow: hidden; }
.tie-card__team--home { justify-content: flex-end; flex-direction: row-reverse; }
.tie-card__team--away { justify-content: flex-start; flex-direction: row-reverse; }
.tie-card__team--winner .tie-card__team-name { font-weight: 900; color: var(--c-promo); }
.tie-card__team--loser .tie-card__team-name { opacity: .55; }
.tie-card__team-name { font-size: .82rem; font-weight: 700; color: var(--c-navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 130px; }
.tie-card__crest { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.tie-card__score-center { display: flex; flex-direction: column; align-items: center; gap: .1rem; }
.tie-card__score { font-family: var(--font-display); font-size: 1.7rem; font-weight: 900; color: var(--c-navy); display: flex; align-items: center; gap: .25rem; }
.tie-card__score em { font-style: normal; font-size: 1rem; color: var(--c-muted); font-weight: 400; }
.tie-card__vs { font-family: var(--font-display); font-size: 1.4rem; color: var(--c-muted); }
.tie-card__pen { font-size: .58rem; font-weight: 700; color: var(--c-navy); text-align: center; }
.tie-card__cta { font-family: var(--font-headline); font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-blue); text-decoration: none; align-self: flex-start; margin-top: .1rem; }
.tie-card__cta--pending { color: var(--c-muted); }

/* ── Tie-card header strip ───────────────────────────────────────── */
.tie-card__head { display: flex; align-items: center; justify-content: space-between; background: var(--c-navy); padding: .55rem 1.25rem; gap: 1rem; border-bottom: 2px solid var(--c-accent); }
.tie-card--two-legs .tie-card__head { grid-column: 1 / -1; }
.tie-card__head-label { font-family: var(--font-headline); font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; color: var(--c-accent); white-space: nowrap; }
.tie-card__head-meta { font-size: .58rem; font-weight: 600; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; text-align: right; }

/* ── Single game: vertical team layout ──────────────────────────── */
.tie-card--single .tie-card__single-wrap { padding: 2rem 3rem; }
.tie-card--single .tie-card__matchup { gap: 2rem; align-items: center; }
.tie-card--single .tie-card__team { flex-direction: column; align-items: center; gap: .6rem; text-align: center; }
.tie-card--single .tie-card__team--home,
.tie-card--single .tie-card__team--away { flex-direction: column; justify-content: center; }
.tie-card--single .tie-card__crest { width: 72px; height: 72px; }
.tie-card--single .tie-card__team-name { font-size: .9rem; max-width: 160px; white-space: normal; text-align: center; line-height: 1.2; font-weight: 800; }
.tie-card--single .tie-card__score { font-size: 3.2rem; gap: .4rem; }
.tie-card--single .tie-card__score em { font-size: 1.6rem; }
.tie-card--single .tie-card__vs { font-size: 2.4rem; }
.tie-card--single .tie-card__pen { font-size: .7rem; font-weight: 700; color: var(--c-muted); margin-top: .2rem; }
.tie-card--single .tie-card__cta { display: block; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--c-gray); font-size: .65rem; align-self: stretch; }

/* ── Two-legs leg labels as sub-headers ──────────────────────────── */
.tie-card--two-legs .tie-card__leg-label { display: block; font-size: .6rem; font-weight: 900; letter-spacing: .09em; color: var(--c-navy); border-bottom: 1px solid var(--c-gray); padding-bottom: .4rem; margin-bottom: .35rem; }
.tie-card__sep { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1rem .75rem; background: var(--c-light); border-left: 1px solid var(--c-gray); border-right: 1px solid var(--c-gray); gap: .35rem; min-width: 88px; }
.tie-card__sep-phase { font-family: var(--font-headline); font-size: .58rem; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; color: var(--c-navy); text-align: center; line-height: 1.3; }
.tie-card__sep-agg { font-family: var(--font-display); font-size: 1.2rem; font-weight: 900; color: var(--c-navy); }
.tie-card__sep-winner { font-size: .55rem; font-weight: 700; color: var(--c-promo); text-transform: uppercase; text-align: center; letter-spacing: .05em; }

/* Empty state */
.comp-empty {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--c-muted);
  font-size: .9rem;
  background: var(--c-light);
  border-radius: var(--r-md);
  border: 1px dashed var(--c-border);
}

/* Compact matches list inside comp page */
.comp-matches-list .match-row {
  background: var(--c-white);
  border: 1px solid var(--c-gray);
  border-radius: var(--r-md);
  margin-bottom: .5rem;
}
.comp-matches-list .match-row:hover {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-sm);
}

/* ─── NOTICIAS PAGE ─────────────────────────────────────────────────── */
.noticias-content { padding-top: 2.5rem; padding-bottom: 4rem; }
.noticias-page .pagination { margin-top: 2rem; }

/* Archive hero — editorial limpo, sem ícone */
.archive-hero--noticias {
  background: var(--c-navy);
  padding: 3rem 0 2.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--c-blue);
}
.archive-hero--noticias::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bg-card.png') center / cover no-repeat;
  opacity: .06;
  pointer-events: none;
  z-index: 0;
}
.archive-hero--noticias .container {
  position: relative;
  z-index: 1;
}

/* Heading editorial: linha + título */
.archive-hero-editorial {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.archive-hero-editorial__eyebrow {
  font-family: var(--font-headline);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-accent);
}
.archive-hero-editorial__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--c-white);
  line-height: 1;
  margin: 0;
}
.archive-hero-editorial__rule {
  width: 48px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 2px;
}
.archive-hero-editorial__desc {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  margin: .5rem 0 0;
  max-width: 520px;
}

/* ─── MOBILE: btn-jogos / btn-noticias ──────────────────────────────── */
@media (max-width: 900px) {
  .btn-jogos,
  .btn-noticias { display: none; }
  .btn-hamburger { display: flex; }
}

@media (max-width: 1100px) {
  .comp-page__matches { width: 320px; }
}

@media (max-width: 900px) {
  .comp-page__grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .comp-page__matches {
    width: 100%;
  }
}

/* ─── FASE NAVIGATOR ──────────────────────────────────────────────────── */
.fase-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 0 1.75rem;
  border-bottom: 2px solid #e8ecf5;
  margin-bottom: 2rem;
}

.fase-nav__desktop-arrows {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.fase-nav__label {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #ffffff;
  text-align: center;
}

.fase-nav__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--c-blue);
  border: 2px solid var(--c-blue);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background var(--t-fast), color var(--t-fast);
  text-decoration: none;
}

.fase-nav__arrow:hover {
  background: var(--c-blue);
  color: #fff;
}

.fase-nav__arrow--disabled {
  color: #c5cdd8;
  border-color: #dde3f0;
  cursor: default;
  pointer-events: none;
}

.fase-nav__select {
  display: none;
  background: var(--c-navy);
  color: #fff;
  border: 2px solid var(--c-blue);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  width: 100%;
  max-width: 320px;
  text-align: center;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='white' stroke-width='3' viewBox='0 0 24 24'%3E%3Cpath d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
}

@media (max-width: 768px) {
  .fase-nav { padding: 0.5rem 0 1rem; border-bottom: none; }
  .fase-nav__desktop-arrows { display: none; }
  .fase-nav__select { display: block; }
}

/* ─── FASE NAV TABS (GE-style) ───────────────────────────────────────── */
.fase-nav-tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 2px solid var(--c-gray);
  margin-bottom: 1.75rem;
  gap: 0;
}
.fase-nav-tabs::-webkit-scrollbar { display: none; }
.fase-nav-tabs__item {
  font-family: var(--font-headline);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: .75rem 1.35rem;
  color: var(--c-muted);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .15s, border-color .15s;
}
.fase-nav-tabs__item:hover { color: rgba(255, 255, 255, 0.85); }
.fase-nav-tabs__item--active {
  color: var(--c-blue);
  border-bottom-color: var(--c-blue);
}

/* ─── COMP GROUP TITLE ────────────────────────────────────────────────── */
.comp-group-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-navy);
  margin: 1.25rem 0 .75rem;
  padding: 0 0 .5rem 1rem; /* Alinhado com GT-BLOCK padding */
  border-bottom: 2px solid var(--c-blue);
  font-style: italic;
}

@media (max-width: 800px) {
  .gdb-standings-wrap { display: block !important; width: 100% !important; max-width: 100vw !important; overflow-x: auto !important; -webkit-overflow-scrolling: touch !important; position: relative !important; margin: 0 auto; }
  .gdb-standings-tbl { min-width: 650px !important; width: 100% !important; }
  .gdb-standings-tbl__hide-sm { display: none !important; }
}

/* ── MAINTENANCE MARQUEE ─────────────────────────────────────────────────── */
.maint-marquee {
  background: #ffcc00;
  color: #111;
  overflow: hidden;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.maint-marquee__track {
  display: flex;
  width: max-content;
  animation: maint-marquee-scroll 24s linear infinite;
  will-change: transform;
}
.maint-marquee__content {
  display: flex;
  justify-content: space-around;
  min-width: 100vw;
}
.maint-marquee__icon { margin-right: 2px; }
.maint-marquee__item {
  font-family: var(--font-headline);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@keyframes maint-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── INTERFACE DE GESTÃO: NO-LINK STYLES ───────────────────────────────── */
.game-card--no-link, 
.match-row--no-link, 
.topbar__match--no-link,
.tie-card__matchup--no-link {
    cursor: default !important;
    pointer-events: auto; /* Mantém eventos para hover básico se necessário, mas remove pointer */
}

.game-card--no-link:hover, 
.match-row--no-link:hover,
.tie-card__matchup--no-link:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: rgba(255,255,255,0.1) !important;
}

.tie-card__cta--no-link {
    background: #e2e8f0 !important;
    color: #64748b !important;
    border-color: #cbd5e1 !important;
    cursor: default !important;
    opacity: 0.7;
}
.tie-card__cta--no-link:hover {
    transform: none !important;
}
.ge-cta--live {
  background: var(--c-accent) !important;
  color: var(--c-navy) !important;
  animation: pulse-accent 1.5s infinite;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ge-cta--live::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--c-navy);
  border-radius: 50%;
}

/* Header & Logo */
.hf-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 2rem; }
.hf-logo { display: flex; align-items: center; }
.hf-logo__img { width: 240px; height: auto; object-fit: contain; }

@keyframes pulse-accent {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(88, 161, 255, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(88, 161, 255, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(88, 161, 255, 0); }
}


/* ─── 21. LIVE ALERT & ANIMATIONS ────────────────────────────────────────── */
.live-alert-bar {
  background: var(--c-live);
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 101;
}
.live-alert-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  gap: 1.5rem;
  font-family: var(--font-headline);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  background-size: 200% 100%;
  animation: shine 3s infinite linear;
}
.live-alert-bar__teams {
  display: flex;
  align-items: center;
  justify-content: center !important;
  gap: 0.75rem !important;
  font-size: 0.95rem;
  width: auto !important; /* Fixed: remove 100% which squashes others */
}
.live-alert-bar__team {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0 !important;
  flex: 0 1 140px !important;
}
.live-alert-bar__crest {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.live-alert-bar__score {
  background: rgba(0,0,0,0.3);
  padding: 3px 12px;
  border-radius: 4px;
  font-size: 1.1rem;
  font-family: var(--font-display);
}
.live-alert-bar__cta {
  font-size: 0.75rem;
  opacity: 0.9;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  flex-shrink: 0 !important; /* Fixed: prevent squeezing */
}
.live-badge-anim {
  background: #fff;
  color: var(--c-live);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  animation: pulse-red 1.5s infinite;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

/* Animations */
@keyframes pulse-red {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes shine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.ge-meta-item--live {
  color: #fff !important;
  background: var(--c-live) !important;
  font-weight: 800 !important;
  animation: pulse-red 2s infinite;
}
.live-dot-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  margin-right: 5px;
  box-shadow: 0 0 0 rgba(255,255,255, 0.4);
  animation: dot-pulse 1.5s infinite;
}
@keyframes dot-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255,255,255, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255,255,255, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255,255,255, 0); }
}

@media (max-width: 600px) {
  .live-alert-bar__cta { display: none; }
  .live-alert-bar__inner { gap: 0.5rem; padding-inline: 0.5rem !important; }
  .live-alert-bar__teams { gap: 0.5rem !important; width: 100% !important; }
}

/* ─── 30. MATCHES WIDGET (HORIZONTAL REFACTOR) ────────────────────────── */

.matches-wdg__body {
    display: flex;
    flex-direction: column;
}

/* Grid for Sliders - Lado a lado no Desktop */
.matches-wdg__grid {
    display: flex;
    width: 100%;
}

.matches-wdg__grid .matches-wdg__section {
    flex: 1;
    min-width: 0;
    padding: 1.5rem !important;
}

/* Divisor Vertical */
@media (min-width: 901px) {
    .matches-wdg__grid .matches-wdg__section:first-child {
        border-right: 1px solid var(--c-gray);
    }
}

/* Carrossel Track and Slides */
.res-carousel__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 0;
}
.res-carousel__track::-webkit-scrollbar { display: none; }
.res-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    width: 100%;
}

/* Cards de Jogo Compactos dentro do Widget */
.matches-wdg .game-card {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}
.matches-wdg .game-card__meta-ge { margin-bottom: .65rem; }
.matches-wdg .ge-team--home { justify-content: flex-end; }
.matches-wdg .ge-team__name { font-size: 0.82rem; }
.matches-wdg .ge-team__crest img { width: 30px; height: 30px; }
.matches-wdg .ge-score-center .ge-placar__val { font-size: 1.4rem; }

/* Carousel Header and Mini-Controls */
.res-carousel__hdr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}
.matches-wdg__section-title {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--c-muted);
}
.res-carousel__controls {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.res-carousel__counter {
    font-size: 0.62rem;
    font-weight: 900;
    color: var(--c-navy);
    background: var(--c-gray);
    padding: 2px 7px;
    border-radius: 4px;
}
.res-carousel__btn {
    background: none; border: 1px solid var(--c-gray);
    color: var(--c-muted); cursor: pointer;
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.res-carousel__btn:hover { background: var(--c-blue); border-color: var(--c-blue); color: #fff; }

/* AO VIVO compact banner inside widget */
.matches-wdg__section--live {
    background: #fffafa;
    border-bottom: 1px solid #fee2e2;
    padding: 1rem 1.5rem !important;
}
.live-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ef4444;
    color: #fff;
    font-family: var(--font-headline);
    font-size: 0.6rem;
    font-weight: 900;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.live-match-compact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.live-match-compact__teams {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 1.5rem;
}
.live-match-compact__team {
    display: flex; align-items: center; gap: 0.6rem;
    font-family: var(--font-display); font-weight: 800; font-size: 0.9rem; color: var(--c-navy);
}
.live-match-compact__team--away { flex-direction: row-reverse; }
.live-match-compact__crest { width: 30px; height: 30px; object-fit: contain; }
.live-match-compact__score {
    font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: #ef4444;
}
.live-match-compact__cta {
    background: var(--c-navy); color: #fff; text-decoration: none;
    padding: 0.55rem 1rem; border-radius: 4px;
    font-family: var(--font-headline); font-weight: 800; font-size: 0.7rem;
    text-transform: uppercase; white-space: nowrap;
    transition: background 0.2s;
}
.live-match-compact__cta:hover { background: var(--c-blue); }

@media (max-width: 900px) {
    .matches-wdg__grid { flex-direction: column; }
    .matches-wdg__grid .matches-wdg__section:first-child { border-right: none; border-bottom: 1px solid var(--c-gray); }
    .live-match-compact { flex-direction: column; gap: 1rem; }
    .live-match-compact__cta { width: 100%; text-align: center; }
}

.matches-wdg__footer {
    display: block;
    text-align: center;
    padding: .85rem;
    background: #f8faff;
    color: var(--c-blue);
    font-family: var(--font-headline);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-top: 1px solid var(--c-gray);
    transition: background 0.2s;
}
.matches-wdg__footer:hover { background: #eef4ff; color: var(--c-navy); }

/* ══ RESPONSIVITY PATCH ══════════════════════════════════════════════════ */

/* 1. Global Overflow & Container */
*, *::before, *::after { box-sizing: border-box; } /* Reforçando box-sizing */

html, body { 
    max-width: 100vw; 
    overflow-x: hidden !important; 
    margin: 0; padding: 0;
}

img { max-width: 100%; height: auto; display: block; } /* Reforçando img */

@media (max-width: 768px) {
    .container {
        padding-inline: var(--gap-sm) !important; /* Reduzindo padding de 24px para 16px no mobile */
    }
}

/* 2. Live Hero (Destaque Ao Vivo) */
@media (max-width: 480px) {
    .live-hero__board {
        grid-template-columns: 1fr 100px 1fr !important; /* Estreitando o centro para caber nomes de times */
        gap: 0.5rem !important;
    }
    .live-hero__score {
        font-size: 2.2rem !important;
    }
    .live-hero__team-name {
        font-size: 0.72rem !important;
    }
    .live-hero__crest {
        width: 38px !important; height: 38px !important;
    }
}

/* 3. Stats Block (Temporada 2026) */
@media (max-width: 375px) {
    .stats-block__item {
        flex-direction: column !important; /* Empilha valor e label em celulares muito pequenos */
        align-items: flex-start !important;
        gap: 0.2rem !important;
        padding: 1rem !important;
    }
    .stats-block__value {
        font-size: 2.5rem !important;
    }
}

/* 4. Matches Widget (Jogos do Barra) */
.matches-wdg .ge-team {
    min-width: 0; /* Previne que nomes longos empurrem o grid */
}
.matches-wdg .ge-team__name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 480px) {
    .live-match-compact__team {
        font-size: 0.8rem !important;
    }
    .live-match-compact__teams {
        gap: 0.8rem !important;
    }
}

/* 5. News Grid (Notícias) */
@media (max-width: 768px) {
    .news-torn-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        direction: ltr !important; /* Reseta o alternado RTL da página de notícias */
    }
    .news-torn-grid__main, 
    .news-torn-grid__side,
    .news-torn-grid__side > a {
        width: 100% !important;
        height: auto !important;
        min-height: 280px !important;
        direction: ltr !important;
    }
    .news-torn-grid__side {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    .nectar-feat-card__body-main {
        padding: 1.5rem !important;
    }
    /* Archive/News Page Specifics */
    .archive-hero--noticias {
        padding: 3.5rem 0 2.5rem !important;
        text-align: center !important;
    }
    .section-hdr--noticias {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    .section-hdr--noticias .section-hdr__line {
        margin: 0.5rem auto !important;
    }
    .archive-hero__desc {
        margin: 1rem auto 0 !important;
    }
}

/* 6. Typography & Layout Preventions */
h1, h2, h3, h4, h5, p, span, a {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
}

.live-hero__time-badge {
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
}

@media (max-width: 600px) {
    .hero-info-bar__table-wrap {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .hero-info-bar__standing {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

.hero__cta, .live-match-compact__cta {
    max-width: 100%;
    box-sizing: border-box;
}

/* 7. Tables Responsiveness */
.hero-info-bar__table-wrap, 
.gt-layout__table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
table {
    min-width: 300px; /* Garante que a tabela não "suma" ao tentar ficar pequena demais */
}

/* Garante que qualquer grid nativo quebre no mobile */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr !important;
    }
}
/* 8. Confrontos (Ida e Volta) - Empilhamento Mobile */
@media (max-width: 768px) {
    .tie-card--two-legs {
        display: flex !important;
        flex-direction: column !important;
    }
    .tie-card__leg--volta {
        border-left: none !important;
        border-top: 1px solid var(--c-gray) !important;
    }
    .tie-card__sep {
        border-left: none !important;
        border-right: none !important;
        border-top: 1px solid var(--c-gray) !important;
        border-bottom: 1px solid var(--c-gray) !important;
        padding: 0.6rem !important;
        flex-direction: row !important;
        justify-content: center !important;
        gap: 1.5rem !important;
        min-width: 0 !important;
    }
    .tie-card__sep-agg {
        font-size: 1rem !important;
    }
}
/* 9. Competições (page-competicao.php) */
@media (max-width: 768px) {
    .comp-page__hero {
        padding: 3.5rem 0 2.5rem !important;
        text-align: center !important;
    }
    .comp-page__hero-title {
        justify-content: center !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
    }
    .comp-page__hero-crest {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto;
    }
    .comp-page__hero-sub {
        font-size: 0.9rem !important;
        max-width: 280px !important;
        margin: 0.75rem auto 0 !important;
        line-height: 1.4 !important;
    }

    /* 9. Competições Detail Fixes */
    .comp-page__main-container {
        padding-top: 1rem !important;
        padding-bottom: 1.5rem !important;
    }
    .comp-page__grid {
        padding-top: 0.5rem !important;
        padding-bottom: 1rem !important;
        gap: 1.5rem !important;
    }
    .comp-page__standings,
    .comp-page__matches {
        width: 100% !important;
        margin-bottom: 1.5rem !important;
    }

    .gt-block {
        width: 100% !important;
        overflow: visible !important;
        clip-path: none !important;
        border-radius: 8px !important;
        border: 1px solid var(--c-gray) !important;
    }

    /* Scroll em tabelas de classificação */
    .gdb-standings-wrap, 
    .gdb-grupos-grid,
    .hero-info-bar__table-wrap {
        width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        display: block !important;
        margin-bottom: 0.5rem !important;
        position: relative !important;
    }
    .gdb-standings-tbl {
        min-width: 580px !important; 
        table-layout: auto !important;
    }

    /* Ajuste de cards de notícias - Compacto */
    .comp-page__news { margin-top: 1rem !important; }
    .comp-page__news .news-torn-grid__main,
    .comp-page__news .news-torn-grid__side,
    .comp-page__news .nectar-feat-card {
        height: auto !important;
        min-height: 140px !important; /* Reduzi bastante para ser compacto */
    }
    .comp-page__news .nectar-feat-card__body-main,
    .comp-page__news .nectar-feat-card__body-side {
        height: auto !important;
        min-height: 140px !important;
        padding: 1.25rem 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important; 
        gap: 0.5rem !important;
    }
    .comp-page__news .nectar-feat-card__content {
        margin-bottom: 0 !important;
    }
}

/* ─── 41. VOZ DA TORCIDA (REDDIT STYLE) ─────────────────────────────────── */
section.home-fans { 
    padding: 6rem 0 5rem !important; 
    background-color: #091d3d !important; 
    background-image: radial-gradient(circle at 50% 50%, rgba(14, 73, 147, 0.15) 0%, transparent 70%) !important;
    position: relative !important; 
    width: 100% !important;
    color: #fff !important;
    overflow: hidden !important;
}

/* Header & Logo */
.hf-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 2rem; }
.hf-logo { display: flex; align-items: center; }
.hf-logo__img { width: clamp(220px, 20vw, 340px); height: auto; object-fit: contain; }

.hf-top-cta { 
    background: #3b82f6; 
    color: #fff !important; 
    padding: 1.1rem 2.2rem; 
    font-family: var(--font-headline); 
    font-weight: 900; 
    font-size: 1rem; 
    text-transform: uppercase; 
    text-decoration: none !important;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    transition: all 0.2s ease;
}
.hf-top-cta:hover { background: #60a5fa; transform: translateY(-3px); }

.hf-divider-line { height: 1px; background: rgba(255,255,255,0.1); width: 100%; margin-bottom: 5rem; }

/* Slider Layout */
.hf-slider { position: relative; padding: 0 4rem; margin-bottom: 4rem; }
.hf-track-wrap { overflow: hidden; }
.hf-track { 
    display: flex; 
    gap: 2rem; 
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
    will-change: transform;
}
.hf-slide { flex: 0 0 calc(33.333% - 1.33rem); min-width: 0; padding-top: 50px; }

/* Fan Card (Bubble) with Bevel */
.fan-card-container { 
    position: relative; 
    padding-top: 50px;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}
.fan-card { 
    background: #ffffff; 
    padding: 1.5rem; 
    position: relative; 
    color: var(--c-navy);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    z-index: 1;
}
.fan-card__avatar-wrap { 
    position: absolute; 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 100px; 
    height: 100px; 
    border-radius: 50%; 
    border: 5px solid #091d3d !important; 
    background: #fff;
    box-shadow: none !important;
    overflow: hidden;
    z-index: 10;
}
.fan-card__avatar { width: 100%; height: 100%; object-fit: cover; }
.fan-card__avatar-ph { width: 100%; height: 100%; background: #eee; }

.fan-card__bubble { flex: 1; text-align: center; padding-top: 3.5rem; margin-bottom: 1.5rem; }
.fan-card__quote { 
    font-family: var(--font-display); 
    font-size: 3rem; 
    line-height: 1; 
    color: #f1f5f9; 
    margin-bottom: -1rem;
}
.fan-card__text { 
    font-size: 1rem; 
    line-height: 1.5; 
    font-weight: 700; 
    color: #1e293b; 
    margin-bottom: 1rem;
    min-height: 4.5rem;
}
.fan-card__handle { 
    font-family: var(--font-body); 
    font-size: 0.85rem; 
    color: #3b82f6; 
    font-weight: 700; 
}

/* Card Footer & Votes */
.fan-card__footer { 
    border-top: 1px solid #f1f5f9; 
    padding-top: 1.25rem; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 0.75rem; 
}
.fan-card__voce { font-size: 0.65rem; font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.1em; }
.fan-card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; width: 100%; }

.hf-vote-btn { 
    border: none; 
    padding: 0.8rem; 
    font-family: var(--font-display); 
    font-size: 1.1rem; 
    font-weight: 900; 
    cursor: pointer; 
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.hf-vote-btn--sim { background: #ffcc00; color: #000; }
.hf-vote-btn--nao { background: #000; color: #fff; }
.hf-vote-btn:hover { transform: scale(1.05); filter: brightness(1.1); }
.hf-vote-btn.is-loading { opacity: 0.5; pointer-events: none; }
.hf-vote-count { font-size: 0.75rem; background: rgba(0,0,0,0.1); padding: 2px 6px; border-radius: 4px; }
.hf-vote-btn--nao .hf-vote-count { background: rgba(255,255,255,0.2); }

.hf-vote-btn.is-active { 
    outline: 3px solid #3b82f6; 
    outline-offset: 2px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}
.hf-vote-btn--sim.is-active { background: #ffd700; color: #000; }
.hf-vote-btn--nao.is-active { background: #111; color: #fff; }

/* Navigation */
.hf-nav { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: #fff; 
    color: #091d3d; 
    border: none; 
    width: 44px; 
    height: 44px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 10;
    transition: all 0.2s ease;
}
.hf-nav:hover { background: var(--c-accent); color: var(--c-navy); transform: translateY(-50%) scale(1.1); }
.hf-nav--prev { left: 0; }
.hf-nav--next { right: 0; }

/* Disclaimer */
.hf-disclaimer { margin-top: 4rem; text-align: center; }
.hf-disclaimer p { 
    font-size: 0.65rem; 
    color: rgba(255,255,255,0.4); 
    line-height: 1.8; 
    font-weight: 700; 
    margin: 0; 
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .hf-slide { flex: 0 0 calc(50% - 1rem); }
}
@media (max-width: 768px) {
    section.home-fans { padding: 3rem 0 2rem !important; }
    .hf-divider-line { margin-bottom: 0.5rem !important; } /* Tighter divider */
    .hf-header { flex-direction: column !important; align-items: center !important; text-align: center; gap: 0.8rem !important; margin-bottom: 1rem !important; }
    .hf-logo { justify-content: center !important; width: 100% !important; }
    .hf-logo__img { width: 160px !important; }
    
    .hf-top-cta { 
        width: 100% !important; 
        font-size: 0.7rem !important; 
        padding: 0.75rem 1rem !important;
    }
    
    .hf-slider { padding: 0 1rem !important; margin-bottom: 1rem !important; margin-top: 0 !important; }
    .hf-slide { flex: 0 0 100% !important; padding-top: 0 !important; } /* Removed redundant padding */
    .hf-nav { 
        width: 28px !important; 
        height: 28px !important; 
        display: flex !important;
    }
    .hf-nav--prev { left: -5px !important; }
    .hf-nav--next { right: -5px !important; }
    
    .fan-card-container { padding-top: 25px !important; } /* Just enough for the avatar overlap */
    .fan-card__avatar-wrap { width: 75px !important; height: 75px !important; border-width: 4px !important; }
    .fan-card__text { font-size: 0.9rem !important; min-height: 3rem !important; }
    .fan-card { padding: 1rem !important; }
}
@media (max-width: 600px) {
    .hf-slide { flex: 0 0 100% !important; }
}

/* ─── 375px EXTREME SMALL SCREENS ─── */
@media (max-width: 375px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    .liquid-hero__title {
        font-size: clamp(1.5rem, 6vw, 2.5rem);
    }
    .liquid-hero__cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.7rem;
    }
}

/* ══════════════════════════════════════════════════════════════════════
   GLOBAL MOBILE PATCHES — 390px
   Consolida ajustes ausentes nas seções acima
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Container padding 20px (padrão solicitado) */
    .container {
        padding-inline: 20px !important;
    }

    /* Section-header: empilha título e link "ver todos" */
    .section-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem !important;
        margin-bottom: 1.25rem !important;
    }

    /* Botões CTA: largura total no mobile */
    .btn--primary,
    .btn--accent {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Footer: coluna única e centralizado */
    .site-footer {
        text-align: center !important;
    }
    .footer-widgets__grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .footer-brand {
        align-items: center !important;
    }

    /* News card overlay: garante que o texto não saia do card */
    .news-card--overlay .news-card__body {
        padding: 1rem !important;
    }
    .news-card--overlay .news-card__title {
        font-size: 1rem !important;
        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
    }

    /* Topbar: centraliza conteúdo */
    .topbar__inner {
        justify-content: center !important;
        gap: 0.75rem !important;
    }

    /* Live Alert Bar */
    .live-alert-bar__inner {
        padding: 0 12px !important;
        gap: 0.5rem !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
    }
    .live-alert-bar__cta {
        display: none !important;
    }

    /* Tabelas com scroll horizontal */
    .gdb-standings-tbl,
    table {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    /* Fase nav (bracketss) */
    .fase-nav {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        white-space: nowrap !important;
    }

    /* News torn grid: sempre coluna única no mobile */
    .news-torn-grid {
        grid-template-columns: 1fr !important;
    }

    /* Artigo single: remove sidebar */
    .single-news__layout {
        grid-template-columns: 1fr !important;
    }
    .single-news__sidebar {
        display: none !important;
    }

    /* Article Hero */
    .article-hero {
        height: 55vmax !important;
        max-height: 400px !important;
    }
    .article-hero__title {
        font-size: clamp(1.3rem, 5vw, 1.7rem) !important;
        line-height: 1.1 !important;
    }

    /* Elenco page: grid 2 colunas */
    .squad-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    /* Garante que grids de 3+ colunas caiam para 1 no mobile */
    [class*="grid-cols-3"],
    [class*="grid-cols-4"],
    .news-more-grid {
        grid-template-columns: 1fr !important;
    }
}
