/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --c-brand: #d32027;
  --c-brand-dark: #a8181d;

  --c-montes-claros: #d32027;
  --c-regiao: #3949ab;
  --c-politica: #1a2b4c;
  --c-policial: #4a0e11;
  --c-esportes: #0a7d3c;
  --c-cultura: #e07b1e;
  --c-utilidade: #0f8a8a;
  --c-celebridades: #9c1b6b;
  --c-descubra: #b7891a;
  --c-concursos: #1565c0;
  --c-mundo: #37474f;
  --c-loterias: #6a1b9a;
  --c-horoscopo: #ad1457;
  --c-clima: #0284c7;
  --c-seca: #a1421c;
  --c-rodovias: #455a64;
  --c-whatsapp: #0f7a4a;
  --c-whatsapp-dark: #0b5c38;
  --c-ofertas: #ff6f00;

  --c-geral: #2e2e2e;
  --c-educacao: #6a3fa0;

  --c-diversao: #9c1b6b;
  --c-cinema: #3a2463;
  --c-turismo: #0d8a6e;

  --c-negocios: #6b4423;
  --c-farmaceutico: #00838f;
  --c-mineracao: #795548;
  --c-agronegocio: #33691e;
  --c-industria: #b23c17;

  --c-veiculos: #263238;
  --c-saude: #0d5c75;
  --c-minas: #7a5c1e;

  --c-instagram: #c1327a;

  --color-text: #1c1c1c;
  --color-text-light: #666;
  --color-bg: #f2f2f2;
  --color-white: #ffffff;
  --color-border: #e2e2e2;

  --font-heading: 'Merriweather', serif;
  --font-body: 'Roboto', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

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

/* ===== TOPBAR ===== */
.topbar {
  background: #111111;
  color: #cfcfcf;
  font-size: 0.76rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 32px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-links > a {
  opacity: 0.85;
  transition: opacity 0.2s;
}

.topbar-links > a:hover {
  opacity: 1;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 7px;
}

.social-icons a {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}

.social-icons a:hover {
  background: var(--c-brand);
  transform: translateY(-1px);
}

.social-icons a.social-instagram {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
}

.social-icons a.social-instagram:hover {
  filter: brightness(1.15);
}

/* ===== HEADER ===== */
.main-header {
  background: var(--c-brand);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-left,
.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.header-right {
  justify-content: flex-end;
}

.header-badge {
  display: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 4px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.5px;
}

.logo-highlight {
  font-weight: 900;
}

.btn-ghost,
.btn-solid {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 4px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}

.btn-solid {
  background: #fff;
  color: var(--c-brand);
}

.btn-solid:hover {
  opacity: 0.9;
}

.search-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
}

/* ===== NAV SECUNDÁRIA ===== */
.main-nav {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
}

.nav-list a {
  display: block;
  padding: 13px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, background 0.2s;
  color: #333;
}

.nav-list a:hover {
  background: #f7f7f7;
}

.nav-ultimas { color: var(--c-brand) !important; }
.nav-ultimas:hover { border-color: var(--c-brand); }

.nav-montes-claros {
  color: #fff !important;
  background: var(--c-montes-claros);
}
.nav-montes-claros:hover {
  background: var(--c-brand-dark);
}

.nav-regiao { color: var(--c-regiao) !important; }
.nav-regiao:hover { border-color: var(--c-regiao); }

.nav-dropdown {
  position: relative;
}

.nav-caret {
  font-size: 0.6rem;
  margin-left: 2px;
}

.submenu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--color-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 0 0 6px 6px;
  z-index: 50;
  overflow: hidden;
}

.nav-dropdown:hover .submenu,
.nav-dropdown:focus-within .submenu {
  display: flex;
}

.submenu li a {
  color: #333;
  border-bottom: none;
  padding: 11px 16px;
}

.submenu li a:hover {
  background: #f0f2fa;
}

/* ===== MOBILE QUICK NAV (4 categorias + Mais) ===== */
.mobile-quick-nav {
  display: none;
}

.mais-toggle {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #333;
  padding: 12px 10px;
  cursor: pointer;
  white-space: nowrap;
}

.nav-politica { color: var(--c-politica) !important; }
.nav-politica:hover { border-color: var(--c-politica); }

.nav-policial { color: var(--c-policial) !important; }
.nav-policial:hover { border-color: var(--c-policial); }

.nav-esportes { color: var(--c-esportes) !important; }
.nav-esportes:hover { border-color: var(--c-esportes); }

.nav-cultura { color: var(--c-cultura) !important; }
.nav-cultura:hover { border-color: var(--c-cultura); }

.nav-utilidade { color: var(--c-utilidade) !important; }
.nav-utilidade:hover { border-color: var(--c-utilidade); }

.nav-celebridades { color: var(--c-celebridades) !important; }
.nav-celebridades:hover { border-color: var(--c-celebridades); }

.nav-descubra { color: var(--c-descubra) !important; }
.nav-descubra:hover { border-color: var(--c-descubra); }

.nav-concursos { color: var(--c-concursos) !important; }
.nav-concursos:hover { border-color: var(--c-concursos); }

.nav-mundo { color: var(--c-mundo) !important; }
.nav-mundo:hover { border-color: var(--c-mundo); }

.nav-rodovias { color: var(--c-rodovias) !important; }
.nav-rodovias:hover { border-color: var(--c-rodovias); }

.nav-educacao { color: var(--c-educacao) !important; }
.nav-educacao:hover { border-color: var(--c-educacao); }

.nav-saude { color: var(--c-saude) !important; }
.nav-saude:hover { border-color: var(--c-saude); }

.nav-minas { color: var(--c-minas) !important; }
.nav-minas:hover { border-color: var(--c-minas); }

.nav-cinema { color: var(--c-cinema) !important; }
.nav-cinema:hover { border-color: var(--c-cinema); }

.nav-turismo { color: var(--c-turismo) !important; }
.nav-turismo:hover { border-color: var(--c-turismo); }

.nav-horoscopo { color: var(--c-horoscopo) !important; }
.nav-horoscopo:hover { border-color: var(--c-horoscopo); }

.nav-farmaceutico { color: var(--c-farmaceutico) !important; }
.nav-farmaceutico:hover { border-color: var(--c-farmaceutico); }

.nav-mineracao { color: var(--c-mineracao) !important; }
.nav-mineracao:hover { border-color: var(--c-mineracao); }

.nav-agronegocio { color: var(--c-agronegocio) !important; }
.nav-agronegocio:hover { border-color: var(--c-agronegocio); }

.nav-industria { color: var(--c-industria) !important; }
.nav-industria:hover { border-color: var(--c-industria); }

.nav-geral { color: var(--c-geral) !important; }
.nav-geral:hover { border-color: var(--c-geral); }

.nav-diversao { color: var(--c-diversao) !important; }
.nav-diversao:hover { border-color: var(--c-diversao); }

.nav-negocios { color: var(--c-negocios) !important; }
.nav-negocios:hover { border-color: var(--c-negocios); }

.nav-ofertas {
  color: #fff !important;
  background: var(--c-ofertas);
}
.nav-ofertas:hover { background: #e56300; }

/* ===== AD BANNERS ===== */
.ad-banner {
  height: 90px;
  background: repeating-linear-gradient(45deg, #e8e8e8, #e8e8e8 10px, #ddd 10px, #ddd 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.8rem;
  letter-spacing: 1px;
  border-radius: 4px;
  margin: 20px 0;
}

.ad-banner-small {
  margin: 24px 0;
}

.ad-banner-sidebar {
  height: 250px;
  margin: 0 0 20px;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  padding: 0 16px 40px;
}

/* ===== HERO ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 20px;
}

.hero-poster {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.hero-poster img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.hero-poster-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 60px 26px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0) 100%);
}

.poster-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.hero-poster-overlay h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-poster-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.post-meta {
  font-size: 0.76rem;
  color: #888;
  display: flex;
  gap: 6px;
}

.post-meta-light {
  color: #e2e2e2;
}

.hero-side-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--color-white);
  border-radius: 6px;
  padding: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.hero-side-item {
  display: flex;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.hero-side-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hero-side-item img {
  width: 100px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.tag-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}

.tag-white { color: #fff; }
.tag-montes-claros, .tag-ultimas { color: var(--c-montes-claros); }
.tag-regiao { color: var(--c-regiao); }
.tag-politica { color: var(--c-politica); }
.tag-policial { color: var(--c-policial); }
.tag-esportes { color: var(--c-esportes); }
.tag-cultura { color: var(--c-cultura); }
.tag-utilidade { color: var(--c-utilidade); }
.tag-celebridades { color: var(--c-celebridades); }
.tag-descubra { color: var(--c-descubra); }
.tag-concursos { color: var(--c-concursos); }
.tag-mundo { color: var(--c-mundo); }
.tag-loterias { color: var(--c-loterias); }
.tag-horoscopo { color: var(--c-horoscopo); }
.tag-clima { color: var(--c-clima); }
.tag-seca { color: var(--c-seca); }
.tag-rodovias { color: var(--c-rodovias); }
.tag-ofertas { color: var(--c-ofertas); }
.tag-veiculos { color: var(--c-veiculos); }
.tag-turismo { color: var(--c-turismo); }
.tag-farmaceutico { color: var(--c-farmaceutico); }
.tag-mineracao { color: var(--c-mineracao); }
.tag-agronegocio { color: var(--c-agronegocio); }
.tag-industria { color: var(--c-industria); }
.tag-saude { color: var(--c-saude); }

.hero-side-text h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

.hero-side-item:hover h3 {
  color: var(--c-brand);
}

/* ===== CONTENT GRID ===== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 26px;
  align-items: start;
  margin-top: 24px;
}

.content-columns {
  display: flex;
  flex-direction: column;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 3px solid #ddd;
  padding-bottom: 8px;
  margin-bottom: 18px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-header.small {
  margin-bottom: 12px;
  padding-bottom: 6px;
}

.section-header.small h2 {
  font-size: 1.05rem;
}

.ver-mais {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-light);
}

.ver-mais:hover {
  text-decoration: underline;
}

.header-montes-claros { border-color: var(--c-montes-claros); }
.header-montes-claros h2 { color: var(--c-montes-claros); }

.header-regiao { border-color: var(--c-regiao); }
.header-regiao h2 { color: var(--c-regiao); }

.header-politica { border-color: var(--c-politica); }
.header-politica h2 { color: var(--c-politica); }

.header-esportes { border-color: var(--c-esportes); }
.header-esportes h2 { color: var(--c-esportes); }

.header-cultura { border-color: var(--c-cultura); }
.header-cultura h2 { color: var(--c-cultura); }

.header-utilidade { border-color: var(--c-utilidade); }
.header-utilidade h2 { color: var(--c-utilidade); }

.header-celebridades { border-color: var(--c-celebridades); }
.header-celebridades h2 { color: var(--c-celebridades); }

.header-descubra { border-color: var(--c-descubra); }
.header-descubra h2 { color: var(--c-descubra); }

.header-concursos { border-color: var(--c-concursos); }
.header-concursos h2 { color: var(--c-concursos); }

.header-mundo { border-color: var(--c-mundo); }
.header-mundo h2 { color: var(--c-mundo); }

.header-loterias { border-color: var(--c-loterias); }
.header-loterias h2 { color: var(--c-loterias); }

.header-horoscopo { border-color: var(--c-horoscopo); }
.header-horoscopo h2 { color: var(--c-horoscopo); }

.header-ofertas { border-color: var(--c-ofertas); }
.header-ofertas h2 { color: var(--c-ofertas); }

.header-veiculos { border-color: var(--c-veiculos); }
.header-veiculos h2 { color: var(--c-veiculos); }

.header-turismo { border-color: var(--c-turismo); }
.header-turismo h2 { color: var(--c-turismo); }

.header-negocios { border-color: var(--c-negocios); }
.header-negocios h2 { color: var(--c-negocios); }

.header-saude { border-color: var(--c-saude); }
.header-saude h2 { color: var(--c-saude); }

.evergreen-pill {
  display: inline-block;
  background: var(--c-descubra);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 3px 9px;
  border-radius: 20px;
  vertical-align: middle;
  margin-left: 8px;
}

/* ===== SECTION BLOCKS ===== */
.section-block {
  margin-bottom: 32px;
}

.section-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.news-card {
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

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

.news-card-body {
  padding: 14px;
}

.news-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.news-card-body h3 a:hover {
  color: var(--c-brand);
}

.news-card-highlight {
  color: #fff;
}

.news-card-highlight .news-card-body h3 a {
  color: #fff;
}

.highlight-montes-claros { background: var(--c-montes-claros); }
.highlight-politica { background: var(--c-politica); }

/* News horizontal list */
.news-list-horizontal {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-card-horizontal {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

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

.news-card-text {
  padding: 14px 16px 14px 0;
}

.news-card-text h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

.news-card-text h3 a:hover {
  color: var(--c-brand);
}

.news-card-text p {
  color: var(--color-text-light);
  font-size: 0.87rem;
  margin-bottom: 8px;
}

/* ===== SECTION SPLIT (poster + list) ===== */
.section-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
}

.split-poster {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.split-poster img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.split-poster .hero-poster-overlay {
  padding: 50px 20px 18px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split-item {
  display: flex;
  gap: 12px;
  background: var(--color-white);
  border-radius: 6px;
  padding: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  flex: 1;
}

.split-item img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.split-item h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.split-item:hover h4 {
  color: var(--c-brand);
}

/* ===== MINI COLUMNS ===== */
.mini-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 6px;
}

.mini-card {
  display: block;
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  margin-bottom: 12px;
}

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

.mini-card .tag-text {
  margin: 10px 12px 2px;
}

.mini-card h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 0 12px 12px;
}

.mini-card:hover h4 {
  color: var(--c-brand);
}

.mini-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-links li {
  position: relative;
  padding-left: 14px;
  font-size: 0.85rem;
}

.mini-links li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #aaa;
}

.mini-links a:hover {
  color: var(--c-brand);
  text-decoration: underline;
}

/* ===== SIDEBAR ===== */
.sidebar {
  display: flex;
  flex-direction: column;
}

.sidebar-box {
  background: var(--color-white);
  border-radius: 6px;
  padding: 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 3px solid var(--c-brand);
  padding-bottom: 10px;
  margin-bottom: 14px;
}

/* Mais Lidas dark widget */
.maislidas-box {
  background: #1a1a1a;
  padding: 0;
  overflow: hidden;
}

.maislidas-tabs {
  display: flex;
  border-bottom: 1px solid #333;
}

.tab-btn {
  flex: 1;
  background: none;
  border: none;
  color: #999;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 8px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.tab-btn.active,
.tab-btn:hover {
  color: #fff;
  border-color: var(--c-brand);
}

.mais-lidas-list {
  padding: 6px 18px 18px;
}

.mais-lidas-list li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #2c2c2c;
}

.mais-lidas-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mais-lidas-list li:first-child {
  padding-top: 8px;
}

.ranking-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--c-brand);
  min-width: 26px;
  line-height: 1;
}

.mais-lidas-list a {
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
  color: #e8e8e8;
}

.mais-lidas-list a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Newsletter */
.newsletter-text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 0.88rem;
  font-family: var(--font-body);
}

.newsletter-form button {
  background: var(--c-brand);
  color: #fff;
  border: none;
  padding: 11px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: var(--c-brand-dark);
}

/* Vídeos */
.video-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.video-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.video-item img {
  width: 90px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.video-item span {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.3;
}

.video-item:hover span {
  color: var(--c-brand);
}

/* ===== FOOTER ===== */
.main-footer {
  background: #0d0d0d;
  color: #ccc;
  padding: 40px 0 0;
  margin-top: 10px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 30px;
}

.footer-logo {
  font-size: 1.7rem;
  margin-bottom: 12px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #aaa;
}

.footer-col h4 {
  font-family: var(--font-body);
  color: #fff;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: #bbb;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--c-brand);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  font-size: 0.76rem;
  color: #888;
  text-align: center;
}

/* ===== SERVIÇOS ESSENCIAIS (Tempo / Seca / Rodovias) ===== */
.essential-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.essential-block {
  display: flex;
  gap: 12px;
  background: var(--color-white);
  border-radius: 6px;
  padding: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  border-top: 4px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s;
}

.essential-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

.essential-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.essential-text h3 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin: 2px 0 6px;
}

.essential-text p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.35;
  margin-bottom: 8px;
}

.essential-link {
  font-size: 0.78rem;
  font-weight: 700;
}

.essential-clima { border-top-color: var(--c-clima); }
.essential-clima .essential-link { color: var(--c-clima); }

.essential-seca { border-top-color: var(--c-seca); }
.essential-seca .essential-link { color: var(--c-seca); }

.essential-rodovias {
  border-top: 4px dashed var(--c-rodovias);
}
.essential-rodovias .essential-link { color: var(--c-rodovias); }

/* ===== CHAMADAS WHATSAPP ===== */
.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--c-whatsapp);
  border-radius: 6px;
  padding: 16px 20px;
  margin: 20px 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  transition: background 0.2s;
}

.whatsapp-cta:hover {
  background: var(--c-whatsapp-dark);
}

.whatsapp-cta-inline {
  margin: 8px 0 28px;
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-cta-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.whatsapp-cta-text strong {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.whatsapp-cta-text span {
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
}

.whatsapp-btn {
  background: #fff;
  color: var(--c-whatsapp-dark);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 10px 18px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== PLACARES & CLASSIFICAÇÃO ===== */
.scoreboard-block {
  background: var(--color-white);
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  padding: 18px 20px 20px;
}

.scoreboard-block .section-header {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 16px;
}

.scoreboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
}

.scoreboard-matches h4,
.scoreboard-table h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-light);
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}

.match-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
}

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

.match-status {
  font-size: 0.7rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  min-width: 78px;
}

.match-status-next {
  color: var(--c-esportes);
}

.match-teams {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.match-team {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  flex: 1;
}

.match-teams .match-team:last-child {
  text-align: right;
}

.match-score {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--c-esportes);
  white-space: nowrap;
  padding: 0 6px;
}

.match-score em {
  font-style: normal;
  font-size: 0.85rem;
  color: #bbb;
  margin: 0 2px;
}

.match-score-next {
  font-size: 1rem;
  color: #bbb;
}

.scoreboard-table table {
  width: 100%;
  border-collapse: collapse;
}

.scoreboard-table th {
  background: var(--c-esportes);
  color: #fff;
  font-size: 0.72rem;
  text-transform: uppercase;
  padding: 8px 10px;
  text-align: left;
}

.scoreboard-table th:not(:first-child),
.scoreboard-table td:not(:first-child) {
  text-align: center;
}

.scoreboard-table td {
  padding: 8px 10px;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--color-border);
}

.scoreboard-table td:first-child {
  font-weight: 900;
  color: var(--color-text-light);
}

.scoreboard-table tr.rank-1 td:first-child { color: #d4af37; }
.scoreboard-table tr.rank-2 td:first-child { color: #9a9a9a; }
.scoreboard-table tr.rank-3 td:first-child { color: #b5651d; }

/* ===== OFERTAS ===== */
.offers-block {
  background: #fff8f0;
  border: 1px solid #ffe0b8;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 32px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.offer-card {
  display: block;
  background: var(--color-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.15s;
}

.offer-card:hover {
  transform: translateY(-3px);
}

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

.offer-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--c-ofertas);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 4px 9px;
  border-radius: 3px;
}

.offer-body {
  padding: 12px 14px 14px;
}

.offer-body h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 6px 0 8px;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.offer-price-old {
  font-size: 0.8rem;
  color: #999;
  text-decoration: line-through;
}

.offer-price-new {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--c-ofertas);
}

.offer-btn {
  display: block;
  text-align: center;
  background: var(--c-ofertas);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px;
  border-radius: 4px;
}

.offer-card:hover .offer-btn {
  background: #e56300;
}

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

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

  .section-split {
    grid-template-columns: 1fr;
  }

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

  .essential-strip {
    grid-template-columns: 1fr;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-badge {
    display: none;
  }

  .btn-ghost {
    display: none;
  }

  .logo {
    font-size: 1.6rem;
  }

  .mobile-quick-nav {
    display: flex;
    align-items: stretch;
    width: 100%;
  }

  .quick-link {
    flex: 1;
    text-align: center;
    padding: 12px 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    border-bottom: 3px solid transparent;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
  }

  .nav-list.open {
    display: flex;
  }

  .nav-list li.mobile-primary {
    display: none;
  }

  .submenu {
    display: flex;
    position: static;
    box-shadow: none;
    padding-left: 14px;
    background: #fafafa;
  }

  .submenu li a {
    padding: 9px 16px;
  }

  .section-3col {
    grid-template-columns: 1fr;
  }

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

  .news-card-horizontal img {
    height: 180px;
  }

  .news-card-text {
    padding: 14px;
  }

  .hero-poster img {
    height: 260px;
  }

  .hero-poster-overlay h1 {
    font-size: 1.3rem;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }
}
