/* ======================================================
IDENTIDADE VISUAL – GIRO DESPORTIVO
====================================================== */
:root {
  
  --gd-blue-900: #0b1a2b;
  --gd-blue-800: #10263f;
  --gd-blue-700: #16355a;

  --gd-green-500: #8fd400;
  --gd-green-400: #a6e600;

  --gd-white: #ffffff;
  --gd-gray-100: #e5e7eb;
  --gd-gray-300: #9ca3af;
  --gd-gray-500: #6b7280;

  --gd-black: #050b14;
  --gd-border: rgba(255,255,255,0.08);

  /* ===============================
     DESIGN SYSTEM — UI TOKENS
  =============================== */

  /* ações */
  --ui-primary: var(--gd-green-500);
  --ui-primary-hover: #7cc700;
  --ui-on-primary: #0b1c2d;

  /* widgets */
  --ui-widget-bg: rgba(255,255,255,0.03);
  --ui-widget-radius: 14px;

  /* headers */
  --ui-header-font-size: 15px;
  --ui-header-letter-spacing: 0.08em;
}


/* ======================================================
RESET / BASE
====================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-color: var(--gd-blue-900);
  color: var(--gd-gray-100);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

/* ======================================================
LAYOUT GLOBAL
====================================================== */
.page {
  padding-top: 72px;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ======================================================
TIPOGRAFIA EDITORIAL
====================================================== */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gd-white);
}

p {
  line-height: 1.6;
  color: var(--gd-gray-100);
}

.section-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gd-gray-300);
  margin-bottom: 24px;
}

/* ======================================================
HEADER FIXO
====================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background-color: var(--gd-blue-800);
  border-bottom: 1px solid var(--gd-border);
  z-index: 1200;
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 120px;
  display: block;
}

/* ======================================================
NAV DESKTOP
====================================================== */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gd-gray-100);
  position: relative;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--gd-green-500);
}

/* link ativo */
.desktop-nav a.active {
  color: var(--gd-green-500);
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gd-green-500);
}


/* ======================================================
MENU TOGGLE
====================================================== */
.menu-toggle {
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 24px;

}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background: var(--gd-white);
  border-radius: 2px;
}

/* ======================================================
MENU SANDUÍCHE
====================================================== */
.mobile-menu {
  position: fixed;
  top: 72px;
  right: 0;
  width: 300px;
  height: calc(100vh - 72px);
  background: linear-gradient(
    180deg,
    var(--gd-blue-800),
    var(--gd-black)
  );
  padding: 32px 24px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1300;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.menu-section {
  margin-bottom: 32px;
}

.menu-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 16px;
}

.menu-title.futebol {
  color: var(--gd-green-500);
}

.menu-title.giro {
  color: var(--gd-gray-100);
  opacity: 0.85;
}

.menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-section li {
  margin-bottom: 14px;
}

.menu-section a {
  font-size: 16px;
  color: var(--gd-white);
  text-decoration: none;
}

.menu-section a:hover {
  color: var(--gd-green-400);
}

/* ======================================================
OVERLAY
====================================================== */
.menu-overlay {
  position: fixed;
  inset: 72px 0 0 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1250;
}

.menu-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

/* ======================================================
EMPURRÃO DO CONTEÚDO
====================================================== */

.page {
  transition: transform 0.35s ease;
  will-change: transform;
}

.menu-open .page {
  transform: translateX(-300px);
}


/* ======================================================
CARDS EDITORIAIS
====================================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--gd-border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.card-image {
  position: relative;
  height: 180px;
}

.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.1),
    rgba(0,0,0,0.55)
  );
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 16px;
  line-height: 1.35;
  margin: 12px 0;
}

.card-meta {
  font-size: 12px;
  color: var(--gd-gray-300);
}

/* ======================================================
BADGES
====================================================== */
.badge {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid var(--gd-green-500);
  color: var(--gd-green-500);
}

.badge.ultima-hora {
  background: rgba(143,212,0,0.12);
}

/* ======================================================
RESPONSIVO
====================================================== */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .desktop-nav {
    display: none;
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ======================================================
RESET DE LINKS – SEM AZUL / ROXO
====================================================== */
a,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}

/* ======================================================
FOOTER – GIRO DESPORTIVO
====================================================== */
.site-footer {
  background: linear-gradient(
    180deg,
    var(--gd-blue-800),
    var(--gd-black)
  );
  border-top: 1px solid var(--gd-border);
  margin-top: 96px;
}

/* grid principal */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0;
}

/* brand */
.footer-brand {
  max-width: 320px;
}

.footer-logo {
  width: 102px;
  height: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--gd-gray-300);
  line-height: 1.5;
}

/* colunas */
.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gd-gray-300);
  margin-bottom: 16px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  font-size: 14px;
  color: var(--gd-gray-100);
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--gd-green-500);
}

/* redes */
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* disclaimer */
.footer-disclaimer {
  border-top: 1px solid var(--gd-border);
  padding: 24px 0;
}

.footer-disclaimer p {
  font-size: 12px;
  line-height: 1.6;
  color: var(--gd-gray-300);
}

/* copyright */
.footer-bottom {
  border-top: 1px solid var(--gd-border);
  padding: 16px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gd-gray-300);
}

.footer-made {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-made .heart {
  color: var(--gd-green-500);
}

.site-footer {
  margin-top: 140px;
}

/* ======================================================
RESPONSIVO
====================================================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

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

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

.page {
  min-height: 100vh;
  padding-bottom: 96px; /* espaço antes do footer */
  background-color: var(--gd-blue-900);
}

/* ======================================================
PÁGINA DE NOTÍCIA – EDITORIAL
====================================================== */


.news-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 12, 24, 0.95),
    rgba(5, 12, 24, 0.3)
  );
}

.news-dek {
    font-size: 20px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ================= CONTEÚDO ================= */

.news-text h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 24px;
}


/* ================= RECOMENDADAS ================= */

.news-related {
  padding-bottom: 96px;
}

.news-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .news-related-grid {
    grid-template-columns: 1fr;
  }
}

.related-card {
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
}

.related-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.related-body {
  padding: 16px;
}

.related-category {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #7CFF00;
}

.related-body h3 {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.3;
}

.related-body p {
  font-size: 12px;
  color: #9ca3af;
}

/* ======================================================
NOTÍCIA – HERO
====================================================== */

.news-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.3), rgba(0,0,0,.7));
}

/* Card sobreposto */
.news-header-wrapper {
    margin-top: -140px;
    position: relative;
    z-index: 5;
    display: flex;
}

.news-header-card {
    background: white;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0,0,0,.18);
    width: 70%;
}

/* GRID conteúdo */

.news-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    margin-top: 60px;
}

.news-content {
    font-size: 21px;
    line-height: 1.9;
    color: #0f172a;
}

.news-sidebar {
    position: sticky;
    top: 120px;
}

.editorial-content {
  padding: 0;
  background: transparent;
}

/* Mobile */
@media(max-width: 1100px) {
    .news-header-card {
        width: 100%;
    }

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


/* ======================================================
RESPONSIVO
====================================================== */

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

    .news-card {
        padding: 35px 25px;
    }

    .news-title {
        font-size: 32px;
    }
}

/* ======================================================
BLOCO EDITORIAL – CONTEÚDO DA NOTÍCIA
====================================================== */

/* tipografia editorial */
.editorial-content h2,
.editorial-content h3 {
  margin: 32px 0 16px;
  font-weight: 600;
  color: #ffffff;
}

.editorial-content h2 {
  font-size: 22px;
}

.editorial-content h3 {
  font-size: 18px;
}

/* evita títulos duplicados gigantes */
.editorial-content h1 {
  display: none;
}

/* ======================================================
HOME – ÚLTIMAS NOTÍCIAS
====================================================== */
.home-latest {
  padding: 64px 0;
}

.home-latest-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}

/* LISTA */
.latest-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.latest-news-item {
  margin-bottom: 20px;
}

.latest-news-item a {
  display: flex;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  padding: 12px;
  transition: background 0.2s ease;
}

.latest-news-item a:hover {
  background: rgba(255,255,255,0.06);
}

.latest-news-item img {
  width: 96px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.latest-news-text h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-news-category {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7CFF00; /* verde do logo */
}

/* ADS */
.latest-ads .ads-placeholder {
  height: 100%;
  min-height: 420px;
  background: linear-gradient(
    135deg,
    rgba(124,255,0,0.08),
    rgba(0,0,0,0.4)
  );
  border: 1px dashed rgba(124,255,0,0.4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(124,255,0,0.7);
}

/* ADS FULL */
.home-ads-full {
  padding: 48px 0;
}

.ads-placeholder.horizontal {
  height: 120px;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .home-latest-grid {
    grid-template-columns: 1fr;
  }

  .latest-ads {
    display: none;
  }
}

.latest-news-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;
}
/* ================= BRASILEIRÃO ================= */
.home-brasileirao {
  margin-top: 64px;
}

.brasileirao-grid {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  gap: 50px;
  margin-top: 60px;
  align-items: start;
}

.brasileirao-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.brasileirao-card {
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.brasileirao-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.brasileirao-body {
  padding: 14px;
}

.brasileirao-body h3 {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 6px;
}

.brasileirao-meta {
  font-size: 12px;
  color: #9ca3af;
}

/* ================= TABELA ================= */
.brasileirao-table {
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 20px;
}

.table-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.table-row {
  display: grid;
  grid-template-columns: 32px 32px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.table-row:last-child {
  border-bottom: none;
}

.pos {
  font-weight: 600;
}

.team-logo {
  width: 26px;
  height: 26px;
}

.team-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
}


.team-stats {
  font-size: 12px;
  color: #9ca3af;
}

/* ================= ADS ================= */
.home-ads-horizontal {
  margin: 48px 0;
}

.ads-horizontal-placeholder {
  height: 120px;
  border: 1px dashed #2eea7f;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #2eea7f;
  font-weight: 600;
  letter-spacing: 0.15em;
}


/* ================= RESPONSIVO ================= */
@media (max-width: 1024px) {
  .brasileirao-grid {
    grid-template-columns: 1fr;
  }
}

.table-standings {
  border-collapse: separate;
  border-spacing: 0 8px; /* espaço entre linhas */
}

.table-standings tbody tr {
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.table-standings tbody tr:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.table-standings thead th {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gd-gray-300);
  padding: 8px 14px;
  border: none;
}

.table-standings td {
  border: none;
  padding: 12px 14px;
  font-size: 13px;
}

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

.team-cell span {
  font-weight: 600;
  font-size: 13px;
}

.team-cell img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.team-cell span {
  font-weight: 500;
}

.table-footer {
  margin-top: 20px;
  padding-top: 16px;
  display: flex;
  justify-content: center;
}

.table-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--ui-primary);
  color: var(--ui-on-primary) !important; /* 👈 força o texto */
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;

  transition: background 0.2s ease, transform 0.2s ease;
}

.table-more-btn .arrow {
  color: var(--ui-on-primary);
}

.table-more-btn:hover {
  background: var(--ui-primary-hover);
  transform: translateY(-1px);
}


.table-more-btn:hover .arrow {
  transform: translateX(4px);
}

.classification {
  margin-top: 40px;
}

.classification-table {
  margin-top: 32px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #0b1e33, #081524);
}

/* ===============================
CLASSIFICAÇÃO — GRID UNIFICADO
=============================== */

/* ===============================
CLASSIFICAÇÃO — GRID UNIFICADO
=============================== */

.table-header,
.table-row {
  display: grid;
  grid-template-columns:
    40px       /* posição */
    1.8fr      /* equipe */
    60px       /* pontos */
    60px       /* jogos */
    60px       /* vitórias */
    60px       /* saldo */
    60px       /* gols pró */
    60px;      /* gols contra */
  align-items: center;
}

.table-header,
.table-row {
  padding: 14px 16px;
  min-height: 56px;
}

.table-header {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gd-gray-300);
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  margin-bottom: 0;
  min-height: 56px;
}

.table-header div,
.table-row div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.table-header .team,
.table-row .team {
  justify-content: flex-start;
  padding-left: 2px; /* micro-ajuste visual */
}

.table-row {
  font-size: 14px;
  color: #e6eef6;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.table-row:hover {
  background: rgba(255,255,255,0.05);
}

/* alinhamento das colunas numéricas */
.table-header div:not(.team),
.table-row div:not(.team) {
  text-align: center;
}

/* equipe */
.table-header .team,
.table-row .team {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.table-row .team img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* PONTOS EM DESTAQUE */
.table-row .points {
  font-weight: 700;
  color: #ffffff;
}

/* ===============================
CLASSIFICAÇÃO — SISTEMA DE ZONAS
=============================== */

/* ZONA LIBERTADORES */
.zona-libertadores {
  border-left: 4px solid #1e90ff;
  background: linear-gradient(
    90deg,
    rgba(30, 144, 255, 0.14),
    rgba(30, 144, 255, 0.06),
    transparent 45%
  );
}

.zona-libertadores:hover {
  background: linear-gradient(
    90deg,
    rgba(30, 144, 255, 0.22),
    rgba(30, 144, 255, 0.10),
    transparent 45%
  );
}

/* ZONA SUL-AMERICANA */
.zona-sulamericana {
  border-left: 4px solid #ffab00;
  background: linear-gradient(
    90deg,
    rgba(255, 171, 0, 0.14),
    rgba(255, 171, 0, 0.06),
    transparent 45%
  );
}

.zona-sulamericana:hover {
  background: linear-gradient(
    90deg,
    rgba(255, 171, 0, 0.22),
    rgba(255, 171, 0, 0.10),
    transparent 45%
  );
}

/* ZONA NEUTRA (MEIO DA TABELA) */
.zona-neutra {
  border-left: 4px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03),
    transparent 45%
  );
}

.zona-neutra:hover {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.06),
    transparent 45%
  );
}

/* ZONA DE REBAIXAMENTO */
.zona-rebaixamento {
  border-left: 4px solid #e53935;
  background: linear-gradient(
    90deg,
    rgba(229, 57, 53, 0.14),
    rgba(229, 57, 53, 0.06),
    transparent 45%
  );
}

.zona-rebaixamento:hover {
  background: linear-gradient(
    90deg,
    rgba(229, 57, 53, 0.22),
    rgba(229, 57, 53, 0.10),
    transparent 45%
  );
}

.table-legend {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  font-size: 13px;
}

.leg {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cbd6e2;
}

.leg::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

.leg.lib::before { background: #1e90ff; }
.leg.sul::before { background: #ff9800; }
.leg.reb::before { background: #e53935; }

.right-widget {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.widget-box {
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 16px;
}

.widget-title {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

/* NOTÍCIAS */
.widget-news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.widget-news-item a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
}

.news-source {
  font-size: 12px;
  color: #9bb3c9;
}

/* NOTÍCIAS */
.news-link {
  display: flex;
  gap: 12px;
  align-items: center;
}

.widget-news-link {
  display: flex;
  gap: 12px;
  align-items: center;
}

.news-thumb {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.news-thumb img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
}

.news-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ===== HOME SIDE WIDGETS ===== */
.home-side-widgets {
  margin-top: 32px;
}

.side-widgets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* CAIXA */
.widget-box {
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 16px;
}

/* TÍTULO */
.widget-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* NOTÍCIAS */
.widget-news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.widget-news-item {
  list-style: none;
}

.news-link {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
}

.news-thumb img {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
}

.news-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news-source {
  font-size: 12px;
  color: #9bb3c9;
}


/* ======================================================
HOME — BLOCO SECUNDÁRIO
====================================================== */

.home-secondary {
  padding: 64px 0;
}

.home-secondary-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* ================= NOTÍCIAS ================= */

.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-card:hover {
  background: rgba(255,255,255,0.06);
}

.news-card-image img {
  width: 96px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.news-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.news-card-category {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gd-green-500);
}

.news-card-title {
  font-size: 14px;
  line-height: 1.35;
}

.news-card-source {
  font-size: 12px;
  color: var(--gd-gray-300);
}

/* ===============================
JOGOS DO DIA — CARD
=============================== */

.games-column .game-card {
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* topo */
.games-column .game-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gd-gray-300);
}

/* times + placar */
.games-column .game-teams {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
}

/* times */
.games-column .team {
  display: flex;
  align-items: center;
  gap: 8px;
}

.games-column .team.home {
  justify-content: flex-start;
}

.games-column .team.away {
  justify-content: flex-end;
  text-align: right;
}

/* escudos */
.games-column .team img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* sigla */
.games-column .team-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* placar / hora */
.games-column .game-score {
  text-align: center;
}

.games-column .game-score .score {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.games-column .game-score .time {
  font-size: 15px;
  font-weight: 600;
  color: var(--gd-gray-300);
}

/* link */
.games-column .game-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gd-green-500);
  align-self: flex-start;   /* 👈 aqui está a correção */
  margin-left: 36px;        /* alinha com o texto do time (ícone + gap) */
}

.home-secondary .game-time.live {
  color: #22c55e;
  font-weight: 700;
}

/* LOGO DA LIGA (topo do card) */
.home-secondary .game-meta img {
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}


/* ================= HEADER JOGOS DO DIA ================= */

.games-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.games-header h2 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.games-header .games-subtitle {
  font-size: 12px;
  font-weight: 600;
  color: var(--gd-green-500);
}

/* ===============================
LINHA LATERAL — VERDE
=============================== */

.home-secondary::before,
.home-secondary::after {
  border-color: var(--gd-green-500) !important;
}

@keyframes live-pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

.games-column .game-time.live {
  color: var(--gd-green-500);
  font-weight: 700;
  animation: live-pulse 1.4s ease-in-out infinite;
}

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--gd-green-500);
  animation: live-pulse 1.4s ease-in-out infinite;
}

/* ===============================
WIDGET — TABELA PADRONIZADA
=============================== */

.brasileirao-table {
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ===============================
WIDGET HEADER (PADRÃO)
=============================== */

.widget-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.widget-header h2 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gd-white);
}

/* ===============================
HERO — PADRÃO NOTÍCIA
=============================== */

.page-hero.classificacao-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 48px 0;
  margin-bottom: 48px;
  background-image: url("/static/img/hero.png");
  background-size: cover;
  background-position: center;
  text-align: left;
}

.page-hero.classificacao-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(3, 10, 20, 0.25),
      rgba(3, 10, 20, 0.65),
      rgba(3, 10, 20, 0.92)
    );
}


.page-hero.classificacao-hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-hero.classificacao-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  max-width: 820px;
}

.page-hero.classificacao-hero p {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.standings-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.standings-row {
  display: grid;
  grid-template-columns:
    40px
    1.8fr
    60px
    60px
    60px
    60px
    60px
    60px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
}

.standings-head {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gd-gray-300);
  background: rgba(255,255,255,0.03);
}

.standings-row > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.standings-row .team {
  justify-content: flex-start;
  gap: 10px;
}

.standings-row .team span {
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ===============================
CLASSIFICAÇÃO — ESCUDOS
=============================== */

.standings-row .team img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ===============================
ADS — PADRÃO CLASSIFICAÇÃO
=============================== */

.ads-block {
  margin: 40px 0;
}

.ads-placeholder {
  height: 120px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;

  color: rgba(124, 255, 0, 0.7);
  border: 1px dashed rgba(124, 255, 0, 0.4);

  background: linear-gradient(
    135deg,
    rgba(124,255,0,0.06),
    rgba(0,0,0,0.45)
  );
}

/* ===============================
HOME — ADS PROGRAMÁTICA TOPO
=============================== */

.home-top-ad {
  padding: 32px 0 48px;
  background: linear-gradient(
    to bottom,
    rgba(8, 17, 31, 0.95),
    rgba(8, 17, 31, 0.85)
  );
}

.ads-programmatic {
  position: relative;
}

.ads-label {
  position: absolute;
  top: -18px;
  left: 0;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gd-gray-300);
}

.ads-programmatic-slot {
  height: 250px; /* 👈 destaque real */
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;

  color: rgba(124, 255, 0, 0.75);

  background: linear-gradient(
    135deg,
    rgba(124,255,0,0.10),
    rgba(0,0,0,0.55)
  );

  border: 1px dashed rgba(124,255,0,0.45);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
@media (max-width: 640px) {
  .ads-programmatic-slot {
    height: 180px;
    border-radius: 14px;
    font-size: 12px;
  }
}


/* ===============================
NOTÍCIA — ADS (ESTRUTURA FINAL)
=============================== */

.ads-label {
  display: block;
  margin-bottom: 8px;

  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;

  color: rgba(255,255,255,0.45);
}

/* Base do slot */
.ads-slot {
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;
  border: 1px dashed rgba(124, 255, 0, 0.45);

  background: linear-gradient(
    135deg,
    rgba(124,255,0,0.10),
    rgba(0,0,0,0.55)
  );

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;

  color: rgba(124,255,0,0.75);
}

/* Ad no meio do conteúdo */
.ads-slot-article {
  height: 250px;
  margin: 48px auto;
  max-width: 900px;
}

/* Ad no fim da matéria */
.news-ad-bottom {
  margin: 72px 0 56px;
}

.ads-slot-bottom {
  height: 180px;
}
@media (max-width: 768px) {
  .ads-slot-article {
    height: 180px;
  }

  .ads-slot-bottom {
    height: 140px;
  }
}

/* ===============================
NOTÍCIA — PADRÃO EDITORIAL DE TEXTO
=============================== */

.news-article .editorial-content p {
  margin-bottom: 22px;
  font-size: inherit;
  line-height: inherit;
}

.news-article .editorial-content strong {
  font-weight: 600;
}

/* ======================================================
NOTÍCIA — ISOLAMENTO DO LABEL DE PUBLICIDADE
====================================================== */

.news-article .ads-label {
  position: static;
  margin-bottom: 8px;
}

.card-image img,
.related-image img,
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #0b1626; /* fallback elegante */
}

.mais-lidas-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.mais-lidas-item {
  display: flex;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  transition: all 0.25s ease;
}

.mais-lidas-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateX(4px);
}

.mais-lidas-rank {
  font-size: 28px;
  font-weight: 700;
  opacity: 0.4;
  min-width: 40px;
}

.mais-lidas-content {
  display: flex;
  flex-direction: column;
}

.mais-lidas-category {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 4px;
}

.mais-lidas-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.section-block {
  padding: 60px 0;
  position: relative;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, transparent);
}

.section-internacional {
  background: rgba(255,255,255,0.02);
}

.section-mercado {
  background: rgba(34,197,94,0.04);
}

.section-brasileirao {
  background: rgba(59,130,246,0.04);
}

/* Blindagem universal para qualquer slot */
.ads-programmatic,
.latest-ads,
.home-ads-horizontal {
  width: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.ads-programmatic * ,
.latest-ads * ,
.home-ads-horizontal * {
  max-width: 100% !important;
}

.latest-ads {
  position: sticky;
  top: 100px;
}

.home-ads-horizontal {
  padding: 40px 0;
  text-align: center;
}

.page {
  overflow-x: hidden;
}

@media (max-width: 1024px) {
  .brasileirao-table {
    display: none;
  }
}

/* =========================
   RESET ISOLADO DA PÁGINA
========================= */

.article-page .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.3), rgba(0,0,0,.75));
}


}

/* GRID */
.article-page .content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    margin-top: 80px;
}

.article-page .content {
    font-size: 21px;
    line-height: 1.9;
    color: #0f172a;
}

.article-page .sidebar {
    position: sticky;
    top: 120px;
}

/* MOBILE */
@media(max-width:1100px){
    .article-page .header-card {
        width: 100%;
        margin-top: -80px;
        padding: 40px 28px;
    }

    .article-page .content-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   NOTÍCIA NOVO LAYOUT
========================= */

.header-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    margin-bottom: 40px;
}

.news-category {
    font-size: 13px;
    font-weight: 700;
    color: #16a34a;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.news-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.news-meta {
    font-size: 14px;
    color: #64748b;
}

/* GRID */

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

.content {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

/* TIPOGRAFIA CONTEÚDO */

.content p {
    font-size: 19px;
    line-height: 1.8;
    color: #1e293b;
    margin-bottom: 24px;
}

.content h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 40px 0 20px;
    color: #0f172a;
}

/* SIDEBAR */

.sidebar {
    position: sticky;
    top: 120px;
}

/* TAGS */

.news-tags {
    margin-top: 40px;
}

.news-tags span {
    display: inline-block;
    background: #f1f5f9;
    color: #0f172a;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* RESPONSIVO */

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

    .sidebar {
        position: relative;
        top: auto;
    }

    .news-title {
        font-size: 32px;
    }
}

/* ===================================
   OVERRIDE APENAS PARA NOTÍCIA
=================================== */

.page-noticia {
  background-color: #f5f7fa;
  color: #0f172a;
}

/* ========================= */
/* ARTICLE PAGE              */
/* ========================= */

.article-container {
    max-width: 1100px;
    margin: -80px auto 0;
    padding: 0 20px 60px;
    position: relative;
    box-sizing: border-box;
}


.article-header {
  background: #f3f4f6;
  padding: 60px;
  border-radius: 24px;
  margin-top: -120px;
  position: relative;
  z-index: 2;
}

.article-label {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #7b8794;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.article-category {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-title {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 25px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #6b7280;
}

.article-meta a {
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.article-meta a:hover {
  color: #2563eb;
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.article-date {
  color: #64748b; /* cinza editorial elegante */
  font-weight: 500;
}
.article-content {
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    font-size: 18px;
    line-height: 1.8;
    color: #1e293b;
}

.article-content h2,
.article-content h3 {
    margin-top: 30px;
    font-weight: 700;
    color: #333 !important;
    line-height: 1.2 !important;
}

.article-content p {
    margin-bottom: 22px;
    color: #1e293b;
}

.article-content strong {
    font-weight: 700;
}

.article-content a {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 768px) {
  .article-content {
    padding: 28px 20px;
  }

  .article-header {
    padding: 28px 20px;
    margin-top: -60px;
  }
}
/* ============================= */
/* IMAGENS DO CONTEÚDO */
/* ============================= */

.article-content img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 32px auto;
  border-radius: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .article-content img {
    max-width: 100%;
    margin: 20px 0;
    border-radius: 10px;
  }
}

.article-sidebar {
  position: relative;
}
.article-tags {
    margin-top: 40px;
}

.article-tags span {
    display: inline-block;
    background: #0f172a;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.article-players {
    margin-top: 60px;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
    margin-top: 20px;
}

.player-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-radius: 14px;
    background: #f8fafc;
    text-decoration: none;
    color: #0f172a;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
}

.player-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.player-card img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.player-card span {
    font-size: 13px;
    color: #64748b;
}

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

    .article-sidebar {
        position: relative;
        top: auto;
    }
}

.article-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

/* ========================= */
/* FIX FINAL ARTIGO */
/* ========================= */

.article-content {
    background: #ffffff !important;
    opacity: 1 !important;
    position: relative;
    z-index: 5;
}

.article-content * {
    opacity: 1 !important;
}

.article-grid {
    position: relative;
    z-index: 5;
}

/* ========================= */
/* RECOMENDADAS */
/* ========================= */

.article-recommended {
    margin-top: 40px;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.recommended-card {
    text-decoration: none;
    color: inherit;
}

.recommended-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
}

.recommended-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.recommended-title {
    margin-top: 10px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
}

/* ===================== */
/* JOGADORES */
/* ===================== */

.article-players {
    margin: 40px 0;
}

.players-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.player-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    background: #f1f5f9;
    text-decoration: none;
    color: #0f172a;
    transition: all 0.2s ease;
}

.player-card:hover {
    background: #e2e8f0;
}

.player-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: #cbd5e1;
    flex-shrink: 0;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-name {
    font-weight: 700;
    font-size: 16px;
}

.player-team {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #475569;
    margin-top: 4px;
}

.player-team img {
    width: 18px;
    height: 18px;
}

.player-age {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

.player-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.player-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.related-player {
    margin-top: 40px;
}

.related-player h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.related-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 10px;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-title {
    margin-top: 10px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
}

.hub-brasileirao {
  padding: 60px 0;
}

.hub-section {
  margin-bottom: 80px;
}

.hub-intro {
  max-width: 800px;
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.tabela-wrapper {
  overflow-x: auto;
}

.jogos-grid,
.artilharia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.jogo-card,
.artilheiro-card {
  background: #111;
  padding: 20px;
  border-radius: 12px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* HERO BRASILEIRÃO */

.brasileirao-hero {
  position: relative;
  background: url("/static/img/brasileirao-2026-giro-desportivo-hero.png") center/cover no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  color: #fff;
}

.hero-content h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.hero-meta {
  color: #fff;
}

/* GRID PRINCIPAL */

.brasileirao-grid {
  display: grid;
  grid-template-columns: 2fr 1.4fr;
  gap: 60px;
  margin-top: 60px;
}

.classificacao-card {
  width: 100%;
}

/* COLUNA NOTÍCIAS */

.noticia-row {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 20px;
}

.noticia-row img {
  width: 170px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
}

.noticia-info h3 {
  font-size: 1.05rem;
  line-height: 1.45;
  margin-bottom: 8px;
}

.meta {
  font-size: .8rem;
  opacity: .6;
}

/* COLUNA CLASSIFICAÇÃO */

.classificacao-card {
  background: rgba(255,255,255,0.03);
  padding: 28px;
  border-radius: 18px;
  position: sticky;
  top: 120px;
}

.classificacao-card h2 {
  margin-bottom: 20px;
}

/* RESPONSIVO */

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

  .classificacao-card {
    position: relative;
    top: 0;
  }
}

.hub-editorial {
  margin-top: 100px;
  max-width: 900px;
}

.hub-editorial h2 {
  margin: 60px 0 20px;
}

.hub-editorial h3 {
  margin: 30px 0 10px;
}

.hub-editorial p,
.hub-editorial li {
  opacity: 0.9;
  line-height: 1.7;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  font-size: .9rem;
  opacity: .7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-card {
  background: rgba(255,255,255,0.04);
  padding: 35px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transition: all .3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.45);
}

.stat-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.stat-escudo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: .9rem;
  opacity: .7;
}

.faq-section {
  display: block;
}

.faq-box {
  background: rgba(255,255,255,0.04);
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.faq-box h2 {
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.faq-item p {
  opacity: .85;
  line-height: 1.7;
}

.classificacao-title {
  margin-bottom: 25px;
}

/* GRID DEFINIDO COM COLUNAS FIXAS */
.standings-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.standings-row {
  display: grid;
  grid-template-columns: 
    50px        /* posição */
    1.6fr       /* equipe */
    70px        /* pontos */
    70px        /* jogos */
    70px        /* saldo */
    110px;      /* forma */
  align-items: center;
  padding: 16px 20px;
  border-radius: 16px;
}

.standings-head {
  background: rgba(255,255,255,0.04);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .6;
}

/* COLUNAS */
.col-pos {
  text-align: center;
  font-weight: 600;
}

.col-team {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.col-team img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.col-num {
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.col-forma {
  display: flex;
  justify-content: center;
  gap: 6px;
}

/* FORMA */
.form-win,
.form-draw,
.form-loss {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.form-win { background: #22c55e; }
.form-draw { background: #facc15; }
.form-loss { background: #ef4444; }

.form-win,
.form-draw,
.form-loss {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

/* FOOTER */
.classificacao-footer {
  margin-top: 20px;
}

.hub-info-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}

.hub-stats {
  margin-top: 120px;
}

.faq-section {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .hub-info-grid {
    grid-template-columns: 1fr;
  }
}

.hub-info-wrapper {
  width: 100%;
  margin-top: 120px;
}

.share-wrapper {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
}

.share-label {
    display: block;
    font-weight: 600;
    margin-bottom: 14px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #64748b;
}

.share-buttons {
    display: flex;
    gap: 14px;
    align-items: center;
}

.share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    transition: all .25s ease;
}

.share-btn svg {
    width: 18px;
    height: 18px;
    fill: #1e293b;
    transition: fill .25s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

/* CORES OFICIAIS */
.share-btn.facebook:hover {
    background: #1877F2;
}
.share-btn.twitter:hover {
    background: #000000;
}
.share-btn.whatsapp:hover {
    background: #25D366;
}
.share-btn.linkedin:hover {
    background: #0A66C2;
}

.share-btn:hover svg {
    fill: #ffffff;
}

.internal-link {
    color: #1d4ed8;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.internal-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: #1d4ed8;
    opacity: 0.25;
    transition: opacity 0.2s ease;
}

.internal-link:hover::after {
    opacity: 1;
}

/* ===== AUTHOR CARD PREMIUM V2 ===== */

.author-card {
  margin-top: 30px;
  display: flex;
  gap: 30px;
  align-items: center;
  background: #f8fafc;
  border-radius: 20px;
  padding: 40px;
}

.author-card:hover {
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-3px);
}

.author-avatar {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  flex-shrink: 0;
}

.author-content h3 {
  margin-bottom: 10px;
}

.author-content p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 600px;
}

.author-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #0f172a;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
}

.author-btn:hover {
  background: #2563eb;
}

/* RESPONSIVO */

@media (max-width: 768px) {
  .author-card {
    flex-direction: column;
    text-align: center;
  }

  .article-container {
  margin-top: -40px;
}

  .author-avatar img {
    width: 100px;
    height: 100px;
  }
}

.meta-author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.author-link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}



.author-link:hover {
  color: #2563eb;
}

.meta-separator {
  color: #9ca3af;
}

/* ===== VERIFIED BADGE ===== */

.verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #1da1f2;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  margin-left: 6px;
  position: relative;
  top: -1px;
}

.verified-badge::after {
  content: "✓";
  color: white;
  font-size: 11px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-title {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  max-width: 900px;
}

/* ============================= */
/* MOBILE AJUSTADO DEFINITIVO */
/* ============================= */

@media (max-width: 768px) {

  .article-header {
    padding: 28px 20px;
    margin-top: -60px;
    border-radius: 18px;
  }

  .article-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .article-label {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .article-meta {
    font-size: 14px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .article-content {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .author-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }

  .author-avatar {
    width: 110px;
    height: 110px;
    margin-bottom: 18px;
  }

 /* AUTHOR PAGE */

.author-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  margin-top: 60px;
}

.author-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.author-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: center;
}

.author-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.author-role {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 20px;
}

.author-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.author-social a {
  text-decoration: none;
  font-weight: 600;
  color: #0f172a;
}

.author-metrics strong {
  font-size: 22px;
  display: block;
}

.author-main h2 {
  margin-bottom: 20px;
}

.specialty-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.specialty-grid span {
  background: #f1f5f9;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 24px;
}

.post-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.post-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.post-content {
  padding: 16px;
}

.post-category {
  font-size: 12px;
  color: #64748b;
  display: block;
  margin-bottom: 6px;
}

.post-date {
  font-size: 12px;
  color: #94a3b8;
}

/* MOBILE */

@media (max-width: 900px) {
  .author-layout {
    grid-template-columns: 1fr;
  }

  .author-sidebar {
    position: relative;
    top: 0;
  }
}

.author-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  margin-top: 60px;
}

.author-profile-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  text-align: center;
}

.author-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.author-position {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 20px;
}

.author-follow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-social {
  padding: 8px 12px;
  border-radius: 8px;
  background: #f1f5f9;
  text-decoration: none;
  font-weight: 600;
  color: #0f172a;
  transition: 0.2s;
}

.btn-social:hover {
  background: #e2e8f0;
}

.author-history {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.author-long-bio p {
  margin-bottom: 18px;
  line-height: 1.7;
  color: #334155;
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0 30px;
}

.specialty-tags span {
  background: #e2e8f0;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.article-item {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.article-thumb img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}

.article-info h4 {
  margin: 4px 0;
  font-size: 16px;
}

.author-article-category {
  font-size: 12px;
  color: #64748b;
}

.author-article-date {
  font-size: 12px;
  color: #94a3b8;
}

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

.author-wrapper {
  background: #f8fafc;
  padding: 60px 0;
}

.author-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  padding: 0 30px;
}

.author-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.author-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.author-role {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 20px;
}

.author-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.author-social a {
  text-decoration: none;
  background: #e2e8f0;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 600;
  color: #0f172a;
}

.author-count strong {
  font-size: 20px;
  display: block;
}

.author-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.author-section {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.author-bio p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #334155;
}

.author-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.author-tags span {
  background: #e2e8f0;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.author-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.author-item {
  display: flex;
  gap: 15px;
  padding: 10px;
  border-radius: 12px;
  background: #f1f5f9;
  text-decoration: none;
  color: inherit;
  transition: 0.2s;
}

.author-item:hover {
  background: #e2e8f0;
}

.author-item img {
  width: 110px;
  height: 75px;
  object-fit: cover;
  border-radius: 8px;
}

.author-item-category {
  font-size: 12px;
  color: #64748b;
}

.author-item-date {
  font-size: 12px;
  color: #94a3b8;
}

.page-author {
  background: #f8fafc;
  padding: 60px 0;
}

.page-author .author-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
}

.page-author .author-profile-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
}

.page-author .author-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
}

.page-author .article-item {
  display: flex;
  gap: 16px;
  background: #fff;
}

@media (max-width: 900px) {
  .author-container {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
   GIRO DESPORTIVO — AUTHOR PAGE (ISOLADO FINAL)
====================================================== */

.page.gd-author-page {
  background: #f8fafc;
  padding: 80px 0;
}

.page.gd-author-page .gd-author-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  padding: 0 24px;
}

/* SIDEBAR */

.page.gd-author-page .gd-author-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  text-align: center;
  position: sticky;
  top: 120px;
}

.page.gd-author-page .gd-author-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

.page.gd-author-page .gd-author-name {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
}

.page.gd-author-page .gd-author-role {
  color: #64748b;
  font-size: 14px;
  margin: 12px 0 20px;
}

/* BOXES */

.page.gd-author-page .gd-author-bio-box,
.page.gd-author-page .gd-author-specialties-box,
.page.gd-author-page .gd-author-posts-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

/* POSTS */

.page.gd-author-page .gd-author-post-item {
  display: flex;
  gap: 16px;
  background: #f8fafc;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
}

.page.gd-author-page .gd-author-post-thumb {
  width: 130px;
  height: 85px;
  object-fit: cover;
  border-radius: 10px;
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .page.gd-author-page .gd-author-layout {
    grid-template-columns: 1fr;
  }

  .page.gd-author-page .gd-author-card {
    position: relative;
    top: 0;
  }
}

/* ======================================================
   X AUTHOR PAGE — TOTALMENTE ISOLADO
====================================================== */

.x-author-page {
  background: #ffffff;
  padding: 100px 0;
  font-family: "Inter", system-ui, sans-serif;
  color: #0f172a;
}

/* GRID */

.x-author-page .x-author-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
}

/* SIDEBAR */

.x-author-profile {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  text-align: center;
  position: sticky;
  top: 140px;
}

.x-author-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 24px;
}

.x-author-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.x-author-role {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 24px;
}

.x-author-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.x-author-socials a {
  text-decoration: none;
  font-weight: 600;
  color: #0f172a;
  transition: 0.2s ease;
}

.x-author-socials a:hover {
  opacity: 0.6;
}

.x-author-metrics strong {
  font-size: 28px;
  display: block;
}

/* MAIN */

.x-author-main {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.x-author-section {
  background: #ffffff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.x-author-section h2,
.x-author-section h3 {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 700;
}

.x-author-bio p {
  line-height: 1.8;
  margin-bottom: 18px;
  color: #334155;
}

/* TAGS */

.x-author-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.x-author-tags span {
  background: #f1f5f9;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* POSTS */

.x-author-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.x-author-post {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  text-decoration: none;
  background: #f8fafc;
  padding: 18px;
  border-radius: 18px;
  transition: all 0.25s ease;
}

.x-author-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.x-author-post-image img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

.x-author-post-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
}

.x-author-post-title {
  margin: 6px 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.x-author-post-date {
  font-size: 12px;
  color: #94a3b8;
}

/* RESPONSIVO */

@media (max-width: 1000px) {
  .x-author-page .x-author-shell {
    grid-template-columns: 1fr;
  }

  .x-author-profile {
    position: relative;
    top: 0;
  }

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

/* ============================= */
/* FIX HERO NOTÍCIA DEFINITIVO */
/* ============================= */

.article-hero {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.6));
}

/* ============================= */
/* MOBILE FIX DEFINITIVO NOTÍCIA */
/* ============================= */

@media (max-width: 768px) {

  .article-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .article-content {
    padding: 24px 18px !important;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .article-header {
    padding: 24px 18px !important;
    margin-top: -50px !important;
    border-radius: 16px;
  }

}

.article-content img,
.article-content iframe,
.article-content table {
  max-width: 100%;
  height: auto;
}

html, body {
  overflow-x: hidden;
}

@media (max-width: 768px) {

  .article-hero {
      height: 260px;
  }

  .article-container {
      margin: -40px auto 0;
      padding: 0 16px 40px;
      max-width: 100%;
  }

}

/* ======================================================
   GIRO DESPORTIVO — NOTÍCIA (ISOLADO LIMPO)
====================================================== */

.gd-article {
  background: #f5f7fa;
  padding-bottom: 80px;
}

/* HERO */
.gd-article .article-hero {
  height: 460px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.gd-article .article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.6));
}

/* CONTAINER */
.gd-article .article-container {
  max-width: 1100px;
  margin: -120px auto 0;
  padding: 0 20px 60px;
  position: relative;
  z-index: 2;
}

/* HEADER CARD */
.gd-article .article-header {
  background: #ffffff;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

/* GRID */
.gd-article .article-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  margin-top: 50px;
}

/* CONTENT */
.gd-article .article-content {
  background: #ffffff;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

/* SIDEBAR */
.gd-article .article-sidebar {
  position: sticky;
  top: 120px;
}

/* MOBILE */
@media (max-width: 1024px) {

  .gd-article .article-grid {
    grid-template-columns: 1fr;
  }

  .gd-article .article-sidebar {
    position: relative;
    top: auto;
  }

}

@media (max-width: 768px) {

  .gd-article .article-hero {
    height: 260px;
  }

  .gd-article .article-container {
    margin: -60px auto 0;
    padding: 0 16px 40px;
  }

  .gd-article .article-header,
  .gd-article .article-content {
    padding: 28px 20px;
    border-radius: 18px;
  }

}
