/*
Theme Name: Co.jus
Theme URI: https://cojus.co
Description: Tema editorial premium para o Co.jus — Inteligencia editorial aplicada ao Direito. Versao 2.0.
Version: 2.0
Author: Co.jus
Author URI: https://cojus.co
Text Domain: cojus
Requires at least: 6.0
Requires PHP: 8.0
License: Proprietary
*/

/* ═══════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════ */
:root {
  /* Core palette */
  --navy:    #1B2A4A;
  --night:   #0E1A2B;
  --deep:    #0A1220;
  --paper:   #F3F0E9;
  --off:     #ECEAE1;
  --rule:    #D5D0C5;
  --mid:     #8A8275;
  --gold:    #C8A550;
  --gold-l:  #D4AC5A;
  --gold-d:  #9A7832;
  --mist:    #6B88AC;
  --error:   #C45B5B;
  --success: #5BA87C;

  /* Semantic */
  --bg-primary:   var(--paper);
  --bg-secondary: var(--off);
  --bg-dark:      var(--deep);
  --bg-card:      var(--off);
  --text-primary: var(--navy);
  --text-muted:   var(--mid);
  --accent:       var(--gold);

  /* Typography stacks */
  --serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --disp:   'Cormorant', Georgia, serif;
  --body:   'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:   'IBM Plex Mono', 'SF Mono', 'Fira Code', monospace;

  /* Spacing scale (8px base) */
  --sp-1: .25rem;   /* 4px */
  --sp-2: .5rem;    /* 8px */
  --sp-3: .75rem;   /* 12px */
  --sp-4: 1rem;     /* 16px */
  --sp-5: 1.5rem;   /* 24px */
  --sp-6: 2rem;     /* 32px */
  --sp-7: 3rem;     /* 48px */
  --sp-8: 4rem;     /* 64px */
  --sp-9: 6rem;     /* 96px */
  --sp-10: 8rem;    /* 128px */

  /* Layout */
  --max-content: 1200px;
  --max-reading: 720px;
  --max-wide:    960px;
  --gutter:      4rem;

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur:  .25s;

  /* Border radius */
  --radius-sm: 2px;
  --radius:    4px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea { font: inherit; }

/* Screen reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Intersection Observer reveal */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: .65rem var(--gutter);
  background: rgba(10,18,32,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184,145,63,0.08);
  transition: padding var(--dur) var(--ease), background var(--dur) var(--ease);
}
.site-nav.scrolled {
  padding: .5rem var(--gutter);
  background: rgba(10,18,32,0.98);
}
.nav-logo {
  font-family: var(--disp);
  font-size: 1.4rem; font-weight: 400;
  letter-spacing: -0.01em; line-height: 1;
  color: var(--paper); text-decoration: none;
  white-space: nowrap; display: inline-flex; align-items: baseline;
}
.nav-logo .dot { color: var(--gold); }
.nav-logo .jus { font-style: italic; }

.nav-center {
  display: flex; align-items: center; gap: var(--sp-6);
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-center a {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(243,240,233,0.35); text-decoration: none;
  padding: var(--sp-1) 0;
  border-bottom: 1px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav-center a:hover,
.nav-center a[aria-current="page"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-right {
  display: flex; align-items: center; gap: var(--sp-5);
}
.nav-search-btn {
  color: rgba(243,240,233,0.35);
  transition: color var(--dur);
}
.nav-search-btn:hover { color: var(--gold); }
.nav-search-btn svg { width: 16px; height: 16px; }
.nav-cta {
  font-family: var(--mono); font-size: .58rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--deep); background: var(--gold);
  padding: .6rem 1.4rem;
  transition: background var(--dur) var(--ease);
}
.nav-cta:hover { background: var(--gold-l); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 24px; height: 24px;
  justify-content: center; align-items: center;
}
.nav-toggle span {
  width: 20px; height: 1.5px;
  background: var(--paper);
  transition: transform var(--dur), opacity var(--dur);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile nav overlay */
.nav-mobile {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,18,32,0.98);
  z-index: 99;
  flex-direction: column;
  justify-content: center; align-items: center;
  gap: var(--sp-6);
  animation: fadeIn .3s var(--ease);
}
.nav-mobile.active { display: flex; }
.nav-mobile a {
  font-family: var(--disp); font-size: 2rem;
  color: var(--paper); font-weight: 300;
  transition: color var(--dur);
}
.nav-mobile a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   COMMON SECTION PATTERNS
   ═══════════════════════════════════════════════════ */
.section {
  padding: var(--sp-9) var(--gutter);
  max-width: calc(var(--max-content) + var(--gutter) * 2);
  margin: 0 auto;
}
.section--full {
  padding: var(--sp-9) var(--gutter);
  max-width: none;
}
.section--dark {
  background: var(--deep);
  color: var(--paper);
}
.section--alt { background: var(--off); }
.section--border { border-top: 1px solid var(--rule); }

.section-label {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--mid); margin-bottom: var(--sp-4);
}
.section--dark .section-label { color: var(--gold); }

.section-title {
  font-family: var(--disp);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; letter-spacing: -.02em;
  line-height: 1.15; margin-bottom: var(--sp-6);
  color: var(--navy);
}
.section--dark .section-title { color: var(--paper); }

.section-subtitle {
  font-family: var(--serif); font-size: 1.15rem;
  font-weight: 300; font-style: italic;
  color: var(--mid); max-width: 550px;
  line-height: 1.6;
}
.section--dark .section-subtitle { color: rgba(243,240,233,0.45); }

.section-header {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: var(--sp-7);
}
.section-header-link {
  font-family: var(--mono); font-size: .55rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); transition: color var(--dur);
}
.section-header-link:hover { color: var(--gold-l); }

/* ── HERO (Front Page) — Ticker variant
   ═══════════════════════════════════════════════════ */
.hero {
  padding-top: 60px;
  display: flex; flex-direction: column;
  background: var(--deep); position: relative; overflow: hidden;
}
.hero-brand {
  display: flex; align-items: baseline; gap: var(--sp-5);
  padding: var(--sp-6) var(--gutter);
  position: relative; z-index: 1;
}
.hero-wordmark {
  font-family: var(--disp); font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--paper); letter-spacing: .02em;
}
.hero-wordmark .dot { color: var(--gold); }
.hero-wordmark .jus { font-style: italic; }
.hero-tagline {
  font-family: var(--body); font-size: clamp(.7rem, 1.2vw, .85rem);
  color: rgba(243,240,233,0.45); letter-spacing: .02em; font-style: italic;
}
.hero-ticker-wrap {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(184,145,63,0.12);
  overflow: hidden;
  padding: var(--sp-4) 0;
}
.hero-ticker-wrap::before,
.hero-ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2; pointer-events: none;
}
.hero-ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--deep), transparent); }
.hero-ticker-wrap::after  { right: 0; background: linear-gradient(to left, var(--deep), transparent); }
.ticker-track {
  display: flex; gap: var(--sp-7); width: max-content;
  animation: tickerScroll 60s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: var(--sp-3);
  flex-shrink: 0; white-space: nowrap;
  padding: var(--sp-2) 0;
  text-decoration: none; color: inherit;
}
.ticker-badge {
  font-family: var(--mono); font-size: .45rem; text-transform: uppercase;
  letter-spacing: .08em; color: var(--deep); background: var(--gold);
  padding: .15em .5em; border-radius: 2px;
}
.ticker-headline {
  font-family: var(--body); font-size: .85rem; font-weight: 500;
  color: var(--paper); max-width: 420px;
  overflow: hidden; text-overflow: ellipsis;
}
.ticker-item:hover .ticker-headline { color: var(--gold); }
.ticker-date {
  font-family: var(--mono); font-size: .5rem;
  color: rgba(243,240,233,0.3); letter-spacing: .04em;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero-scroll { display: none; }

/* ═══════════════════════════════════════════════════
   FEATURED STORY (Home)
   ═══════════════════════════════════════════════════ */
.featured-story {
  background: var(--deep);
  padding: 0 var(--gutter) var(--sp-9);
}
.featured-card {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: var(--sp-8); align-items: center;
  max-width: var(--max-content); margin: 0 auto;
  border: 1px solid rgba(184,145,63,0.1);
  padding: var(--sp-7);
  transition: border-color var(--dur) var(--ease);
}
.featured-card:hover { border-color: rgba(184,145,63,0.3); }

.featured-thumb {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--navy); position: relative;
}
.featured-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.featured-card:hover .featured-thumb img { transform: scale(1.03); }

.featured-tag {
  font-family: var(--mono); font-size: .52rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--sp-3);
}
.featured-title {
  font-family: var(--disp); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400; color: var(--paper);
  line-height: 1.2; margin-bottom: var(--sp-4);
  letter-spacing: -.01em;
  transition: color var(--dur);
}
.featured-card:hover .featured-title { color: var(--gold-l); }
.featured-lede {
  font-family: var(--serif); font-size: 1.05rem;
  line-height: 1.7; color: rgba(243,240,233,0.45);
  font-weight: 300; margin-bottom: var(--sp-5);
}
.featured-meta {
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .15em; color: rgba(243,240,233,0.22);
  text-transform: uppercase;
}
.featured-meta .sep { margin: 0 .6em; }

/* ═══════════════════════════════════════════════════
   NEWS GRID
   ═══════════════════════════════════════════════════ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.news-grid--3 { grid-template-columns: repeat(3, 1fr); }

.news-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform var(--dur) var(--ease);
}
.news-card:hover { transform: translateY(-3px); }

.news-thumb {
  width: 100%; aspect-ratio: 16/10;
  background: var(--navy); overflow: hidden;
  margin-bottom: var(--sp-4); position: relative;
}
.news-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
  opacity: .85;
}
.news-card:hover .news-thumb img { transform: scale(1.04); opacity: 1; }

.news-thumb-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--night) 50%, var(--deep) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.news-thumb-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(184,145,63,0.04) 0px, rgba(184,145,63,0.04) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(0deg, rgba(184,145,63,0.04) 0px, rgba(184,145,63,0.04) 1px, transparent 1px, transparent 40px);
}
.thumb-icon {
  font-family: var(--disp); font-size: 1.6rem;
  color: rgba(184,145,63,0.2); position: relative; z-index: 1;
  font-style: italic;
}

.news-tag {
  font-family: var(--mono); font-size: .48rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--sp-2);
}
.news-title {
  font-family: var(--disp); font-size: 1.15rem;
  font-weight: 500; letter-spacing: -.01em;
  line-height: 1.3; color: var(--navy);
  margin-bottom: var(--sp-2);
  transition: color var(--dur) var(--ease);
}
.news-card:hover .news-title { color: var(--gold); }

.news-lede {
  font-family: var(--body); font-size: .85rem;
  line-height: 1.6; color: var(--mid); font-weight: 300;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.news-meta {
  font-family: var(--mono); font-size: .45rem;
  letter-spacing: .12em; color: var(--mid);
  text-transform: uppercase; margin-top: var(--sp-2);
}

/* ═══════════════════════════════════════════════════
   RADAR SECTION (Home inline)
   ═══════════════════════════════════════════════════ */
.radar-strip {
  background: var(--navy);
  padding: var(--sp-8) var(--gutter);
}
.radar-strip-inner {
  max-width: var(--max-content); margin: 0 auto;
}
.radar-strip .section-label { color: var(--gold); }
.radar-strip .section-title {
  color: var(--paper); margin-bottom: var(--sp-5);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.radar-list {
  display: flex; flex-direction: column;
}
.radar-item {
  display: grid; grid-template-columns: 70px 1fr auto;
  gap: var(--sp-6); align-items: start;
  padding: var(--sp-6) 0;
  border-bottom: 1px solid rgba(243,240,233,0.06);
  text-decoration: none; color: inherit;
  transition: background var(--dur) var(--ease);
}
.radar-item:first-child { border-top: 1px solid rgba(243,240,233,0.06); }
.radar-item:hover { background: rgba(243,240,233,0.02); }

.radar-date {
  font-family: var(--mono); font-size: .55rem;
  letter-spacing: .12em; color: rgba(243,240,233,0.3);
  text-transform: uppercase; padding-top: .2rem;
}
.radar-source {
  font-family: var(--mono); font-size: .48rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--sp-1);
}
.radar-title {
  font-family: var(--disp); font-size: 1.3rem;
  font-weight: 500; color: var(--paper);
  line-height: 1.3; margin-bottom: var(--sp-2);
  transition: color var(--dur);
}
.radar-item:hover .radar-title { color: var(--gold-l); }
.radar-comment {
  font-family: var(--body); font-size: .88rem;
  line-height: 1.65; color: rgba(243,240,233,0.4); font-weight: 300;
}
.radar-arrow {
  font-family: var(--mono); font-size: .7rem;
  color: rgba(243,240,233,0.15); padding-top: .3rem;
  transition: color var(--dur);
}
.radar-item:hover .radar-arrow { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   PRODUCTS GRID (Home)
   ═══════════════════════════════════════════════════ */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6); margin-top: var(--sp-7);
}
.product-card {
  background: var(--off); padding: var(--sp-7) var(--sp-6);
  border: 1px solid var(--rule);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  position: relative;
}
.product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.product-tag {
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--sp-5);
}
.product-name {
  font-family: var(--disp); font-size: 1.6rem;
  font-weight: 400; letter-spacing: -.01em;
  margin-bottom: var(--sp-3); color: var(--navy);
}
.product-desc {
  font-family: var(--body); font-size: .92rem;
  line-height: 1.65; color: var(--mid); font-weight: 300;
}

/* ═══════════════════════════════════════════════════
   PILLARS (About)
   ═══════════════════════════════════════════════════ */
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: var(--sp-7);
}
.pillar {
  padding: var(--sp-7) var(--sp-6);
  border-right: 1px solid var(--rule);
  position: relative;
}
.pillar:last-child { border-right: none; }
.pillar-num {
  font-family: var(--mono); font-size: .55rem;
  letter-spacing: .2em; color: var(--gold);
  margin-bottom: var(--sp-5);
}
.pillar-title {
  font-family: var(--disp); font-size: 1.8rem;
  font-weight: 400; letter-spacing: -.01em;
  margin-bottom: var(--sp-4); color: var(--navy);
}
.pillar-desc {
  font-family: var(--body); font-size: .95rem;
  line-height: 1.7; color: var(--mid); font-weight: 300;
}

/* ═══════════════════════════════════════════════════
   CONTRAST (Not/Is)
   ═══════════════════════════════════════════════════ */
.contrast-section {
  background: var(--navy); color: var(--paper);
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.contrast-col {
  padding: var(--sp-9) var(--gutter);
  display: flex; flex-direction: column; justify-content: center;
}
.contrast-col:first-child {
  border-right: 1px solid rgba(243,240,233,0.06);
}
.contrast-col h3 {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .25em; text-transform: uppercase;
  margin-bottom: var(--sp-7);
}
.contrast-col:first-child h3 { color: rgba(243,240,233,0.25); }
.contrast-col:last-child h3  { color: var(--gold); }
.contrast-col ul { display: flex; flex-direction: column; gap: var(--sp-4); }
.contrast-col li {
  font-family: var(--serif); font-size: 1.15rem;
  line-height: 1.6; font-weight: 300;
}
.contrast-col:first-child li {
  color: rgba(243,240,233,0.25);
  text-decoration: line-through;
  text-decoration-color: rgba(243,240,233,0.08);
}
.contrast-col:last-child li { color: rgba(243,240,233,0.8); }

/* ═══════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════ */
.cta-section {
  background: var(--deep); text-align: center;
  padding: var(--sp-10) var(--sp-6);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,145,63,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.cta-wordmark {
  font-family: var(--disp); font-weight: 300;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 1; letter-spacing: -.03em;
  color: var(--paper); position: relative; z-index: 1;
  white-space: nowrap; margin-bottom: var(--sp-5);
}
.cta-wordmark .dot { color: var(--gold); }
.cta-wordmark .jus { font-style: italic; }
.cta-subtitle {
  font-family: var(--serif); font-size: 1.2rem;
  font-weight: 300; font-style: italic;
  color: rgba(243,240,233,0.4);
  margin-bottom: var(--sp-7); position: relative; z-index: 1;
}
.cta-form {
  display: flex; gap: var(--sp-3);
  justify-content: center; align-items: center;
  position: relative; z-index: 1;
}
.cta-input {
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: .05em; padding: .95rem 1.5rem;
  background: rgba(243,240,233,0.04);
  border: 1px solid rgba(184,145,63,0.12);
  color: var(--paper); width: 340px;
  outline: none; transition: border-color var(--dur);
}
.cta-input::placeholder { color: rgba(243,240,233,0.2); }
.cta-input:focus { border-color: var(--gold); }
.cta-btn {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .18em; text-transform: uppercase;
  background: var(--gold); color: var(--deep);
  padding: .95rem 2rem;
  transition: background var(--dur) var(--ease);
}
.cta-btn:hover { background: var(--gold-l); }

/* ═══════════════════════════════════════════════════
   SINGLE POST — PREMIUM READING
   ═══════════════════════════════════════════════════ */

/* Reading progress bar */
.reading-progress {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--gold);
  z-index: 200; transition: width 50ms linear;
}

/* Post header */
.post-header {
  background: var(--deep); padding: var(--sp-7) var(--gutter) var(--sp-5);
  text-align: center; position: relative; overflow: hidden;
}
.post-header::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(184,145,63,0.02) 0px, rgba(184,145,63,0.02) 1px, transparent 1px, transparent 100px),
    repeating-linear-gradient(0deg, rgba(184,145,63,0.02) 0px, rgba(184,145,63,0.02) 1px, transparent 1px, transparent 100px);
  pointer-events: none;
}
.post-header-inner {
  position: relative; z-index: 1;
  max-width: 800px; margin: 0 auto;
}
.post-header .news-tag { margin-bottom: var(--sp-5); }
.post-header h1 {
  font-family: var(--disp);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400; color: var(--paper);
  line-height: 1.15; letter-spacing: -.025em;
  margin-bottom: var(--sp-4);
}
.post-header .post-subtitle {
  font-family: var(--serif); font-size: 1.2rem;
  font-weight: 300; font-style: italic;
  color: rgba(243,240,233,0.45); line-height: 1.6;
  max-width: 600px; margin: 0 auto var(--sp-6);
}

/* Author byline */
.post-byline {
  display: flex; align-items: center;
  justify-content: center; gap: var(--sp-4);
}
.post-byline-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  overflow: hidden; border: 1px solid rgba(184,145,63,0.2);
}
.post-byline-avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-byline-info {
  text-align: left;
}
.post-byline-name {
  font-family: var(--body); font-size: .85rem;
  font-weight: 600; color: var(--paper);
}
.post-byline-meta {
  font-family: var(--mono); font-size: .48rem;
  letter-spacing: .12em; color: rgba(243,240,233,0.25);
  text-transform: uppercase;
}

/* Featured image */
.post-featured-img {
  max-width: var(--max-wide); margin: -3rem auto 0;
  position: relative; z-index: 2; padding: 0 var(--sp-6);
}
.post-featured-img img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
}
.post-featured-caption {
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .1em; color: var(--mid);
  text-align: right; margin-top: var(--sp-2);
}

/* Post content */
.post-content {
  max-width: var(--max-reading); margin: var(--sp-8) auto;
  padding: 0 var(--sp-6);
}
.post-content p {
  font-family: var(--body); font-size: 1.12rem;
  line-height: 1.85; color: var(--navy);
  margin-bottom: var(--sp-6);
}
.post-content h2 {
  font-family: var(--disp); font-size: 1.9rem;
  font-weight: 400; color: var(--navy);
  margin: var(--sp-8) 0 var(--sp-5); letter-spacing: -.01em;
}
.post-content h3 {
  font-family: var(--disp); font-size: 1.45rem;
  font-weight: 500; color: var(--navy);
  margin: var(--sp-7) 0 var(--sp-4);
}
.post-content h4 {
  font-family: var(--body); font-size: 1rem;
  font-weight: 600; color: var(--navy);
  text-transform: uppercase; letter-spacing: .05em;
  margin: var(--sp-6) 0 var(--sp-3);
}
.post-content blockquote {
  border-left: 3px solid var(--gold);
  padding: var(--sp-4) 0 var(--sp-4) var(--sp-6);
  margin: var(--sp-6) 0;
}
.post-content blockquote p {
  font-family: var(--serif); font-style: italic;
  color: var(--mid); font-size: 1.15rem;
  margin-bottom: 0;
}
.post-content a {
  color: var(--gold);
  border-bottom: 1px solid rgba(184,145,63,0.3);
  transition: border-color var(--dur);
}
.post-content a:hover { border-bottom-color: var(--gold); }
.post-content ul, .post-content ol {
  list-style: disc; padding-left: var(--sp-5);
  margin-bottom: var(--sp-6);
}
.post-content ol { list-style: decimal; }
.post-content li {
  font-family: var(--body); font-size: 1.05rem;
  line-height: 1.75; color: var(--navy);
  margin-bottom: var(--sp-2);
}
.post-content figure {
  margin: var(--sp-7) calc(-1 * var(--sp-6));
}
.post-content figcaption {
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .1em; color: var(--mid);
  text-align: center; margin-top: var(--sp-3);
  padding: 0 var(--sp-6);
}
.post-content hr {
  border: none; height: 1px;
  background: var(--rule); margin: var(--sp-8) auto;
  max-width: 100px;
}
.post-content pre {
  background: var(--deep); color: var(--paper);
  padding: var(--sp-5); margin: var(--sp-6) 0;
  overflow-x: auto; font-family: var(--mono);
  font-size: .85rem; line-height: 1.6;
  border-left: 3px solid var(--gold);
}
.post-content code {
  font-family: var(--mono); font-size: .9em;
  background: var(--off); padding: .15em .35em;
  border-radius: var(--radius-sm);
}
.post-content pre code {
  background: transparent; padding: 0;
}

/* Sources / References */
.post-sources {
  max-width: var(--max-reading); margin: 0 auto var(--sp-8);
  padding: var(--sp-6);
  border-top: 1px solid var(--rule);
}
.post-sources h4 {
  font-family: var(--mono); font-size: .55rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--sp-4);
}
.post-sources ul { list-style: none; }
.post-sources li {
  font-family: var(--body); font-size: .88rem;
  line-height: 1.6; color: var(--mid);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid rgba(213,208,197,0.4);
}
.post-sources a {
  color: var(--gold);
  border-bottom: 1px solid rgba(184,145,63,0.2);
}

/* Post tags */
.post-tags {
  max-width: var(--max-reading); margin: 0 auto var(--sp-8);
  padding: 0 var(--sp-6);
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
}
.post-tag {
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--mid); padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--rule);
  transition: all var(--dur);
}
.post-tag:hover { color: var(--gold); border-color: var(--gold); }

/* Author box */
.post-author-box {
  max-width: var(--max-reading); margin: 0 auto var(--sp-8);
  padding: var(--sp-6);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: 64px 1fr;
  gap: var(--sp-5); align-items: start;
}
.post-author-box-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  overflow: hidden; border: 2px solid var(--gold);
}
.post-author-box-avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-author-box-name {
  font-family: var(--disp); font-size: 1.3rem;
  font-weight: 500; color: var(--navy);
  margin-bottom: var(--sp-2);
}
.post-author-box-bio {
  font-family: var(--body); font-size: .88rem;
  line-height: 1.6; color: var(--mid);
}

/* Related posts */
.related-posts {
  background: var(--off); border-top: 1px solid var(--rule);
}

/* ═══════════════════════════════════════════════════
   ARCHIVE / CATEGORY PAGES
   ═══════════════════════════════════════════════════ */
.archive-hero {
  background: var(--deep);
  padding: var(--sp-7) var(--gutter) var(--sp-5);
  text-align: center;
}
.archive-hero .section-label { color: var(--gold); }
.archive-hero .section-title {
  color: var(--paper); margin-bottom: var(--sp-3);
}
.archive-hero-desc {
  font-family: var(--serif); font-size: 1.1rem;
  color: rgba(243,240,233,0.4); font-style: italic;
  font-weight: 300; max-width: 500px; margin: 0 auto;
}



/* âââââââââââââââââââââââââââââââââââââââââââââââââââ
   NOTÃCIAS PAGE v2 (home.php) â Dynamic editorial
   âââââââââââââââââââââââââââââââââââââââââââââââââââ */

/* --- Page header --- */
.noticias-header {
  background: var(--deep);
  padding: var(--sp-7) var(--gutter) var(--sp-6);
  text-align: center;
}
.noticias-header-inner {
  max-width: var(--max-content);
  margin: 0 auto;
}
.noticias-page-title {
  font-family: var(--disp);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; color: var(--paper);
  letter-spacing: -.02em; line-height: 1.1;
  margin-bottom: var(--sp-2);
}
.noticias-page-desc {
  font-family: var(--serif);
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  color: var(--mist); font-weight: 300;
  max-width: 480px; margin: 0 auto;
  line-height: 1.5;
}

/* --- Filter bar --- */
.noticias-filters {
  background: var(--off);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 90;
}
.noticias-filters-inner {
  display: flex; gap: var(--sp-2);
  max-width: calc(var(--max-content) + var(--gutter) * 2);
  margin: 0 auto; padding: var(--sp-3) var(--gutter);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.noticias-filters-inner::-webkit-scrollbar { display: none; }
.noticias-filter {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  font-family: var(--mono); font-size: .65rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--mid); padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--rule); border-radius: 100px;
  white-space: nowrap; text-decoration: none;
  transition: all var(--dur) var(--ease);
}
.noticias-filter:hover {
  color: var(--navy); border-color: var(--navy);
}
.noticias-filter.is-active {
  background: var(--navy); color: var(--paper);
  border-color: var(--navy);
}
.noticias-filter-count {
  font-size: .55rem; opacity: .6;
}

/* --- Main container --- */
.noticias-v2 {
  max-width: calc(var(--max-content) + var(--gutter) * 2);
  margin: 0 auto;
  padding: var(--sp-6) var(--gutter) var(--sp-9);
}

/* --- Hero trio --- */
.noticias-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}
.noticias-hero--single {
  grid-template-columns: 1fr;
}

/* Featured card (large) */
.nh-featured { position: relative; }
.nh-featured-link {
  display: block; text-decoration: none; color: inherit;
}
.nh-featured-img {
  position: relative; width: 100%;
  aspect-ratio: 16 / 10; overflow: hidden;
  border-radius: var(--radius);
  background: var(--night);
}
.nh-featured-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.nh-featured-link:hover .nh-featured-img img {
  transform: scale(1.03);
}
.nh-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,18,32,.85) 0%, rgba(10,18,32,.3) 50%, transparent 100%);
  pointer-events: none;
}
.nh-featured-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--sp-6);
  color: var(--paper);
}
.nh-tag {
  display: inline-block;
  font-family: var(--mono); font-size: .55rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-l);
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid rgba(184,145,63,.4);
  border-radius: 100px;
  margin-bottom: var(--sp-3);
}
.nh-featured-title {
  font-family: var(--disp);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 400; line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: var(--sp-3);
}
.nh-featured-lede {
  font-family: var(--serif);
  font-size: .95rem; font-weight: 300;
  color: rgba(243,240,233,.7);
  line-height: 1.5; margin-bottom: var(--sp-3);
  max-width: 90%;
}
.nh-meta {
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(243,240,233,.5);
}
.nh-meta .sep { margin: 0 var(--sp-2); opacity: .4; }
.nh-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--night); color: var(--mist);
  font-family: var(--serif); font-size: 4rem; opacity: .3;
}

/* Side cards (secondary) */
.nh-secondary {
  display: flex; flex-direction: column;
  gap: var(--sp-5);
}
.nh-side-card { flex: 1; }
.nh-side-link {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  height: 100%;
}
.nh-side-img {
  width: 100%; aspect-ratio: 16 / 10;
  overflow: hidden; border-radius: var(--radius);
  margin-bottom: var(--sp-3); background: var(--night);
}
.nh-side-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.nh-side-link:hover .nh-side-img img {
  transform: scale(1.03);
}
.nh-side-body { padding: 0 var(--sp-1); }
.nh-side-body .nh-tag {
  margin-bottom: var(--sp-2);
  color: var(--gold-d);
  border-color: rgba(184,145,63,.25);
}
.nh-side-title {
  font-family: var(--disp);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400; line-height: 1.25;
  letter-spacing: -.01em; color: var(--navy);
  margin-bottom: var(--sp-2);
  transition: color var(--dur);
}
.nh-side-link:hover .nh-side-title {
  color: var(--gold-d);
}
.nh-side-body .nh-meta { color: var(--mid); }

/* --- Section headers --- */
.noticias-section-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--gold);
  margin-bottom: var(--sp-5);
}
.noticias-section-label {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
}
.noticias-section-link {
  font-family: var(--mono); font-size: .55rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--mid); text-decoration: none;
  transition: color var(--dur);
}
.noticias-section-link:hover { color: var(--gold); }

/* --- Grid v2 --- */
.noticias-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.noticias-mais {
  margin-bottom: var(--sp-7);
}

/* --- Cross-content: Radar strip --- */
.noticias-cross {
  margin-bottom: var(--sp-7);
}
.noticias-cross--radar {
  background: var(--deep);
  margin-left: calc(var(--gutter) * -1);
  margin-right: calc(var(--gutter) * -1);
  padding: var(--sp-6) var(--gutter);
  border-radius: var(--radius);
}
.noticias-cross--radar .noticias-section-label {
  color: var(--gold-l);
}
.noticias-cross--radar .noticias-section-link {
  color: var(--mist);
}
.noticias-cross--radar .noticias-section-header {
  border-bottom-color: rgba(184,145,63,.3);
}
.noticias-radar-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}
.nr-card {
  display: block; text-decoration: none;
  padding: var(--sp-4);
  border: 1px solid rgba(107,136,172,.15);
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
}
.nr-card:hover {
  border-color: var(--gold);
  background: rgba(184,145,63,.05);
}
.nr-date {
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--mist); margin-bottom: var(--sp-2);
}
.nr-title {
  font-family: var(--disp); font-size: .95rem;
  font-weight: 400; line-height: 1.3;
  color: var(--paper); letter-spacing: -.01em;
  margin-bottom: var(--sp-2);
}
.nr-source {
  font-family: var(--mono); font-size: .45rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); opacity: .7;
}

/* --- Pagination --- */
.noticias-pagination {
  text-align: center;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--rule);
}
.noticias-pagination a,
.noticias-pagination span {
  display: inline-block;
  font-family: var(--mono); font-size: .65rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  color: var(--mid); text-decoration: none;
  transition: color var(--dur);
}
.noticias-pagination a:hover { color: var(--gold); }
.noticias-pagination .current {
  color: var(--gold); font-weight: 600;
}

/* --- Legacy compat (noticia-item used in archive.php) --- */
.noticia-item {
  display: flex; gap: var(--sp-4);
  align-items: flex-start; text-decoration: none;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--rule);
  transition: background var(--dur);
}
.noticia-item:hover { background: rgba(184,145,63,0.03); }
.noticia-item-body { flex: 1; min-width: 0; }
.noticia-item-tag {
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-d); display: block;
  margin-bottom: var(--sp-1);
}
.noticia-item-title {
  font-family: var(--disp); font-size: 1rem;
  font-weight: 400; line-height: 1.3;
  color: var(--navy); letter-spacing: -.01em;
  margin-bottom: var(--sp-2); transition: color var(--dur);
}
.noticia-item:hover .noticia-item-title { color: var(--gold-d); }
.noticia-item-meta {
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--mid);
}
.noticia-item-thumb {
  width: 100px; min-width: 100px; aspect-ratio: 4 / 3;
  overflow: hidden; flex-shrink: 0;
}
.noticia-item-thumb img { width: 100%; height: 100%; object-fit: cover; }

.noticias-empty {
  text-align: center; padding: var(--sp-9);
  font-family: var(--serif); color: var(--mid);
  font-style: italic;
}

@media (max-width: 800px) {
  .noticias-top { grid-template-columns: 1fr; }
  .noticias-lateral { border-left: none; padding-left: 0; border-top: 1px solid var(--sand-300); padding-top: var(--sp-5); }
  .noticia-item-thumb { width: 80px; height: 56px; }
}
.archive-filters {
  display: flex; gap: var(--sp-5); margin-bottom: var(--sp-7);
  border-bottom: 1px solid var(--rule); padding-bottom: var(--sp-4);
  flex-wrap: wrap;
}
.archive-filter {
  font-family: var(--mono); font-size: .55rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--mid); background: none; border: none;
  padding: var(--sp-2) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--dur), border-color var(--dur);
}
.archive-filter:hover,
.archive-filter.active,
.archive-filter[aria-current="page"] {
  color: var(--gold); border-bottom-color: var(--gold);
}

.archive-pagination {
  display: flex; justify-content: center;
  gap: var(--sp-3); margin-top: var(--sp-8);
}
.archive-pagination a, .archive-pagination span {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .1em; padding: .65rem 1.1rem;
  border: 1px solid var(--rule); color: var(--mid);
  transition: all var(--dur);
}
.archive-pagination a:hover,
.archive-pagination .current {
  border-color: var(--gold); color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   BRIEFING ARCHIVE
   ═══════════════════════════════════════════════════ */
.briefing-list {
  max-width: var(--max-wide); margin: 0 auto;
  display: flex; flex-direction: column;
}
.briefing-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: var(--sp-5); align-items: center;
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--rule);
  transition: background var(--dur);
}
.briefing-item:hover { background: var(--off); }
.briefing-number {
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .1em; color: var(--gold);
}
.briefing-title {
  font-family: var(--disp); font-size: 1.2rem;
  font-weight: 500; color: var(--navy);
  transition: color var(--dur);
}
.briefing-item:hover .briefing-title { color: var(--gold); }
.briefing-date {
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .1em; color: var(--mid);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   COLUNA (Column) Template
   ═══════════════════════════════════════════════════ */
.coluna-header {
  background: var(--deep);
  padding: var(--sp-10) var(--gutter) var(--sp-8);
  display: grid; grid-template-columns: 80px 1fr;
  gap: var(--sp-5); align-items: end;
  max-width: 800px; margin: 0 auto;
}
.coluna-header-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  overflow: hidden; border: 2px solid rgba(184,145,63,0.3);
}
.coluna-header-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════ */
.about-hero {
  background: var(--deep);
  padding: var(--sp-10) var(--gutter) var(--sp-9);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--sp-8); align-items: center;
}
.about-hero-text {
  font-family: var(--serif); font-size: 1.2rem;
  line-height: 1.75; color: rgba(243,240,233,0.55);
  font-weight: 300;
}
.about-hero-text strong { color: var(--gold); font-weight: 500; }
.about-manifesto-text {
  max-width: 700px;
}
.about-manifesto-text p {
  font-family: var(--serif); font-size: 1.25rem;
  line-height: 1.75; color: var(--navy); font-weight: 300;
  margin-bottom: var(--sp-5);
}
.about-manifesto-text strong { color: var(--gold); font-weight: 500; }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--deep);
  border-top: 1px solid rgba(184,145,63,0.08);
}
.footer-main {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-8); padding: var(--sp-9) var(--gutter);
  max-width: calc(var(--max-content) + var(--gutter) * 2);
  margin: 0 auto;
}
.footer-brand {}
.footer-logo {
  font-family: var(--disp); font-size: 1.5rem; font-weight: 400;
  color: var(--paper); letter-spacing: -.01em;
  white-space: nowrap; display: inline-block;
  margin-bottom: var(--sp-4);
}
.footer-logo .dot { color: var(--gold); }
.footer-logo .jus { font-style: italic; }
.footer-tagline {
  font-family: var(--serif); font-size: .95rem;
  font-style: italic; font-weight: 300;
  color: rgba(243,240,233,0.3); line-height: 1.6;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--mono); font-size: .5rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--sp-5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a {
  font-family: var(--body); font-size: .85rem;
  color: rgba(243,240,233,0.35);
  transition: color var(--dur);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(184,145,63,0.06);
  padding: var(--sp-5) var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  max-width: calc(var(--max-content) + var(--gutter) * 2);
  margin: 0 auto;
}
.footer-copy {
  font-family: var(--mono); font-size: .48rem;
  letter-spacing: .12em; color: rgba(243,240,233,0.15);
}
.footer-social {
  display: flex; gap: var(--sp-4);
}
.footer-social a {
  color: rgba(243,240,233,0.2);
  transition: color var(--dur);
}
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════════
   SEARCH OVERLAY
   ═══════════════════════════════════════════════════ */
.search-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,18,32,0.96);
  z-index: 150;
  justify-content: center; align-items: center;
}
.search-overlay.active {
  display: flex;
  animation: fadeIn .2s var(--ease);
}
.search-overlay-inner {
  width: 100%; max-width: 600px; padding: var(--sp-6);
}
.search-overlay input {
  width: 100%;
  font-family: var(--disp); font-size: 2rem;
  font-weight: 300; background: transparent;
  border: none; border-bottom: 1px solid rgba(184,145,63,0.2);
  color: var(--paper); padding: var(--sp-4) 0;
  outline: none;
}
.search-overlay input::placeholder {
  color: rgba(243,240,233,0.2);
}
.search-close {
  position: absolute; top: var(--sp-6); right: var(--sp-6);
  font-family: var(--mono); font-size: .6rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: rgba(243,240,233,0.3);
  transition: color var(--dur);
}
.search-close:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════ */
.text-gold  { color: var(--gold); }
.text-muted { color: var(--mid); }
.text-paper { color: var(--paper); }
.bg-dark    { background: var(--deep); }
.bg-alt     { background: var(--off); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --gutter: 2.5rem; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .noticias-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .noticias-radar-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}

@media (max-width: 768px) {
  :root { --gutter: 1.5rem; }

  /* Nav */
  .nav-center { display: none; }
  .nav-toggle { display: flex; }
  .nav-right .nav-search-btn { display: none; }

  /* Hero */
  .hero-brand { flex-direction: column; gap: var(--sp-2); padding: var(--sp-4) var(--gutter); }
  .hero-tagline { display: none; }
  .ticker-headline { font-size: .75rem; max-width: 280px; }

  /* Featured */
  .featured-card { grid-template-columns: 1fr; gap: var(--sp-5); padding: var(--sp-5); }
  .featured-story { padding: 0 var(--gutter) var(--sp-7); }

  /* Grids */
  .news-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .products-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--rule); padding: var(--sp-5) var(--sp-4); }
  .pillar:last-child { border-bottom: none; }

  /* Contrast */
  .contrast-section { grid-template-columns: 1fr; }
  .contrast-col:first-child { border-right: none; border-bottom: 1px solid rgba(243,240,233,0.06); }
  .contrast-col { padding: var(--sp-7) var(--gutter); }

  /* About */
  .about-hero { grid-template-columns: 1fr; padding-top: var(--sp-9); }

  /* Radar */
  .radar-item { grid-template-columns: 1fr; gap: var(--sp-2); }
  .radar-date { min-width: auto; }
  .radar-arrow { display: none; }


  /* Noticias page v2 */
  .noticias-hero { grid-template-columns: 1fr; gap: var(--sp-5); }
  .nh-featured-content { padding: var(--sp-4); }
  .nh-featured-title { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .nh-featured-lede { display: none; }
  .nh-secondary { flex-direction: row; gap: var(--sp-4); }
  .nh-side-card { flex: 1; }
  .nh-side-img { aspect-ratio: 4 / 3; }
  .noticias-grid-v2 { grid-template-columns: 1fr; gap: var(--sp-5); }
  .noticias-radar-strip { grid-template-columns: repeat(2, 1fr); }
  .noticias-cross--radar {
    margin-left: calc(var(--gutter) * -1);
    margin-right: calc(var(--gutter) * -1);
    padding: var(--sp-5) var(--gutter);
  }
  .noticia-item-thumb { width: 80px; min-width: 80px; }

  /* Single */
  .post-header { padding: var(--sp-6) var(--gutter) var(--sp-5); }
  .post-content { padding: 0 var(--gutter); }

  /* CTA */
  .cta-form { flex-direction: column; }
  .cta-input { width: 100%; max-width: 340px; }
  .cta-wordmark { font-size: clamp(2rem, 9vw, 3.5rem); }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--sp-3); text-align: center; }

  /* Archive */
  .archive-hero { padding-top: var(--sp-6); }
  .archive-filters { gap: var(--sp-3); }

  /* Briefing */
  .briefing-item { grid-template-columns: 60px 1fr; }
  .briefing-date { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .news-grid { grid-template-columns: 1fr; }
  .post-byline { flex-direction: column; text-align: center; }

  /* Noticias v2 mobile */
  .noticias-header { padding: var(--sp-5) var(--sp-4) var(--sp-4); }
  .noticias-page-title { font-size: 1.8rem; }
  .noticias-v2 { padding: var(--sp-4) var(--sp-4) var(--sp-7); }
  .nh-featured-img { aspect-ratio: 4 / 3; }
  .nh-secondary { flex-direction: column; gap: var(--sp-4); }
  .nh-side-link { flex-direction: row; gap: var(--sp-3); }
  .nh-side-img {
    width: 110px; min-width: 110px;
    aspect-ratio: 1 / 1; margin-bottom: 0;
  }
  .nh-side-body { display: flex; flex-direction: column; justify-content: center; }
  .nh-side-title { font-size: .95rem; }
  .noticias-radar-strip { grid-template-columns: 1fr; }
  .noticias-filters-inner { padding: var(--sp-2) var(--sp-4); }
  .noticias-filter { font-size: .55rem; padding: var(--sp-2) var(--sp-3); }

}

/* ═══════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════ */
@media print {
  .site-nav, .site-footer, .cta-section,
  .reading-progress, .search-overlay,
  .nav-mobile { display: none !important; }
  body { background: #fff; color: #000; }
  .post-header { background: #fff; color: #000; padding: 2rem 0; }
  .post-header h1 { color: #000; }
  .post-content { max-width: 100%; }
  .post-content a { color: #000; border-bottom: 1px solid #999; }
  .post-content a::after { content: " (" attr(href) ")"; font-size: .8em; color: #666; }
}

/* ── Featured Carousel ── */
/* ── Featured Carousel (slide horizontal) ── */
.featured-carousel { position: relative; overflow: hidden; }
.featured-slide { position: absolute; top: 0; left: 0; width: 100%; transform: translateX(100%); opacity: 0; transition: transform .6s cubic-bezier(.4,0,.2,1), opacity .6s ease; pointer-events: none; z-index: 0; }
.featured-slide:first-child:not(.is-leaving) { position: relative; transform: translateX(0); opacity: 1; pointer-events: auto; z-index: 1; }
.featured-carousel.js-ready .featured-slide:first-child:not(.is-active):not(.is-leaving) { position: absolute; transform: translateX(100%); opacity: 0; pointer-events: none; z-index: 0; }
.featured-slide.is-active { position: relative; transform: translateX(0); opacity: 1; pointer-events: auto; z-index: 1; }
.featured-slide.is-leaving { position: absolute; transform: translateX(-100%); opacity: 0; z-index: 0; }
.featured-dots { display: flex; justify-content: center; gap: var(--sp-3); padding: var(--sp-3) 0 var(--sp-4); }
.featured-dot { width: 8px; height: 8px; border-radius: 50%; border: 1px solid rgba(243,240,233,0.3); background: transparent; cursor: pointer; padding: 0; transition: all .3s ease; }
.featured-dot.is-active { background: var(--gold); border-color: var(--gold); transform: scale(1.3); }
.featured-dot:hover { border-color: var(--gold); }


/* ═══════════════════════════════════════════════════
   NOTÍCIAS PORTAL — Layout Editorial v3

   Adicionar ao final do style.css do tema cojus-theme-v2.
   Substitui os estilos antigos de .noticias-header, .noticias-v2,
   .noticias-hero, .nh-featured, .nh-secondary, .noticias-mais,
   .noticias-grid-v2, .noticias-filters, .cojus-divider.
   ═══════════════════════════════════════════════════ */


/* ─── EDITORIAS BAR (Subheader editorial) ─── */

.editorias-bar {
    background: var(--deep);
    border-bottom: 1px solid rgba(184,145,63,0.08);
    position: sticky;
    top: 48px;
    z-index: 90;
    padding: 0 var(--gutter);
}

.logged-in.admin-bar .editorias-bar {
    top: 80px;
}

.editorias-container {
    max-width: var(--max-content);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--sp-5);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: var(--sp-3) 0;
}

.editorias-container::-webkit-scrollbar {
    display: none;
}

.editoria-link {
    font-family: var(--mono);
    font-size: .58rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(243,240,233,0.3);
    white-space: nowrap;
    padding: var(--sp-2) 0;
    border-bottom: 1px solid transparent;
    transition: color var(--dur) var(--ease),
                border-color var(--dur) var(--ease);
    text-decoration: none;
}

.editoria-link:hover {
    color: var(--gold);
}

.editoria-link.is-active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}


/* ─── NOTICIAS PORTAL (Container geral) ─── */

.noticias-portal {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: var(--sp-7) var(--gutter) var(--sp-9);
}


/* ─── NÍVEL 1: MANCHETE PRINCIPAL ─── */

.manchete {
    margin-bottom: var(--sp-8);
}

.manchete-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.manchete-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: var(--sp-5);
    background: var(--navy);
}

.manchete-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.manchete-link:hover .manchete-img img {
    transform: scale(1.03);
}

.manchete-body {
    max-width: var(--max-wide);
}

.manchete-title {
    font-family: var(--disp);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: var(--sp-3);
    transition: color var(--dur) var(--ease);
}

.manchete-link:hover .manchete-title {
    color: var(--gold-d);
}

.manchete-lede {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.65;
    color: var(--mid);
    margin-bottom: var(--sp-4);
    max-width: 700px;
}

.manchete-meta {
    font-family: var(--mono);
    font-size: .5rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--mid);
}


/* ─── NÍVEL 2: DESTAQUES ─── */

.destaques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    margin-bottom: var(--sp-8);
    padding-top: var(--sp-7);
    border-top: 1px solid var(--rule);
}

.destaques-grid[data-columns="2"] {
    grid-template-columns: repeat(2, 1fr);
}

.destaque-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.destaque-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy);
    margin-bottom: var(--sp-4);
}

.destaque-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s var(--ease);
    opacity: .88;
}

.destaque-card:hover .destaque-img img {
    transform: scale(1.04);
    opacity: 1;
}

.destaque-title {
    font-family: var(--disp);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: var(--sp-2);
    transition: color var(--dur) var(--ease);
}

.destaque-card:hover .destaque-title {
    color: var(--gold);
}

.destaque-lede {
    font-family: var(--body);
    font-size: .88rem;
    line-height: 1.6;
    color: var(--mid);
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--sp-2);
}

.destaque-meta {
    font-family: var(--mono);
    font-size: .46rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: auto;
}


/* ─── NÍVEL 3: FEED PADRÃO ─── */

.feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    margin-bottom: var(--sp-8);
    padding-top: var(--sp-7);
    border-top: 1px solid var(--rule);
}

.feed-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform var(--dur) var(--ease);
}

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

.feed-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy);
    margin-bottom: var(--sp-3);
}

.feed-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s var(--ease), opacity .4s var(--ease);
    opacity: .85;
}

.feed-card:hover .feed-card-img img {
    transform: scale(1.04);
    opacity: 1;
}

.feed-card-title {
    font-family: var(--disp);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1.3;
    color: var(--navy);
    margin-bottom: var(--sp-2);
    transition: color var(--dur) var(--ease);
}

.feed-card:hover .feed-card-title {
    color: var(--gold);
}

.feed-card-lede {
    font-family: var(--body);
    font-size: .85rem;
    line-height: 1.55;
    color: var(--mid);
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feed-card-meta {
    font-family: var(--mono);
    font-size: .44rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: var(--sp-2);
}


/* ─── NÍVEL 4: COMPACTO ─── */

.feed-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-5);
    margin-bottom: var(--sp-8);
    padding-top: var(--sp-7);
    border-top: 1px solid var(--rule);
}

.compact-card {
    display: flex;
    gap: var(--sp-3);
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
}

.compact-img {
    width: 80px;
    height: 56px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--navy);
}

.compact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .3s var(--ease);
    opacity: .8;
}

.compact-card:hover .compact-img img {
    opacity: 1;
}

.compact-title {
    font-family: var(--disp);
    font-size: .92rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--navy);
    transition: color var(--dur) var(--ease);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.compact-card:hover .compact-title {
    color: var(--gold);
}


/* ─── PAGINAÇÃO ─── */

.noticias-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--sp-2);
    margin-top: var(--sp-7);
    padding-top: var(--sp-6);
    border-top: 1px solid var(--rule);
}

.noticias-pagination a,
.noticias-pagination span {
    font-family: var(--mono);
    font-size: .6rem;
    letter-spacing: .1em;
    padding: .6rem 1rem;
    border: 1px solid var(--rule);
    color: var(--mid);
    text-decoration: none;
    transition: all var(--dur) var(--ease);
}

.noticias-pagination a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.noticias-pagination .current {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(184,145,63,0.06);
}

.noticias-pagination .prev,
.noticias-pagination .next {
    letter-spacing: .05em;
}


/* ─── CROSS-CONTENT SECTIONS ─── */

.noticias-cross {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: var(--sp-7) var(--gutter) var(--sp-8);
    border-top: 1px solid var(--rule);
}

.noticias-cross--radar {
    background: var(--off);
    max-width: none;
    border-top: none;
}

.noticias-cross--radar .noticias-cross-header,
.noticias-cross--radar .cross-content-grid {
    max-width: var(--max-content);
    margin-left: auto;
    margin-right: auto;
}

.noticias-cross-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--sp-6);
}

.noticias-cross-title {
    font-family: var(--mono);
    font-size: .6rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

.noticias-cross-link {
    font-family: var(--mono);
    font-size: .52rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: color var(--dur) var(--ease);
}

.noticias-cross-link:hover {
    color: var(--gold);
}

.cross-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.cross-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.cross-card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--navy);
    margin-bottom: var(--sp-3);
}

.cross-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s var(--ease), opacity .3s var(--ease);
    opacity: .85;
}

.cross-card:hover .cross-card-img img {
    transform: scale(1.04);
    opacity: 1;
}

.cross-card-title {
    font-family: var(--disp);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: -.01em;
    line-height: 1.3;
    color: var(--navy);
    margin-bottom: var(--sp-2);
    transition: color var(--dur) var(--ease);
}

.cross-card:hover .cross-card-title {
    color: var(--gold);
}

.cross-card-lede {
    font-family: var(--body);
    font-size: .85rem;
    line-height: 1.55;
    color: var(--mid);
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cross-card-meta {
    font-family: var(--mono);
    font-size: .44rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--mid);
    margin-top: var(--sp-2);
}


/* ─── NAV DROPDOWN (Menu cascata) ─── */

.nav-item-has-children {
    position: relative;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10,18,32,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(184,145,63,0.1);
    padding: var(--sp-4) var(--sp-5);
    min-width: 180px;
    z-index: 110;
    animation: slideDown .2s var(--ease);
}

.nav-item-has-children:hover .nav-dropdown {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}

.nav-dropdown-item {
    font-family: var(--mono) !important;
    font-size: .55rem !important;
    letter-spacing: .14em !important;
    text-transform: uppercase;
    color: rgba(243,240,233,0.35) !important;
    padding: var(--sp-2) var(--sp-2) !important;
    border-bottom: none !important;
    white-space: nowrap;
    transition: color var(--dur) var(--ease) !important;
}

.nav-dropdown-item:hover {
    color: var(--gold) !important;
}


/* ─── MOBILE NAV DROPDOWN ─── */

.nav-dropdown-mobile {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    padding-left: var(--sp-5);
    margin-top: var(--sp-3);
}

.nav-dropdown-item-mobile {
    font-family: var(--mono) !important;
    font-size: .7rem !important;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(243,240,233,0.3) !important;
}

.nav-dropdown-item-mobile:hover {
    color: var(--gold) !important;
}


/* ─── EDITORIA TAG (nos cards) ─── */

.editoria-tag {
    font-family: var(--mono);
    font-size: .48rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: var(--sp-2);
}


/* ─── POST META LINE (padronizado) ─── */

.post-meta-line {
    font-family: var(--mono);
    font-size: .48rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--mid);
}


/* ─── OCULTAR ESTILOS ANTIGOS ─── */

.noticias-header,
.cojus-divider,
.noticias-section-header .noticias-section-label {
    /* Estes elementos foram removidos do template.
       Se algum resíduo existir, escondemos. */
}


/* ═══════════════════════════════════════════════════
   RESPONSIVIDADE
   ═══════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .destaques-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .feed-compact {
        grid-template-columns: repeat(3, 1fr);
    }

    .cross-content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .editorias-bar {
        padding: 0 var(--sp-4);
        top: 44px;
    }

    .logged-in.admin-bar .editorias-bar {
        top: 76px;
    }

    .editorias-container {
        gap: var(--sp-4);
        padding: var(--sp-3) 0;
    }

    .editoria-link {
        font-size: .54rem;
    }

    .manchete-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .manchete-lede {
        font-size: 1rem;
    }

    .destaques-grid,
    .destaques-grid[data-columns="2"] {
        grid-template-columns: 1fr;
        gap: var(--sp-5);
    }

    .feed-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-5);
    }

    .feed-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--sp-4);
    }

    .cross-content-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-5);
    }

    .noticias-pagination {
        flex-wrap: wrap;
    }

    .nav-dropdown {
        display: none !important;
    }
}

@media (max-width: 480px) {

    .noticias-portal {
        padding: var(--sp-5) var(--gutter) var(--sp-7);
    }

    .manchete {
        margin-bottom: var(--sp-6);
    }

    .manchete-img {
        aspect-ratio: 4 / 3;
    }

    .destaques-grid,
    .feed-grid {
        padding-top: var(--sp-5);
        margin-bottom: var(--sp-6);
    }

    .feed-compact {
        grid-template-columns: 1fr;
    }

    .compact-card {
        gap: var(--sp-3);
    }

    .compact-img {
        width: 70px;
        height: 50px;
    }

    .noticias-cross {
        padding: var(--sp-5) var(--gutter) var(--sp-6);
    }
}

/* ─── LOADING / INFINITE SCROLL ─── */

.load-more-trigger {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--sp-7) 0 var(--sp-4);
}

.load-more-trigger.is-loading::after {
    content: '';
    width: 28px;
    height: 28px;
    border: 2px solid var(--rule);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: cojus-spin .7s linear infinite;
}

@keyframes cojus-spin {
    to { transform: rotate(360deg); }
}

.load-more-trigger.is-done {
    display: none;
}

.feed-card.is-new,
.compact-card.is-new {
    animation: fadeInUp .4s var(--ease) both;
}

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


/* ─── FIX: REMOVER DIVISORIA ENTRE LINKS DA EDITORIA ─── */

.editorias-container .editoria-link {
    border-left: none !important;
    border-right: none !important;
}

.editorias-container .editoria-link::before,
.editorias-container .editoria-link::after {
    display: none !important;
    content: none !important;
}

.editorias-container > *:not(.editoria-link) {
    display: none;
}

.noticias-filters li::before,
.noticias-filters li::after,
.noticias-filters a::before,
.noticias-filters a::after {
    display: none !important;
}


/* ============================================
   CAROUSEL NAVIGATION ARROWS
   ============================================ */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.25);
    border: none;
    color: var(--gold, #C8A550);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: background .25s ease, color .25s ease;
    padding: 0;
}
.carousel-arrow svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}
.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.45);
    color: #d4a94a;
}
.carousel-arrow--prev {
    left: var(--sp-4, 16px);
}
.carousel-arrow--next {
    right: var(--sp-4, 16px);
}
@media (max-width: 768px) {
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
    .carousel-arrow--prev {
        left: var(--sp-2, 8px);
    }
    .carousel-arrow--next {
        right: var(--sp-2, 8px);
    }
}



/* Cojus reading polish - 2026-04-25 */
.post-header {
  padding-top: clamp(6.5rem, 9vw, 8.75rem);
  padding-bottom: clamp(4.5rem, 7vw, 6.5rem);
}

.post-header-inner {
  max-width: 880px;
}

.post-header h1 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.1rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.post-header .post-subtitle {
  max-width: 700px;
  margin: 0 auto 1.9rem;
  color: rgba(243, 240, 233, .74);
  font-family: var(--serif);
  font-size: clamp(1.24rem, 2.1vw, 1.55rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.46;
}

.post-byline {
  margin-top: 1.55rem;
}

.post-content {
  max-width: 760px;
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.post-content p {
  font-family: var(--serif);
  font-size: clamp(1.24rem, 1.45vw, 1.36rem);
  line-height: 1.68;
  color: #253650;
  margin-bottom: 1.65rem;
}

.post-content p + p {
  margin-top: .15rem;
}

.post-content h2,
.post-content h3 {
  letter-spacing: 0;
}

.post-content .post-source-note {
  margin-top: 2.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(181, 172, 153, .75);
  font-family: var(--body);
  font-size: .98rem;
  line-height: 1.65;
  color: #6f675d;
}

.post-content .post-source-note a {
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .post-header {
    padding-top: 5.5rem;
    padding-bottom: 3.5rem;
  }

  .post-header h1 {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
    line-height: 1.08;
  }

  .post-header .post-subtitle {
    font-size: 1.16rem;
    line-height: 1.5;
  }

  .post-content p {
    font-size: 1.18rem;
    line-height: 1.72;
  }
}



/* Cojus news post layout - 2026-04-25 */
body.single-post {
  background: var(--paper);
}

.single-post .post-header {
  background: var(--paper);
  color: var(--navy);
  overflow: visible;
  padding: clamp(5.75rem, 8vw, 7.5rem) var(--gutter) clamp(2rem, 4.5vw, 3.75rem);
  text-align: left;
}

.single-post .post-header::before {
  display: none;
}

.single-post .post-header-inner {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(180px, 240px);
  gap: clamp(2rem, 5vw, 4.75rem);
  align-items: end;
  max-width: 1120px;
}

.single-post .post-header .news-tag {
  grid-column: 1;
  margin-bottom: var(--sp-4);
  color: var(--gold);
}

.single-post .post-header h1 {
  grid-column: 1;
  max-width: 760px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.65rem, 6.4vw, 5.35rem);
  line-height: .98;
  letter-spacing: 0;
}

.single-post .post-header .post-subtitle {
  grid-column: 1;
  max-width: 700px;
  margin: var(--sp-5) 0 0;
  color: #4d5868;
  font-size: clamp(1.22rem, 2vw, 1.48rem);
  font-style: italic;
  line-height: 1.48;
}

.single-post .post-byline {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: end;
  display: block;
  margin: 0;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(181, 172, 153, .8);
}

.single-post .post-byline-avatar,
.single-post .post-byline-name,
.single-post .post-author-box {
  display: none;
}

.single-post .post-byline-info {
  text-align: left;
}

.single-post .post-byline-meta {
  color: #707986;
  font-size: .56rem;
  letter-spacing: .14em;
  line-height: 1.8;
}

.single-post .post-featured-img {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(2rem, 4vw, 3rem);
}

.single-post .post-featured-img img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.single-post .post-featured-caption {
  max-width: 980px;
  margin: .85rem 0 0 auto;
  color: #7c766c;
  font-size: .58rem;
  letter-spacing: .06em;
  line-height: 1.45;
  text-align: right;
  text-transform: none;
}

.single-post .post-content {
  display: grid;
  grid-template-columns: minmax(140px, 190px) minmax(0, 720px);
  column-gap: clamp(2rem, 5vw, 4.5rem);
  max-width: 1120px;
  margin: clamp(2.5rem, 5vw, 4rem) auto clamp(4.5rem, 7vw, 6rem);
  padding: 0 var(--gutter);
}

.single-post .post-header + .post-content {
  margin-top: clamp(2.25rem, 5vw, 4rem);
}

.single-post .cojus-breadcrumbs {
  grid-column: 1 / -1;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.single-post .post-content::before {
  content: "Leitura";
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  position: sticky;
  top: 6rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(181, 172, 153, .8);
  color: var(--gold);
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.single-post .post-content > :not(.cojus-breadcrumbs) {
  grid-column: 2;
}

.single-post .post-content p {
  max-width: 720px;
  color: #24344e;
  font-family: var(--serif);
  font-size: clamp(1.22rem, 1.35vw, 1.34rem);
  line-height: 1.72;
  margin-bottom: 1.55rem;
}

.single-post .post-content > p:first-of-type::first-line {
  color: #596271;
  font-style: italic;
}

.single-post .post-content h2,
.single-post .post-content h3 {
  color: var(--navy);
  letter-spacing: 0;
}

.single-post .post-content .post-source-note {
  max-width: 720px;
}

@media (max-width: 860px) {
  .single-post .post-header {
    padding-top: 5.5rem;
    padding-bottom: 2.25rem;
  }

  .single-post .post-header-inner {
    display: block;
  }

  .single-post .post-header h1 {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
    line-height: 1.04;
  }

  .single-post .post-byline {
    margin-top: 1.25rem;
    padding-left: 0;
    padding-top: .9rem;
    border-left: 0;
    border-top: 1px solid rgba(181, 172, 153, .8);
  }

  .single-post .post-featured-img {
    padding-bottom: 1.8rem;
  }

  .single-post .post-featured-img img {
    aspect-ratio: 4 / 3;
  }

  .single-post .post-featured-caption {
    text-align: left;
  }

  .single-post .post-content {
    display: block;
    margin-top: 2.25rem;
  }

  .single-post .post-content::before {
    display: none;
  }

  .single-post .cojus-breadcrumbs {
    margin-bottom: 1.4rem;
  }

  .single-post .post-content p {
    font-size: 1.16rem;
    line-height: 1.72;
  }
}

/* Cojus article system v2 - 2026-04-25 */
body.single-post {
  background: var(--paper);
}

.single-post .post-header {
  position: relative;
  overflow: visible;
  background: var(--paper);
  color: var(--navy);
  padding: clamp(5.75rem, 8vw, 7.5rem) var(--gutter) clamp(2.5rem, 5vw, 4rem);
  text-align: left;
}

.single-post .post-header::before {
  display: none;
}

.single-post .post-header-inner {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 300px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.single-post .post-hero-copy {
  max-width: 780px;
}

.single-post .post-header .news-tag {
  margin-bottom: var(--sp-4);
  color: var(--gold-d);
  letter-spacing: .22em;
}

.single-post .post-header h1 {
  max-width: 780px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.8rem, 6.2vw, 5.55rem);
  line-height: .98;
  letter-spacing: 0;
}

.single-post .post-header .post-subtitle {
  max-width: 710px;
  margin: var(--sp-5) 0 0;
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  color: #4f5967;
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2vw, 1.62rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.42;
}

.single-post .post-meta-panel {
  display: grid;
  gap: 1.15rem;
  margin-bottom: .35rem;
  padding: 1.15rem 0 0 1.25rem;
  border-top: 1px solid rgba(154, 120, 50, .35);
  border-left: 1px solid rgba(181, 172, 153, .85);
}

.single-post .post-meta-item span,
.single-post .post-meta-item time,
.single-post .post-meta-item strong {
  display: block;
}

.single-post .post-meta-item span {
  color: var(--gold-d);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.single-post .post-meta-item time,
.single-post .post-meta-item strong {
  margin-top: .25rem;
  color: #4e5968;
  font-family: var(--body);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
}

.single-post .post-byline,
.single-post .post-author-box,
.single-post .post-byline-avatar,
.single-post .post-byline-name {
  display: none;
}

.single-post .post-featured-img {
  width: min(1180px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  padding: 0;
}

.single-post .post-featured-img img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.single-post .post-featured-caption {
  max-width: 760px;
  margin: .85rem 0 0 auto;
  color: #777167;
  font-size: .66rem;
  letter-spacing: .06em;
  line-height: 1.45;
  text-align: right;
}

.single-post .post-reading-shell {
  display: grid;
  grid-template-columns: minmax(0, 670px) minmax(260px, 330px);
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: start;
  width: min(1180px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto clamp(5rem, 8vw, 7rem);
}

.single-post .post-reading-shell .post-content {
  display: block !important;
  max-width: none;
  margin: 0;
  padding: 0;
}

.single-post .post-reading-shell .post-content::before {
  display: none !important;
}

.single-post .post-reading-shell .post-content > * {
  max-width: 670px;
}

.single-post .post-content p {
  color: #25344b;
  font-family: var(--serif);
  font-size: clamp(1.24rem, 1.55vw, 1.42rem);
  line-height: 1.72;
  margin: 0 0 1.55rem;
}

.single-post .post-content > p:first-of-type {
  color: #4f5967;
  font-size: clamp(1.28rem, 1.65vw, 1.48rem);
}

.single-post .post-content h2,
.single-post .post-content h3 {
  color: var(--navy);
  font-family: var(--disp);
  letter-spacing: 0;
}

.single-post .post-content h2 {
  margin: 3.15rem 0 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(181, 172, 153, .7);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.single-post .post-content h3 {
  margin: 2.3rem 0 .9rem;
  color: #273955;
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  line-height: 1.12;
}

.single-post .post-content .post-source-note {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(154, 120, 50, .45);
  color: #6f675c;
  font-family: var(--body);
  font-size: .95rem;
  line-height: 1.55;
}

.single-post .post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 2.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(181, 172, 153, .7);
}

.single-post .post-tag {
  border-color: rgba(154, 120, 50, .5);
  color: #5d5549;
}

.single-post .post-sidebar {
  position: sticky;
  top: 6.5rem;
  display: grid;
  gap: 1rem;
}

.single-post .post-sidebar-card {
  padding: 1.2rem;
  border: 1px solid rgba(181, 172, 153, .8);
  background: rgba(255, 255, 255, .32);
}

.single-post .post-sidebar-label {
  margin-bottom: .75rem;
  color: var(--gold-d);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.single-post .post-briefing-card {
  border-color: var(--deep);
  background: var(--deep);
  color: var(--paper);
}

.single-post .post-briefing-card .post-sidebar-label {
  color: var(--gold);
}

.single-post .post-briefing-card h2 {
  margin: 0 0 .7rem;
  color: var(--paper);
  font-family: var(--disp);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

.single-post .post-briefing-card p {
  margin: 0 0 1rem;
  color: rgba(243, 240, 233, .78);
  font-size: .95rem;
  line-height: 1.55;
}

.single-post .post-sidebar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: .75rem 1rem;
  background: var(--gold);
  color: var(--deep);
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.single-post .post-sidebar-story {
  display: block;
  padding: 1rem 0;
  border-top: 1px solid rgba(181, 172, 153, .65);
}

.single-post .post-sidebar-story:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.single-post .post-sidebar-story span,
.single-post .post-sidebar-story time {
  display: block;
  color: #867c6f;
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: .14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.single-post .post-sidebar-story strong {
  display: block;
  margin: .35rem 0 .45rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.18;
}

.single-post .post-sidebar-story:hover strong {
  color: var(--gold-d);
}

.single-post .related-posts {
  display: none;
}

@media (max-width: 1020px) {
  .single-post .post-header-inner,
  .single-post .post-reading-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .single-post .post-meta-panel {
    max-width: 670px;
    margin-top: 1.5rem;
  }

  .single-post .post-sidebar {
    position: static;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  .single-post .post-header {
    padding-top: 5.5rem;
    padding-bottom: 2.25rem;
  }

  .single-post .post-header h1 {
    font-size: clamp(2.35rem, 11vw, 3.45rem);
    line-height: 1.04;
  }

  .single-post .post-header .post-subtitle {
    padding-left: .8rem;
    font-size: 1.22rem;
  }

  .single-post .post-meta-panel {
    padding-left: 0;
    border-left: 0;
  }

  .single-post .post-featured-img,
  .single-post .post-reading-shell {
    width: min(100% - 2rem, 1180px);
  }

  .single-post .post-featured-img img {
    aspect-ratio: 4 / 3;
  }

  .single-post .post-featured-caption {
    text-align: left;
  }

  .single-post .post-content p {
    font-size: 1.16rem;
    line-height: 1.7;
  }

  .single-post .post-sidebar {
    grid-template-columns: minmax(0, 1fr);
  }
}



/* ==========================================================================
   Cojus single redesign — jurinews-style two-column from top — 2026-04-26
   Article column (header + hero + body) + sticky sidebar from the top
   ========================================================================== */

.single-post .post-shell--jurinews {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
  width: min(1180px, calc(100% - (var(--gutter) * 2)));
  margin: clamp(3rem, 6vw, 5rem) auto clamp(5rem, 8vw, 7rem);
}

.single-post .post-article-column {
  min-width: 0;
}

/* Header sits inside the article column — no dark bg, no grid */
.single-post .post-shell--jurinews .post-header {
  background: transparent;
  padding: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  text-align: left;
  overflow: visible;
}

.single-post .post-shell--jurinews .post-header::before {
  display: none;
}

.single-post .post-shell--jurinews .post-header > .news-tag {
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.single-post .post-shell--jurinews .post-header > h1 {
  max-width: 100%;
  margin: 0 0 1.05rem;
  color: var(--navy);
  font-family: var(--disp);
  font-size: clamp(2rem, 3.6vw, 2.95rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
}

.single-post .post-shell--jurinews .post-header > .post-subtitle {
  max-width: 100%;
  margin: 0 0 1.4rem;
  padding: 0;
  border: 0;
  color: #4d5868;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.5vw, 1.28rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
}

/* Byline line replaces the floating meta panel */
.single-post .post-byline-line {
  margin: 0;
  padding: .55rem 0 0;
  border-top: 1px solid rgba(181, 172, 153, .55);
  color: #707986;
  font-family: var(--mono);
  font-size: .58rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: .14em;
  line-height: 1.6;
  text-transform: uppercase;
}

.single-post .post-byline-line .post-byline-source {
  color: #4f5867;
  font-weight: 700;
}

.single-post .post-byline-line .post-byline-sep {
  margin: 0 .5em;
  color: #b6b1a4;
}

.single-post .post-byline-line time {
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  color: inherit;
}

/* Hero image — contained inside article column, full width of column */
.single-post .post-article-column > .post-featured-img {
  width: 100%;
  max-width: 100%;
  margin: 0 0 clamp(1.75rem, 3vw, 2.5rem);
  padding: 0;
}

.single-post .post-article-column > .post-featured-img img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.single-post .post-article-column > .post-featured-img .post-featured-caption {
  max-width: 100%;
  margin: .65rem 0 0;
  color: #7c766c;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .06em;
  line-height: 1.45;
  text-align: right;
  text-transform: none;
}

/* Body content — block flow, no grid, no "Leitura" pseudo-element */
.single-post .post-shell--jurinews .post-content {
  display: block;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.single-post .post-shell--jurinews .post-content::before {
  content: none !important;
  display: none !important;
}

.single-post .post-shell--jurinews .post-content > * {
  max-width: 100%;
  grid-column: auto;
}

.single-post .post-shell--jurinews .post-content > p:first-of-type::first-line {
  color: inherit;
  font-style: inherit;
}

/* Sidebar — sticky, starts at the top alongside the title */
.single-post .post-shell--jurinews .post-sidebar {
  position: sticky;
  top: 5.5rem;
  display: grid;
  gap: 1rem;
  align-self: start;
}

/* Mobile: collapse to single column, sidebar moves below */
@media (max-width: 1020px) {
  .single-post .post-shell--jurinews {
    grid-template-columns: minmax(0, 1fr);
  }

  .single-post .post-shell--jurinews .post-sidebar {
    position: static;
    grid-template-columns: minmax(0, 1fr);
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
  }
}

@media (max-width: 700px) {
  .single-post .post-shell--jurinews {
    margin-top: clamp(2rem, 5vw, 3rem);
  }

  .single-post .post-shell--jurinews .post-header > h1 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .single-post .post-shell--jurinews .post-header > .post-subtitle {
    font-size: 1.1rem;
  }

  .single-post .post-byline-line .post-byline-sep {
    margin: 0 .35em;
  }


}
.briefing-latest{display:none};