/* ====================================================
   EXPRESSÃO GUARÁ — Newsroom v3.0
   Design azul jornalístico — sem dependências WP/Elementor
   ==================================================== */

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --blue:        #202f7f;
  --blue-dark:   #18245f;
  --blue-xdark:  #111a45;
  --blue-light:  #eef2ff;
  --blue-mid:    #b9c4f2;

  --ink:         #111827;
  --body:        #374151;
  --muted:       #6b7280;

  --border:      #e5e7eb;
  --border-lt:   #f3f4f6;
  --surface:     #ffffff;
  --bg:          #f9fafb;

  --shadow-sm:   0 1px 2px rgba(0,0,0,0.06);
  --shadow:      0 1px 8px rgba(0,0,0,0.09);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.12);

  --hdr-height:  104px; /* ticker 36 + topbar 68 */
  --radius:      6px;
}

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

body {
  margin: 0 !important;
  padding: 0 !important;
  background: var(--bg);
  color: var(--body);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

/* ── ESCONDER ELEMENTOR/WORDPRESS ───────────────── */
[data-elementor-type="header"],
[data-elementor-type="footer"],
.wp-block-template-part[area="header"],
.wp-block-template-part[area="footer"] {
  display: none !important;
}

body {
  padding-top: var(--hdr-height) !important;
}

/* Remover margin-top injetado pelo Elementor sticky */
.elementor-sticky--active,
.elementor-sticky--effects {
  top: var(--hdr-height) !important;
}

/* ── HEADER ─────────────────────────────────────── */
.nr-site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

/* Ticker */
.nr-ticker {
  height: 36px;
  background: var(--blue);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.nr-ticker__badge {
  flex-shrink: 0;
  padding: 0 14px;
  background: var(--blue-dark);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nr-ticker__badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: blink 1.2s ease infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.nr-ticker__track {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.nr-ticker__inner {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
}

.nr-ticker__inner:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.nr-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px 0 0;
  color: rgba(255,255,255,0.92);
  font-size: 0.78rem;
  text-decoration: none;
}

.nr-ticker__item:hover { color: #fff; }

.nr-ticker__sep {
  color: rgba(255,255,255,0.35);
  padding-right: 40px;
  font-size: 0.6rem;
}

/* Topbar */
.nr-topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.nr-topbar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.nr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nr-logo img {
  height: 42px;
  width: auto;
}

.nr-logo__text {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}

.nr-logo__text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav */
.nr-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 1;
}

.nr-nav__link {
  padding: 6px 12px;
  color: var(--body);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nr-nav__link:hover,
.nr-nav__link.active {
  background: var(--blue-light);
  color: var(--blue);
}

/* Header actions */
.nr-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nr-icon-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: none;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.15s, border-color 0.15s;
}

.nr-icon-btn:hover { color: var(--blue); border-color: var(--blue-mid); }
.nr-icon-btn svg { width: 18px; height: 18px; }

.nr-menu-btn { display: none; }

/* Search bar */
.nr-search-bar {
  background: #fff;
  border-top: 1px solid var(--border);
}

.nr-search-bar[hidden] { display: none; }

.nr-search-bar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 16px;
}

.nr-search-form {
  display: flex;
  gap: 10px;
}

.nr-search-form input {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
}

.nr-search-form button {
  height: 44px;
  padding: 0 20px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.nr-search-form button:hover { background: var(--blue-dark); }

/* Mobile nav */
.nr-mobile-nav {
  display: none;
  position: fixed;
  top: var(--hdr-height);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 12px;
  flex-direction: column;
  gap: 4px;
}

.nr-mobile-nav.open { display: flex; }
.nr-mobile-nav .nr-nav__link { padding: 10px 14px; }

/* ── FOOTER ─────────────────────────────────────── */
.nr-site-footer {
  background: var(--blue-xdark);
  color: rgba(255,255,255,0.75);
  margin-top: 64px;
}

.nr-footer-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 52px 16px 40px;
}

.nr-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.nr-footer-brand img { height: 50px; width: auto; margin-bottom: 16px; }

.nr-footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0 0 20px;
}

.nr-footer-social {
  display: flex;
  gap: 10px;
}

.nr-footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.15s, color 0.15s;
}

.nr-footer-social a:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.nr-footer-col h3 {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.nr-footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nr-footer-col ul a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.15s;
}

.nr-footer-col ul a:hover { color: #fff; }

.nr-footer-contact p {
  font-size: 0.85rem;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nr-footer-contact a.nr-footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 9px 18px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.15s;
}

.nr-footer-contact a.nr-footer-wa:hover { background: #1da851; }

.nr-footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nr-footer-bar__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  gap: 16px;
  flex-wrap: wrap;
}

.nr-footer-bar__inner a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.nr-footer-bar__inner a:hover { color: #fff; }

/* ── PAGE / CONTAINER ────────────────────────────── */
.newsroom-page {
  padding: 28px 0 0;
}

.newsroom-page--home { padding-top: 32px; }

.newsroom-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

/* ── LAYOUT PRINCIPAL ────────────────────────────── */
.newsroom-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 308px;
  gap: 28px;
  align-items: start;
}

.newsroom-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.newsroom-main,
.newsroom-sidebar,
.newsroom-article,
.newsroom-panel,
.newsroom-feature,
.newsroom-card,
.newsroom-empty-state { min-width: 0; }

/* ── SIDEBAR ─────────────────────────────────────── */
.newsroom-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ── SECTION ─────────────────────────────────────── */
.newsroom-section { padding-top: 32px; padding-bottom: 32px; }
.newsroom-section--soft { padding: 36px 0 16px; }

/* ── SECTION HEADING (linha azul G1) ──────────────── */
.newsroom-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--blue);
}

.newsroom-section-heading__eyebrow {
  display: block;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.newsroom-section-heading__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ── KICKER ──────────────────────────────────────── */
.newsroom-kicker {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.newsroom-kicker__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 3px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsroom-kicker__label::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  animation: blink 1.2s ease infinite;
}

.newsroom-kicker__text,
.newsroom-page-copy,
.newsroom-panel__copy,
.newsroom-card__copy,
.newsroom-feature__copy,
.newsroom-muted,
.newsroom-empty-state p,
.newsroom-search-summary,
.newsroom-newsletter__status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── TÍTULOS ─────────────────────────────────────── */
.newsroom-page-title,
.newsroom-feature__title,
.newsroom-card__title,
.newsroom-panel__title,
.newsroom-empty-state__eyebrow {
  margin: 0;
  color: var(--ink);
  line-height: 1.1;
}

.newsroom-page-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.newsroom-page-title--article {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
}

.newsroom-page-copy {
  margin-top: 14px;
  max-width: 720px;
  color: var(--body);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── PAGE HERO / ARTICLE HERO ────────────────────── */
.newsroom-page-hero,
.newsroom-article-hero { padding-top: 0; }

/* ── HERO GRID ───────────────────────────────────── */
.newsroom-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 1fr);
  gap: 2px;
  padding: 30px 0px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.newsroom-hero__rail {
  display: grid;
  gap: 2px;
}

/* ── FEATURE ─────────────────────────────────────── */
.newsroom-feature {
  display: grid;
  background: var(--surface);
  overflow: hidden;
}

.newsroom-feature__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #d1d5db;
}

.newsroom-feature__image img,
.newsroom-card__image img,
.newsroom-list-item__image img,
.newsroom-article__figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.newsroom-feature:hover .newsroom-feature__image img { transform: scale(1.04); }

.newsroom-feature__body { padding: 22px; }

.newsroom-feature__eyebrow,
.newsroom-card__eyebrow,
.newsroom-list-item__eyebrow,
.newsroom-panel__eyebrow {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsroom-feature__eyebrow {
  display: block;
  margin-bottom: 10px;
}

.newsroom-feature__title {
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 800;
  margin: 0 0 12px;
}

.newsroom-feature__copy {
  color: var(--body);
  font-size: 0.95rem;
}

/* ── CARD ────────────────────────────────────────── */
.newsroom-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.newsroom-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.newsroom-card:hover .newsroom-card__image img { transform: scale(1.04); }

.newsroom-card--compact { flex-direction: row; }

.newsroom-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #d1d5db;
  flex-shrink: 0;
}

.newsroom-card--compact .newsroom-card__image {
  width: 120px;
  min-width: 120px;
  aspect-ratio: auto;
}

.newsroom-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  flex: 1;
}

.newsroom-card__eyebrow { display: block; }

.newsroom-card__title {
  font-size: 1.05rem;
  font-weight: 700;
}

.newsroom-card--compact .newsroom-card__title { font-size: 0.9rem; }

.newsroom-card__title a,
.newsroom-feature__title a {
  color: var(--ink);
  text-decoration: none;
}

.newsroom-card__title a:hover,
.newsroom-feature__title a:hover { color: var(--blue); }

/* ── GRIDS ───────────────────────────────────────── */
.newsroom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.newsroom-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.newsroom-grid--templates,
.newsroom-grid--related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.newsroom-grid--top-gap { margin-top: 18px; }

.newsroom-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* ── PANEL ───────────────────────────────────────── */
.newsroom-panel {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.newsroom-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue);
}

.newsroom-panel__eyebrow { display: block; margin-bottom: 4px; }

.newsroom-panel__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.newsroom-panel__copy { margin: 0 0 14px; }

/* Accent */
.newsroom-panel--accent {
  background: var(--blue);
  border-color: var(--blue-dark);
}

.newsroom-panel--accent .newsroom-panel__eyebrow,
.newsroom-panel--accent .newsroom-panel__title,
.newsroom-panel--accent .newsroom-panel__copy { color: #fff; }

/* ── LIST ────────────────────────────────────────── */
.newsroom-list {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
}

.newsroom-list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-lt);
  text-decoration: none;
  color: inherit;
}

.newsroom-list-item:first-child { padding-top: 0; }
.newsroom-list-item:last-child { border-bottom: none; padding-bottom: 0; }

.newsroom-list-item:hover .newsroom-list-item__title { color: var(--blue); }

.newsroom-list-item__image {
  display: block;
  width: 82px; min-width: 82px; height: 62px;
  border-radius: 4px;
  background: #d1d5db;
  flex-shrink: 0;
  overflow: hidden;
}

.newsroom-list-item__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.newsroom-list-item__title {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.15s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── LINK LIST ───────────────────────────────────── */
.newsroom-link-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.newsroom-link-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-lt);
  font-size: 0.9rem;
}

.newsroom-link-list li:first-child { padding-top: 0; }
.newsroom-link-list li:last-child  { border-bottom: none; padding-bottom: 0; }

.newsroom-link-list a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}

.newsroom-link-list a:hover { color: var(--blue); }
.newsroom-link-list li span { color: var(--muted); font-size: 0.78rem; }

/* ── CHIP ────────────────────────────────────────── */
.newsroom-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.newsroom-chip-row--article { margin-top: 0; margin-bottom: 18px; }

.newsroom-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.newsroom-chip:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.newsroom-chip--accent {
  background: var(--blue-light);
  border-color: var(--blue-mid);
  color: var(--blue);
}

/* ── BOTÕES ──────────────────────────────────────── */
.newsroom-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.newsroom-button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.newsroom-button--accent {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.newsroom-button--accent:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
}

.newsroom-button--ghost {
  border-color: var(--border);
  background: #fff;
  color: var(--ink);
}

.newsroom-button--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.newsroom-button--whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #1da851;
}

.newsroom-button--whatsapp:hover {
  background: #1da851;
  color: #fff;
}

/* ── LINKS ───────────────────────────────────────── */
.newsroom-panel__link {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}

.newsroom-panel__link:hover { color: var(--blue-dark); }

.newsroom-breadcrumbs a,
.newsroom-link-list a { text-decoration: none; }

/* ── META ────────────────────────────────────────── */
.newsroom-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
}

/* ── BREADCRUMBS ─────────────────────────────────── */
.newsroom-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.newsroom-breadcrumbs a { color: var(--muted); text-decoration: none; }
.newsroom-breadcrumbs a:hover { color: var(--blue); }
.newsroom-breadcrumbs__sep { opacity: 0.45; }

/* ── ARTIGO ──────────────────────────────────────── */
.newsroom-article__figure {
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg);
}

.newsroom-article__figure img {
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
}

.newsroom-article__figure figcaption {
  padding: 10px 16px 12px;
  color: var(--muted);
  font-size: 0.82rem;
  border-top: 1px solid var(--border-lt);
}

/* ── RICH TEXT ───────────────────────────────────── */
.newsroom-richtext {
  color: var(--body);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1.9;
}

.newsroom-richtext > *:first-child { margin-top: 0; }
.newsroom-richtext > *:last-child  { margin-bottom: 0; }

.newsroom-richtext h2,
.newsroom-richtext h3 {
  margin: 2rem 0 0.75rem;
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  line-height: 1.25;
}

.newsroom-richtext h2 {
  font-size: 1.5rem;
  font-weight: 800;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-lt);
}

.newsroom-richtext h3 { font-size: 1.2rem; font-weight: 700; }

.newsroom-richtext p,
.newsroom-richtext ul,
.newsroom-richtext ol,
.newsroom-richtext blockquote { margin: 0 0 1.4rem; }

.newsroom-richtext ul,
.newsroom-richtext ol { padding-left: 1.5rem; }

.newsroom-richtext blockquote {
  margin: 1.6rem 0;
  padding: 16px 20px;
  border-left: 4px solid var(--blue);
  background: var(--blue-light);
  color: var(--ink);
  font-style: italic;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── READING PROGRESS ────────────────────────────── */
.newsroom-reading-progress {
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  width: 100%; height: 3px;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--blue), #60a5fa);
}

/* ── SHARE & NAV ARTIGO ──────────────────────────── */
.newsroom-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px;
  margin-top: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.newsroom-article-nav {
  display: flex;
  gap: 16px;
  padding: 16px;
  margin-top: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.newsroom-article-nav__item {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  border-radius: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.15s;
}

.newsroom-article-nav__item:hover { border-color: var(--blue); }
.newsroom-article-nav__item--empty { visibility: hidden; }

.newsroom-article-nav__label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.newsroom-article-nav__title {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

/* ── RELATED ─────────────────────────────────────── */
.newsroom-related { margin-top: 32px; }

/* ── SEARCH ──────────────────────────────────────── */
.newsroom-search-form {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.newsroom-search-form__label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.newsroom-search-form__controls { display: flex; align-items: center; gap: 10px; }

.newsroom-search-form__input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.15s;
}

.newsroom-search-form__input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(32,47,127,.15);
}

.newsroom-search-summary { margin: 14px 0; }

/* ── NEWSLETTER SECTION (full-width) ─────────────── */
.nr-newsletter-section {
  background: linear-gradient(135deg, var(--blue-xdark) 0%, var(--blue-dark) 50%, var(--blue) 100%);
  padding: 56px 16px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}

.nr-newsletter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
}

.nr-newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.nr-newsletter-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.nr-newsletter-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.nr-newsletter-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin: 0 0 28px;
  line-height: 1.6;
}

.nr-newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 16px;
}

.nr-newsletter-form input {
  flex: 1;
  min-height: 50px;
  padding: 0 18px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.15s, background 0.15s;
}

.nr-newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }

.nr-newsletter-form input:focus {
  outline: none;
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.18);
}

.nr-newsletter-form button {
  min-height: 50px;
  padding: 0 24px;
  background: #fff;
  color: var(--blue);
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nr-newsletter-form button:hover {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.nr-newsletter-perks {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 600;
}

.nr-newsletter-perks span::before {
  content: "✓ ";
}

.nr-newsletter-status {
  margin-top: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  min-height: 20px;
}

/* Newsletter sidebar (manter compatibilidade) */
.newsroom-newsletter {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.newsroom-newsletter input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  transition: border-color 0.15s;
}

.newsroom-newsletter input:focus {
  outline: none;
  border-color: var(--blue);
}

/* ── TEMPLATE TOOLKIT ────────────────────────────── */
.newsroom-template-toolkit {
  padding: 18px;
  margin-bottom: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.newsroom-template-toolkit__header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
}

.newsroom-template-toolkit__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.newsroom-checklist,
.newsroom-ordered-list {
  display: flex;
  flex-direction: column;
  margin: 12px 0 0;
  padding-left: 1.2rem;
  color: var(--body);
  font-size: 0.88rem;
}

.newsroom-checklist li,
.newsroom-ordered-list li { line-height: 1.65; padding: 3px 0; }

/* ── EMPTY STATE ─────────────────────────────────── */
.newsroom-empty-state {
  padding: 36px 24px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.newsroom-empty-state__eyebrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px; height: 60px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

/* ── BANNER SLOTS ────────────────────────────────── */
.newsroom-sidebar-banner {
  display: flex;
  justify-content: center;
}

.nr-banner-slot {
  overflow: hidden;
  background: var(--border-lt);
  border-radius: var(--radius);
  line-height: 0;
}

.nr-banner-slot img,
.nr-banner-slot a {
  display: block;
  width: 100%;
}

/* Proporções IAB padrão */
.nr-banner-slot--rect     { aspect-ratio: 300/250; max-width: 300px; margin: 0 auto; }
.nr-banner-slot--leader   { aspect-ratio: 728/90; }
.nr-banner-slot--half     { aspect-ratio: 300/600; max-width: 300px; margin: 0 auto; }
.nr-banner-slot--mobile   { aspect-ratio: 320/50; max-width: 320px; margin: 0 auto; }
.nr-banner-slot--mobile-only { display: none; }

/* ── COOKIE MODAL (overlay) ──────────────────────── */
.nr-cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9998;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.3s ease;
}

.nr-cookie-overlay[hidden] { display: none; }

.nr-cookie-modal {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-md);
  position: relative;
  animation: slide-up 0.35s cubic-bezier(.16,1,.3,1);
}

@keyframes slide-up {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.nr-cookie-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  line-height: 1;
}

.nr-cookie-modal h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 10px;
}

.nr-cookie-modal p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 8px;
}

.nr-cookie-modal a { color: var(--blue); }

.nr-cookie-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: var(--muted);
  font-size: 1rem;
  transition: background 0.15s;
}

.nr-cookie-modal__close:hover { background: var(--border); color: var(--ink); }

.nr-cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.nr-cookie-btn {
  flex: 1;
  min-height: 44px;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.nr-cookie-btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }

.nr-cookie-btn--secondary {
  background: var(--bg);
  color: var(--muted);
  border: 1px solid var(--border);
}

.nr-cookie-btn--secondary:hover { background: var(--border); color: var(--ink); }

.nr-cookie-btn--primary {
  background: var(--blue);
  color: #fff;
}

.nr-cookie-btn--primary:hover { background: var(--blue-dark); }

/* ── SCREEN READER ───────────────────────────────── */
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ── AÇÕES ───────────────────────────────────────── */
.newsroom-actions,
.newsroom-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* ── RESPONSIVE 1100px ───────────────────────────── */
@media (max-width: 1100px) {
  .newsroom-layout,
  .newsroom-article-layout { grid-template-columns: 1fr; }

  .newsroom-hero__grid { grid-template-columns: 1fr; }
  .newsroom-hero__rail { grid-template-columns: repeat(2, 1fr); }

  .newsroom-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .newsroom-grid--templates,
  .newsroom-grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .nr-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nr-newsletter-form { flex-direction: column; }
}

/* ── RESPONSIVE 767px ────────────────────────────── */
@media (max-width: 767px) {
  :root { --hdr-height: 96px; }

  .newsroom-page { padding-top: 20px; }
  .newsroom-container { width: calc(100% - 20px); }

  .newsroom-grid,
  .newsroom-grid--2,
  .newsroom-grid--templates,
  .newsroom-grid--related,
  .newsroom-category-grid { grid-template-columns: 1fr; }

  .newsroom-hero__rail { grid-template-columns: 1fr; }

  .newsroom-card--compact { flex-direction: column; }
  .newsroom-card--compact .newsroom-card__image {
    width: 100%; min-width: 0;
    aspect-ratio: 16 / 10;
  }

  .newsroom-feature__body,
  .newsroom-card__body,
  .newsroom-panel,
  .newsroom-template-toolkit,
  .newsroom-search-form,
  .newsroom-empty-state { padding: 14px; }

  .newsroom-section-heading { flex-direction: column; align-items: flex-start; }

  .newsroom-share,
  .newsroom-article-nav { flex-direction: column; }

  .newsroom-search-form__controls { flex-direction: column; align-items: stretch; }
  .newsroom-actions { flex-direction: column; }

  .nr-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nr-newsletter-form { flex-direction: column; }

  .nr-cookie-actions { flex-direction: column; }

  .nr-nav { display: none; }
  .nr-menu-btn { display: flex !important; }

  .nr-banner-slot--desktop-only { display: none; }
  .nr-banner-slot--mobile-only { display: block; }

  .nr-newsletter-section { padding: 40px 16px; }

  .newsroom-template-toolkit__grid { grid-template-columns: 1fr; }
}

/* ====================================================
   HERO HOME — mosaico editorial com 3 notícias
   Principal + 2 secundárias
   ==================================================== */

.newsroom-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
  gap: 16px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

/* Esconde a 4ª notícia do rail, deixando só 2 secundárias */
.newsroom-hero__rail .newsroom-card--compact:nth-child(n + 3) {
  display: none;
}

/* Altura geral do mosaico */
.newsroom-hero__grid > .newsroom-feature,
.newsroom-hero__rail {
  min-height: 500px;
}

/* Principal */
.newsroom-hero__grid > .newsroom-feature {
  position: relative;
  display: block;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #111827;
  box-shadow: var(--shadow-sm);
}

.newsroom-hero__grid > .newsroom-feature .newsroom-feature__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.newsroom-hero__grid > .newsroom-feature .newsroom-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Barra branca da principal */
.newsroom-hero__grid > .newsroom-feature .newsroom-feature__body {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 22px 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.newsroom-hero__grid > .newsroom-feature .newsroom-feature__eyebrow {
  display: block;
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.newsroom-hero__grid > .newsroom-feature .newsroom-feature__title {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.newsroom-hero__grid > .newsroom-feature .newsroom-feature__title a {
  color: var(--ink);
  text-decoration: none;
}

.newsroom-hero__grid > .newsroom-feature .newsroom-feature__copy,
.newsroom-hero__grid > .newsroom-feature .newsroom-meta,
.newsroom-hero__grid > .newsroom-feature .newsroom-button {
  display: none;
}

/* Coluna direita com 2 notícias */
.newsroom-hero__rail {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* Cards secundários */
.newsroom-hero__rail .newsroom-card--compact {
  position: relative;
  display: block;
  min-height: 0;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #111827;
  box-shadow: var(--shadow-sm);
}

.newsroom-hero__rail .newsroom-card--compact .newsroom-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  min-width: 0;
  height: 100%;
  aspect-ratio: auto;
}

.newsroom-hero__rail .newsroom-card--compact .newsroom-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsroom-hero__rail .newsroom-card--compact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.04) 0%,
      rgba(0, 0, 0, 0.28) 45%,
      rgba(0, 0, 0, 0.82) 100%
    );
  pointer-events: none;
}

.newsroom-hero__rail .newsroom-card--compact .newsroom-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 22px;
}

.newsroom-hero__rail .newsroom-card--compact .newsroom-card__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.newsroom-hero__rail .newsroom-card--compact .newsroom-card__title {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.newsroom-hero__rail .newsroom-card--compact .newsroom-card__title a {
  color: #fff;
  text-decoration: none;
}

.newsroom-hero__rail .newsroom-card--compact .newsroom-card__copy,
.newsroom-hero__rail .newsroom-card--compact .newsroom-meta {
  display: none;
}

.newsroom-hero__grid > .newsroom-feature:hover,
.newsroom-hero__rail .newsroom-card--compact:hover {
  transform: none;
  box-shadow: var(--shadow-md);
}

.newsroom-hero__grid > .newsroom-feature:hover img,
.newsroom-hero__rail .newsroom-card--compact:hover img {
  transform: scale(1.04);
}

/* Tablet */
@media (max-width: 1100px) {
  .newsroom-hero__grid {
    grid-template-columns: 1fr;
  }

  .newsroom-hero__grid > .newsroom-feature {
    min-height: 430px;
  }

  .newsroom-hero__rail {
    min-height: 460px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .newsroom-hero__grid {
    gap: 12px;
  }

  .newsroom-hero__grid > .newsroom-feature,
  .newsroom-hero__rail .newsroom-card--compact {
    border-radius: 12px;
  }

  .newsroom-hero__grid > .newsroom-feature {
    min-height: 380px;
  }

  .newsroom-hero__grid > .newsroom-feature .newsroom-feature__body {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
    border-radius: 10px;
  }

  .newsroom-hero__grid > .newsroom-feature .newsroom-feature__title {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

  .newsroom-hero__rail {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .newsroom-hero__rail .newsroom-card--compact {
    min-height: 240px;
  }

  .newsroom-hero__rail .newsroom-card--compact .newsroom-card__body {
    padding: 18px;
  }

  .newsroom-hero__rail .newsroom-card--compact .newsroom-card__title {
    font-size: 1.08rem;
  }
}
