@charset "UTF-8";
/* ══════════════════════════════════════════════════════
   RNA — Rádio Nacional de Angola  |  Portal Web  v2
   Resolução base: 1920×1080 · Responsivo até 320px
   Logo SVG original embutida inline no HTML
   Ondas elípticas — mesmo formato da elipse da logo
══════════════════════════════════════════════════════ */
:root {
  --wave-opacity: 0.25;
  --wave-thickness: 2px;
  --wave-scale-x: 150;
  --wave-scale-y: 60;
}

:root {
  --azul:        #0b1a4e;
  --azul-med:    #1a3a7e;
  --ouro:        #c9960c;
  --ouro-claro:  #f0c040;
  --vermelho:    #cc2229;
  --branco:      #ffffff;
  --cinza-pg:    #f0ede8;
  --cinza-borda: #ddd;
  --texto:       #1a1a2e;
  --champagne:   #bdbdb5;
  --oliva:       #a2a29c;
}

/* ══════════════════════════════════════════════════════
   RNA — TIPOGRAFIA GLOBAL
      Fontes usadas:
     • Playfair Display — títulos editoriais (serif)
     • Barlow Condensed — labels, categorias, UI (condensed)
     • Source Sans 3    — corpo de texto, leitura (sans)
══════════════════════════════════════════════════════ */
html, body {
  overflow-x: hidden;
}

body {
  position: relative;
}

.body-grid {
  align-items: start;
}

/* ─── RESET TIPOGRÁFICO BASE ─── */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 700;
  color: var(--texto);
}

p {
  margin: 0 0 1em;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.2rem;        /* 16px */
  font-weight: 400;
  line-height: 1.75;
  color: var(--texto);
}

p:last-child { margin-bottom: 0; }

/* ─── HEADINGS — ESCALA MODULAR ─── */

/* H1 — Grande manchete principal */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);   /* 32px → 48px */
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.1;
  color: var(--texto);
}

/* H2 — Título de secção / editorial */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem); /* 24px → 36px */
  font-weight: 700;
  letter-spacing: -.005em;
  line-height: 1.2;
  color: var(--texto);
}

/* H3 — Subtítulo de artigo / card destacado */
h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2vw, 1.625rem); /* 19px → 26px */
  font-weight: 700;
  line-height: 1.25;
  color: var(--texto);
}

/* H4 — Título de card normal / sidebar */
h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;   /* 18px */
  font-weight: 700;
  line-height: 1.3;
  color: var(--texto);
}

/* H5 — Cabeçalho de bloco secundário */
h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;        /* 16px */
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--azul-med);
}

/* H6 — Label de categoria / kicker */
h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;      /* 12px */
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--ouro);
}

/* ─── LINKS ─── */

a {
  color: var(--ouro);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--ouro-claro);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

a:focus-visible {
  outline: 2px solid var(--ouro);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Links dentro de parágrafos — sublinhado por padrão */
p a {
  color: var(--azul-med);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(26,58,126,.35);
}

p a:hover {
  color: var(--ouro);
  text-decoration-color: var(--ouro);
}

/* Links em contexto escuro (header, footer, ticker) */
.header-main a,
.site-footer a,
.bar-acesso a {
  background-color: rgba(255,255,255,0) transparent;
  text-decoration: none;
  z-index: 90;
}

.header-main a:hover,
.site-footer a:hover,
.bar-acesso a:hover {
  color: var(--ouro-claro);
  text-decoration: none;
}

/* ─── SPAN — usos semânticos ─── */

/* Destaque inline (palavra-chave, termo) */
span.destaque {
  color: var(--ouro);
  font-weight: 600;
}

/* Tag / badge de categoria */
span.tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .6875rem;   /* 11px */
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--azul);
  background: var(--ouro);
  padding: 2px 8px;
  border-radius: 2px;
  line-height: 1.6;
}

/* Tag variante — fundo escuro */
span.tag-dark {
  color: var(--ouro-claro);
  background: rgba(201,150,12,.15);
  border: 0.5px solid rgba(201,150,12,.35);
}

/* Muted — texto secundário / metadados */
span.muted {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .6875rem;   /* 11px */
  letter-spacing: .08em;
  color: #aaa;
}

/* Live badge */
span.live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #e05555;
}

span.live::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #e03030;
  animation: blink 1.2s ease-in-out infinite;
}

/* ─── ELEMENTOS DE APOIO ─── */

/* Lead / chapéu de artigo */
p.lead {
  font-size: 1.125rem;   /* 18px */
  font-weight: 300;
  line-height: 1.7;
  color: #444;
}

/* Citação editorial */
blockquote {
  margin: 1.5em 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--ouro);
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;  /* 17px */
  font-style: italic;
  color: var(--azul);
  line-height: 1.65;
}

blockquote cite {
  display: block;
  margin-top: .5em;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  font-style: normal;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #aaa;
}

/* Legenda de imagem */
figcaption {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;     /* 12px */
  letter-spacing: .06em;
  color: #999;
  margin-top: 6px;
  line-height: 1.4;
}

/* Strong e em */
strong { font-weight: 700; color: inherit; }
em     { font-style: italic; color: inherit; }

/* Small */
small {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .75rem;
  letter-spacing: .06em;
  color: #999;
}

/* ─── TIPOGRAFIA EM FUNDO ESCURO ─── */
/* Use a classe .on-dark num contentor para inverter cores */
.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark h4 { color: #fff; }

.on-dark h5 { color: var(--ouro-claro); }
.on-dark h6 { color: var(--ouro); }

.on-dark p  { color: rgba(255,255,255,.65); }

.on-dark p.lead { color: rgba(255,255,255,.8); }

.on-dark blockquote { color: rgba(255,255,255,.85); border-left-color: var(--ouro); }

.on-dark small,
.on-dark span.muted { color: rgba(255,255,255,.35); }

/* ─── RESPONSIVO ─── */
@media (max-width: 768px) {
  p       { font-size: .9375rem; } /* 15px */
  p.lead  { font-size: 1rem; }
  blockquote { font-size: 1rem; }
}

@media (max-width: 480px) {
  p { font-size: .875rem; line-height: 1.65; } /* 14px */
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: auto; }
body  { font-family: 'Source Sans 3', sans-serif; background: white; color: var(--texto); min-width: 320px; }

/* ─── ACESSIBILIDADE ─── */
.bar-acesso {
  background: #10102a;
  display: flex; align-items: center; justify-content: flex-end;
  padding: 4px 28px; gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; letter-spacing: .1em;
}

.bar-acesso a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.bar-acesso a:hover { color: var(--ouro-claro); }
.bar-acesso .sep { color: rgba(255,255,255,.2); }




/* ─── HEADER ───_________________________________________ */

/* ══════════════════════════════════════════════════════
   SLIDESHOW DE PROVÍNCIAS — fundo simples do header
   Absolutamente leve: só CSS opacity transition.
   Não compete com nenhuma outra camada do header.
══════════════════════════════════════════════════════ */

.hdr-layers {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;           /* acompanha altura real do .header-main */
  z-index: 0;             /* sempre atrás de tudo no header */
  overflow: hidden;       /* contém o slideshow — estava no header-main, movido para cá */
  pointer-events: none;
  background: #0b1a4e;    /* fallback enquanto imagens carregam */
}

/* Cada slide de província */
.prov-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  /* Overlay integrado — escurece a imagem para o header ser legível */
  filter: brightness(0.72) saturate(0.65);
  backface-visibility: hidden;
  transform: translateZ(0);
}

.prov-slide:first-child {
  opacity: 1;
}
.prov-slide.active {
  opacity: 1;
}

/* ── Header: transparente sobre o slideshow ── */
.header-main {
  background: transparent;
  position: relative;
  z-index: 30;
  /* overflow:hidden removido — estava a esconder o ad-box em alguns breakpoints.
     O slideshow fica contido pelo overflow:hidden do próprio .hdr-layers */
}













/* Estilo da Data/Hora Compacta */
#data-hora {
   font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: .05em;
   color: rgba(255,255,255,.5);
   padding: 10px 20px;
}


.header-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px 16px 20px;
  border-bottom: 1px solid rgba(201,150,12,.3);
  gap: 24px;
  min-height: 220px;           /* garante altura suficiente para o ad-box */
}

/* ─── LOGO SVG ORIGINAL ───
   id="logo-anchor" é usado pelo waves.js para calcular a posição
   da ponta da antena em coordenadas de tela. */
.logo-block {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.logo-svg-wrap {
  /* Altura fixa; largura proporcional ao SVG original (160.8mm × 45.5mm ≈ 3.53:1) */
  max-height: 100px;
  width: 100%;
  top:0;
  padding-top: 0x;
}

.logo-svg {
  height: auto;
  width: 400px;
  display: block;
  padding-top: 0;
  padding-left: 40px;
}

.logo-svg img {
  height: 130px;
  width: auto;
  display: block;
  padding-bottom: 30px;
}


/* ══════════════════════════════════════════════
   CANVAS FULL-PAGE (ondas sobre toda a tela)
══════════════════════════════════════════════ 
#wave-canvas {
  position: fixed !important;
  top: 0; left: 0;
  width: 100vw !important;
  height: 100vh !important;
  pointer-events: none;
  z-index: 18;
}*/




/* ─── DIREITA DO HEADER ─── */
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  flex-shrink: 0;
  z-index: 70;
}

/* .top-banner e .top-banner-inner removidos do HTML — regras obsoletas */


/* ─── BUSCA (reduzida) ─── */
.search-bar {
  display: flex; align-items: center;
  background: rgba(255,255,255,.08);
  border: 0.5px solid rgba(255,255,255,.15);
  border-radius: 3px; overflow: hidden;
  width: 220px;
}
.search-bar input {
  background: transparent; border: none; outline: none;
  color: #fff; font-size: 1rem; padding: 5px 10px; flex: 1;
  font-family: 'Source Sans 3', sans-serif;
}
.search-bar input::placeholder { color: rgba(255,255,255,.3); }
.search-btn { background: var(--ouro); border: none; padding: 5px 11px; cursor: pointer; color: var(--azul); font-size: 13px; font-weight: 700; transition: background .2s; }
.search-btn:hover { background: var(--ouro-claro); }

/* ─── NAV ─── */
.nav-main {
  position: relative; z-index: 30;
  background: rgba(8,16,50,.92);
  border-bottom: 1px solid rgba(201,150,12,.2);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
}
.nav-links { display: flex; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5); text-decoration: none;
  padding: 11px 14px; border-bottom: 2px solid transparent;
  transition: all .2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--ouro-claro); border-bottom-color: var(--ouro); }
.nav-live { display: flex; align-items: center; gap: 6px; background: rgba(200,30,30,.15); border: 0.5px solid rgba(200,30,30,.5); border-radius: 3px; padding: 5px 12px; cursor: pointer; flex-shrink: 0; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: #e03030; animation: blink 1.2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.live-text { font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; font-weight: 700; letter-spacing: .18em; color: #e05555; }

/* ─── TICKER ─── */
.ticker { position: relative; z-index: 20; background: rgba(8,14,50,.95); border-top: 0.5px solid rgba(201,150,12,.2); border-bottom: 0.5px solid rgba(201,150,12,.2); display: flex; align-items: center; overflow: hidden; }
.ticker-lbl { background: var(--ouro); color: var(--azul); font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: 5px 14px; flex-shrink: 0; }
.ticker-wrap {  overflow: hidden; flex: 1; padding-left: 24px;   /* ← sai do track, entra aqui */}
.ticker-track { display: flex; gap: 60px; white-space: nowrap; width: max-content; /* ← chave do problema */ animation: ticker-scroll 28s linear infinite; }
.ticker-item { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 500; letter-spacing: .05em; color: rgba(255,255,255,.55); }
@keyframes ticker-scroll { 0%   { transform: translateX(0); } 100% { transform: translateX(-50%); }
}

.banner-hero {
  display: block;
  position: relative;
  width: 100%;
  height: 340px;
  min-height: 340px;
  overflow: hidden;
  background: #0a0a1a;
  z-index: 30;
}

/* Slides ocupam toda área */
.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}

/* Sempre há conteúdo visível */
.banner-slide:first-child {
  opacity: 1;
  z-index: 1;
}

/* Slide ativo */
.banner-slide.active {
  opacity: 1;
  z-index: 2;
}

.b-s1{background:linear-gradient(135deg,#0b1a4e 0%,#1a4ab0 60%,#0b1a4e 100%)}
.b-s2{background:linear-gradient(135deg,#1a0a00 0%,#8b2500 60%,#1a0a00 100%)}
.b-s3{background:linear-gradient(135deg,#001a0b 0%,#0a5a2a 60%,#001a0b 100%)}
.b-s4{background:linear-gradient(135deg,#1a001a 0%,#5a0a8b 60%,#1a001a 100%)}
.b-s5{background:linear-gradient(135deg,#001a1a 0%,#0a5a5a 60%,#001a1a 100%)}
.b-s6{background:linear-gradient(135deg,#1a1a00 0%,#7a6a00 60%,#1a1a00 100%)}
.banner-content { padding: 48px 64px; max-width: 680px; z-index: 2; }
.banner-tag  { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--ouro-claro); margin-bottom: 12px; }
.banner-title{ font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.banner-desc { font-size: .93rem; color: rgba(255,255,255,.55); line-height: 1.6; max-width: 500px; margin-bottom: 24px; }
.banner-cta  { display: inline-block; background: var(--ouro); color: var(--azul); font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; padding: 10px 26px; border-radius: 3px; text-decoration: none; transition: background .2s; }
.banner-cta:hover { background: var(--ouro-claro); }
.b-arr { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; background: rgba(0,0,0,.4); border: 0.5px solid rgba(255,255,255,.2); border-radius: 50%; color: #fff; font-size: 20px; cursor: pointer; z-index: 3; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.b-arr:hover { background: rgba(201,150,12,.6); }
.b-arr-prev { left: 16px; }
.b-arr-next { right: 16px; }
.banner-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.banner-dot  { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: all .2s; }
.banner-dot.active { background: var(--ouro); transform: scale(1.3); }

/* ══ CORPO ══ */
.site-body { background: whitesmoke; padding: 32px; }
.body-grid { display: grid; grid-template-columns: 1fr 300px; gap: 32px; max-width: 1400px; margin: 0 auto; }
.section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--azul); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--ouro); }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.news-card { background: var(--branco); border-radius: 6px; overflow: hidden; border: 0.5px solid var(--cinza-borda); transition: transform .2s; }
.news-card:hover { transform: translateY(-2px); }
.news-card-img { height: 150px; }
.nc-i1{background:linear-gradient(135deg,#1a3a7e,#0b1a4e)}
.nc-i2{background:linear-gradient(135deg,#5a0a2a,#8b1a3a)}
.nc-i3{background:linear-gradient(135deg,#0a5a2a,#1a8b4a)}
.nc-i4{background:linear-gradient(135deg,#5a4a00,#8b7a10)}
.news-card-body { padding: 14px; }
.nc-cat  { font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ouro); margin-bottom: 6px; }
.nc-title{ font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--texto); line-height: 1.3; margin-bottom: 6px; }
.nc-time { font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; color: #999; letter-spacing: .08em; }

/* ── SIDEBAR ADS ── */
/*
   ATENÇÃO: overflow:hidden foi REMOVIDO do .pub-lateral.
   Era o culpado real pelo pub-slides não renderizar:
   overflow:hidden no pai criava um BFC que impedia o
   compositor gráfico de repintar as camadas de opacity
   dos slides absolutos em hardware-accelerated contexts
   (Chrome Android, Safari iOS, ambientes online com GPU).
   O border-radius visual é mantido via border-radius nos
   filhos directos (.pub-etiqueta e #pub-slides).
*/
.pub-lateral {
  background: var(--branco);
  border: 0.5px solid var(--cinza-borda);
  border-radius: 6px;
  position: relative; /* ← ESSENCIAL: ancora os filhos position:absolute */
  /* overflow: hidden  ← REMOVIDO — era o assassino do pub-slides */
  margin-bottom: 8px;
  width: 100%;
}

.pub-etiqueta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #bbb;
  text-align: center;
  padding: 4px;
  background: #f9f9f9;
  border-bottom: 0.5px solid #eee;
  border-radius: 6px 6px 0 0; /* preserva o arredondamento do topo sem overflow:hidden no pai */
}

/* SAD SLIDES — slider lateral de publicidade
   REGRAS CRÍTICAS — não alterar sem entender a cadeia:
   1. #pub-slides tem height explícita E overflow:hidden próprio
   2. .pub-slide usa position:absolute + inset:0 (nunca position:relative)
   3. .pub-slide.active muda APENAS opacity — nada mais
   4. As imagens têm width/height no HTML para evitar colapso antes do load
*/
/* SAD SLIDER — versão limpa e estável */


#pub-slides {
  display: block;
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 5px 5px;
  background: #0b1a4e;
}

/* Slides */
.pub-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  overflow: hidden;
}

/* Slide ativo */
.pub-slide.active {
  opacity: 1;
}

/* Imagem protegida contra CSS global */
#pub-slides img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

@media (max-width: 480px) {
  #pub-slides {
  display: block;
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 5px 5px;
  background: #0b1a4e;
}
}

.pub-s1{background:linear-gradient(135deg,#0b1a4e,#1a3a8e)}
.pub-s2{background:linear-gradient(135deg,#1a0500,#6b1a00)}
.pub-s3{background:linear-gradient(135deg,#001a05,#006b20)}
.pub-tag  { font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--ouro-claro); }
.pub-title{ font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: #fff; line-height: 1.2; }
.pub-cta  { background: var(--ouro); color: var(--azul); border: none; font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 7px 18px; border-radius: 3px; cursor: pointer; }

/* ── SIDEBAR NEWS ── */
.sidebar-news { background: var(--branco); border: 0.5px solid var(--cinza-borda); border-radius: 6px; padding: 16px; }
.side-item { padding: 10px 0; border-bottom: 0.5px solid #eee; }
.side-item:last-child { border-bottom: none; }
.si-cat  { font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--ouro); margin-bottom: 3px; }
.si-title{ font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--texto); line-height: 1.3; cursor: pointer; }
.si-title:hover { color: var(--ouro); }
.si-time { font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; color: #bbb; margin-top: 3px; }

/* ══ POPUP ══ */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.65); z-index: 9000; display: none; align-items: center; justify-content: center; }
.popup-overlay.visible { display: flex; }
.popup-box { position: relative; width: 520px; max-width: 94vw; border-radius: 8px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.5); }
.popup-slide { display: none; flex-direction: column; }
.popup-slide.active { display: flex; }
.popup-img { height: 270px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 32px; }
.pp-c1{background:linear-gradient(135deg,#0b1a4e,#2a5ab8)}
.pp-c2{background:linear-gradient(135deg,#3a0000,#aa2020)}
.pp-c3{background:linear-gradient(135deg,#003a10,#10a040)}
.popup-tag  { font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.popup-title{ font-family: 'Playfair Display', serif; font-size: 31.8rem; font-weight: 700; color: #fff; text-align: center; line-height: 1.2; }
.popup-sub  { font-size: .8rem; color: rgba(255,255,255,.55); text-align: center; font-family: 'Source Sans 3', sans-serif; max-width: 360px; }
.popup-footer { background: #fff; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; }
.popup-dots-wrap { display: flex; gap: 6px; }
.popup-dot  { width: 7px; height: 7px; border-radius: 50%; background: #ddd; cursor: pointer; transition: all .2s; }
.popup-dot.active { background: var(--ouro); }
.popup-actions { display: flex; align-items: center; gap: 14px; }
.popup-skip { font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; color: #aaa; cursor: pointer; letter-spacing: .08em; }
.popup-skip:hover { color: #333; }
.popup-cta  { background: var(--ouro); color: var(--azul); font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; padding: 9px 22px; border-radius: 3px; border: none; cursor: pointer; }
.popup-cta:hover { background: var(--ouro-claro); }
.popup-close { position: absolute; top: 10px; right: 10px; width: 28px; height: 28px; background: rgba(0,0,0,.45); border: none; border-radius: 50%; color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; transition: background .2s; }
.popup-close:hover { background: rgba(0,0,0,.75); }

/* responsivo consolidado abaixo — bloco antigo removido */



/* ══════════════════════════════════════════════
   PÁGINAS INTERNAS — COMPONENTES COMUNS
══════════════════════════════════════════════ */

/* Breadcrumb */
.breadcrumb {
  background: var(--azul);
  padding: 8px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--texto-muted, #888);
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--ouro); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: .4; }

/* Hero de categoria */
.cat-hero {
  padding: 32px 32px 24px;
  border-bottom: 2px solid var(--ouro);
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--champagne);
}
.cat-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--azul); background: var(--ouro-claro);
  flex-shrink: 0;
}
.cat-hero-text { display: flex; flex-direction: column; gap: 2px; }
.cat-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--azul);
}
.cat-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--azul-med);
}

/* Paginação */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; padding: 32px 0 16px;
}
.pag-btn {
  width: 34px; height: 34px;
  border: 0.5px solid var(--cinza-borda);
  background: var(--branco);
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem; font-weight: 600;
  color: var(--texto);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.pag-btn:hover, .pag-btn.active { background: var(--ouro); color: var(--azul); border-color: var(--ouro); }

/* Tag de categoria inline */
.tag-pill {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  background: var(--ouro); color: var(--azul);
  padding: 2px 8px; border-radius: 2px;
}

/* ── LAYOUT 1: Lista editorial (angola.html) ── */
.editorial-list { display: flex; flex-direction: column; gap: 0; }
.ed-item {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--cinza-borda);
  align-items: flex-start;
}
.ed-item:first-child { padding-top: 0; }
.ed-img { width: 200px; height: 130px; border-radius: 4px; flex-shrink: 0; }
.ed-body { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.ed-tag { font-family:'Barlow Condensed',sans-serif; font-size: 1rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--azul); }
.ed-title { font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; color:var(--texto); line-height:1.25; }
.ed-lead  { font-size:1.1rem; color:#555; line-height:1.6; }
.ed-meta  { font-family:'Barlow Condensed',sans-serif; font-size:.9rem; color:#555555; letter-spacing:.08em; }

/* ── LAYOUT 2: Grade revista (mundo.html) ── */
.revista-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.rev-card { background: var(--branco); border-radius: 6px; border:0.5px solid var(--cinza-borda); overflow:hidden; transition:transform .2s; }
.rev-card:hover { transform: translateY(-3px); }
.rev-card.featured { grid-column: span 2; }
.rev-img { width:100%; background:#ccc; }
.rev-img.tall  { height:240px; }
.rev-img.short { height:160px; }
.rev-body { padding:16px; }
.rev-tag  { font-family:'Barlow Condensed',sans-serif; font-size: 1rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--ouro); margin-bottom:6px; }
.rev-title{ font-family:'Playfair Display',serif; font-size:1.3rem; font-weight:700; color:var(--texto); line-height:1.3; margin-bottom:6px; }
.rev-lead { font-size: 1.1rem; color:#666; line-height:1.5; }
.rev-meta { font-family:'Barlow Condensed',sans-serif; font-size: .9rem; color:#555; margin-top:8px; }

/* ── LAYOUT 3: Manchete + lista (economia.html) ── */
.manchete-layout { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.manchete-main {padding:0;}
.manchete-img { width:100%; height:300px; border-radius:6px; margin-bottom:20px; }
.manchete-title { font-family:'Playfair Display',serif; font-size: 2rem; font-weight:700; color:var(--texto); line-height:1.2; margin-bottom:12px; }
.manchete-lead  { font-size: 1rem; color:#555; line-height:1.7; margin-bottom:16px; }
.manchete-aside {padding:0;}
.aside-list { display:flex; flex-direction:column; gap:0; background:var(--branco); border:0.5px solid var(--cinza-borda); border-radius:6px; overflow:hidden; }
.aside-item { display:flex; gap:12px; padding:14px; border-bottom:0.5px solid #eee; align-items:center; }
.aside-item:last-child { border-bottom:none; }
.aside-num { font-family:'Barlow Condensed',sans-serif; font-size: 1.8rem; font-weight:700; color:rgba(201,150,12,.25); flex-shrink:0; width:28px; line-height:1; }
.aside-title { font-family:'Playfair Display',serif; font-size: .9rem; color:var(--texto); line-height:1.3; }
.aside-time  { font-family:'Barlow Condensed',sans-serif; font-size: .8rem; color:#bbb; margin-top:3px; }

/* ── LAYOUT 4: Cards placar (desporto.html) ── */
.desporto-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.placar-card { background:var(--branco); border-radius:8px; border:0.5px solid var(--cinza-borda); overflow:hidden; }
.placar-header { padding:10px 16px; font-family:'Barlow Condensed',sans-serif; font-size:.9rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--branco); background:var(--azul); display:flex; justify-content:space-between; align-items:center; }
.placar-live { display:flex; align-items:center; gap:5px; }
.placar-dot { width:6px; height:6px; border-radius:50%; background:#e03030; animation:blink 1.2s ease-in-out infinite; }
.placar-body { padding:16px; }
.sport-title { font-family:'Playfair Display',serif; font-size:16px; font-weight:700; color:var(--texto); line-height:1.3; margin-bottom:8px; }
.sport-lead  { font-size:13px; color:#666; line-height:1.5; }
.sport-meta  { font-family:'Barlow Condensed',sans-serif; font-size: .7rem; color:#bbb; margin-top:8px; }
.sport-tag   { display:inline-block; font-family:'Barlow Condensed',sans-serif; font-size: .9rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase; background:var(--ouro); color:var(--azul); padding:2px 8px; border-radius:2px; margin-bottom:6px; }

/* ── LAYOUT 5: Galeria + texto (cultura.html) ── */
.cultura-feature { display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-bottom:32px; align-items:start; }
.cult-img-main { width:100%; height:320px; border-radius:6px; }
.cult-feature-body {padding:0;}
.cult-kicker { font-family:'Barlow Condensed',sans-serif; font-size: .9rem; font-weight:700; letter-spacing: .22em; text-transform:uppercase; color:var(--azul-med); margin-bottom:10px; }
.cult-title  { font-family:'Playfair Display',serif; font-size: 1.7rem; font-weight:700; color:var(--texto); line-height:1.2; margin-bottom:14px; }
.cult-body   { font-size: 1rem; color:#555; line-height: 1.75; }
.cult-quote  { border-left:3px solid var(--ouro); padding-left:16px; margin:16px 0; font-family:'Playfair Display',serif; font-size: 1.rem; font-style:italic; color:var(--azul); }
.galeria-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-top:24px; }
.gal-thumb { height:120px; border-radius:4px; cursor:pointer; transition:opacity .2s; }
.gal-thumb:hover { opacity:.85; }




/* ══════════════════════════════════════════════════════
   HEADER RESPONSIVO — RNA
   Adicione este bloco ao seu style.css
   (substitui ou complementa as regras existentes do header)
══════════════════════════════════════════════════════ */

/* ─── CONTROLES MOBILE (hamburger + lupa) ─── */
/* Ocultos no desktop */
.mobile-controls { display: none; align-items: center; gap: 10px; }

.mob-search-btn {
  background: transparent;
  border: 0.5px solid rgba(255,255,255,.2);
  border-radius: 4px;
  color: rgba(255,255,255,.7);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .2s;
}
.mob-search-btn:hover { border-color: var(--ouro); color: var(--ouro-claro); }

.hamburger {
  background: transparent;
  border: 0.5px solid rgba(255,255,255,.2);
  border-radius: 4px;
  width: 36px; height: 36px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px; cursor: pointer;
  padding: 6px;
  transition: border-color .2s;
}
.hamburger:hover { border-color: var(--ouro); }
.hamburger span {
  display: block;
  width: 18px; height: 2px;
  background: rgba(255,255,255,.75);
  border-radius: 2px;
  transition: all .3s ease;
  transform-origin: center;
}
/* Hamburger → X quando aberto */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── BUSCA MOBILE EXPANSÍVEL ─── */
.mobile-search-bar {
  display: none;
  position: relative; z-index: 20;
  align-items: center;
  background: rgba(8,14,50,.95);
  border-bottom: 1px solid rgba(201,150,12,.2);
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 20px;
}
.mobile-search-bar.open {
  max-height: 56px;
  padding: 8px 20px;
}
.mobile-search-bar input {
  flex: 1; background: transparent; border: none; outline: none;
  color: #fff; font-size: 14px; padding: 6px 10px;
  font-family: 'Source Sans 3', sans-serif;
}
.mobile-search-bar input::placeholder { color: rgba(255,255,255,.35); }
.mobile-search-bar .search-btn {
  background: var(--ouro); border: none; padding: 6px 14px;
  cursor: pointer; color: var(--azul); font-size: 14px; font-weight: 700;
  border-radius: 2px;
}

/* nav-main e nav-links já definidos acima — sem duplicata */

/* Busca dentro da nav — desktop only */
.nav-right-desktop {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.desktop-search {
  display: flex; align-items: center;
  background: rgba(255,255,255,.08);
  border: 0.5px solid rgba(255,255,255,.15);
  border-radius: 3px; overflow: hidden;
  width: 200px;
}
.desktop-search input {
  background: transparent; border: none; outline: none;
  color: #fff; font-size: 12px; padding: 5px 10px; flex: 1;
  font-family: 'Source Sans 3', sans-serif;
}
.desktop-search input::placeholder { color: rgba(255,255,255,.3); }
.desktop-search .search-btn {
  background: var(--ouro); border: none; padding: 5px 11px;
  cursor: pointer; color: var(--azul); font-size: 13px; font-weight: 700;
}

.nav-live {
  display: flex; align-items: center; gap: 6px;
  background: rgba(200,30,30,.15); border: 0.5px solid rgba(200,30,30,.5);
  border-radius: 3px; padding: 5px 12px; cursor: pointer; flex-shrink: 0;
}

/* ─── PAINEL MOBILE (oculto por padrão) ─── */
.nav-mobile-panel {
  display: none; /* controlado por JS */
  flex-direction: column;
  background: #0d1f5c;
  border-top: 2px solid rgba(201,150,12,.4);
  padding: 8px 0 12px;
  position: fixed;
  top: 0; left: 0; right: 0; /* posição real definida por JS */
  z-index: 9500;
  box-shadow: 0 8px 28px rgba(0,0,0,.55);
  animation: slideDown .25s ease;
  /* Apenas visível em mobile */
}
.nav-mobile-panel.open { display: flex; }

/* Em desktop, nunca mostrar mesmo que open */
@media (min-width: 769px) {
  .nav-mobile-panel { display: none !important; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mob-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.6); text-decoration: none;
  padding: 13px 24px;
  border-bottom: 0.5px solid rgba(255,255,255,.06);
  transition: all .15s;
}
.nav-mobile-panel > a:first-child { padding-top: 18px; }

.mob-link:hover, .mob-link.active {
  color: var(--ouro-claro);
  background: rgba(201,150,12,.08);
  padding-left: 30px;
}

.mob-live {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 24px;
}

/* ══════════════════════════════════════════════════════
   BREAKPOINTS RESPONSIVOS
══════════════════════════════════════════════════════ */

/* ── WIDE: 1280px ── */
@media (max-width: 1280px) {
  .body-grid { grid-template-columns: 1fr 260px; }
  .banner-title { font-size: 34px; }
  
}

/* ── TABLET: 1024px ── */
@media (max-width: 1024px) {



  /* Busca volta para dentro do header-right */
  .header-right {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  /* Busca desktop some da nav, aparece só no header */
  .desktop-search { display: none; }

  .header-inner { padding: 12px 20px; }
  .nav-main { padding: 0 20px; }
  .nav-links a { padding: 11px 10px; font-size: 11px; }



  /* Busca compacta no header */
  .header-right::before { display: none; }
  .search-bar {
    display: flex; align-items: center;
    background: rgba(255,255,255,.08);
    border: 0.5px solid rgba(255,255,255,.15);
    border-radius: 3px; overflow: hidden;
    width: 180px;
  }
  .search-bar input {
    background: transparent; border: none; outline: none;
    color: #fff; font-size: 12px; padding: 5px 8px; flex: 1;
    font-family: 'Source Sans 3', sans-serif;
  }
  .search-bar input::placeholder { color: rgba(255,255,255,.3); }
  .search-bar .search-btn {
    background: var(--ouro); border: none; padding: 5px 10px;
    cursor: pointer; color: var(--azul); font-size: 12px; font-weight: 700;
  }

  .logo-svg-wrap { height: 52px; }
}

/* ── MOBILE: 768px — hamburger entra ── */
@media (max-width: 768px) {

  .header-inner { padding: 10px 16px; flex-wrap: nowrap; }
  .header-right { flex-direction: row; align-items: center; gap: 0; }
  .mobile-controls { display: flex; }
  .nav-links       { display: none; }
  .nav-right-desktop { display: none; }
  .desktop-search  { display: none; }
  .nav-main {
    padding: 0; position: relative;
    justify-content: flex-end;
    min-height: 0; border-bottom: none;
  }
  .ticker { border-top: 1px solid rgba(201,150,12,.2); }
  .mobile-search-bar { display: flex; }
  .logo-svg-wrap { height: 44px; }
  .logo-svg { height: 100%; width: auto; }

  /* Corpo */
  .news-grid { grid-template-columns: 1fr; }
  .body-grid { grid-template-columns: 1fr; }
  .site-body { padding: 16px; }
  .banner-hero { height: auto; min-height: 240px; }
  .banner-title { font-size: 22px; }
  .banner-desc { display: none; }
  .banner-content { padding: 28px 24px; }
  .ed-item { flex-direction: column; }
  .ed-img { width: 100%; height: 180px; }
  .manchete-layout { grid-template-columns: 1fr; }
  .cultura-feature { grid-template-columns: 1fr; }
  .revista-grid { grid-template-columns: 1fr 1fr; }
  .rev-card.featured { grid-column: span 2; }
  .aside-list { margin-top: 16px; }

  #data-hora { display: none; }
  .ticker-track { animation-duration: 28s; }
}

/* ── MOBILE PEQUENO: 480px ── */
@media (max-width: 480px) {
  .header-inner { padding: 8px 12px; }
  .logo-svg-wrap { height: 38px; }
  .ticker-lbl { padding: 5px 10px; font-size: 9px; }
  .ticker-item { font-size: 11px; }
  .bar-acesso { flex-wrap: wrap; justify-content: center; padding: 5px 12px; gap: 8px; }
}



/* ══════════════════════════════════════════════════════
   RNA — FOOTER  |  Adicione ao final do style.css
   (antes dos @media queries ou dentro deles se necessário)
══════════════════════════════════════════════════════ */

/* ─── FOOTER PRINCIPAL ─── */
.site-footer {
  background: #0a0f2e;
  border-top: 2px solid var(--ouro);
  color: rgba(255, 255, 255, 0.95);
  font-family: 'Source Sans 3', sans-serif;
}

/* ─── TOPO: logo + redes ─── */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 48px 28px;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-logo {
  height: 70px;
  width: auto;
  display: block;
  opacity: .9;
  filter: brightness(1.1);
}

.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ouro);
  opacity: .7;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fsoc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0.5px solid rgba(201,150,12,.35);
  color: rgba(255,255,255,.45);
  font-size: 16px;
  text-decoration: none;
  transition: all .2s;
}
.fsoc-btn:hover {
  background: rgba(201,150,12,.15);
  border-color: var(--ouro);
  color: var(--ouro-claro);
  transform: translateY(-2px);
}

/* ─── SEPARADOR ─── */
.footer-divider {
  height: 0.5px;
  background: rgba(201,150,12,.18);
  margin: 0 48px;
}

/* ─── MENUS ─── */
.footer-menus {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  padding: 36px 48px 40px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,150,12,.2);
}

.footer-nav-col a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: .05em;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  padding: 5px 0;
  border-bottom: 0.5px solid rgba(255,255,255,.04);
  transition: color .2s, padding-left .15s;
}
.footer-nav-col a:last-child { border-bottom: none; }
.footer-nav-col a:hover {
  color: var(--ouro-claro);
  padding-left: 6px;
}

/* ─── RODAPÉ INFERIOR ─── */
.footer-bottom {
  background: rgba(0,0,0,.35);
  border-top: 0.5px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 48px;
}

.footer-copy,
.footer-reg {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.3);
}

/* ══════════════════════════════════════════════════════
   FOOTER — RESPONSIVO
══════════════════════════════════════════════════════ */

/* ── TABLET 1024px ── */
@media (max-width: 1024px) {
  .footer-menus {
    grid-template-columns: repeat(3, 1fr);
    padding: 32px 32px 36px;
  }
  .footer-top { padding: 32px 32px 24px; }
  .footer-divider { margin: 0 32px; }
  .footer-bottom { padding: 12px 32px; }
}

/* ── TABLET 768px ── */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px 20px;
  }
  .footer-divider { margin: 0 20px; }
  .footer-menus {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px 20px 28px;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
    gap: 4px;
  }
}

/* ── MOBILE 480px ── */
@media (max-width: 480px) {
  .footer-menus {
    grid-template-columns: 1fr 1fr;
    padding: 20px 16px 24px;
  }
  .footer-top { padding: 24px 16px 16px; }
  .footer-divider { margin: 0 16px; }
  .footer-bottom { padding: 12px 16px; }
  .footer-logo { height: 44px; }
}


/* ══════════════════════════════════════════════════════
   CORREÇÕES — 
══════════════════════════════════════════════════════ */

/* ─── LOGO: altura aumentada para 65px ─── */
/* Substitui as regras existentes de .logo-svg-wrap */
.logo-svg-wrap {
  height: 65px;
  width: auto;
}

/* ─── BARRA DE ACESSIBILIDADE — mobile ─── */
/* Dentro do @media (max-width: 768px) existente,
   substitua ou adicione as regras do .bar-acesso */

@media (max-width: 768px) {
  .bar-acesso {
    flex-wrap: wrap;
    justify-content: center;
    padding: 6px 12px;
    gap: 6px 10px;
    line-height: 1.6;
  }

  /* Separa visualmente as duas "linhas" lógicas:
     links de texto | ícones sociais | (sem A+ A−) */
  .bar-acesso .sep {
    display: inline; /* mantém os separadores entre itens */
  }

  /* Ícones sociais ficam agrupados */
  .bar-acesso a {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .bar-acesso {
    padding: 5px 10px;
    gap: 5px 8px;
    font-size: 13px;
  }

  /* Logo ainda menor em telas muito pequenas */
  .logo-svg-wrap {
    height: 48px;
  }
}


/* ══════════════════════
   RNA — RADIO DRAWER  |  
═════════════════════════*/

/* ─── OVERLAY ─── */
.rdrawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 2000;
}
.rdrawer-overlay.open { display: block; }

/* ─── BARRA FIXA INFERIOR ─── */
.rdrawer-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: var(--azul);
  border-top: 2px solid var(--ouro);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 2100;
  gap: 12px;
}

/* ─── MINI PLAYER ─── */
.rdrawer-miniplayer {
  display: none;
  align-items: center;
  gap: 12px;
  flex: 1;
  overflow: hidden;
}
.rdrawer-miniplayer.active { display: flex; }

.rmp-info {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  flex: 1;
}

.rmp-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e03030;
  flex-shrink: 0;
  animation: blink 1.2s ease-in-out infinite;
}

.rmp-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rmp-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  color: var(--ouro);
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
}

.rmp-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.rmp-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.rmp-btn:hover { background: rgba(201,150,12,.3); border-color: var(--ouro); }
.rmp-stop { color: rgba(255,255,255,.5); }
.rmp-stop:hover { color: #fff; }

/* ─── BOTÃO HAMBURGER ─── */
.rdrawer-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: transparent;
  border: 0.5px solid rgba(201,150,12,.4);
  border-radius: 4px;
  padding: 6px 12px;
  cursor: pointer;
  color: rgba(255,255,255,.6);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: all .2s;
  flex-shrink: 0;
}
.rdrawer-toggle:hover,
.rdrawer-toggle.open {
  border-color: var(--ouro);
  color: var(--ouro-claro);
}

.rdrawer-hbr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.rdrawer-hbr span {
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: all .25s ease;
  transform-origin: center;
}
.rdrawer-toggle.open .rdrawer-hbr span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.rdrawer-toggle.open .rdrawer-hbr span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.rdrawer-toggle.open .rdrawer-hbr span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.rdrawer-toggle-label { line-height: 1; }

/* ─── PAINEL QUE SOBE ─── */
.rdrawer-panel {
  position: fixed;
  bottom: 56px; left: 0; right: 0;
  z-index: 2050;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
}
.rdrawer-panel.open {
  transform: translateY(0);
  pointer-events: auto;
}

/* ─── CABEÇALHO DO PAINEL ─── */
.rdrawer-header {
  background: #060e2e;
  border-top: 1px solid rgba(201,150,12,.35);
  border-bottom: 1px solid rgba(201,150,12,.15);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.rdrawer-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ouro);
  display: flex;
  align-items: center;
  gap: 8px;
}

.rdrawer-close {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.rdrawer-close:hover { background: rgba(200,30,30,.3); color: #fff; border-color: rgba(200,30,30,.5); }

/* ─── GRID DE RÁDIOS ─── */
.rdrawer-grid {
  background: #0a1230;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  padding: 16px 20px 20px;
  flex: 1;
}

/* Scrollbar discreta */
.rdrawer-grid::-webkit-scrollbar { width: 4px; }
.rdrawer-grid::-webkit-scrollbar-track { background: transparent; }
.rdrawer-grid::-webkit-scrollbar-thumb { background: rgba(201,150,12,.3); border-radius: 2px; }

/* ─── CARD DE RÁDIO ─── */
.rcard {
  background: rgba(255,255,255,.04);
  border: 0.5px solid rgba(255,255,255,.08);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: all .2s;
}
.rcard:hover { border-color: rgba(201,150,12,.4); background: rgba(201,150,12,.06); }
.rcard.playing { border-color: var(--ouro); background: rgba(201,150,12,.12); }

.rcard-img {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  height: 55px;
  overflow: hidden;
  background: #0b1a4e;
}

.rcard-img img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  text-align: center;
  object-position: center bottom; /* 👈 isso força a revelar a parte de baixo */
  opacity: .7;
  transition: opacity .2s;
}

.rcard:hover .rcard-img img { opacity: .5; }

.rcard-play {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.0);
  font-size: 22px;
  transition: all .2s;
}
.rcard:hover .rcard-play,
.rcard.playing .rcard-play {
  color: #fff;
  background: rgba(0,0,0,.35);
}
.rcard.playing .rcard-play { color: var(--ouro-claro); }

.rcard-info {
  padding: 7px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rcard-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(255,255,255,.85);
  line-height: 1.2;
}
.rcard.playing .rcard-name { color: var(--ouro-claro); }

.rcard-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  line-height: 1.2;
}

/* ─── RESPONSIVO ─── */
@media (max-width: 768px) {
  .rdrawer-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
    padding: 12px 14px 16px;
  }
  .rcard-img { height: 50px; }
  body { padding-bottom: 56px; }
  
  .rcard-img img {
    object-position: center 100%; /* quanto maior o %, mais para baixo */
  }
}

@media (max-width: 480px) {
  .rdrawer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .rmp-tag { display: none; }
}



/* =========================================
   RNA WAVES — ASSINATURA VISUAL (LOCKED)
   NÃO ALTERAR SEM AUTORIZAÇÃO
========================================= */
/* RNA WAVES — Assinatura Taicon */

.wave {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 999;          /* era 9999 — estava a cobrir  */
}

.wave {
  overflow: hidden;
  width: 100%;
}

.wave span {
  position: absolute;
  top: 135px;
  left: 133px;
  width: 30px;
  height: 30px;

  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);

  transform: translate(-50%, -50%) scaleX(0) scaleY(0);
  opacity: 0;

  animation: rippleA 11s linear infinite;

  mix-blend-mode: overlay;

  filter: blur(0.3px); /* 🔴 AQUI */
}

.wave span:nth-child(2) { animation: rippleB 9s linear infinite 1.3s; }
.wave span:nth-child(3) { animation: rippleC 13s linear infinite 2.7s; }
.wave span:nth-child(4) { animation: rippleA 8s linear infinite 4.1s; }
.wave span:nth-child(5) { animation: rippleB 12s linear infinite 5.5s; }
.wave span:nth-child(6) { animation: rippleC 10s linear infinite 3.2s; }

@keyframes rippleA {
  0%   { transform: translate(-50%, -50%) scaleX(0) scaleY(0); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scaleX(150) scaleY(60); opacity: 0; }
}

@keyframes rippleB {
  0%   { transform: translate(-50%, -50%) scaleX(0) scaleY(0); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scaleX(130) scaleY(50); opacity: 0; }
}

@keyframes rippleC {
  0%   { transform: translate(-50%, -50%) scaleX(0) scaleY(0); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scaleX(170) scaleY(70); opacity: 0; }
}

.header-main,
.header-inner,
.header-right {
  position: relative;
  z-index: 10;
}

