*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #263a8c; --blue: #4058a4; --accent: #3e73c1;
  --gold: #ffbf00; --gold-light: #ffd24d;
  --cream: #eef2ff; --text: #1a2150; --muted: #6b7a99; --white: #ffffff;
  --radius: 14px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text); font-weight: 300; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(38,58,140,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,191,0,0.15);
  animation: fadeDown .6s ease both;
}
.nav-logo { display: flex; align-items: center; gap: .8rem; text-decoration: none; }
.nav-logo img { height: 46px; width: auto; display: block; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.nav-logo-name { font-family: 'Poppins', sans-serif; font-size: .88rem; font-weight: 600; color: #fff; letter-spacing: .13em; text-transform: uppercase; }
.nav-logo-sub  { font-family: 'Poppins', sans-serif; font-size: .6rem;  font-weight: 400; color: #ffffff; letter-spacing: .13em; text-transform: uppercase; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 400; transition: color .2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-link-novo {
  color: var(--gold) !important; font-weight: 600;
  border: 1px solid rgba(255,191,0,0.4); border-radius: 3px;
  padding: .3rem .6rem !important;
}

/* ── PAGE HERO ── */
.page-hero {
  min-height: 50vh;
  background: linear-gradient(160deg, #080f2a 0%, #0f1c52 35%, #1a2e7a 65%, #263a8c 100%);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 9rem 2rem 6rem;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 65%, rgba(62,115,193,0.28) 0%, transparent 70%),
    linear-gradient(rgba(255,191,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,191,0,0.035) 1px, transparent 1px);
  background-size: auto, 90px 90px, 90px 90px;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 90px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero-label {
  font-size: .68rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 1rem;
  opacity: 0; animation: fadeUp .8s .2s ease both; position: relative; z-index: 1;
}
.page-hero-label::before, .page-hero-label::after {
  content: '—'; margin: 0 .6rem; opacity: .5;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 300; color: var(--white); line-height: 1.08;
  opacity: 0; animation: fadeUp .8s .35s ease both; position: relative; z-index: 1;
  letter-spacing: -.02em;
}
.page-hero-title em { color: var(--gold-light); font-style: italic; }
.page-hero-sub {
  font-size: .85rem; color: rgba(255,255,255,0.4); margin-top: 1.2rem; font-weight: 300;
  letter-spacing: .06em;
  opacity: 0; animation: fadeUp .8s .5s ease both; position: relative; z-index: 1;
}

/* ── FILTROS ── */
.noticias-filtros {
  display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center;
  padding: 3rem 2rem 0;
  max-width: 700px; margin: 0 auto;
}
.filtro-btn {
  padding: .5rem 1.4rem;
  font-size: .68rem; letter-spacing: .13em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; font-family: 'Jost', sans-serif;
  border: 1.5px solid rgba(62,115,193,0.22);
  background: var(--white); color: var(--muted);
  transition: all .25s ease; border-radius: 50px;
  box-shadow: 0 2px 8px rgba(38,58,140,0.04);
}
.filtro-btn:hover {
  background: rgba(62,115,193,0.07); color: var(--navy);
  border-color: rgba(62,115,193,0.4);
}
.filtro-btn.active {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(38,58,140,0.28);
}

/* ── GRID DE NOTÍCIAS ── */
.noticias-section { padding: 2rem 2rem 6rem; }
.noticias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  max-width: 1200px; margin: 2.5rem auto 0;
  align-items: start;
}

/* ── CARD BASE ── */
.noticia-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .38s cubic-bezier(.2,.8,.4,1), box-shadow .38s;
  box-shadow: 0 2px 12px rgba(38,58,140,0.07), 0 1px 3px rgba(0,0,0,0.04);
  display: flex; flex-direction: column;
}
.noticia-card:hover {
  transform: translateY(-7px);
  box-shadow: inset 0 3px 0 0 var(--gold), 0 20px 56px rgba(38,58,140,0.13), 0 4px 14px rgba(0,0,0,0.07);
}

/* ── DESTAQUE ── */
.noticia-card.destaque {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius);
}
.noticia-card.destaque .noticia-img {
  border-radius: var(--radius) 0 0 var(--radius);
}
.noticia-card.destaque .noticia-body {
  padding: 1.8rem 2rem;
  display: flex; flex-direction: column; justify-content: flex-start;
  overflow: hidden;
}
.noticia-card.destaque .noticia-titulo { font-size: 1.7rem; }
.noticia-card.destaque .noticia-tag-wrapper { margin-bottom: .9rem; }

/* ── IMAGEM ── */
.noticia-img {
  position: relative; flex-shrink: 0;
  background: linear-gradient(145deg, #1a2a6e 0%, #263a8c 50%, #3e73c1 100%);
}
.noticia-img.cat-evento   { background: linear-gradient(145deg, #5c3d00 0%, #a06800 50%, #c99300 100%); }
.noticia-img.cat-mensagem { background: linear-gradient(145deg, #122060 0%, #1e3680 50%, #3e73c1 100%); }
.noticia-img.cat-missoes  { background: linear-gradient(145deg, #0d3320 0%, #1a5c38 50%, #2d8c56 100%); }
.noticia-img.cat-culto    { background: linear-gradient(145deg, #1a2a6e 0%, #263a8c 50%, #3e73c1 100%); }

.noticia-img {
  height: 190px;
}
.noticia-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.noticia-card.destaque .noticia-img {
  height: auto;
}

/* Overlay gradiente na imagem */
.noticia-img-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(10,18,48,0) 55%, rgba(10,18,48,0.3) 100%);
}

/* Ícone decorativo no placeholder (sem foto) */
.noticia-img-icon {
  padding: 3rem 0;
  display: flex; align-items: center; justify-content: center;
  opacity: .18;
}
.noticia-img-icon svg { width: 48px; height: 48px; color: #fff; }

/* ── BODY ── */
.noticia-body {
  padding: 1rem 1.2rem 1.2rem;
  flex: 1; display: flex; flex-direction: column;
}

/* ── TAG WRAPPER ── */
.noticia-tag-wrapper {
  display: flex; align-items: center; gap: .8rem;
  margin-bottom: .8rem;
}
.noticia-tag {
  font-size: .58rem; letter-spacing: .17em; text-transform: uppercase;
  font-weight: 700; padding: .28rem .7rem; border-radius: 3px; flex-shrink: 0;
}
.tag-culto    { background: rgba(38,58,140,0.1);   color: var(--navy); }
.tag-evento   { background: rgba(255,191,0,0.15);  color: #7a5500; }
.tag-mensagem { background: rgba(62,115,193,0.12); color: #1d4d96; }
.tag-missoes  { background: rgba(30,130,80,0.1);   color: #1a6035; }
.noticia-data {
  font-size: .7rem; color: var(--muted); letter-spacing: .04em; flex-shrink: 0;
}

/* ── TÍTULO ── */
.noticia-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem; font-weight: 500; color: var(--navy);
  line-height: 1.22; margin-bottom: .6rem; letter-spacing: -.01em;
}

/* ── RESUMO ── */
.noticia-resumo {
  font-size: .82rem; color: #4a5568; line-height: 1.72;
  margin-bottom: .9rem;
  overflow: hidden;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4;
}
.noticia-card.destaque .noticia-resumo {
  -webkit-line-clamp: 5;
}
.noticia-resumo p { margin-bottom: .5rem; }
.noticia-resumo p:last-child { margin-bottom: 0; }
.noticia-resumo strong { font-weight: 600; color: #2d3748; }
.noticia-resumo em { font-style: italic; }
.noticia-resumo u  { text-decoration: underline; }
.noticia-resumo ul, .noticia-resumo ol { padding-left: 1.3rem; margin-bottom: .5rem; }
.noticia-resumo li { margin-bottom: .15rem; }

/* ── LER MAIS ── */
.noticia-ler {
  display: inline-flex; align-items: center; gap: .4rem; align-self: flex-start;
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; color: var(--accent); cursor: pointer;
  border: none; background: none; padding: 0;
  border-bottom: 1px solid rgba(62,115,193,0.3); padding-bottom: 1px;
  transition: color .2s, border-color .2s;
  font-family: 'Jost', sans-serif;
}
.noticia-ler svg { flex-shrink: 0; transition: transform .25s; }
.noticia-ler:hover { color: var(--navy); border-color: var(--navy); }
.noticia-ler:hover svg { transform: translateX(3px); }


/* ── MODAL ── */
.noticia-modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(8,14,42,0.80);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.noticia-modal-overlay.aberto {
  opacity: 1; pointer-events: all;
}
.noticia-modal {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 760px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  transform: translateY(28px) scale(.97);
  transition: transform .35s cubic-bezier(.2,.8,.4,1);
  box-shadow: 0 32px 96px rgba(8,14,42,.5);
}
.noticia-modal-overlay.aberto .noticia-modal {
  transform: translateY(0) scale(1);
}
.noticia-modal-close {
  position: absolute; top: .9rem; right: .9rem; z-index: 2;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.88); border: none;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--navy);
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  transition: background .2s, transform .2s;
}
.noticia-modal-close:hover { background: var(--white); transform: scale(1.1); }

.noticia-modal-img {
  position: relative; overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  max-height: 360px;
  background: linear-gradient(145deg, #1a2a6e 0%, #263a8c 50%, #3e73c1 100%);
}
.noticia-modal-img.cat-evento   { background: linear-gradient(145deg, #5c3d00 0%, #a06800 50%, #c99300 100%); }
.noticia-modal-img.cat-mensagem { background: linear-gradient(145deg, #122060 0%, #1e3680 50%, #3e73c1 100%); }
.noticia-modal-img.cat-missoes  { background: linear-gradient(145deg, #0d3320 0%, #1a5c38 50%, #2d8c56 100%); }
.noticia-modal-img.cat-culto    { background: linear-gradient(145deg, #1a2a6e 0%, #263a8c 50%, #3e73c1 100%); }
.noticia-modal-img img {
  width: 100%; height: 360px; object-fit: cover; display: block;
}
.noticia-modal-img-placeholder {
  height: 160px; display: flex; align-items: center; justify-content: center;
  opacity: .18;
}
.noticia-modal-img-placeholder svg { width: 52px; height: 52px; color: #fff; }

.noticia-modal-body {
  padding: 1.8rem 2.2rem 2.4rem;
}
.noticia-modal-body .noticia-tag-wrapper { margin-bottom: 1rem; }
.noticia-modal-titulo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 500;
  color: var(--navy); line-height: 1.18;
  margin-bottom: 1.2rem; letter-spacing: -.02em;
}
.noticia-modal-texto {
  font-size: .88rem; color: #4a5568; line-height: 1.8;
}
.noticia-modal-texto p { margin-bottom: .7rem; }
.noticia-modal-texto p:last-child { margin-bottom: 0; }
.noticia-modal-texto strong { font-weight: 600; color: #2d3748; }
.noticia-modal-texto em { font-style: italic; }
.noticia-modal-texto u  { text-decoration: underline; }
.noticia-modal-texto ul, .noticia-modal-texto ol { padding-left: 1.4rem; margin-bottom: .6rem; }
.noticia-modal-texto li { margin-bottom: .2rem; }

@media (max-width: 600px) {
  .noticia-modal-body { padding: 1.2rem 1.2rem 1.8rem; }
  .noticia-modal-img img { height: 220px; }
}

/* ── EMPTY STATE ── */
.noticias-empty {
  grid-column: 1 / -1;
  text-align: center; padding: 5rem 2rem; color: var(--muted); display: none;
}
.noticias-empty svg { margin: 0 auto 1.5rem; display: block; opacity: .2; }

/* ── FOOTER ── */
footer {
  background: linear-gradient(160deg, #0a1230 0%, #0d1640 50%, #0a1230 100%);
  padding: 2.5rem 2rem; text-align: center;
  border-top: 1px solid rgba(255,191,0,0.12); position: relative;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,191,0,0.3), transparent);
}
.footer-copy { font-size: .7rem; color: rgba(255,255,255,0.2); letter-spacing: .08em; line-height: 1.7; }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #0d1640; border-top: 1px solid rgba(255,191,0,0.2);
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; animation: fadeUp .4s ease both;
}
#cookie-banner p { font-size: .8rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; flex: 1; min-width: 200px; }
.cookie-btn { padding: .6rem 1.4rem; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500; cursor: pointer; border: none; font-family: 'Jost', sans-serif; white-space: nowrap; transition: opacity .2s; }
.cookie-btn-accept { background: var(--gold); color: var(--navy); }
.cookie-btn-reject { background: transparent; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.15); }

/* ── ANIMATIONS ── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 1rem 2rem; }
  .nav-links { gap: 1.4rem; }
  .nav-links a { font-size: .72rem; }
  .noticias-grid { grid-template-columns: repeat(2, 1fr); }
  .noticia-card.destaque { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { padding: .7rem 1rem; flex-wrap: wrap; gap: .4rem; }
  .nav-logo img { height: 34px; }
  .nav-logo-text { display: none; }
  .nav-links { display: flex; flex-wrap: wrap; gap: .2rem; list-style: none; justify-content: flex-end; flex: 1; }
  .nav-links a { font-size: .6rem; letter-spacing: .08em; padding: .3rem .5rem; }
  .nav-link-novo { padding: .3rem .6rem !important; }
  .noticias-grid { grid-template-columns: 1fr; gap: 1rem; }
  .noticia-card.destaque { grid-template-columns: 1fr; }
  .noticia-card.destaque .noticia-img { border-radius: var(--radius) var(--radius) 0 0; }
  .noticia-card.destaque .noticia-body { padding: 1rem 1.1rem 1.2rem; }
  .noticia-card.destaque .noticia-titulo { font-size: 1.3rem; }
  .page-hero { min-height: 42vh; padding: 7rem 1.5rem 5rem; }
}
@media (max-width: 480px) {
  nav { padding: .6rem .8rem; }
  .nav-logo img { height: 28px; }
  .nav-links a { font-size: .55rem; padding: .25rem .4rem; }
}
@media (orientation: landscape) and (max-height: 500px) {
  .nav-logo img { height: 26px; }
  .nav-logo-name { font-size: .62rem; }
  .nav-logo-sub  { font-size: .42rem; }
}
@media (orientation: landscape) and (min-height: 501px) and (max-height: 800px) {
  .nav-logo-name { font-size: .72rem; }
  .nav-logo-sub  { font-size: .48rem; }
}

/* ── BADGE DE FOTOS NO CARD ── */
.card-fotos-badge {
  position: absolute; bottom: .55rem; right: .55rem;
  background: rgba(10,18,48,.65); color: #fff;
  font-size: .6rem; font-weight: 700;
  width: 1.4rem; height: 1.4rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

/* ── GALERIA NO MODAL ── */
.noticia-modal-galeria {
  margin-top: 1.6rem;
}
.galeria-titulo {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .13em; color: var(--muted); margin-bottom: .8rem;
}
.noticia-modal-galeria .galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: .5rem;
}
.modal-foto-thumb {
  background: none; border: none; padding: 0; cursor: zoom-in;
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 1;
}
.modal-foto-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .22s, opacity .22s;
}
.modal-foto-thumb:hover img { transform: scale(1.06); opacity: .88; }

/* ── LIGHTBOX ── */
.noticia-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5,8,22,.93);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .22s;
}
.noticia-lightbox.aberto {
  opacity: 1; pointer-events: all;
}
.lb-img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border-radius: 6px;
  box-shadow: 0 8px 48px rgba(0,0,0,.5);
}
.lb-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: rgba(255,255,255,.12); border: none; color: #fff;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.lb-close:hover { background: rgba(255,255,255,.25); }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12); border: none; color: #fff;
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.28); }
.lb-prev { left: 1.2rem; }
.lb-next { right: 1.2rem; }
.lb-counter {
  position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: .78rem; letter-spacing: .06em;
}

/* ── IMAGENS INLINE NO CORPO DO ARTIGO ── */
.noticia-modal-texto img {
  max-width: 100%; height: auto;
  border-radius: 8px; margin: .8rem 0;
  display: block;
}

/* ── TÍTULOS RICOS (Quill H2/H3) ── */
.noticia-modal-texto h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600; color: var(--navy);
  margin: 1.4rem 0 .5rem; line-height: 1.2;
}
.noticia-modal-texto h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600; color: var(--navy);
  margin: 1.1rem 0 .4rem;
}
.noticia-modal-texto a {
  color: var(--blue); text-decoration: underline;
}
.noticia-modal-texto blockquote {
  border-left: 3px solid var(--gold); padding-left: 1rem;
  margin: 1rem 0; color: var(--muted); font-style: italic;
}

/* ══════════════════════════════════════════════════════════════════════════════
   IMMERSIVE ENHANCEMENTS — NOTICIAS
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── NAV: shrink on scroll ── */
nav.scrolled {
  padding-top: .5rem; padding-bottom: .5rem;
  background: rgba(20,32,80,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
nav.scrolled .nav-logo img { height: 34px; }

/* ── HERO: animated particles background ── */
.page-hero {
  position: relative;
}
.page-hero canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.5;
}
.page-hero-label,
.page-hero-title,
.page-hero-sub { position: relative; z-index: 1; }

/* ── HERO: radial glow ── */
@keyframes heroGlowNoticias {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}
.page-hero .hero-glow {
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,191,0,0.07) 0%, transparent 70%);
  top: 30%; left: 50%; transform: translateX(-50%);
  animation: heroGlowNoticias 5s ease-in-out infinite;
  pointer-events: none;
}

/* ── CARDS: staggered entrance ── */
.noticia-card:nth-child(2) { transition-delay: .05s; }
.noticia-card:nth-child(3) { transition-delay: .1s; }
.noticia-card:nth-child(4) { transition-delay: .15s; }
.noticia-card:nth-child(5) { transition-delay: .2s; }
.noticia-card:nth-child(6) { transition-delay: .25s; }

/* ── CARDS: enhanced hover with gold top line ── */
.noticia-card {
  position: relative;
}
.noticia-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0; transition: opacity .3s;
  z-index: 2;
}
.noticia-card:hover::before { opacity: 1; }

/* ── FILTER: smooth category transition ── */
.noticia-card {
  transition: transform .38s cubic-bezier(.2,.8,.4,1), box-shadow .38s, opacity .35s ease;
}

/* ── MODAL: enhanced backdrop ── */
.noticia-modal-overlay {
  transition: opacity .35s ease, backdrop-filter .35s ease;
}
.noticia-modal-overlay.aberto {
  backdrop-filter: blur(10px);
}

/* ── FOOTER: gold shimmer line ── */
footer::after {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 100px; height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

/* ── PAGE SMOOTH LOAD ── */
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageIn .5s ease both; }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 90;
  width: 44px; height: 44px;
  background: var(--navy); color: var(--gold);
  border: 1px solid rgba(255,191,0,0.25);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s, background .25s;
  transform: translateY(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  border-radius: 0;
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,191,0,0.25);
}
