/* ============================================================
   SUA RÁDIO FM - Design system (dark editorial / neon)
   Paleta: #050505 / #0D0D0D / #171717 · accent #FF3027
   Neon: #6A1BFF #273CFF #E600FF #FF5A20
   ============================================================ */
:root {
  --bg: #050505;
  --surface: #0d0d0d;
  --surface-2: #131313;
  --footer: #171717;
  --line: #232323;
  --white: #ffffff;
  --text: #f5f5f5;
  --text-2: #a5a5a5;
  --muted: #686868;
  --red: #ff3027;
  --orange: #ff5a20;
  --purple: #6a1bff;
  --blue: #273cff;
  --pink: #e600ff;
  --grad: linear-gradient(120deg, #273cff 0%, #6a1bff 38%, #e600ff 72%, #ff3027 100%);
  --grad-red: linear-gradient(120deg, #ff3027, #ff5a20);
  --glow: 0 0 40px rgba(106, 27, 255, 0.35);
  --r-card: 4px;
  --r-pill: 999px;
  --max: 1180px;
  /* logomarca horizontal: espaço exato da logo em texto (191 × 36px ≈ 5,3:1) */
  --logo-h: 36px;
  --logo-w: 192px;
  --font: "Inter", "Segoe UI", Arial, sans-serif;
  --ease: 240ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 76px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 2px; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.14; letter-spacing: -0.02em; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------------- helpers ---------------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px; border-radius: var(--r-pill);
}
.badge--ghost { background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line); color: var(--text-2); }
.badge--grad { background: var(--grad); }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: pulse 1.6s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.75); }
  50% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--red); color: #fff; border: 0;
  font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 26px; border-radius: var(--r-pill);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.btn:hover { background: var(--orange); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 48, 39, 0.35); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; border: 1px solid var(--line); color: var(--text); }
.btn--ghost:hover { background: var(--surface-2); border-color: var(--red); color: #fff; box-shadow: none; }
.btn--grad { background: var(--grad); }
.btn--grad:hover { background: var(--grad); filter: brightness(1.12); box-shadow: 0 12px 34px rgba(106, 27, 255, 0.4); }
.btn--sm { padding: 10px 18px; font-size: 11.5px; }
/* ícone vetorial do botão Baixar app (celular + seta), traço igual aos demais ícones */
.ico-app {
  width: 15px; height: 15px; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.9;
  stroke-linecap: round; stroke-linejoin: round;
}
.muted { color: var(--text-2); }

/* Section header com linha vermelha */
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--surface); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 34px; flex-wrap: wrap; }
.sec-head__title h2 {
  font-size: clamp(26px, 3.6vw, 40px); text-transform: uppercase; letter-spacing: -0.02em;
}
.sec-head__title h2::after {
  content: ""; display: block; width: 64px; height: 4px; margin-top: 12px;
  background: var(--grad-red); transform: skewX(-24deg);
}
.sec-head__title p { color: var(--text-2); margin-top: 14px; max-width: 560px; font-size: 14.5px; }
.sec-head__link {
  color: var(--text-2); font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; display: inline-flex; gap: 8px; align-items: center;
  padding-bottom: 6px; border-bottom: 1px solid var(--line); transition: var(--ease);
}
.sec-head__link:hover { color: var(--red); border-color: var(--red); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-2);
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--red); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 640ms ease, transform 640ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------------- header ---------------- */
.topbar {
  position: sticky; top: 0; z-index: 80;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.97), rgba(5, 5, 5, 0.86));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(106, 27, 255, 0.6), rgba(255, 48, 39, 0.55), transparent);
}
.topbar__inner { display: flex; align-items: center; gap: 18px; height: 72px; }
.logo { display: flex; align-items: center; gap: 11px; font-weight: 900; font-size: 21px; letter-spacing: -0.04em; text-transform: uppercase; }
/* logo em imagem (logomarca enviada pelo painel) — ocupa a mesma caixa da logo em texto */
.logo__img { height: var(--logo-h); width: auto; max-width: var(--logo-w); object-fit: contain; display: block; }
.logo__img[hidden], .logo__txt[hidden] { display: none; }
.footer .logo__img { height: var(--logo-h); }
.logo__mark {
  width: 36px; height: 36px; border-radius: 50%; background: var(--grad);
  display: grid; place-items: center; font-size: 13px; box-shadow: var(--glow);
}
.logo em { font-style: normal; color: var(--red); }
.nav { display: flex; gap: 2px; margin: 0 auto; }
.nav a {
  padding: 9px 14px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-2); border-radius: var(--r-pill); transition: var(--ease);
}
.nav a:hover { color: var(--white); background: rgba(255, 255, 255, 0.06); }
.nav a.active { color: var(--white); }
.nav a.active::after {
  content: ""; display: block; height: 2px; margin-top: 5px; background: var(--red); border-radius: 2px;
}
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  position: relative; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--text-2); transition: var(--ease); font-size: 15px;
}
.icon-btn:hover { color: #fff; border-color: var(--red); background: rgba(255, 48, 39, 0.14); }
.icon-btn .count {
  position: absolute; top: -5px; right: -5px; min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--red); border-radius: var(--r-pill); font-size: 10px; font-weight: 800;
  display: grid; place-items: center; color: #fff;
}
.burger { display: none; }

/* ---------------- HERO / PLAYER ---------------- */
.hero { position: relative; overflow: hidden; padding: 72px 0 84px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::before {
  content: ""; position: absolute; inset: -20%;
  background:
    radial-gradient(600px 420px at 15% 25%, rgba(39, 60, 255, 0.5), transparent 60%),
    radial-gradient(700px 480px at 78% 15%, rgba(230, 0, 255, 0.38), transparent 62%),
    radial-gradient(620px 520px at 60% 95%, rgba(255, 48, 39, 0.35), transparent 60%);
  filter: saturate(1.2);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 5px 5px; opacity: 0.28;
}
.hero .container { position: relative; z-index: 2; }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.hero__cover {
  position: relative; aspect-ratio: 1 / 1; border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.65), var(--glow);
}
.hero__cover img { width: 100%; height: 100%; object-fit: cover; }
.hero__cover .badge { position: absolute; top: 18px; left: 18px; z-index: 3; }
.hero__cover .eq {
  position: absolute; right: 16px; bottom: 16px; z-index: 3;
  background: rgba(5, 5, 5, 0.72); backdrop-filter: blur(8px);
  padding: 10px 14px; border-radius: var(--r-pill); display: flex; gap: 4px; align-items: flex-end; height: 40px;
}
.hero__cover .ring {
  position: absolute; inset: auto -12% -12% auto; width: 60%; aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 50%; z-index: 1;
}

.player-info .radio-name {
  font-size: 12px; font-weight: 800; letter-spacing: 0.26em; text-transform: uppercase; color: var(--text-2);
}
.player-info h1 { font-size: clamp(38px, 6vw, 66px); text-transform: uppercase; margin: 12px 0 6px; }
.player-info h1 .sr-only { font-size: inherit; }
.player-info .host { color: var(--text-2); font-size: 14.5px; }
.now-track {
  display: flex; align-items: center; gap: 16px; margin: 26px 0 22px;
  background: rgba(13, 13, 13, 0.72); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 14px; backdrop-filter: blur(10px);
}
.now-track img { width: 62px; height: 62px; border-radius: 3px; object-fit: cover; }
.now-track .meta { min-width: 0; }
.now-track .label { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; color: var(--red); text-transform: uppercase; }
.now-track b { display: block; font-size: 17px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.now-track span { color: var(--text-2); font-size: 13.5px; }

.progress { position: relative; height: 5px; background: rgba(255, 255, 255, 0.1); border-radius: var(--r-pill); overflow: hidden; }
.progress > i { position: absolute; inset: 0 auto 0 0; width: 0; background: var(--grad-red); border-radius: inherit; transition: width 300ms linear; }
.progress--live > i { width: 32% !important; animation: livebar 3.4s ease-in-out infinite; }
@keyframes livebar { 0% { transform: translateX(-110%); } 100% { transform: translateX(330%); } }
.progress-meta { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-top: 8px; letter-spacing: 0.08em; }

.player-controls { display: flex; align-items: center; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.play-big {
  width: 78px; height: 78px; border-radius: 50%; border: 0; flex: none;
  background: var(--grad-red); color: #fff; font-size: 24px;
  display: grid; place-items: center; position: relative; transition: var(--ease);
}
.play-big::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(255, 48, 39, 0.5); animation: ring 2.6s ease-out infinite;
}
@keyframes ring { 0% { transform: scale(0.95); opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }
.play-big:hover { transform: scale(1.06); box-shadow: 0 16px 44px rgba(255, 48, 39, 0.45); }
.play-big.loading { background: var(--surface-2); }
.play-big.loading::before {
  content: ""; position: absolute; inset: 16px; border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.15); border-top-color: var(--red); animation: spin 0.8s linear infinite;
}
.play-big.loading span { opacity: 0; }
@keyframes spin { to { transform: rotate(360deg); } }
.ctrl-side { display: flex; align-items: center; gap: 10px; }
.vol { display: flex; align-items: center; gap: 9px; color: var(--text-2); font-size: 14px; }
.vol input[type="range"] { width: 108px; accent-color: var(--red); background: transparent; }
.hero__listeners {
  display: flex; align-items: center; gap: 12px; margin-top: 26px;
  color: var(--text-2); font-size: 13px;
}
.avatars { display: flex; }
.avatars span {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -9px;
  background: var(--grad); font-size: 10px; display: grid; place-items: center; font-weight: 800;
}
.avatars span:first-child { margin-left: 0; }

/* equalizador */
.eq { display: flex; gap: 4px; align-items: flex-end; height: 26px; }
.eq i { width: 4px; height: 6px; background: var(--red); border-radius: 2px; display: block; }
.eq i:nth-child(2) { background: var(--orange); }
.eq i:nth-child(3) { background: var(--pink); }
.eq i:nth-child(4) { background: var(--purple); }
.eq i:nth-child(5) { background: var(--blue); }
body.playing .eq i { animation: eqbar 0.9s ease-in-out infinite; }
body.playing .eq i:nth-child(2) { animation-delay: 0.12s; }
body.playing .eq i:nth-child(3) { animation-delay: 0.24s; }
body.playing .eq i:nth-child(4) { animation-delay: 0.36s; }
body.playing .eq i:nth-child(5) { animation-delay: 0.48s; }
@keyframes eqbar { 0%, 100% { height: 5px; } 50% { height: 24px; } }

/* ---------------- NO AR AGORA ---------------- */
.onair { display: grid; grid-template-columns: 340px 1fr; gap: 40px; align-items: center; }
.onair__media { position: relative; border-radius: var(--r-card); overflow: hidden; }
.onair__media img { width: 100%; height: 340px; object-fit: cover; transition: transform 500ms ease; }
.onair__media:hover img { transform: scale(1.05); }
.onair__media .badge { position: absolute; top: 14px; left: 14px; }
.onair__body h3 { font-size: clamp(28px, 4vw, 44px); text-transform: uppercase; }
.onair__body .host { color: var(--red); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 12.5px; margin: 14px 0 12px; }
.onair__body p { color: var(--text-2); max-width: 620px; margin-bottom: 22px; }
.onair__meta { display: flex; gap: 26px; flex-wrap: wrap; margin-bottom: 26px; }
.onair__meta div { border-left: 2px solid var(--red); padding-left: 12px; }
.onair__meta small { display: block; color: var(--muted); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; }
.onair__meta b { font-size: 16px; }

/* ---------------- timeline programação ---------------- */
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); gap: 14px; }
.slot {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 18px; transition: var(--ease); position: relative; overflow: hidden;
}
.slot::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--line); transition: var(--ease);
}
.slot:hover { transform: translateY(-5px); border-color: rgba(255, 48, 39, 0.5); }
.slot:hover::before { background: var(--red); }
.slot.now { border-color: rgba(255, 48, 39, 0.65); background: linear-gradient(160deg, rgba(255, 48, 39, 0.12), var(--surface) 60%); }
.slot.now::before { background: var(--red); }
.slot__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.slot__time { font-size: 20px; font-weight: 800; letter-spacing: -0.03em; }
.slot img { width: 100%; height: 116px; object-fit: cover; border-radius: 3px; }
.slot h4 { font-size: 17px; }
.slot .host { color: var(--text-2); font-size: 13px; }
.slot__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; }
.cat {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-2); border: 1px solid var(--line); padding: 4px 9px; border-radius: var(--r-pill);
}
.slot__link { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); opacity: 0; transform: translateX(-6px); transition: var(--ease); }
.slot:hover .slot__link, .slot:focus-within .slot__link { opacity: 1; transform: none; }

/* ---------------- gêneros / pills ---------------- */
.pills { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--surface-2); border: 1px solid var(--line);
  padding: 7px 22px 7px 7px; border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  transition: var(--ease);
}
.pill img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; filter: grayscale(0.4); transition: var(--ease); }
.pill:hover { border-color: var(--red); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 28px rgba(255, 48, 39, 0.18); }
.pill:hover img { filter: none; }

/* ---------------- tocando agora (lista) ---------------- */
.tracklist { border-top: 1px solid var(--line); }
.track {
  display: grid; grid-template-columns: 56px 1fr auto auto; gap: 18px; align-items: center;
  padding: 14px 12px; border-bottom: 1px solid var(--line); transition: var(--ease);
}
.track:hover { background: rgba(255, 255, 255, 0.03); }
.track img { width: 56px; height: 56px; border-radius: 3px; object-fit: cover; }
.track .t-title { font-weight: 700; font-size: 15.5px; }
.track .t-artist { color: var(--text-2); font-size: 13px; }
.track .t-time { color: var(--muted); font-size: 12.5px; font-variant-numeric: tabular-nums; }
.track.current { background: linear-gradient(90deg, rgba(255, 48, 39, 0.14), transparent 70%); border-left: 3px solid var(--red); padding-left: 9px; }
.track.current .t-title { color: #fff; }
.track.current .t-artist { color: var(--red); font-weight: 700; }
.track__actions { display: flex; gap: 6px; align-items: center; }
.mini-btn {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line); color: var(--text-2); display: grid; place-items: center;
  font-size: 13px; transition: var(--ease);
}
.mini-btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.mini-btn.on { color: var(--red); border-color: rgba(255, 48, 39, 0.5); background: rgba(255, 48, 39, 0.12); }

/* ---------------- destaque ---------------- */
.feature { position: relative; border-radius: 6px; overflow: hidden; display: block; border: 1px solid var(--line); }
.feature img { width: 100%; height: clamp(320px, 46vw, 520px); object-fit: cover; transition: transform 700ms ease; }
.feature:hover img { transform: scale(1.04); }
.feature__body {
  position: absolute; inset: auto 0 0 0; padding: 110px 40px 36px;
  background: linear-gradient(transparent, rgba(5, 5, 5, 0.94) 62%);
}
.feature__body h3 { font-size: clamp(26px, 4vw, 46px); text-transform: uppercase; margin: 16px 0 10px; max-width: 780px; }
.feature__body p { color: var(--text-2); max-width: 640px; }
.feature__body .btn { margin-top: 22px; }
.feature-dots { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
.feature-dots button { width: 34px; height: 4px; border: 0; background: var(--line); border-radius: 4px; transition: var(--ease); }
.feature-dots button.on { background: var(--red); width: 54px; }

/* ---------------- grids de cards ---------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  overflow: hidden; display: flex; flex-direction: column; transition: var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(255, 48, 39, 0.55); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55); }
.card__media { position: relative; overflow: hidden; aspect-ratio: 16 / 9; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 620ms ease, filter var(--ease); filter: saturate(1.05); }
.card:hover .card__media img { transform: scale(1.07); }
.card__media .badge { position: absolute; top: 12px; left: 12px; }
.card__body { padding: 20px 18px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body h3 { font-size: 18px; line-height: 1.3; }
.card__body h3 a { transition: var(--ease); }
.card:hover .card__body h3 a { color: #fff; }
.card__body p { color: var(--text-2); font-size: 14px; }
.card__meta {
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 10px;
  color: var(--muted); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
}

/* podcast card horizontal */
.pod {
  display: grid; grid-template-columns: 150px 1fr auto; gap: 20px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 14px; transition: var(--ease);
}
.pod:hover { border-color: rgba(255, 48, 39, 0.5); transform: translateX(6px); }
.pod img { width: 150px; height: 110px; object-fit: cover; border-radius: 3px; }
.pod .cat { margin-bottom: 8px; display: inline-block; }
.pod h4 { font-size: 17.5px; }
.pod p { color: var(--text-2); font-size: 13.5px; margin-top: 6px; }
.pod .dur { color: var(--muted); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 8px; display: block; }
.play-round {
  width: 54px; height: 54px; border-radius: 50%; border: 0; flex: none;
  background: var(--grad-red); color: #fff; font-size: 17px;
  display: grid; place-items: center; transition: var(--ease); margin-right: 8px;
}
.play-round:hover { transform: scale(1.1); box-shadow: 0 12px 30px rgba(255, 48, 39, 0.4); }

/* artistas */
.artist { position: relative; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--line); }
.artist img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 620ms ease, filter var(--ease); filter: grayscale(0.25) contrast(1.05); }
.artist:hover img { transform: scale(1.06); filter: none; }
.artist__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px; background: linear-gradient(transparent 35%, rgba(5, 5, 5, 0.92));
  transition: var(--ease);
}
.artist__overlay h4 { font-size: 18px; text-transform: uppercase; }
.artist__overlay span { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.artist__play {
  position: absolute; top: 14px; right: 14px; opacity: 0; transform: translateY(-8px);
  transition: var(--ease);
}
.artist:hover .artist__play, .artist:focus-within .artist__play { opacity: 1; transform: none; }

/* eventos */
.event { display: grid; grid-template-columns: 200px 1fr auto; gap: 20px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; transition: var(--ease); }
.event:hover { border-color: rgba(255, 48, 39, 0.5); transform: translateY(-4px); }
.event img { width: 200px; height: 140px; object-fit: cover; }
.event__body { padding: 16px 0; }
.event__date {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 66px; padding: 8px 6px; background: var(--grad-red); border-radius: 3px;
  font-weight: 800; line-height: 1.1; text-align: center;
}
.event__date small { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.event__date b { font-size: 22px; }
.event h4 { font-size: 19px; margin: 8px 0 6px; }
.event .place { color: var(--text-2); font-size: 13.5px; }
.event__cta { padding-right: 20px; }

/* ---------------- CTA whatsapp + social ---------------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: 6px;
  background: var(--grad); padding: 56px 48px;
  display: grid; grid-template-columns: 1.3fr auto; gap: 34px; align-items: center;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 5px 5px; opacity: 0.4;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(28px, 4.4vw, 48px); text-transform: uppercase; }
.cta-band p { color: rgba(255, 255, 255, 0.88); max-width: 560px; margin-top: 14px; }
.cta-band .btn { background: #fff; color: #050505; }
.cta-band .btn:hover { background: #050505; color: #fff; box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45); }

.social-strip { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px 30px; background: var(--surface); }
.social-strip h3 { font-size: 20px; text-transform: uppercase; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 16px; color: var(--text-2); transition: var(--ease);
}
.social-links a:hover { background: var(--grad); border-color: transparent; color: #fff; transform: translateY(-4px); }

/* ---------------- footer ---------------- */
.footer { position: relative; background: var(--footer); border-top: 1px solid var(--line); padding: 72px 0 0; margin-top: 56px; }
.footer::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 48, 39, 0.75) 30%, rgba(230, 0, 255, 0.6) 70%, transparent);
}
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.25fr 1.2fr; gap: 56px; align-items: start; }
.footer h4 { font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; min-height: 34px; }
.footer h4::after { content: ""; display: block; width: 34px; height: 3px; background: var(--red); margin-top: 9px; transform: skewX(-24deg); }
.footer p { color: var(--text-2); font-size: 14px; line-height: 1.7; }
.footer__brand .logo { margin-bottom: 14px; }
.footer__brand .slogan { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
.footer__brand .social-links { margin-top: 22px; }

.footer ul { list-style: none; }
.footer .links li { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
.footer .links li:last-child { border-bottom: 0; }
.footer .links a {
  display: flex; align-items: center; gap: 8px; color: var(--text-2); font-size: 14px;
  padding: 9px 0; transition: var(--ease);
}
.footer .links a::before { content: ""; width: 0; height: 2px; background: var(--red); transition: var(--ease); }
.footer .links a:hover { color: #fff; transform: translateX(4px); }
.footer .links a:hover::before { width: 12px; }

.footer .sched li {
  display: grid; grid-template-columns: 54px 1fr; gap: 12px; align-items: baseline;
  padding: 8px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
}
.footer .sched li:last-child { border-bottom: 0; }
.footer .sched time { color: var(--red); font-weight: 800; font-size: 13px; font-variant-numeric: tabular-nums; }
.footer .sched a { color: var(--text-2); font-size: 13.5px; transition: var(--ease); }
.footer .sched a:hover { color: #fff; }
.footer .more {
  display: inline-block; margin-top: 14px; color: var(--muted); font-size: 12px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: var(--ease);
}
.footer .more:hover { color: var(--red); }

.footer .contact { display: flex; flex-direction: column; gap: 15px; }
.footer .contact li { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; }
.footer .contact .ic { color: var(--red); font-style: normal; line-height: 1.5; }
.footer .contact small { display: block; color: var(--muted); font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 2px; }
.footer .contact span, .footer .contact a { color: var(--text-2); font-size: 14px; line-height: 1.55; }
.footer .contact a:hover { color: var(--red); }

.footer__bottom {
  border-top: 1px solid var(--line); margin-top: 56px; padding: 24px 0 30px;
  display: flex; justify-content: space-between; align-items: center; gap: 14px 24px; flex-wrap: wrap;
  color: var(--muted); font-size: 13px;
}
.footer__bottom nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__bottom a { transition: var(--ease); }
.footer__bottom a:hover { color: var(--red); }

/* ---------------- sticky mini player ---------------- */
.miniplayer {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(5, 5, 5, 0.96); backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
}
.miniplayer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 48, 39, 0.8), rgba(230, 0, 255, 0.7), transparent);
}
.miniplayer__inner { display: flex; align-items: center; gap: 16px; height: 76px; }
.miniplayer .progress { position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 0; background: rgba(255, 255, 255, 0.07); }
.mp-cover { position: relative; width: 48px; height: 48px; flex: none; }
.mp-cover img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }
.mp-cover .live { position: absolute; top: -7px; left: -7px; font-size: 8.5px; padding: 3px 6px; }
.mp-play {
  position: relative;
  width: 46px; height: 46px; flex: none; border-radius: 50%; border: 0;
  background: var(--grad-red); color: #fff; font-size: 15px; display: grid; place-items: center; transition: var(--ease);
}
.mp-play:hover { transform: scale(1.08); box-shadow: 0 10px 26px rgba(255, 48, 39, 0.45); }
.mp-play.loading { background: var(--surface-2); }
.mp-play.loading::before {
  content: ""; position: absolute; width: 20px; height: 20px; border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.18); border-top-color: var(--red); animation: spin 0.8s linear infinite;
}
.mp-play.loading span { opacity: 0; }
.mp-meta { min-width: 0; flex: 1; }
.mp-meta b { display: block; font-size: 14.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mp-meta span { color: var(--text-2); font-size: 12.5px; }
.mp-right { display: flex; align-items: center; gap: 14px; }
.mp-live { font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em; color: var(--red); text-transform: uppercase; display: flex; align-items: center; gap: 7px; }
.mp-live i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: pulse-red 1.6s infinite; }
@keyframes pulse-red { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 48, 39, 0.7); } 50% { box-shadow: 0 0 0 7px rgba(255, 48, 39, 0); } }

/* ---------------- modal / busca / favoritos ---------------- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; background: rgba(0, 0, 0, 0.82); padding: 24px; }
.modal.open { display: grid; }
.modal__box {
  background: var(--surface); border: 1px solid var(--line); border-radius: 6px;
  width: 100%; max-width: 760px; max-height: 86vh; overflow: auto; position: relative;
}
.modal__box > img { width: 100%; height: 300px; object-fit: cover; }
.modal__body { padding: 28px 32px 36px; }
.modal__body h2 { font-size: clamp(24px, 3.4vw, 34px); text-transform: uppercase; margin: 14px 0; }
.modal__body .meta { color: var(--muted); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.modal__body p { color: var(--text-2); margin-bottom: 14px; }
.modal__close { position: absolute; top: 14px; right: 14px; z-index: 3; background: rgba(5, 5, 5, 0.8); }

.search-panel { max-width: 640px; }
.search-panel .modal__body { padding: 26px; }
/* item “Baixar aplicativo”: some no desktop (o botão do topo cobre) e aparece no menu do celular */
.nav-pwa { display: none; background: none; border: 0; font: inherit; color: var(--text-2); cursor: pointer; }
.search-panel input {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 15px 22px; color: var(--text); outline: none; font-size: 15.5px;
}
.search-panel input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(255, 48, 39, 0.18); }
.search-results { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.search-results a {
  display: flex; gap: 12px; align-items: center; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: var(--r-card); transition: var(--ease);
}
.search-results a:hover { border-color: var(--red); background: rgba(255, 48, 39, 0.08); }
.search-results .type { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); min-width: 84px; }

.fav-list { display: flex; flex-direction: column; gap: 10px; }

/* ---------------- páginas internas ---------------- */
.page-head { position: relative; padding: 74px 0 54px; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(560px 320px at 18% 10%, rgba(39, 60, 255, 0.42), transparent 62%),
    radial-gradient(520px 320px at 82% 30%, rgba(255, 48, 39, 0.3), transparent 62%);
  opacity: 0.75;
}
.page-head .container { position: relative; z-index: 2; }
.page-head h1 { font-size: clamp(36px, 6.4vw, 64px); text-transform: uppercase; }
.page-head h1::after { content: ""; display: block; width: 92px; height: 5px; background: var(--grad-red); transform: skewX(-24deg); margin-top: 16px; }
.page-head p { color: var(--text-2); max-width: 640px; margin-top: 18px; font-size: 16px; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filters button {
  background: transparent; border: 1px solid var(--line); color: var(--text-2); cursor: pointer;
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 16px; border-radius: var(--r-pill); transition: var(--ease);
}
.filters button:hover { color: #fff; border-color: var(--red); }
.filters button.on { background: var(--red); border-color: var(--red); color: #fff; }

.days { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.days button {
  background: var(--surface-2); border: 1px solid var(--line); color: var(--text-2); cursor: pointer;
  padding: 11px 20px; border-radius: var(--r-pill); font-size: 12px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; transition: var(--ease);
}
.days button:hover { color: #fff; border-color: var(--red); }
.days button.on { background: var(--red); border-color: var(--red); color: #fff; }

.sched-list { display: flex; flex-direction: column; gap: 12px; }
.sched-row {
  display: grid; grid-template-columns: 132px 92px 1fr auto; gap: 20px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 16px 20px; transition: var(--ease);
}
.sched-row:hover { border-color: rgba(255, 48, 39, 0.55); background: var(--surface-2); }
.sched-row.now { border-color: rgba(255, 48, 39, 0.7); background: linear-gradient(90deg, rgba(255, 48, 39, 0.12), var(--surface) 55%); }
.sched-row .time { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.sched-row .time small { display: block; color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; }
.sched-row img { width: 92px; height: 66px; object-fit: cover; border-radius: 3px; }
.sched-row h3 { font-size: 18px; }
.sched-row p { color: var(--text-2); font-size: 13.5px; }
.sched-row .side { text-align: right; font-size: 12px; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.08em; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split img { border-radius: var(--r-card); height: 420px; width: 100%; object-fit: cover; }
.split h2 { font-size: clamp(26px, 3.6vw, 40px); text-transform: uppercase; margin-bottom: 18px; }
.split h2::after { content: ""; display: block; width: 64px; height: 4px; background: var(--grad-red); transform: skewX(-24deg); margin-top: 12px; }
.split p { color: var(--text-2); margin-bottom: 14px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 52px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px 18px; text-align: center; transition: var(--ease); }
.stat:hover { border-color: rgba(255, 48, 39, 0.5); transform: translateY(-4px); }
.stat b { display: block; font-size: 34px; background: var(--grad-red); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.12em; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px 24px; transition: var(--ease); }
.value:hover { border-color: rgba(255, 48, 39, 0.45); }
.value b { display: block; font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
.value b::before { content: "// "; color: var(--red); }
.value p { color: var(--text-2); font-size: 14px; }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
.info-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 22px; margin-bottom: 14px; display: flex; gap: 16px; align-items: flex-start; transition: var(--ease);
}
.info-card:hover { border-color: rgba(255, 48, 39, 0.5); }
.info-card .ic {
  width: 44px; height: 44px; flex: none; border-radius: 3px; background: var(--grad);
  display: grid; place-items: center; color: #fff; font-size: 17px;
}
.info-card h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; }
.info-card p { color: var(--text-2); font-size: 14px; }
form.contact { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card); padding: 30px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-2); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 13px 15px; color: var(--text); outline: none; transition: var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(255, 48, 39, 0.16); }
.field textarea { min-height: 140px; resize: vertical; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-msg { margin-top: 16px; font-size: 13.5px; padding: 13px 15px; border-radius: var(--r-card); display: none; }
.form-msg.ok { display: block; background: rgba(46, 204, 113, 0.1); border: 1px solid rgba(46, 204, 113, 0.4); color: #7ee9b1; }
.form-msg.err { display: block; background: rgba(255, 48, 39, 0.1); border: 1px solid rgba(255, 48, 39, 0.4); color: #ff8b85; }

.pager { display: flex; gap: 12px; justify-content: center; margin-top: 44px; flex-wrap: wrap; }

/* ---------------- responsivo ---------------- */
@media (max-width: 1024px) {
  .section { padding: 66px 0; }
  .hero__grid { gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .onair { grid-template-columns: 280px 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 40px 30px; }
}
@media (max-width: 900px) {
  .nav {
    position: fixed; top: 72px; left: 0; right: 0; background: rgba(5, 5, 5, 0.98);
    flex-direction: column; align-items: stretch; padding: 14px 20px 22px; gap: 4px;
    border-bottom: 1px solid var(--line); display: none; z-index: 79;
    max-height: calc(100vh - 72px); overflow: auto;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 12px; border-radius: var(--r-card); }
  .nav a.active::after { display: none; }
  .nav a.active { background: var(--red); }
  .nav .nav-pwa {
    display: block; width: 100%; text-align: left; padding: 14px 12px;
    border-radius: var(--r-card); font-size: 15px; font-weight: 600; color: var(--red);
  }
  .nav .nav-pwa .ico-app { width: 16px; height: 16px; margin-right: 8px; vertical-align: -3px; }
  .burger { display: grid; }
  .header-actions .btn { display: none; }
  .grid-3, .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__cover { max-width: 460px; }
  .onair { grid-template-columns: 1fr; }
  .event { grid-template-columns: 150px 1fr; }
  .event__cta { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { padding-bottom: 74px; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 44px 0 60px; }
  .hero__cover { max-width: 100%; }
  .player-info h1 { font-size: clamp(34px, 12vw, 46px); }
  .play-big { width: 66px; height: 66px; font-size: 21px; }
  .vol { display: none; }
  .feature__body { padding: 80px 20px 24px; }
  .track { grid-template-columns: 48px 1fr auto; gap: 12px; }
  .track .t-time { display: none; }
  .sched-row { grid-template-columns: 1fr; gap: 10px; }
  .sched-row img { display: none; }
  .sched-row .side { text-align: left; }
  .pod { grid-template-columns: 1fr; }
  .pod img { width: 100%; height: 180px; }
  .pod .play-round { display: none; }
  .event { grid-template-columns: 1fr; }
  .event img { width: 100%; height: 170px; }
  .event__body { padding: 0 18px 18px; }
  .cta-band { padding: 34px 22px; }
  .footer__grid { grid-template-columns: 1fr; gap: 38px; }
  .footer h4 { min-height: 0; margin-bottom: 16px; }
  .footer__bottom { justify-content: flex-start; padding-bottom: 34px; }
  .row2 { grid-template-columns: 1fr; }
  .mp-live, .miniplayer .eq, .miniplayer .vol { display: none; }
  .modal__box > img { height: 200px; }
  .modal__body { padding: 22px 20px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
