/* =========================================================================
   CENTRAL NEWS NE — folha de estilo
   Direção: editorial limpo. Muito respiro, filetes finos e neutros,
   dourado usado com parcimônia (marca, dados e destaques).
   ========================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  --ink:        #07100B;
  --panel:      #0C1A12;
  --forest:     #0C3D22;
  --gold:       #D8A93A;
  --gold-lt:    #EFD08C;
  --paper:      #F6F3EC;
  --muted:      #8C9C92;
  --live:       #D9483A;

  --bg:         var(--ink);
  --bg-soft:    var(--panel);
  --fg:         var(--paper);
  --fg-soft:    var(--muted);
  --rule:       color-mix(in srgb, var(--paper) 14%, transparent);
  --rule-soft:  color-mix(in srgb, var(--paper) 8%, transparent);

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-text:    'Archivo', system-ui, -apple-system, sans-serif;
  --ff-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  --shell: min(1280px, 100% - 3rem);
  --gap:   clamp(1.25rem, 2.4vw, 2.25rem);
  --ease:  cubic-bezier(.2,.8,.3,1);

  /* respiro vertical entre blocos */
  --space: clamp(3.5rem, 7vw, 6.5rem);
}

html[data-theme="light"] {
  --bg:        #FBF9F4;
  --bg-soft:   #F2EEE4;
  --fg:        #0D1A12;
  --fg-soft:   #5A6B60;
  --paper:     #0D1A12;
  --rule:      color-mix(in srgb, #0D1A12 14%, transparent);
  --rule-soft: color-mix(in srgb, #0D1A12 8%, transparent);
  --gold:      #96700D;
  --gold-lt:   #6C5008;
  --panel:     #F2EEE4;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff-text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .4s var(--ease), color .4s var(--ease);
}
/* height:auto é obrigatório: as imagens têm width/height no HTML (evita salto de
   layout) e sem isso o atributo venceria o aspect-ratio definido no CSS. */
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--gold); color: #07100B; }

/* ---------- 3. Layout base ---------- */
.shell { width: var(--shell); margin-inline: auto; }
.rule--thick { height: 1px; background: var(--rule); }

.kicker {
  font-family: var(--ff-mono);
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--fg-soft); font-weight: 400;
}
.dek { color: var(--fg-soft); }

/* ---------- 4. Barra superior de dados ---------- */
.databar {
  border-bottom: 1px solid var(--rule-soft);
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .05em;
}
.databar__in { display: flex; align-items: center; gap: 1.5rem; height: 36px; overflow: hidden; }
.databar__item { display: flex; align-items: center; gap: .45rem; white-space: nowrap; color: var(--fg-soft); }
.databar__item b { color: var(--fg); font-weight: 500; }
.up { color: #56B981 } .down { color: var(--live) }
.databar__spacer { flex: 1 }
.dot-live { width: 6px; height: 6px; border-radius: 50%; background: var(--live); flex: none; animation: fade 2.4s ease-in-out infinite; }
@keyframes fade { 0%,100% { opacity: 1 } 50% { opacity: .3 } }
@media (max-width: 940px) { .databar__item--hide-sm { display: none } }

/* ---------- 5. Cabeçalho ---------- */
.masthead__in {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 1.5rem; padding: 1.5rem 0 1.35rem;
}
.brand { display: flex; align-items: center; gap: .8rem; }
.brand__mark { width: 48px; height: 48px; flex: none; }
.brand__word i {
  display: block; font-style: normal; font-family: var(--ff-display);
  font-variation-settings: 'opsz' 100, 'SOFT' 0, 'WONK' 0;
  font-weight: 600; font-size: clamp(1.4rem, 2.3vw, 1.85rem); letter-spacing: -.02em; line-height: 1;
}
.brand__word i em { font-style: normal; color: var(--gold); }
.brand__word small {
  display: block; font-family: var(--ff-mono); font-size: .55rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--fg-soft); margin-top: .4rem;
}
.masthead__slogan {
  text-align: center; font-family: var(--ff-display); font-style: italic;
  font-variation-settings: 'opsz' 60; font-size: .95rem; color: var(--fg-soft);
}
.masthead__tools { display: flex; align-items: center; gap: .5rem; justify-content: flex-end; }

.iconbtn {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--rule); border-radius: 50%; color: var(--fg-soft);
  transition: color .25s, border-color .25s;
}
.iconbtn:hover { color: var(--fg); border-color: var(--fg-soft); }
.iconbtn svg { width: 17px; height: 17px; }

.btn {
  display: inline-flex; align-items: center; gap: .5rem; padding: .68rem 1.2rem;
  border: 1px solid var(--rule); border-radius: 999px;
  font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  transition: border-color .25s, background .25s, color .25s;
}
.btn:hover { border-color: var(--gold); color: var(--gold); }
.btn--solid { background: var(--gold); border-color: var(--gold); color: #07100B; }
.btn--solid:hover { background: var(--gold-lt); border-color: var(--gold-lt); color: #07100B; }

@media (max-width: 860px) {
  .masthead__in { grid-template-columns: 1fr auto; gap: .75rem; padding: 1.1rem 0 1rem }
  .brand__mark { width: 42px; height: 42px }
  .brand__word i { font-size: 1.35rem }
  .brand__word small { font-size: .5rem; letter-spacing: .2em }
  .iconbtn { width: 38px; height: 38px }
}

/* ---------- 6. Navegação ---------- */
.nav {
  position: sticky; top: 0; z-index: 500;
  background: var(--bg); border-block: 1px solid var(--rule-soft);
}
.nav__in { display: flex; align-items: center; height: 54px; gap: .25rem; }
.nav a {
  position: relative; padding: .5rem .8rem; font-size: .74rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--fg-soft);
  transition: color .25s; white-space: nowrap;
}
.nav a::after {
  content: ''; position: absolute; left: .8rem; right: .8rem; bottom: .05rem; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:hover, .nav a.is-active { color: var(--fg) }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1) }
.nav__scroll { display: flex; overflow-x: auto; scrollbar-width: none; flex: 1 }
.nav__scroll::-webkit-scrollbar { display: none }
.nav__live {
  margin-left: auto; display: flex; align-items: center; gap: .5rem; flex: none;
  font-family: var(--ff-mono); font-size: .62rem; letter-spacing: .16em;
  color: var(--fg-soft); text-transform: uppercase; padding-left: 1rem;
}
@media (max-width: 700px) { .nav__live { display: none } }

/* ---------- 7. Plantão (ticker) ---------- */
.ticker { border-bottom: 1px solid var(--rule-soft); overflow: hidden }
.ticker__in { display: flex; align-items: center }
.ticker__tag {
  flex: none; font-family: var(--ff-mono); font-size: .62rem; letter-spacing: .18em;
  padding: .7rem 1.1rem .7rem 0; text-transform: uppercase; color: var(--live); font-weight: 500;
}
.ticker__track { display: flex; gap: 2.75rem; white-space: nowrap; animation: slide 70s linear infinite; padding-left: 2.75rem }
.ticker:hover .ticker__track, .ticker:focus-within .ticker__track { animation-play-state: paused }
.ticker__track span { font-size: .78rem; color: var(--fg-soft); display: flex; align-items: center; gap: .7rem }
.ticker__track span::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: var(--gold); flex: none }
@keyframes slide { to { transform: translateX(-50%) } }

/* ---------- 8. Capa ---------- */
.lead { padding: clamp(2.5rem, 5vw, 4.5rem) 0 }
.lead__grid { display: grid; gap: var(--gap) }
@media (min-width: 1000px) {
  .lead__grid { grid-template-columns: 5fr 6fr; align-items: center; gap: clamp(2.5rem, 4vw, 4rem) }
}
.lead__meta { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.4rem; flex-wrap: wrap }
.tagpill {
  font-family: var(--ff-mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
  padding: .3rem .7rem; border: 1px solid var(--rule); border-radius: 999px; color: var(--fg-soft);
}
.tagpill--live { color: var(--gold); border-color: color-mix(in srgb, var(--gold) 40%, transparent) }
.timestamp { font-family: var(--ff-mono); font-size: .66rem; color: var(--fg-soft) }

.lead__title {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 0, 'WONK' 0;
  font-weight: 600;
  font-size: clamp(2.2rem, 4.6vw, 3.9rem);
  line-height: 1.02; letter-spacing: -.028em; text-wrap: balance;
}
.lead__title a { transition: color .25s }
.lead__title a:hover { color: var(--gold) }
.lead__dek { margin-top: 1.3rem; font-size: clamp(1rem, 1.2vw, 1.1rem); color: var(--fg-soft); max-width: 50ch }
.lead__by {
  margin-top: 1.8rem; padding-top: 1.2rem; border-top: 1px solid var(--rule-soft);
  display: flex; gap: 1.4rem; flex-wrap: wrap; align-items: center;
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .04em; color: var(--fg-soft);
}
.lead__by b { color: var(--fg); font-weight: 500 }
.lead__by .go { color: var(--gold) }

.frame { position: relative; overflow: hidden; background: var(--bg-soft) }
.frame img { width: 100%; aspect-ratio: 16/10; object-fit: cover }
.lead__figure .frame img { aspect-ratio: 4/3; max-height: 60vh }
.lead__credit { margin-top: .7rem; font-family: var(--ff-mono); font-size: .6rem; color: var(--fg-soft) }

/* ---------- 9. Painel de dados ---------- */
.livepanel {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
@media (min-width: 820px) { .livepanel { grid-template-columns: repeat(4, minmax(0, 1fr)) } }
.lp { padding: 1.4rem 1.5rem 1.5rem }
.lp + .lp { border-left: 1px solid var(--rule-soft) }
@media (max-width: 819px) {
  .lp:nth-child(odd) { border-left: 0 }
  .lp:nth-child(n+3) { border-top: 1px solid var(--rule-soft) }
}
.lp__label { font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-soft) }
.lp__value {
  font-family: var(--ff-display); font-variation-settings: 'opsz' 144, 'WONK' 0;
  font-weight: 600; font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.1;
  margin-top: .6rem; letter-spacing: -.02em;
}
.lp__sub { font-size: .74rem; color: var(--fg-soft); margin-top: .3rem }
.lp.is-loading .lp__value { opacity: .35 }

/* ---------- 10. Seções ---------- */
.section { padding: var(--space) 0 }
.section__head {
  display: grid; gap: .8rem; margin-bottom: 2.5rem;
  padding-bottom: 1.2rem; border-bottom: 1px solid var(--rule);
}
@media (min-width: 860px) {
  .section__head { grid-template-columns: 1fr minmax(0, 34ch); align-items: end; gap: 2rem }
}
.section__title {
  font-family: var(--ff-display); font-variation-settings: 'opsz' 144, 'SOFT' 0, 'WONK' 0;
  font-weight: 600; font-size: clamp(1.55rem, 2.8vw, 2.2rem); letter-spacing: -.025em; line-height: 1.05;
  display: flex; align-items: baseline; gap: .85rem;
}
.section__title u {
  text-decoration: none; font-family: var(--ff-mono); font-size: .68rem;
  color: var(--gold); letter-spacing: .16em; font-weight: 400;
}
.section__aside { font-size: .86rem; color: var(--fg-soft); line-height: 1.55 }

/* filtros */
.chips { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem }
.chip {
  padding: .45rem 1rem; border: 1px solid var(--rule); border-radius: 999px;
  font-size: .72rem; font-weight: 500; letter-spacing: .06em; color: var(--fg-soft);
  transition: color .25s, border-color .25s, background .25s;
}
.chip:hover { color: var(--fg); border-color: var(--fg-soft) }
.chip.is-on { background: var(--fg); border-color: var(--fg); color: var(--bg) }

/* ---------- 11. Grade de notícias ---------- */
.grid { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)) }
.grid--mixed { display: grid; gap: var(--gap); grid-template-columns: 1fr }
@media (min-width: 960px) {
  .grid--mixed { grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr); gap: clamp(2rem, 4vw, 4rem) }
  #feed-futebol, #feed-comunidade { grid-template-columns: repeat(3, 1fr) }

  /* A coluna da direita acompanha toda a altura das notícias e o anúncio é
     que fica preso no topo. Assim ele continua visível durante a rolagem
     inteira, em qualquer tamanho de tela — sem prender a lista de mais lidas. */
  .grid--mixed > aside { display: flex; flex-direction: column }
  .grid--mixed > aside [data-ad] { position: sticky; top: 78px }
}

.card { position: relative; display: flex; flex-direction: column; gap: .85rem }
.card__fig { overflow: hidden; background: var(--bg-soft) }
.card__fig img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .7s var(--ease) }
.card:hover .card__fig img { transform: scale(1.035) }
.card__cat { font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold) }
.card__title {
  font-family: var(--ff-display); font-variation-settings: 'opsz' 60, 'SOFT' 0, 'WONK' 0;
  font-weight: 600; font-size: clamp(1.1rem, 1.5vw, 1.3rem); line-height: 1.2; letter-spacing: -.015em; text-wrap: balance;
  transition: color .25s;
}
.card:hover .card__title { color: var(--gold) }
.card__dek { font-size: .875rem; color: var(--fg-soft); line-height: 1.55 }
.card__foot {
  margin-top: auto; padding-top: .3rem; display: flex; gap: .5rem; flex-wrap: wrap; white-space: nowrap;
  font-family: var(--ff-mono); font-size: .6rem; color: var(--fg-soft); letter-spacing: .04em; align-items: center;
}
.card a.stretch::after { content: ''; position: absolute; inset: 0 }

/* lista lateral */
.stack { display: flex; flex-direction: column; border-top: 1px solid var(--rule) }
.stack__item { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--rule-soft) }
.stack__n { font-family: var(--ff-mono); font-size: .72rem; color: var(--gold); padding-top: .2rem }
.stack__t { display: block; font-family: var(--ff-display); font-variation-settings: 'opsz' 40, 'WONK' 0; font-weight: 600; font-size: .98rem; line-height: 1.28; transition: color .25s }
.stack__item a:hover .stack__t { color: var(--gold) }
.stack__m { display: block; font-family: var(--ff-mono); font-size: .58rem; color: var(--fg-soft); letter-spacing: .1em; margin-top: .45rem; text-transform: uppercase }

.sidebox { border: 1px solid var(--rule); padding: 1.4rem; margin-top: 2rem }
.sidebox p { font-size: .85rem; color: var(--fg-soft); margin-top: .6rem }

/* ---------- 12. Cidades ---------- */
.cities { background: var(--bg-soft); border-block: 1px solid var(--rule-soft); padding: var(--space) 0 }
.citygrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--rule) }
@media (min-width: 700px) { .citygrid { grid-template-columns: repeat(4, minmax(0, 1fr)) } }
.citycard { padding: 1.4rem 1.4rem 1.6rem; border-bottom: 1px solid var(--rule-soft); border-right: 1px solid var(--rule-soft) }
.citycard:nth-child(2n) { border-right: 0 }
@media (min-width: 700px) { .citycard:nth-child(2n) { border-right: 1px solid var(--rule-soft) } .citycard:nth-child(4n) { border-right: 0 } }
.citycard h4 { font-family: var(--ff-display); font-variation-settings: 'opsz' 60, 'WONK' 0; font-size: 1.12rem; font-weight: 600; display: flex; align-items: baseline; gap: .4rem }
.citycard h4 span { font-family: var(--ff-mono); font-size: .58rem; color: var(--gold); letter-spacing: .12em }
.citycard p { font-size: .76rem; color: var(--fg-soft); margin-top: .3rem; line-height: 1.5 }
.citycard__t { font-family: var(--ff-mono); font-size: 1.35rem; font-weight: 300; margin-top: 1.1rem; line-height: 1.2; white-space: nowrap }
.citycard__t em { display: block; font-style: normal; font-size: .58rem; color: var(--fg-soft); letter-spacing: .14em; text-transform: uppercase; margin-top: .35rem; white-space: normal }

/* ---------- 13. Faixa com vídeo ---------- */
.reel { position: relative; overflow: hidden; min-height: clamp(340px, 55vh, 540px); display: grid; align-items: center; isolation: isolate }
.reel__v { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2 }
.reel__veil {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(7,16,11,.92) 0%, rgba(7,16,11,.62) 52%, rgba(7,16,11,.25) 100%);
}
.reel__in { padding-block: clamp(3rem, 6vw, 4.5rem); color: #F6F3EC }
.reel__in .kicker { color: rgba(246,243,236,.6) }
.reel__q {
  font-family: var(--ff-display); font-variation-settings: 'opsz' 144, 'SOFT' 0, 'WONK' 0;
  font-weight: 600; font-size: clamp(1.7rem, 3.6vw, 2.9rem); line-height: 1.1; letter-spacing: -.028em;
  max-width: 22ch; margin-top: 1.2rem; text-wrap: balance;
}
.reel__q em { font-style: italic; color: #EFD08C }
.reel__by { margin-top: 1.6rem; font-family: var(--ff-mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(246,243,236,.55) }

/* ---------- 14. Números ---------- */
.stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--rule) }
@media (min-width: 820px) { .stats { grid-template-columns: repeat(4, minmax(0, 1fr)) } }
.stat { padding: clamp(1.6rem, 3vw, 2.4rem) 1.4rem; border-bottom: 1px solid var(--rule-soft); border-right: 1px solid var(--rule-soft) }
.stat:nth-child(2n) { border-right: 0 }
@media (min-width: 820px) { .stat:nth-child(2n) { border-right: 1px solid var(--rule-soft) } .stat:nth-child(4n) { border-right: 0 } }
.stat b {
  display: block; font-family: var(--ff-display); font-variation-settings: 'opsz' 144, 'WONK' 0;
  font-weight: 600; font-size: clamp(1.9rem, 3.8vw, 2.8rem); line-height: 1; letter-spacing: -.03em; color: var(--gold);
}
.stat > span { display: block; margin-top: .7rem; font-size: .78rem; color: var(--fg-soft); max-width: 24ch; line-height: 1.5 }

/* ---------- 15. Agenda ---------- */
.agenda { border-top: 1px solid var(--rule) }
.ag {
  display: grid; grid-template-columns: 62px 1fr auto; gap: 1.3rem; align-items: center;
  padding: 1.25rem 0; border-bottom: 1px solid var(--rule-soft);
}
.ag__d { text-align: center; border: 1px solid var(--rule); padding: .45rem 0 }
.ag__d b { display: block; font-family: var(--ff-display); font-variation-settings: 'opsz' 60, 'WONK' 0; font-size: 1.3rem; font-weight: 600; line-height: 1 }
.ag__d span { display: block; font-family: var(--ff-mono); font-size: .52rem; letter-spacing: .18em; color: var(--fg-soft) }
.ag__t { font-family: var(--ff-display); font-variation-settings: 'opsz' 40, 'WONK' 0; font-size: 1.05rem; font-weight: 600 }
.ag__l { font-size: .78rem; color: var(--fg-soft); margin-top: .2rem }
.ag__k { font-family: var(--ff-mono); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-soft); white-space: nowrap }
@media (max-width: 640px) { .ag { grid-template-columns: 54px 1fr } .ag__k { display: none } }

/* ---------- 16. Rádio ---------- */
.radio { border: 1px solid var(--rule) }
.radio__in { display: grid; gap: 1.6rem; padding: clamp(1.6rem, 3vw, 2.2rem); align-items: center; grid-template-columns: 1fr }
@media (min-width: 780px) { .radio__in { grid-template-columns: auto 1fr auto } }
.radio__play {
  width: 62px; height: 62px; border-radius: 50%; border: 1px solid var(--rule); display: grid; place-items: center; flex: none;
  transition: background .25s, color .25s, border-color .25s;
}
.radio__play:hover { border-color: var(--gold); color: var(--gold) }
.radio.is-playing .radio__play { background: var(--gold); border-color: var(--gold); color: #07100B }
.radio__play svg { width: 20px; height: 20px; margin-left: 3px }
.radio.is-playing .radio__play svg { margin-left: 0 }
.wave { display: flex; align-items: center; gap: 3px; height: 34px; margin-top: .9rem }
.wave i { display: block; width: 2px; background: var(--gold); opacity: .28; height: 22%; }
.radio.is-playing .wave i { animation: bounce 1.2s ease-in-out infinite; opacity: .7 }
@keyframes bounce { 0%,100% { height: 18% } 50% { height: 100% } }
.radio__meta h3 { font-family: var(--ff-display); font-variation-settings: 'opsz' 60, 'WONK' 0; font-size: 1.22rem; font-weight: 600 }
.radio__meta p { font-size: .82rem; color: var(--fg-soft); margin-top: .2rem }
.radio__note { font-family: var(--ff-mono); font-size: .58rem; color: var(--fg-soft); letter-spacing: .06em; margin-top: .8rem }

/* ---------- 17. Blocos de destaque (anuncie / newsletter) ---------- */
.news { border: 1px solid var(--rule); padding: clamp(1.8rem, 4vw, 3.2rem); display: grid; gap: 2rem }
@media (min-width: 900px) { .news { grid-template-columns: 1.05fr 1fr; align-items: center; gap: clamp(2.5rem, 5vw, 4.5rem) } }
.news h3 {
  font-family: var(--ff-display); font-variation-settings: 'opsz' 144, 'SOFT' 0, 'WONK' 0;
  font-size: clamp(1.5rem, 2.9vw, 2.3rem); font-weight: 600; line-height: 1.08; letter-spacing: -.025em; margin-top: .9rem;
}
.news p { color: var(--fg-soft); margin-top: 1rem; font-size: .92rem }
.news ul { list-style: none; padding: 0; margin-top: 1.5rem; display: flex; flex-direction: column; gap: .7rem; font-size: .86rem; color: var(--fg-soft) }
.news li { padding-left: 1.1rem; position: relative }
.news li::before { content: ''; position: absolute; left: 0; top: .62em; width: 4px; height: 1px; background: var(--gold) }
.field { display: flex; gap: .6rem; flex-wrap: wrap }
.field input { flex: 1 1 210px; background: transparent; border: 1px solid var(--rule); padding: .85rem 1.15rem; border-radius: 999px; font-size: .9rem; transition: border-color .25s }
.field input:focus { border-color: var(--gold); outline: none }
.field input::placeholder { color: var(--fg-soft) }
.field__msg { flex-basis: 100%; font-family: var(--ff-mono); font-size: .68rem; min-height: 1.2em; color: var(--gold) }
.field__msg.is-err { color: var(--live) }

/* ---------- 17b. Publicidade ----------
   Regra editorial: todo anúncio leva rótulo "Publicidade" acima e um filete
   que o separa do conteúdo. Nunca deve ser confundido com matéria. */
.ad { margin-block: var(--gap) }
.ad__label {
  font-family: var(--ff-mono); font-size: .55rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--fg-soft); opacity: .75; margin-bottom: .5rem;
  display: flex; align-items: center; gap: .6rem;
}
.ad__label::after { content: ''; flex: 1; height: 1px; background: var(--rule-soft) }

.ad__box {
  display: block; position: relative; overflow: hidden;
  border: 1px solid var(--rule); background: var(--bg-soft);
  transition: border-color .25s var(--ease);
}
a.ad__box:hover { border-color: var(--gold) }
.ad__box img { width: 100%; height: 100%; object-fit: cover }

/* proporções por formato (mantêm o espaço reservado antes da arte carregar) */
.ad--central  .ad__box { aspect-ratio: 970 / 250 }
.ad--lateral  .ad__box { aspect-ratio: 300 / 250 }
.ad--feed     .ad__box { aspect-ratio: 728 / 90 }
.ad--materia  .ad__box { aspect-ratio: 640 / 200 }
@media (max-width: 700px) {
  .ad--central .ad__box, .ad--feed .ad__box, .ad--materia .ad__box { aspect-ratio: 320 / 120 }
}

/* anúncio em texto, montado no estilo do site */
.ad__txt {
  height: 100%; display: flex; flex-direction: column; justify-content: center;
  gap: .8rem; padding: clamp(1.2rem, 2.6vw, 2.2rem); text-align: left;
}
.ad__info { display: flex; flex-direction: column; gap: .4rem; min-width: 0 }
.ad__marca { font-family: var(--ff-mono); font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold) }
.ad__titulo {
  font-family: var(--ff-display); font-variation-settings: 'opsz' 60, 'WONK' 0;
  font-weight: 600; font-size: clamp(1.05rem, 1.9vw, 1.6rem); line-height: 1.15; letter-spacing: -.018em;
  color: var(--fg); text-wrap: balance;
}
.ad__frase { font-size: .85rem; color: var(--fg-soft); line-height: 1.45 }
.ad__cta {
  align-self: flex-start; flex: none;
  font-family: var(--ff-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); border: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
  border-radius: 999px; padding: .55rem 1.1rem; transition: background .25s, color .25s;
}
a.ad__box:hover .ad__cta { background: var(--gold); color: #07100B; border-color: var(--gold) }

/* formatos largos: texto à esquerda, botão à direita */
@media (min-width: 620px) {
  .ad--central .ad__txt, .ad--feed .ad__txt {
    flex-direction: row; align-items: center; justify-content: space-between; gap: clamp(1.5rem, 4vw, 3.5rem);
  }
  .ad--central .ad__info { max-width: 58ch }
  .ad--central .ad__titulo { font-size: clamp(1.3rem, 2.4vw, 2rem) }
  .ad--central .ad__cta, .ad--feed .ad__cta { align-self: center }
}

/* espaço vago: convite discreto, nunca um buraco na página */
.ad--casa .ad__box { background: transparent; border-style: dashed; border-color: var(--rule-soft) }
.ad--casa .ad__txt { align-items: center; text-align: center; gap: .5rem }
.ad--casa .ad__titulo { font-size: clamp(.95rem, 1.5vw, 1.2rem) }
.ad--casa .ad__medida { font-family: var(--ff-mono); font-size: .58rem; letter-spacing: .14em; color: var(--fg-soft) }
.ad--feed.ad--casa .ad__txt { flex-direction: row; justify-content: center; gap: 1rem; align-items: center }

/* faixa central ocupa a largura toda da grade em que estiver */
.ad--central, .ad--feed { grid-column: 1 / -1 }
.ad--materia { margin-block: 2.5rem }

/* mídia kit na seção Anuncie */
.kit { width: 100%; border-collapse: collapse; margin-top: 1.6rem; font-size: .84rem }
.kit th {
  text-align: left; font-family: var(--ff-mono); font-size: .58rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--fg-soft); font-weight: 400;
  padding-bottom: .7rem; border-bottom: 1px solid var(--rule);
}
.kit td { padding: .8rem 0; border-bottom: 1px solid var(--rule-soft); vertical-align: top; color: var(--fg-soft) }
.kit td:first-child { color: var(--fg); font-weight: 500; padding-right: 1rem; white-space: nowrap }
.kit td:nth-child(2) { font-family: var(--ff-mono); font-size: .78rem; color: var(--gold); white-space: nowrap; padding-right: 1rem }
@media (max-width: 560px) {
  .kit, .kit tbody, .kit tr, .kit td { display: block; width: 100% }
  .kit thead { display: none }
  .kit tr { padding: .9rem 0; border-bottom: 1px solid var(--rule-soft) }
  .kit td { border: 0; padding: .1rem 0 }
}

/* ---------- 18. Rodapé ---------- */
.foot { border-top: 1px solid var(--rule); margin-top: var(--space); padding: clamp(2.5rem, 4vw, 3.5rem) 0 2.5rem }
.foot__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr }
@media (min-width: 780px) { .foot__grid { grid-template-columns: 1.7fr 1fr 1fr 1fr } }
.foot h5 { font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-soft); margin-bottom: 1.1rem }
.foot ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .6rem }
.foot li a { font-size: .85rem; color: var(--fg-soft); transition: color .25s }
.foot li a:hover { color: var(--fg) }
.foot__bot {
  margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid var(--rule-soft);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-family: var(--ff-mono); font-size: .6rem; color: var(--fg-soft); letter-spacing: .04em;
}
.social { display: flex; gap: .5rem; margin-top: 1.4rem }
.social a { width: 38px; height: 38px; border: 1px solid var(--rule); border-radius: 50%; display: grid; place-items: center; color: var(--fg-soft); transition: color .25s, border-color .25s }
.social a:hover { color: var(--fg); border-color: var(--fg-soft) }
.social svg { width: 16px; height: 16px }

/* ---------- 19. Leitor de matéria ---------- */
.reader { position: fixed; inset: 0; z-index: 1000; background: var(--bg); overflow-y: auto; overscroll-behavior: contain; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s }
.reader.is-open { opacity: 1; visibility: visible }
.reader__bar { position: sticky; top: 0; z-index: 5; background: var(--bg); border-bottom: 1px solid var(--rule-soft) }
.reader__bar .shell { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 1rem }
.reader__back { display: flex; align-items: center; gap: .55rem; font-family: var(--ff-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-soft); transition: color .25s }
.reader__back:hover { color: var(--fg) }
.reader__back svg { width: 15px; height: 15px }
.reader__crumb { font-family: var(--ff-mono); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-soft) }
.reader__prog { position: absolute; left: 0; bottom: -1px; height: 2px; background: var(--gold); width: 0 }
.reader__body { width: min(720px, 100% - 3rem); margin-inline: auto; padding: clamp(2.5rem, 5vw, 4rem) 0 5rem }
.reader__hat { display: flex; gap: .7rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.3rem }
.reader__title { font-family: var(--ff-display); font-variation-settings: 'opsz' 144, 'SOFT' 0, 'WONK' 0; font-weight: 600; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.06; letter-spacing: -.028em; text-wrap: balance }
.reader__dek { margin-top: 1.3rem; font-size: 1.08rem; color: var(--fg-soft); line-height: 1.6 }
.reader__by { margin: 1.8rem 0; padding: 1.1rem 0; border-block: 1px solid var(--rule-soft); display: flex; gap: 1.5rem; flex-wrap: wrap; font-family: var(--ff-mono); font-size: .65rem; letter-spacing: .06em; color: var(--fg-soft) }
.reader__hero { margin: 2rem 0 .7rem }
.reader__hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover }
.reader__cap { font-family: var(--ff-mono); font-size: .6rem; color: var(--fg-soft); margin-bottom: 2.5rem; line-height: 1.6 }
.prose p { font-size: 1.06rem; line-height: 1.8; margin-bottom: 1.4rem }
.prose p:first-of-type::first-letter {
  float: left; font-family: var(--ff-display); font-variation-settings: 'opsz' 144, 'WONK' 0;
  font-size: 3.6rem; line-height: .85; padding: .12rem .55rem .1rem 0; color: var(--gold); font-weight: 600;
}
.prose h3 { font-family: var(--ff-display); font-variation-settings: 'opsz' 60, 'WONK' 0; font-size: 1.4rem; font-weight: 600; margin: 2.6rem 0 1rem; letter-spacing: -.02em }
.prose blockquote { margin: 2.2rem 0; padding-left: 1.5rem; border-left: 1px solid var(--gold) }
.prose blockquote q { font-family: var(--ff-display); font-variation-settings: 'opsz' 100, 'WONK' 0; font-style: italic; font-size: 1.28rem; line-height: 1.38; display: block; quotes: '“' '”' }
.prose blockquote cite { display: block; margin-top: .9rem; font-family: var(--ff-mono); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-soft); font-style: normal }
.prose .note { border: 1px solid var(--rule); padding: 1.1rem 1.3rem; font-size: .85rem; color: var(--fg-soft); line-height: 1.6 }
.reader__tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid var(--rule-soft) }
.reader__more { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--rule) }

/* ---------- 20. Busca ---------- */
.palette { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: start center; padding-top: 12vh; background: rgba(7,16,11,.7); opacity: 0; visibility: hidden; transition: opacity .22s, visibility .22s }
.palette.is-open { opacity: 1; visibility: visible }
.palette__box { width: min(600px, 100% - 2.5rem); background: var(--bg); border: 1px solid var(--rule); overflow: hidden }
.palette input { width: 100%; padding: 1.1rem 1.3rem; background: transparent; border: 0; border-bottom: 1px solid var(--rule-soft); font-size: .98rem; outline: none }
.palette__list { max-height: 50vh; overflow-y: auto; padding: .35rem }
.palette__i { display: block; width: 100%; text-align: left; padding: .7rem .95rem }
.palette__i:hover, .palette__i.is-sel { background: var(--bg-soft) }
.palette__i b { display: block; font-size: .9rem; font-weight: 500 }
.palette__i span { font-family: var(--ff-mono); font-size: .6rem; color: var(--fg-soft); letter-spacing: .1em; text-transform: uppercase }
.palette__hint { padding: .75rem 1.3rem; border-top: 1px solid var(--rule-soft); font-family: var(--ff-mono); font-size: .6rem; color: var(--fg-soft); letter-spacing: .06em; display: flex; gap: 1.2rem; flex-wrap: wrap }
kbd { font-family: var(--ff-mono); border: 1px solid var(--rule); padding: .1rem .4rem; font-size: .92em; color: var(--gold); margin-right: .35rem }

/* ---------- 21. Ampliar foto ---------- */
.lightbox { position: fixed; inset: 0; z-index: 1800; background: rgba(7,16,11,.94); display: grid; place-items: center; padding: 2rem; opacity: 0; visibility: hidden; transition: .25s; cursor: zoom-out }
.lightbox.is-open { opacity: 1; visibility: visible }
.lightbox img { max-height: 80vh; width: auto }
.lightbox p { margin-top: 1rem; font-family: var(--ff-mono); font-size: .66rem; color: #8C9C92; text-align: center; max-width: 60ch }

/* ---------- 22. Revelação no scroll ---------- */
[data-rise] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease) }
[data-rise].is-in { opacity: 1; transform: none }
[data-rise][data-d="1"] { transition-delay: .07s }
[data-rise][data-d="2"] { transition-delay: .14s }

/* ---------- 23. Utilidades ---------- */
.mt-l { margin-top: clamp(2rem, 4vw, 3rem) }
.hide-sm { display: none } @media (min-width: 860px) { .hide-sm { display: block } }
.to-top { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 600; opacity: 0; pointer-events: none; transform: translateY(10px); transition: .3s var(--ease); background: var(--bg); }
.to-top.is-on { opacity: 1; pointer-events: auto; transform: none }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0 }
