/* =========================================================
   DFÁGUASCLARAS — Design System
   Cores: 1BB7E0 (azul primário) / 062446 (azul noite) /
          0F3A6A (azul médio) / 1ECCF6 (azul claro destaque)
   Fonte: Poppins
========================================================= */

:root {
  --blue: #1BB7E0;
  --blue-dark: #0e93b8;
  --navy: #062446;
  --navy-2: #0F3A6A;
  --accent: #1ECCF6;
  --accent-dark: #10a9cf;

  --white: #ffffff;
  --gray-50: #f5f7fa;
  --gray-100: #eaeef3;
  --gray-200: #dbe2ea;
  --gray-400: #9aa7b5;
  --gray-600: #5c6b7a;
  --gray-800: #2b3a4a;

  --font: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 3px rgba(6, 36, 70, 0.08);
  --shadow: 0 4px 16px rgba(6, 36, 70, 0.10);
  --shadow-lg: 0 12px 32px rgba(6, 36, 70, 0.16);

  --header-h: 88px;
  --topbar-h: 38px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
svg { width: 1em; height: 1em; flex-shrink: 0; vertical-align: -0.125em; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 700; color: var(--navy); line-height: 1.2; }
p { margin: 0 0 1em; }
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.section { padding: 56px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(22px, 3vw, 30px); }
.see-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-2);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  white-space: nowrap;
}
.see-all:hover { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--navy); }
.btn-primary:hover { background: var(--accent-dark); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-2); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
}
.tag-orange { background: var(--accent); color: var(--navy); }
.tag-blue { background: var(--blue); color: var(--navy); }
.tag-outline { background: var(--white); color: var(--navy); border: 1px solid var(--gray-200); }

/* category color coding */
.tag[data-cat="noticias-da-cidade"] { background: var(--navy-2); }
.tag[data-cat="gdf"] { background: #b3261e; }
.tag[data-cat="agenda-cultural"] { background: #7b3fb8; }
.tag[data-cat="cidadania"] { background: #1e7d4f; }
.tag[data-cat="qualidade-de-vida"] { background: #1BB7E0; }
.tag[data-cat="colunistas"] { background: #C9922E; }
.tag[data-cat="servicos"] { background: #3B5BA5; }
.tag[data-cat="educacao"] { background: #2A6DB0; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy);
  color: var(--gray-200);
  font-size: 12.5px;
  height: var(--topbar-h);
}
.topbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-date { display: flex; align-items: center; gap: 10px; white-space: nowrap; min-width: 0; }
.topbar-date .date-short { display: none; }
.topbar-date .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blue); }
.topbar-weather { display: flex; align-items: center; gap: 6px; color: var(--blue); font-weight: 600; }
.topbar-weather svg { width: 15px; height: 15px; }
.topbar-social { display: flex; align-items: center; gap: 14px; }
.topbar-social a { display: flex; opacity: .85; }
.topbar-social a:hover { opacity: 1; color: var(--accent); }
.topbar-social svg { width: 15px; height: 15px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 52px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-200);
  white-space: nowrap;
}
.main-nav a.nav-link:hover,
.main-nav li.active a.nav-link { color: var(--white); background: rgba(255,255,255,0.08); }
.main-nav li.active a.nav-link { color: var(--accent); }
.nav-item.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .18s ease;
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
}
.dropdown a:hover { background: var(--gray-50); color: var(--blue); }
.dropdown a .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: none;
}
.icon-btn:hover { background: rgba(255,255,255,0.18); }
.icon-btn svg { width: 18px; height: 18px; }
.btn-demandas {
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.btn-demandas:hover { background: var(--white); }
.pin-icon { width: 18px; height: 18px; flex-shrink: 0; object-fit: contain; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: none;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  color: var(--white);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,36,70,0.92);
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 14vh;
}
.search-overlay.open { display: flex; }
.search-box { width: 100%; max-width: 620px; padding: 0 20px; }
.search-box form {
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border-radius: 999px;
  padding: 8px 8px 8px 22px;
  box-shadow: var(--shadow-lg);
}
.search-box input {
  flex: 1; border: none; outline: none; font-size: 16px; background: transparent;
}
.search-box button.submit {
  background: var(--accent); color: var(--navy); border: none;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.search-box button.submit svg { width: 18px; height: 18px; }
.search-close {
  margin-top: 18px; color: var(--white); font-size: 13px; text-align: center;
  display: flex; align-items: center; gap: 8px; justify-content: center; width: 100%;
  border: none; background: transparent;
}
.search-close svg { width: 14px; height: 14px; }

/* ---------- Breaking bar ---------- */
.breaking {
  background: var(--accent);
  color: var(--navy);
  overflow: hidden;
}
.breaking .container { display: flex; align-items: center; height: 40px; gap: 14px; }
.breaking-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
  flex-shrink: 0; padding-right: 14px; border-right: 2px solid rgba(6,36,70,0.25);
}
.breaking-label .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--navy);
  animation: pulse 1.4s infinite;
}
@keyframes pulse { 0%,100%{ opacity: 1 } 50%{ opacity: .35 } }
.breaking-track { flex: 1; overflow: hidden; white-space: nowrap; position: relative; height: 20px; }
.breaking-track ul { display: inline-flex; gap: 60px; position: absolute; animation: marquee 28s linear infinite; }
.breaking-track:hover ul { animation-play-state: paused; }
.breaking-track a { font-size: 13.5px; font-weight: 600; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Hero ---------- */
.hero { padding: 28px 0 44px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
}
.hero-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
}
.hero-main img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-main::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,36,70,0) 30%, rgba(6,36,70,0.92) 100%);
  z-index: 1;
}
.hero-main-content { position: relative; z-index: 2; padding: 32px; color: var(--white); }
.hero-main-content h1, .hero-main-content h3 { color: var(--white); font-size: clamp(22px, 3vw, 32px); margin: 12px 0 10px; }
.hero-main-content p { color: var(--gray-200); font-size: 15px; max-width: 560px; }
.hero-meta { display: flex; gap: 14px; align-items: center; font-size: 12.5px; color: var(--gray-200); margin-top: 10px; }

.hero-side { display: flex; flex-direction: column; gap: 16px; }
.side-card {
  display: flex; gap: 14px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  flex: 1;
}
.side-card .thumb {
  width: 104px; height: 88px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0;
}
.side-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.side-card .body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.side-card h4 { font-size: 14.5px; line-height: 1.3; }
.side-card h4 a:hover { color: var(--blue); }
.side-card .meta { font-size: 11.5px; color: var(--gray-600); }

/* ---------- News cards ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.news-card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.news-card:hover .thumb img { transform: scale(1.06); }
.news-card .thumb .tag { position: absolute; top: 12px; left: 12px; }
.news-card .card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news-card h3 { font-size: 15.5px; line-height: 1.35; }
.news-card h3 a:hover { color: var(--blue); }
.news-card p.excerpt { font-size: 13.5px; color: var(--gray-600); flex: 1; }
.card-meta { display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--gray-400); font-weight: 500; }
.card-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray-400); }

/* list-style card (horizontal) */
.news-row {
  display: flex; gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  align-items: center;
}
.news-row .thumb { width: 160px; height: 130px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.news-row .thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-row .body { display: flex; flex-direction: column; gap: 6px; min-width: 0; flex: 1; }
.news-row h3 { font-size: 16px; }
.news-row h3 a:hover { color: var(--blue); }
.news-row p.excerpt { font-size: 13.5px; color: var(--gray-600); }

/* grade 2x2 de cards horizontais (largura maior, altura menor) */
.news-row-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 720px) {
  .news-row-grid { grid-template-columns: 1fr; }
}

/* ---------- Two-column layout with sidebar ---------- */
.layout {
  display: grid;
  grid-template-columns: 2.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: calc(var(--header-h) + 20px); }
.widget {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}
.widget h4 {
  font-size: 15px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
  display: flex; align-items: center; gap: 8px;
}
.widget h4 svg { width: 18px; height: 18px; color: var(--accent); }
.most-read-item { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.most-read-item:last-child { border-bottom: none; padding-bottom: 0; }
.most-read-item .num {
  font-size: 22px; font-weight: 800; color: var(--gray-200); width: 26px; flex-shrink: 0; line-height: 1;
}
.most-read-item h5 { font-size: 13.5px; font-weight: 600; color: var(--navy); line-height: 1.3; }
.most-read-item h5 a:hover { color: var(--blue); }

.widget-weather { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: var(--white); }
.widget-weather h4 { color: var(--white); border-color: rgba(255,255,255,0.15); }
.weather-now { display: flex; align-items: center; justify-content: space-between; }
.weather-now .temp { font-size: 42px; font-weight: 800; }
.weather-now .desc { font-size: 13px; color: var(--gray-200); }
.weather-icon { width: 56px; height: 56px; color: var(--accent); }
.weather-icon svg { width: 100%; height: 100%; }
.weather-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 16px; }
.weather-grid div { text-align: center; font-size: 11px; color: var(--gray-200); }
.weather-grid svg { width: 18px; height: 18px; }
.weather-grid strong { display: block; font-size: 13px; color: var(--white); margin-top: 4px; }

.widget-cta { background: var(--accent); text-align: center; }
.widget-cta h4 { color: var(--navy); border: none; justify-content: center; margin-bottom: 8px; }
.widget-cta p { color: rgba(6,36,70,0.8); font-size: 13.5px; }
.widget-cta .btn-navy { width: 100%; margin-top: 6px; }

.widget-ad { text-align: center; }
.widget-ad .widget-ad-label { display: block; font-size: 10.5px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.widget-ad ins.adsbygoogle { min-height: 250px; background: var(--gray-50); border: 1px dashed var(--gray-200); border-radius: var(--radius-sm); }

.ad-inline { margin: 28px 0; text-align: center; }
.ad-inline .widget-ad-label { display: block; font-size: 10.5px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.ad-inline ins.adsbygoogle { min-height: 200px; background: var(--gray-50); border: 1px dashed var(--gray-200); border-radius: var(--radius-sm); }
.widget-source { display: block; margin-top: 12px; font-size: 10.5px; color: var(--gray-200); opacity: .65; text-align: right; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
  font-size: 12.5px; font-weight: 600; padding: 7px 14px; border-radius: 999px;
  background: var(--gray-50); color: var(--navy-2); border: 1px solid var(--gray-200);
}
.tag-cloud a:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ---------- Video shows ---------- */
.quadros-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.quadro-block {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.quadro-logo { max-width: 190px; max-height: 110px; width: auto; object-fit: contain; }
.quadro-block .instagram-media { min-width: 0 !important; }

/* ---------- Banners / CTA ---------- */
.banner-ad { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.banner-ad img { width: 100%; }

.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; right: -60px; top: -60px; width: 220px; height: 220px;
  border-radius: 50%; background: rgba(27,183,224,0.18);
}
.cta-band h2 { color: var(--white); font-size: clamp(20px,3vw,28px); }
.cta-band p { color: var(--gray-200); margin: 8px 0 0; max-width: 480px; }
.cta-band .actions { display: flex; gap: 12px; flex-shrink: 0; position: relative; z-index: 1; flex-wrap: wrap; }

/* ---------- Page header (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 52px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(27,183,224,0.25), transparent 55%),
                     radial-gradient(circle at 10% 90%, rgba(255,168,0,0.15), transparent 45%);
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-200); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--accent); }
.page-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 42px); margin-bottom: 10px; }
.page-hero p.lead { color: var(--gray-200); max-width: 640px; font-size: 16px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--gray-200); margin-top: 40px; }
.footer-top { padding: 56px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
}
.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; color: var(--gray-400); max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--accent); color: var(--navy); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h5 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13.5px; color: var(--gray-400); }
.footer-col a:hover { color: var(--accent); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--gray-400); }
.footer-contact svg { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { margin: 0; font-size: 12.5px; color: var(--gray-400); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12.5px; color: var(--gray-400); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); border: none;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .2s ease;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 20px; height: 20px; }
body.has-cookie-banner .back-to-top { bottom: 96px; }
@media (max-width: 640px) {
  body.has-cookie-banner .back-to-top { bottom: 128px; }
}

/* ---------- Aviso de cookies (LGPD) ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--navy); color: var(--white);
  padding: 16px 22px; box-shadow: var(--shadow-lg);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px;
}
.cookie-banner p { margin: 0; font-size: 13.5px; line-height: 1.5; max-width: 760px; flex: 1 1 320px; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-banner .btn { flex-shrink: 0; }
@media (max-width: 640px) {
  .cookie-banner { padding: 14px 16px; justify-content: flex-start; }
  .cookie-banner p { font-size: 12.5px; }
}

/* ---------- Forms ---------- */
.form-field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.form-field input, .form-field textarea, .form-field select {
  padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-200);
  font-size: 16px; outline: none; transition: border-color .15s ease; background: var(--white);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--blue); }
.form-note { font-size: 12px; color: var(--gray-400); margin-top: -8px; }
.form-success {
  display: none; background: #e7f8ee; border: 1px solid #b7e9c9; color: #1e7d4f;
  padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; margin-top: 14px;
  align-items: center; gap: 10px;
}
.form-success.show { display: flex; }

/* ---------- Generic content blocks ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.stat-card {
  background: var(--white); border-radius: var(--radius); padding: 24px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-card strong { display: block; font-size: 30px; color: var(--navy); font-weight: 800; }
.stat-card span { font-size: 13px; color: var(--gray-600); }

.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px dashed var(--gray-200); }
.timeline-item:last-child { border-bottom: none; }
.timeline-item .year { font-size: 22px; font-weight: 800; color: var(--blue); }
.timeline-item h3 { font-size: 17px; margin-bottom: 8px; }
.timeline-item p { color: var(--gray-600); font-size: 14.5px; margin: 0; }

.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.value-card .icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm); background: rgba(27,183,224,0.12);
  color: var(--blue); display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.value-card .icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.value-card p { font-size: 13.5px; color: var(--gray-600); margin: 0; }

.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.contact-card {
  background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
  text-align: center;
}
.contact-card .icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.contact-card .icon svg { width: 24px; height: 24px; }
.contact-card h3 { font-size: 15.5px; margin-bottom: 6px; }
.contact-card p { font-size: 13.5px; color: var(--gray-600); }
.contact-card a.link { font-size: 13.5px; font-weight: 700; color: var(--blue); }

/* article page */
.article-head { text-align: left; }
.article-head .breadcrumb { color: var(--gray-600); }
.article-head .breadcrumb a:hover { color: var(--blue); }
.article-head .tags-row { display: flex; gap: 8px; margin-bottom: 16px; }
.article-head h1 { font-size: clamp(26px, 4vw, 40px); color: var(--navy); margin-bottom: 16px; }
.article-lead { font-size: 17px; color: var(--gray-600); margin-bottom: 20px; }
.article-byline {
  display: flex; align-items: center; gap: 14px; padding: 16px 0; border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200); font-size: 13px; color: var(--gray-600);
}
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy-2); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.share-row { display: flex; gap: 8px; margin-left: auto; }
.share-row a {
  width: 34px; height: 34px; border-radius: 50%; background: var(--gray-50); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center; color: var(--navy-2);
}
.share-row a:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.share-row svg { width: 15px; height: 15px; }
.article-figure { margin: 26px 0; border-radius: var(--radius); overflow: hidden; }
.article-figure figcaption { font-size: 12.5px; color: var(--gray-400); margin-top: 8px; }
.article-body { font-size: 16px; color: var(--gray-800); }
.article-body p { margin-bottom: 18px; }
.article-body h2 { font-size: 21px; margin: 30px 0 14px; }
.article-body blockquote {
  border-left: 4px solid var(--accent); padding: 4px 0 4px 20px; margin: 24px 0; font-size: 18px;
  font-style: italic; color: var(--navy-2);
}
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 28px 0; }

/* ---------- Copa do Mundo 2026 (dados reais) ---------- */
.wc-strip { display: flex; gap: 16px; overflow-x: auto; padding: 4px 4px 12px; scroll-snap-type: x proximity; }
.wc-card { scroll-snap-align: start; flex: 0 0 240px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 16px; }
.wc-comp { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--gray-400); margin-bottom: 10px; }
.wc-team { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-bottom: 1px solid var(--gray-100); }
.wc-team:last-of-type { border-bottom: none; }
.wc-team img { width: 24px; height: 24px; object-fit: contain; flex-shrink: 0; }
.wc-team span { flex: 1; font-size: 13.5px; font-weight: 600; color: var(--navy); }
.wc-team strong { font-size: 15px; color: var(--navy); }
.wc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 10px; border-top: 1px dashed var(--gray-200); }
.wc-date { font-size: 12px; color: var(--gray-600); }
.wc-date strong { color: var(--navy); font-size: 14px; }
.wc-status { font-size: 10.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.wc-status.wc-live { background: #fde8e8; color: #b3261e; display: inline-flex; align-items: center; gap: 5px; }
.wc-status.wc-live .pulse { width: 6px; height: 6px; border-radius: 50%; background: #b3261e; animation: pulse 1.4s infinite; }
.wc-status.wc-ft { background: var(--gray-100); color: var(--gray-600); }
.wc-status.wc-ns { background: rgba(30,204,246,0.14); color: var(--navy-2); }

/* Barra de rolagem azul (Copa e sidebar de widgets) */
.wc-strip, .sidebar {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--gray-100);
}
.wc-strip::-webkit-scrollbar, .sidebar::-webkit-scrollbar { height: 8px; width: 8px; }
.wc-strip::-webkit-scrollbar-track, .sidebar::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 999px; }
.wc-strip::-webkit-scrollbar-thumb, .sidebar::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 999px; }
.wc-strip::-webkit-scrollbar-thumb:hover, .sidebar::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }

/* ---------- Category filter bar ---------- */
.filter-bar {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: var(--white); padding: 14px; border-radius: var(--radius); box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.filter-chip {
  padding: 9px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 600;
  background: var(--gray-50); color: var(--navy-2); border: 1px solid var(--gray-200);
}
.filter-chip.active, .filter-chip:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.filter-search { margin-left: auto; display: flex; align-items: center; gap: 8px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 999px; padding: 8px 16px; }
.filter-search input { border: none; background: transparent; outline: none; font-size: 16px; width: 180px; }
.filter-search svg { width: 16px; height: 16px; color: var(--gray-400); }

.load-more-wrap { display: flex; justify-content: center; margin-top: 36px; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--gray-600); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; flex-direction: row; overflow-x: auto; }
  .sidebar .widget { min-width: 280px; }
}
@media (max-width: 960px) {
  .main-nav, .header-actions .btn-demandas span.label-lg { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { flex-direction: row; }
  .quadros-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid, .contact-grid { grid-template-columns: 1fr 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
}
@media (max-width: 720px) {
  .topbar-date .date-full { display: none; }
  .topbar-date .date-short { display: inline; }
  .topbar-social a:nth-child(n+4) { display: none; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-main { min-height: 320px; }
  .hero-side { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { flex-direction: column; text-align: center; align-items: center; padding: 28px 24px; }
  .cta-band .actions { justify-content: center; }
  .quadros-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid, .contact-grid, .stat-grid { grid-template-columns: 1fr 1fr; }
  .news-row { flex-direction: column; align-items: stretch; }
  .news-row .thumb { width: 100%; height: 160px; }
  .article-byline { flex-wrap: wrap; }
  .share-row { margin-left: 0; }
}
@media (max-width: 520px) {
  .weather-place { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .value-grid, .contact-grid, .stat-grid, .quadros-grid { grid-template-columns: 1fr; }
  .brand span.brand-text { display: none; }
  .filter-search { width: 100%; margin-left: 0; }
  .filter-search input { width: 100%; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 150; background: var(--navy);
  transform: translateX(100%); transition: transform .25s ease;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav-head img { height: 38px; }
.mobile-nav ul { padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a.nav-link {
  display: flex; align-items: center; justify-content: space-between; padding: 16px 12px;
  color: var(--white); font-size: 16px; font-weight: 500; border-radius: 10px;
}
.mobile-nav a.nav-link:active { background: rgba(255,255,255,0.08); }
.mobile-nav .sub-list { padding-left: 16px; display: none; flex-direction: column; }
.mobile-nav .sub-list.open { display: flex; }
.mobile-nav .sub-list a { color: var(--gray-200); font-size: 14.5px; padding: 12px; }
.mobile-nav-social { display: flex; gap: 10px; padding: 20px; }
.mobile-nav-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--white); }
.mobile-nav-social svg { width: 17px; height: 17px; }
body.nav-open { overflow: hidden; }
