/* ============================================================
   RÁDIO JOVEM RIO — TEMA ESCURO (estilo Radio Cidade FM)
   Preto + vermelho da identidade oficial • atualização automática
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0a0f;
  --panel: #101018;
  --card: #16161f;
  --card-2: #1b1b26;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f5f6fa;
  --muted: #9aa0b5;

  --red: #e8112d;
  --red-soft: rgba(232, 17, 45, 0.14);
  --red-bright: #ff2d55;
  --grad-red: linear-gradient(135deg, #ff2d55 0%, #e8112d 100%);
  --wa: #25d366;

  --radius: 18px;
  --radius-sm: 14px;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.45);

  --f-head: "Archivo", sans-serif;
  --font-display: "Archivo", sans-serif;
  --accent: #e8112d;
  --f-body: "Inter", sans-serif;
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }

::selection { background: var(--red); color: #fff; }

.container { width: min(1200px, 92%); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--f-head); line-height: 1.12; }

:focus-visible { outline: 3px solid rgba(255, 45, 85, 0.6); outline-offset: 2px; border-radius: 6px; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--panel); }
::-webkit-scrollbar-thumb { background: #2c2c3a; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ---------- Utilidades ---------- */
.live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--red-bright); display: inline-block; flex: none;
  box-shadow: 0 0 0 0 rgba(255, 45, 85, 0.6);
  animation: pulseDot 1.6s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 45, 85, 0.55); }
  50% { transform: scale(1.25); box-shadow: 0 0 0 7px rgba(255, 45, 85, 0); }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-head); font-weight: 900; font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 16px 32px; border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; fill: currentColor; }

.btn--red {
  background: var(--grad-red); color: #fff;
  box-shadow: 0 10px 28px rgba(232, 17, 45, 0.4);
}
.btn--red:hover { box-shadow: 0 16px 38px rgba(232, 17, 45, 0.55); }
.btn--ghost {
  border: 2px solid var(--line); color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}
.btn--ghost:hover { border-color: var(--red); color: #fff; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: #060609;
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}
.topbar__inner {
  display: flex; align-items: center; gap: 26px;
  padding: 8px 0; flex-wrap: wrap;
}
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item strong { color: var(--text); font-weight: 600; }
.topbar__weather { margin-left: auto; }
.topbar__weather small { opacity: 0.7; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; gap: 26px;
  padding: 12px 0;
}

.logo { flex: none; display: flex; align-items: center; }
.logo__img,
.brand__logo {
  height: 48px;
  width: auto;
  aspect-ratio: 567 / 440;
  object-fit: contain;
}

.nav { display: flex; align-items: center; gap: 4px; margin-inline: auto; }
.nav__link {
  position: relative;
  font-family: var(--f-head); font-weight: 700; font-size: 0.88rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted); padding: 10px 14px; border-radius: 10px;
  transition: color 0.2s ease;
}
.nav__link:hover { color: var(--text); }
.nav__link.is-active { color: #fff; }
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 3px; border-radius: 3px; background: var(--grad-red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__socials { display: none; gap: 10px; margin-top: 18px; }
.nav__socials a {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--card); border: 1px solid var(--line);
  font-size: 17px;
}

/* Player compacto do topo */
.player--mini {
  display: flex; align-items: center; gap: 9px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 18px 6px 8px;
  flex: none;
}
.player__labelwrap { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.player__song {
  font-size: 0.72rem; color: var(--muted);
  max-width: 190px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mini-art {
  width: 36px; height: 36px;
  border-radius: 9px; object-fit: cover; flex: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}
.vol-top {
  width: 84px; height: 5px;
  -webkit-appearance: none; appearance: none;
  border-radius: 999px; outline: none; cursor: pointer; flex: none;
}
.vol-top::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.vol-top::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: none;
}
.player__label {
  font-family: var(--f-head); font-weight: 900; font-size: 0.68rem;
  letter-spacing: 0.16em; color: #fff;
}

.play-btn {
  position: relative;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-red); color: #fff;
  display: grid; place-items: center; flex: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 22px rgba(232, 17, 45, 0.45);
}
.play-btn:hover { transform: scale(1.08); }
.play-btn svg { width: 20px; height: 20px; fill: currentColor; grid-area: 1 / 1; }
.play-btn .icon-play { margin-left: 2px; }
.play-btn .icon-pause { display: none; }
body.is-playing .play-btn:not(.is-loading) .icon-play { display: none; }
body.is-playing .play-btn:not(.is-loading) .icon-pause { display: block; }
.play-btn.is-loading { pointer-events: none; }
.spinner {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.35); border-top-color: #fff;
  display: none; grid-area: 1 / 1;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.play-btn.is-loading .spinner { display: block; }

/* Play do topo: maior e com pulso chamativo quando pausado */
.play-btn--mini { width: 46px; height: 46px; }
body:not(.is-playing) .play-btn--mini { animation: topPulse 1.8s ease-out infinite; }
@keyframes topPulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 17, 45, 0.55), 0 8px 22px rgba(232, 17, 45, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(232, 17, 45, 0), 0 8px 22px rgba(232, 17, 45, 0.45); }
  100% { box-shadow: 0 0 0 0 rgba(232, 17, 45, 0), 0 8px 22px rgba(232, 17, 45, 0.45); }
}

/* Música no ar no herói */
.now-playing {
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: 10px;
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffd7de;
  font-weight: 600;
}
.now-art {
  width: 28px; height: 28px;
  border-radius: 7px; object-fit: cover;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}
@media (max-width: 640px) {
  .now-playing { display: none; }
}

/* Gráfico de ondas sonoras */
.wave-canvas {
  display: block;
  width: min(480px, 100%);
  height: 72px;
  margin-top: 12px;
  opacity: 0.95;
}
.play-btn.is-loading .icon-play,
.play-btn.is-loading .icon-pause { visibility: hidden; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
  width: 24px; height: 2.6px; border-radius: 3px;
  background: #fff; transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* ============================================================
   HERO AO VIVO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(232, 17, 45, 0.22), transparent 60%),
    radial-gradient(700px 380px at -10% 110%, rgba(232, 17, 45, 0.1), transparent 60%),
    var(--bg);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  align-items: center; gap: 40px;
  padding: clamp(56px, 8vh, 100px) 0;
}

.hero__tag {
  display: inline-flex; align-items: center; gap: 9px; flex-wrap: wrap;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  color: #ffd3db;
  background: var(--red-soft);
  border: 1px solid rgba(232, 17, 45, 0.4);
  padding: 8px 16px; border-radius: 999px; margin-bottom: 24px;
}
.hero__tag strong { color: #fff; }
.hero__tag em { font-style: normal; opacity: 0.75; }

.hero__content h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.01em; line-height: 0.98;
  margin-bottom: 20px;
}
.hero__content h1 span {
  background: var(--grad-red);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__content > p {
  color: var(--muted); font-size: clamp(1rem, 1.6vw, 1.12rem);
  max-width: 54ch; margin-bottom: 30px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.hero__status { color: var(--muted); font-size: 0.84rem; min-height: 1.4em; margin-bottom: 18px; }

/* Data • Hora • Clima em destaque */
.hero__info { display: flex; gap: 12px; flex-wrap: wrap; }
.info-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 18px;
  font-size: 0.84rem; color: var(--text);
}
.info-chip strong { font-family: var(--f-head); font-weight: 800; letter-spacing: 0.04em; }
.info-chip small { color: var(--muted); }
.info-chip--clock {
  border-color: rgba(232, 17, 45, 0.45);
  background: linear-gradient(180deg, rgba(232, 17, 45, 0.14), transparent), var(--card);
}

.hero__video {
  display: flex; align-items: center; justify-content: center;
}
.hero__video iframe {
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  max-width: 100%;
}

.disc--xl { width: min(300px, 60vw); height: auto; }
.disc--sm { width: 42px; height: auto; }
.ts-slide--app img {
  width: 76%;
  aspect-ratio: auto;
  margin-inline: auto;
}

.eq { display: flex; align-items: flex-end; gap: 4px; }
.eq span {
  width: 5px; height: 30%;
  background: var(--grad-red); border-radius: 3px;
}
body.is-playing .eq span { animation: eqBounce 0.9s ease-in-out infinite alternate; }
.eq span:nth-child(1) { animation-delay: 0s; }   .eq span:nth-child(2) { animation-delay: 0.12s; }
.eq span:nth-child(3) { animation-delay: 0.24s; } .eq span:nth-child(4) { animation-delay: 0.06s; }
.eq span:nth-child(5) { animation-delay: 0.3s; }  .eq span:nth-child(6) { animation-delay: 0.18s; }
.eq span:nth-child(7) { animation-delay: 0.09s; } .eq span:nth-child(8) { animation-delay: 0.27s; }
.eq span:nth-child(9) { animation-delay: 0.15s; } .eq span:nth-child(10) { animation-delay: 0.03s; }
.eq span:nth-child(11) { animation-delay: 0.21s; }.eq span:nth-child(12) { animation-delay: 0.33s; }
@keyframes eqBounce {
  from { height: 22%; }
  to { height: 95%; }
}
.eq--hero { height: 54px; }
.eq--hero span { width: 7px; }
.eq--hero span:nth-child(even) { background: linear-gradient(180deg, #ff2d55, #7a0619); }

/* ============================================================
   TICKER DE NOTÍCIAS
   ============================================================ */
.ticker {
  display: flex; align-items: stretch;
  background: #060609;
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.ticker__tag {
  flex: none;
  background: var(--grad-red); color: #fff;
  font-family: var(--f-head); font-weight: 900; font-size: 0.66rem;
  letter-spacing: 0.14em;
  display: flex; align-items: center; padding: 0 18px;
}
.ticker__track { overflow: hidden; flex: 1; display: flex; align-items: center; }
.ticker__content {
  display: inline-flex; gap: 56px; white-space: nowrap;
  padding-left: 30px; font-size: 0.86rem; color: var(--text);
  animation: tickerMove 55s linear infinite;
}
.ticker:hover .ticker__content { animation-play-state: paused; }
.ticker__content span::before { content: "• "; color: var(--red-bright); }
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   ANÚNCIOS
   ============================================================ */
.ad-slot {
  position: relative;
  background: var(--panel);
  border: 2px dashed #26262f; border-radius: var(--radius);
  padding: 40px 20px; text-align: center;
  margin: 44px 0;
}
.ad-slot--feed { padding: 26px 20px; }
.ad-slot__tag {
  position: absolute; top: -10px; left: 18px;
  background: var(--red); color: #fff;
  font-size: 0.58rem; font-weight: 800; letter-spacing: 0.2em;
  padding: 4px 12px; border-radius: 999px;
}
.ad-placeholder { color: #55596b; font-size: 0.88rem; }

/* ============================================================
   SEÇÕES + TÍTULOS ESTILO CIDADE (numerados)
   ============================================================ */
.section { padding: 70px 0; scroll-margin-top: 92px; }
.section--panel {
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(232, 17, 45, 0.05), transparent 70%),
    var(--panel);
  border-block: 1px solid var(--line);
}

.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; margin-bottom: 36px; flex-wrap: wrap;
}
.sec-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 900; text-transform: uppercase;
  display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
}
.sec-title b {
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
  font-size: 1.15em; line-height: 1;
}
.sec-title span {
  font-size: 0.42em; font-weight: 700; letter-spacing: 0.12em;
  color: var(--muted); text-transform: uppercase;
}
.section__note {
  color: var(--muted); font-size: 0.82rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.head-right { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.sub-title {
  font-family: var(--f-head); font-weight: 900; font-size: 1rem;
  letter-spacing: 0.14em; margin: 46px 0 22px;
  color: var(--text);
}

.scroll-btns { display: flex; gap: 8px; }
.scroll-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--card);
  color: var(--text); font-size: 1.3rem; line-height: 1;
  display: grid; place-items: center;
  transition: all 0.25s ease;
}
.scroll-btn:hover { background: var(--grad-red); border-color: transparent; transform: scale(1.08); }

/* ============================================================
   01 • NOTÍCIAS — CARROSSEL HORIZONTAL
   ============================================================ */
.news-scroll {
  display: flex; gap: 20px;
  overflow-x: auto; padding: 4px 2px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.news-scroll::-webkit-scrollbar { display: none; }
.news-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: min(340px, 82vw); scroll-snap-align: start;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 17, 45, 0.55);
  box-shadow: var(--shadow);
}
.news-card--featured { min-width: min(430px, 86vw); }

.news-card__cover {
  position: relative; aspect-ratio: 16 / 9;
  display: grid; place-items: center; flex: none;
}
.cover-1 { background: linear-gradient(135deg, #e8112d, #7a0619); }
.cover-2 { background: linear-gradient(135deg, #38bdf8, #1d4ed8); }
.cover-3 { background: linear-gradient(135deg, #f59e0b, #dc2626); }
.cover-4 { background: linear-gradient(135deg, #10b981, #0f766e); }
.cover-5 { background: linear-gradient(135deg, #8b31ff, #4f46e5); }
.cover-6 { background: linear-gradient(135deg, #ec4899, #be185d); }
.cover-7 { background: linear-gradient(135deg, #06b6d4, #6d28d9); }
.cover-8 { background: linear-gradient(135deg, #84cc16, #15803d); }
.news-card__emoji { font-size: 54px; filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45)); }
.news-card__cover img { width: 100%; height: 100%; object-fit: cover; }

.news-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-card__meta {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 0.74rem; color: var(--muted);
}
.chip {
  background: var(--red-soft); color: #ff8296;
  font-weight: 700; font-size: 0.64rem; letter-spacing: 0.08em;
  padding: 4px 11px; border-radius: 999px; width: max-content;
}
.chip--hot { background: var(--grad-red); color: #fff; }
.news-card h3 { line-height: 1.35; }
.news-card h3 a { font-weight: 800; font-size: 1.02rem; transition: color 0.2s ease; }
.news-card--featured h3 a { font-size: 1.2rem; }
.news-card h3 a:hover { color: var(--red-bright); }
.news-card__body > p { color: var(--muted); font-size: 0.88rem; }
.news-card__fonte { font-size: 0.72rem; color: #55596b; margin-top: auto; }

/* ============================================================
   02 • TOP 10 + ARTISTAS
   ============================================================ */
.top-list {
  counter-reset: top;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}
.top-item {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 18px;
  display: flex; align-items: center; gap: 15px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.top-item:hover { transform: translateX(6px); border-color: rgba(232, 17, 45, 0.5); }
.top-item__pos {
  font-family: var(--f-head); font-weight: 900; font-size: 1.55rem;
  min-width: 44px; text-align: center;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--red-bright);
}
.top-item:nth-child(-n+3) .top-item__pos {
  font-size: 1.85rem;
  color: var(--red-bright);
  -webkit-text-stroke: 0;
}
.top-item__cover {
  width: 56px; height: 56px; border-radius: 12px;
  display: grid; place-items: center; font-size: 24px; flex: none;
  overflow: hidden; background: var(--card-2);
}
.cov-a { background: linear-gradient(135deg, #e8112d, #ff7a45); }
.cov-b { background: linear-gradient(135deg, #8b31ff, #d946ef); }
.cov-c { background: linear-gradient(135deg, #0ea5e9, #22d3ee); }
.cov-d { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.cov-e { background: linear-gradient(135deg, #64748b, #334155); }
.cov-f { background: linear-gradient(135deg, #10b981, #34d399); }
.cov-g { background: linear-gradient(135deg, #f97316, #eab308); }
.cov-h { background: linear-gradient(135deg, #ec4899, #8b31ff); }
.cov-i { background: linear-gradient(135deg, #ef4444, #f97316); }
.cov-j { background: linear-gradient(135deg, #6366f1, #0ea5e9); }
.top-item__cover img { width: 100%; height: 100%; object-fit: cover; }
.top-item__info { flex: 1; min-width: 0; line-height: 1.32; }
.top-item__info strong {
  display: block; font-family: var(--f-head);
  font-size: 0.98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.top-item__info small {
  color: var(--muted); font-size: 0.8rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block;
}
.btn-pedido {
  flex: none;
  border: 1.6px solid var(--red); color: #ff5d75;
  font-family: var(--f-head); font-weight: 700; font-size: 0.76rem;
  letter-spacing: 0.04em;
  padding: 8px 15px; border-radius: 999px;
  transition: all 0.25s ease;
}
.btn-pedido:hover {
  background: var(--grad-red); color: #fff; border-color: transparent;
  transform: scale(1.06);
}

.artists-row {
  display: flex; gap: 26px;
  overflow-x: auto; padding: 4px 2px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.artist {
  display: flex; flex-direction: column; align-items: center; gap: 11px;
  min-width: 96px; scroll-snap-align: start;
  transition: transform 0.25s ease;
}
.artist:hover { transform: translateY(-6px) scale(1.05); }
.artist__pic {
  width: 90px; height: 90px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-family: var(--f-head); font-weight: 900; font-size: 1.45rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.artist__pic img { width: 100%; height: 100%; object-fit: cover; }
.ap-1 { background: linear-gradient(135deg, #e8112d, #ff7a45); }
.ap-2 { background: linear-gradient(135deg, #8b31ff, #d946ef); }
.ap-3 { background: linear-gradient(135deg, #0ea5e9, #22d3ee); }
.ap-4 { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.ap-5 { background: linear-gradient(135deg, #64748b, #334155); }
.ap-6 { background: linear-gradient(135deg, #10b981, #34d399); }
.ap-7 { background: linear-gradient(135deg, #f97316, #eab308); }
.ap-8 { background: linear-gradient(135deg, #ec4899, #8b31ff); }
.ap-9 { background: linear-gradient(135deg, #ef4444, #f97316); }
.ap-10 { background: linear-gradient(135deg, #6366f1, #0ea5e9); }
.artist strong { font-size: 0.85rem; font-weight: 600; text-align: center; }

/* ============================================================
   03 • PROGRAMAÇÃO
   ============================================================ */
.prog-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.prog-card {
  position: relative;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 22px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.prog-card:hover { transform: translateY(-6px); border-color: rgba(232, 17, 45, 0.45); box-shadow: var(--shadow); }
.prog-card__time {
  display: inline-block;
  background: var(--red-soft); color: #ff8296;
  font-family: var(--f-head); font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.06em;
  padding: 5px 13px; border-radius: 999px;
}
.prog-card h3 { font-size: 1.08rem; font-weight: 800; margin: 12px 0 6px; }
.prog-card p { color: var(--muted); font-size: 0.86rem; }

.prog-card.on-air {
  border: 1.6px solid var(--red);
  background: linear-gradient(180deg, rgba(232, 17, 45, 0.12) 0%, rgba(232, 17, 45, 0.03) 100%), var(--card);
  box-shadow: 0 16px 40px rgba(232, 17, 45, 0.28);
}
.prog-card.on-air::before {
  content: "🔴 NO AR AGORA";
  position: absolute; top: -13px; left: 18px;
  background: var(--grad-red); color: #fff;
  font-family: var(--f-head); font-weight: 900; font-size: 0.62rem;
  letter-spacing: 0.12em;
  padding: 5px 13px; border-radius: 999px;
}

/* ============================================================
   04 • REDES SOCIAIS
   ============================================================ */
.social-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.social-card {
  background: var(--card); border: 1px solid var(--line);
  border-top: 4px solid transparent;
  border-radius: var(--radius);
  padding: 30px 16px 26px;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  text-align: center;
  transition: transform 0.28s ease, border-color 0.28s ease;
}
.social-card:hover { transform: translateY(-7px); }
.sc-ig:hover { border-top-color: #e1306c; }
.sc-fb:hover { border-top-color: #1877f2; }
.sc-x:hover { border-top-color: #ffffff; }
.sc-tt:hover { border-top-color: #fe2c55; }
.sc-yt:hover { border-top-color: #ff0000; }
.sc-ico { font-size: 34px; margin-bottom: 6px; }
.social-card strong { font-family: var(--f-head); font-size: 0.96rem; }
.social-card small { color: var(--muted); font-size: 0.78rem; }

/* ============================================================
   05 • APP / NEWSLETTER
   ============================================================ */
.app-panel {
  background:
    radial-gradient(600px 300px at 90% 10%, rgba(232, 17, 45, 0.25), transparent 65%),
    radial-gradient(500px 260px at 5% 100%, rgba(139, 49, 255, 0.14), transparent 65%),
    var(--panel);
  border: 1px solid rgba(232, 17, 45, 0.3);
  border-radius: 26px;
  padding: clamp(30px, 5vw, 54px);
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 40px; align-items: center;
}
.app-panel__text .sec-title span { color: #ff8296; }
.app-panel__text > p { color: var(--muted); margin: 14px 0 20px; max-width: 52ch; }
.app-panel__steps { display: flex; flex-direction: column; gap: 10px; color: var(--text); font-size: 0.9rem; }
.app-panel__steps li::before { content: "▸ "; color: var(--red-bright); font-weight: 900; }

.app-panel__form { display: flex; flex-direction: column; gap: 12px; }
.app-panel__form label { font-family: var(--f-head); font-weight: 700; font-size: 0.92rem; }
.app-panel__form input {
  width: 100%;
  background: #0b0b11; border: 1px solid var(--line);
  border-radius: 999px; padding: 15px 22px;
  font-size: 0.98rem; color: var(--text);
  transition: border-color 0.2s ease;
}
.app-panel__form input:focus { outline: none; border-color: var(--red); }
.app-panel__form input::placeholder { color: #55596b; }
.app-panel__form .btn { width: max-content; }
.app-panel__form small { color: var(--muted); font-size: 0.72rem; }
.form-ok { color: var(--wa); font-weight: 700; }

/* ============================================================
   06 • CONTATO
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 7px;
  transition: transform 0.28s ease, border-color 0.28s ease;
}
.contact-card:hover { transform: translateY(-6px); border-color: rgba(232, 17, 45, 0.5); }
.cc-ico { font-size: 34px; margin-bottom: 4px; }
.contact-card strong {
  font-family: var(--f-head); font-weight: 800; font-size: 1rem;
  word-break: break-word;
}
.contact-card small { color: var(--muted); font-size: 0.8rem; }
.cc-wa:hover { border-color: rgba(37, 211, 102, 0.6) !important; }
.cc-wa:hover strong { color: var(--wa); }

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer { background: #060609; border-top: 1px solid var(--line); }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px; padding: 60px 0 40px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.logo__img--footer,
.footer__logo {
  height: 54px;
  width: auto;
  aspect-ratio: 567 / 440;
  object-fit: contain;
  opacity: 0.96;
}
.footer__brand p { color: var(--muted); font-size: 0.88rem; max-width: 42ch; }
.footer__socials { display: flex; gap: 10px; margin-top: 4px; }
.footer__socials a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--card); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 16px;
  transition: all 0.25s ease;
}
.footer__socials a:hover { background: var(--grad-red); border-color: transparent; transform: translateY(-3px); }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h4 {
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: #55596b; margin-bottom: 8px;
}
.footer__col a { color: var(--muted); font-size: 0.9rem; width: max-content; transition: color 0.2s ease, transform 0.2s ease; }
.footer__col a:hover { color: #fff; transform: translateX(4px); }
.footer__hint { color: #3f4254; font-size: 0.72rem; margin-top: 8px; }
.footer__bottom { border-top: 1px solid var(--line); }
.footer__bottom p {
  text-align: center; padding: 20px 0;
  font-family: var(--f-head); font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.14em; color: #55596b;
}

/* ============================================================
   BARRA DE PLAYER FLUTUANTE
   ============================================================ */
.playerbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  background: rgba(8, 8, 12, 0.92);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-top: 1px solid rgba(232, 17, 45, 0.28);
  box-shadow: 0 -14px 44px rgba(0, 0, 0, 0.55);
  transform: translateY(115%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
}
.playerbar.is-visible { transform: translateY(0); }
.playerbar__inner {
  display: flex; align-items: center; gap: 20px;
  padding: 10px 0;
}
.pb-left { display: flex; align-items: center; gap: 13px; flex: 1; min-width: 0; }

.disc--sm { width: 50px; height: auto; box-shadow: none; }

.pb-meta { min-width: 0; line-height: 1.32; }
.pb-title {
  font-family: var(--f-head); font-weight: 900; font-size: 0.76rem;
  letter-spacing: 0.08em;
  display: inline-flex; align-items: center; gap: 8px;
}
.pb-title em {
  font-style: normal; color: var(--red-bright); font-size: 0.62rem;
  letter-spacing: 0.16em;
}
.pb-status { color: var(--muted); font-size: 0.76rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pb-status strong { color: #fff; }
.pb-prog { color: #ff8296; font-size: 0.72rem; font-weight: 600; min-height: 1em; }

.play-btn--main { width: 56px; height: 56px; }
.play-btn--main svg { width: 24px; height: 24px; }

.eq--pb { display: flex; align-items: flex-end; gap: 3px; height: 26px; }
.eq--pb span { width: 4px; }

.volume { display: flex; align-items: center; gap: 11px; flex: none; }
.volume button { display: grid; place-items: center; color: var(--text); }
.volume button svg { width: 21px; height: 21px; fill: currentColor; stroke: currentColor; stroke-width: 1.6; }
.volume .icon-mute { display: none; }
.volume button.is-muted .icon-vol { display: none; }
.volume button.is-muted .icon-mute { display: block; }
#volRange { accent-color: var(--red-bright); width: 110px; cursor: pointer; }
#volValue { font-size: 0.72rem; color: var(--muted); min-width: 38px; }

/* ============================================================
   FLUTUANTES + COOKIES
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 108px; z-index: 85;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.1) rotate(6deg); }
.wa-float svg { width: 31px; height: 31px; fill: #fff; }
.wa-float::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%; border: 2px solid var(--wa);
  animation: waRing 2s ease-out infinite;
}
@keyframes waRing {
  from { transform: scale(1); opacity: 0.7; }
  to { transform: scale(1.55); opacity: 0; }
}

.totop {
  position: fixed; right: 27px; bottom: 182px; z-index: 84;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--card); color: var(--text);
  border: 1px solid var(--line);
  font-size: 1.25rem;
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all 0.3s ease;
}
.totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { background: var(--grad-red); border-color: transparent; color: #fff; }

.cookie-bar {
  position: fixed; left: 50%; bottom: 96px; z-index: 90;
  transform: translateX(-50%);
  width: min(620px, calc(100% - 32px));
  background: var(--card-2); border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 -6px 40px rgba(0, 0, 0, 0.5);
  padding: 16px 20px;
  display: none; align-items: center; gap: 16px;
  font-size: 0.82rem; color: var(--muted);
}
.cookie-bar.is-open { display: flex; }
.cookie-bar p { flex: 1; }
.cookie-bar button {
  flex: none;
  background: var(--grad-red); color: #fff;
  font-family: var(--f-head); font-weight: 800; font-size: 0.8rem;
  padding: 10px 24px; border-radius: 999px;
  transition: transform 0.2s ease;
}
.cookie-bar button:hover { transform: scale(1.06); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 84vw);
    background: #0c0c12;
    border-left: 1px solid var(--line);
    flex-direction: column; align-items: flex-start;
    padding: 90px 30px 30px;
    gap: 4px;
    transform: translateX(105%);
    transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
    z-index: 70;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link { font-size: 1.02rem; padding: 13px 10px; width: 100%; }
  .nav__socials { display: flex; flex-wrap: wrap; }
  .hamburger { display: flex; z-index: 75; position: relative; }

  .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .app-panel { grid-template-columns: 1fr; gap: 26px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .player--mini { margin-left: auto; padding-right: 12px; }
  .player__label { display: none; }
  .hamburger { margin-left: 0; }
  .logo__img { height: 36px; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 34px; }
  .hero__tag { font-size: 0.68rem; padding: 7px 12px; justify-content: center; max-width: 100%; }
  .hero__content h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__content > p { font-size: 0.95rem; }
  .hero__actions { justify-content: center; }
  .hero__video { order: -1; }
  .hero__video iframe { width: min(420px, 100%); height: auto; aspect-ratio: 420/325; }
  .hero__info { justify-content: center; }
  .auto-update { font-size: 0.78rem; justify-content: center; text-align: center; }

  .topbar__inner { justify-content: center; gap: 16px; }
  .topbar__weather { margin-left: 0; }

  .top-list { grid-template-columns: 1fr; }
  .prog-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; padding-top: 48px; }

  /* Player bar compacta */
  .eq--pb, .volume { display: none; }
  .pb-title { font-size: 0.68rem; }
  .play-btn--main { width: 50px; height: 50px; }
  .disc--sm { width: 44px; height: auto; }

  body { padding-bottom: 74px; } /* espaço para a barra de player */

  .wa-float { right: 16px; bottom: 92px; width: 52px; height: 52px; }
  .totop { display: none; }
  .cookie-bar { bottom: 80px; flex-direction: column; text-align: center; }
}

@media (max-width: 400px) {
  .hero__tag { font-size: 0.6rem; padding: 6px 10px; }
  .hero__content h1 { font-size: 1.8rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__info { flex-direction: column; align-items: center; }
  .info-chip { font-size: 0.75rem; padding: 8px 14px; }
}

/* ============================================================
   FUNDO ANIMADO (aurora + grade de pontos)
   ============================================================ */
html { background: #07070c; }
body { background: transparent; }
body::before {
  content: "";
  position: fixed; inset: -25%;
  z-index: -2; pointer-events: none;
  background:
    radial-gradient(38% 32% at 18% 22%, rgba(232, 17, 45, 0.16), transparent 68%),
    radial-gradient(32% 28% at 82% 12%, rgba(139, 49, 255, 0.13), transparent 70%),
    radial-gradient(42% 36% at 72% 88%, rgba(232, 17, 45, 0.10), transparent 70%),
    radial-gradient(30% 26% at 8% 78%, rgba(59, 130, 246, 0.08), transparent 70%);
  animation: bgDrift 32s ease-in-out infinite alternate;
}
@keyframes bgDrift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-2.5%, 2%) scale(1.07) rotate(1.5deg); }
  100% { transform: translate(2%, -2%) scale(1.03) rotate(-1deg); }
}
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: -1; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1.4px);
  background-size: 26px 26px;
}

/* Painéis levemente translúcidos para o fundo aparecer */
.section--panel,
.footer,
.ticker,
.playerbar {
  background-color: rgba(13, 13, 20, 0.82);
}
.footer { background-color: rgba(7, 7, 11, 0.9); }
.section--panel {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ============================================================
   SLIDER DE BANNERS DO TOPO
   ============================================================ */
.topslider {
  position: relative; overflow: hidden;
  background: #0d0d14;
  border-bottom: 1px solid var(--line);
}
.ts-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
}
.ts-slide { min-width: 100%; }
.ts-slide a { display: block; }
.ts-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1270 / 500;
  object-fit: contain;
  background: #0d0d14;
  display: block;
}
.topslider .car-arrow { width: 44px; height: 44px; background: rgba(10, 10, 15, 0.65); color: #fff; border: 1px solid var(--line); backdrop-filter: blur(6px); }
.topslider.is-single .car-arrow, .topslider.is-single .ts-dots { display: none; }
.topslider .ts-prev { left: 18px; }
.topslider .ts-next { right: 18px; }
.ts-dots {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 9px; z-index: 2;
}
.ts-dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.35); border: none; padding: 0;
  transition: width 0.3s ease, background 0.3s ease;
}
.ts-dot.is-active { width: 30px; background: var(--red-bright); }

/* Efeito FLASH no slider: zoom suave + brilho passando + aura */
.ts-slide img {
  animation: tsKenBurns 9s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes tsKenBurns {
  from { transform: scale(1) translateX(0); }
  to { transform: scale(1.08) translateX(-1.5%); }
}
.topslider::after {
  content: "";
  position: absolute; top: 0; left: -80%;
  width: 45%; height: 100%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  animation: tsSweep 4.6s ease-in-out infinite;
  pointer-events: none; z-index: 2;
}
@keyframes tsSweep { 0% { left: -80%; } 55%, 100% { left: 135%; } }
.topslider::before { display: none; }
@keyframes tsGlowLine {
  0% { background-position: 0% 0; }
  100% { background-position: 220% 0; }
}

/* ============================================================
   BANNERS "ANUNCIE AQUI"
   ============================================================ */
.anuncie {
  display: flex; align-items: center; gap: 20px;
  text-align: left;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  transition: transform 0.25s ease;
}
.anuncie:hover { transform: scale(1.015); }
.anuncie__ico { font-size: 42px; line-height: 1; flex: none; filter: drop-shadow(0 6px 14px rgba(232, 17, 45, 0.4)); }
.anuncie__txt { flex: 1; min-width: 0; line-height: 1.35; }
.anuncie__txt strong {
  display: block; font-family: var(--f-head); font-weight: 900;
  letter-spacing: 0.08em; color: #fff; font-size: 1.06rem;
}
.anuncie__txt small { color: var(--muted); font-size: 0.84rem; }
.anuncie__cta {
  flex: none;
  background: var(--grad-red); color: #fff;
  font-family: var(--f-head); font-weight: 900; font-size: 0.76rem;
  letter-spacing: 0.1em;
  padding: 13px 22px; border-radius: 999px;
  box-shadow: 0 8px 22px rgba(232, 17, 45, 0.4);
  transition: transform 0.25s ease;
}
.anuncie:hover .anuncie__cta { transform: scale(1.07); }

/* ============================================================
   ÍCONES OFICIAIS DAS REDES (SVG)
   ============================================================ */
.sc-svg { width: 36px; height: 36px; fill: #fff; margin-bottom: 8px; transition: fill 0.25s ease; }
.sc-ig:hover .sc-svg { fill: #e1306c; }
.sc-fb:hover .sc-svg { fill: #1877f2; }
.sc-x:hover .sc-svg { fill: #ffffff; }
.sc-tt:hover .sc-svg { fill: #fe2c55; }
.sc-yt:hover .sc-svg { fill: #ff0000; }

.nav__socials svg { width: 20px; height: 20px; fill: currentColor; }
.nav__socials a:hover { background: var(--grad-red); color: #fff; }
.footer__socials svg { width: 19px; height: 19px; fill: #fff; }

/* ============================================================
   PLAY DO YOUTUBE
   ============================================================ */
.yt-panel {
  margin-top: 34px;
  display: flex; align-items: center; gap: 24px;
  background:
    linear-gradient(120deg, rgba(255, 0, 0, 0.14), rgba(255, 0, 0, 0.03)),
    var(--card);
  border: 1px solid rgba(255, 0, 0, 0.35);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.yt-panel:hover { transform: translateY(-5px); border-color: #ff0000; box-shadow: 0 18px 44px rgba(255, 0, 0, 0.22); }
.yt-panel__icon { width: 52px; height: 52px; fill: #ff0000; flex: none; filter: drop-shadow(0 8px 18px rgba(255, 0, 0, 0.4)); }
.yt-panel__txt { flex: 1; min-width: 0; line-height: 1.4; }
.yt-panel__txt small {
  display: block; font-family: var(--f-head); font-weight: 800;
  font-size: 0.66rem; letter-spacing: 0.18em; color: #ff6b6b;
}
.yt-panel__txt strong { display: block; font-family: var(--f-head); font-weight: 900; font-size: 1.2rem; color: #fff; }
.yt-panel__txt span { color: var(--muted); font-size: 0.86rem; }
.yt-panel__play {
  flex: none;
  width: 64px; height: 64px; border-radius: 50%;
  background: #ff0000;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(255, 0, 0, 0.45);
  animation: ytPulse 2.2s ease-in-out infinite;
}
.yt-panel__play svg { width: 30px; height: 30px; fill: #fff; margin-left: 3px; }
@keyframes ytPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.09); }
}

/* ---------- Responsivo dos novos blocos ---------- */
@media (max-width: 760px) {
  .ts-slide img { width: 100%; height: auto; }
  .topslider .car-arrow { display: none; }
  .anuncie { flex-wrap: wrap; gap: 12px; padding: 10px 6px; }
  .anuncie__ico { font-size: 32px; }
  .anuncie__txt { flex: 1 1 200px; }
  .anuncie__cta { flex: 1 1 100%; text-align: center; }
  .yt-panel { flex-wrap: wrap; gap: 16px; padding: 20px; }
  .yt-panel__play { width: 54px; height: 54px; }
}

/* ---------- Páginas institucionais (Quem somos / Privacidade) ---------- */
.page { min-height: 60vh; padding-bottom: 40px; }
.page-hero { padding-top: 56px; padding-bottom: 8px; }
.page-hero__lead {
  max-width: 780px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.page-hero__lead strong { color: #fff; }

.legal { max-width: 820px; display: flex; flex-direction: column; gap: 10px; }
.legal h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 34px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal h2::before {
  content: "";
  width: 26px; height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), transparent);
  flex: none;
}
.legal p, .legal li {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.98rem;
}
.legal strong { color: #fff; }
.legal a { color: var(--red-bright); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: #fff; }
.legal ul { display: flex; flex-direction: column; gap: 8px; padding-left: 22px; margin: 6px 0; }
.legal li::marker { color: var(--red-bright); }
.legal__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 42px; }

@media (max-width: 640px) {
  .page-hero { padding-top: 36px; }
}

/* ---------- APP EM DESTAQUE (flash) ---------- */
.app-flash {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 85% 20%, rgba(232, 17, 45, 0.16), transparent 65%),
    radial-gradient(500px 280px at 10% 90%, rgba(120, 60, 255, 0.14), transparent 65%),
    #0b0b12;
  border-bottom: 1px solid var(--line);
}
.af-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  padding-top: 46px;
  padding-bottom: 46px;
}
.af-txt { order: 2; }
.af-shot {
  order: 1;
  position: relative;
  margin: 0;
  border-radius: 22px;
  padding: 4px;
  background: conic-gradient(from var(--af-a, 0deg), var(--accent), #ff2d55, #7a3cff, var(--accent));
  animation: afSpin 6s linear infinite;
  box-shadow: 0 18px 60px rgba(232, 17, 45, 0.28);
}
@property --af-a { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes afSpin { to { --af-a: 360deg; } }
.af-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  animation: afFloat 5s ease-in-out infinite;
}
@keyframes afFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.af-shine {
  position: absolute; inset: 4px;
  border-radius: 18px;
  overflow: hidden;
  pointer-events: none;
}
.af-shine::before {
  content: "";
  position: absolute; top: -60%; left: -80%;
  width: 55%; height: 220%;
  transform: rotate(22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  animation: afSweep 3.2s ease-in-out infinite;
}
@keyframes afSweep { 0% { left: -80%; } 55%, 100% { left: 130%; } }
.af-badge {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff;
  background: linear-gradient(90deg, var(--accent), #ff2d55);
  box-shadow: 0 0 22px rgba(255, 45, 85, 0.55);
  animation: afGlow 2.4s ease-in-out infinite;
}
@keyframes afGlow { 0%,100% { box-shadow: 0 0 14px rgba(255, 45, 85, 0.35); } 50% { box-shadow: 0 0 30px rgba(255, 45, 85, 0.75); } }
.af-txt h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  line-height: 1.04;
  margin: 16px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.af-txt p { color: var(--muted); max-width: 46ch; line-height: 1.7; margin-bottom: 22px; }
.af-cta { box-shadow: 0 10px 34px rgba(232, 17, 45, 0.45); }
.app-panel__dl { margin-top: 18px; }

/* Status de notícias oculto a pedido da rádio */
#newsUpdated { display: none !important; }

.wa-ico { width: 20px; height: 20px; vertical-align: -5px; margin-right: 7px; border-radius: 5px; }
.wa-ico--lg { width: 44px; height: 44px; vertical-align: baseline; margin: 0; border-radius: 10px; filter: drop-shadow(0 4px 10px rgba(37, 211, 102, 0.35)); }

/* Selo de atualização automática */
.auto-update {
  display: flex; align-items: center; gap: 9px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}
.auto-update__dot {
  width: 8px; height: 8px; flex: none;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: auPulse 2s ease-out infinite;
}
@keyframes auPulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 860px) {
  .af-inner { grid-template-columns: 1fr; text-align: center; }
  .af-shot { order: 1; max-width: 560px; margin-inline: auto; }
  .af-txt { order: 2; }
  .af-txt p { margin-inline: auto; }
}

/* ---------- Acessibilidade ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

