/* ============================================================
   TROPICAL FM BIRIGUI · 90,7 MHz
   Paleta baseada na logomarca:
   - Vermelho (esfera): #E8352B
   - Azul/índigo (wordmark): #2D1BB5
   - Azul-marinho (o "T"): #16155A
   ============================================================ */

:root{
  --red:      #E8352B;
  --red-dark: #C71E15;
  --blue:     #2D1BB5;
  --blue-2:   #3A26D6;
  --navy:     #16155A;
  --navy-2:   #100F3E;
  --ink:      #14132e;
  --muted:    #5c5b78;
  --bg:       #ffffff;
  --bg-alt:   #f4f4fb;
  --line:     rgba(22,21,90,.10);
  --white:    #ffffff;

  --grad-brand: linear-gradient(120deg, var(--blue) 0%, var(--blue-2) 45%, var(--red) 110%);
  --grad-hero:  linear-gradient(160deg, #1a1780 0%, var(--navy) 55%, var(--navy-2) 100%);
  --shadow-sm: 0 4px 16px rgba(22,21,90,.08);
  --shadow-md: 0 16px 40px rgba(22,21,90,.14);
  --shadow-lg: 0 30px 70px rgba(16,15,62,.28);
  --radius:   20px;
  --radius-sm: 12px;
  --container: 1160px;
  --header-h: 76px;

  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: 'Poppins', var(--font-body);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 84px; /* espaço p/ player fixo */
}
a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }
.container{ width:100%; max-width: var(--container); margin:0 auto; padding:0 24px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.site-header.scrolled{
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
  border-color: var(--line);
}
.header-inner{ height:100%; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand-logo{ height: 40px; width:auto; }
.brand-freq{
  font-family: var(--font-head); font-weight:800; font-size:1.05rem;
  color: var(--blue); line-height:1; letter-spacing:.2px;
  padding-left:12px; border-left:2px solid var(--line);
}
.brand-freq small{ display:block; font-size:.6rem; color:var(--muted); font-weight:600; letter-spacing:1px; }

.nav{ display:flex; align-items:center; gap:6px; }
.nav a{
  font-weight:600; font-size:.94rem; color: var(--navy);
  padding:10px 14px; border-radius: 10px; transition: color .2s, background .2s;
}
.nav a:hover{ color: var(--blue); background: var(--bg-alt); }
.nav-cta{
  background: var(--grad-brand); color:#fff !important; margin-left:6px;
  box-shadow: 0 8px 20px rgba(45,27,181,.28);
}
.nav-cta:hover{ background: var(--grad-brand); filter:brightness(1.05); }

.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:8px;
}
.nav-toggle span{ width:26px; height:3px; background:var(--navy); border-radius:3px; transition:.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position:relative; overflow:hidden;
  background: var(--grad-hero); color:#fff;
  padding: calc(var(--header-h) + 70px) 0 90px;
}
.hero-bg{ position:absolute; inset:0; overflow:hidden; z-index:0; }
.orb{ position:absolute; border-radius:50%; filter: blur(40px); opacity:.55; }
.orb-1{ width:460px; height:460px; background: radial-gradient(circle at 30% 30%, #ff6a5e, var(--red)); top:-140px; right:-100px; opacity:.5; }
.orb-2{ width:360px; height:360px; background: radial-gradient(circle at 30% 30%, #5a48ff, var(--blue)); bottom:-120px; left:-80px; opacity:.6; }
.orb-3{ width:300px; height:300px; background: radial-gradient(circle at 30% 30%, #6d5cff, #241f8f); top:40%; left:45%; opacity:.35; }

.hero-inner{
  position:relative; z-index:1;
  display:grid; grid-template-columns: 1.15fr .85fr; gap:50px; align-items:center;
}
.badge{
  display:inline-flex; align-items:center; gap:9px;
  background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2);
  padding:8px 16px; border-radius:999px; font-size:.82rem; font-weight:600;
  letter-spacing:.3px; margin-bottom:22px; backdrop-filter: blur(6px);
}
.live-dot{ width:9px; height:9px; border-radius:50%; background: #35e08a; box-shadow:0 0 0 0 rgba(53,224,138,.7); animation: pulse 1.8s infinite; }
@keyframes pulse{ 0%{ box-shadow:0 0 0 0 rgba(53,224,138,.6);} 70%{ box-shadow:0 0 0 12px rgba(53,224,138,0);} 100%{ box-shadow:0 0 0 0 rgba(53,224,138,0);} }

.hero h1{
  font-family: var(--font-head); font-weight:800; line-height:1.05;
  font-size: clamp(2.4rem, 5.2vw, 4rem); letter-spacing:-1px; margin-bottom:20px;
}
.grad{
  background: linear-gradient(100deg, #ff8b7f, var(--red) 60%, #ffb0a6);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-sub{ font-size: clamp(1.02rem, 2vw, 1.2rem); color: rgba(255,255,255,.85); max-width:540px; margin-bottom:32px; }

.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:26px; }
.btn{
  display:inline-flex; align-items:center; gap:11px; cursor:pointer;
  font-family: var(--font-head); font-weight:700; font-size:1rem;
  padding:15px 28px; border-radius:999px; border:0; transition: transform .18s, box-shadow .18s, background .2s;
}
.btn:active{ transform: translateY(1px) scale(.99); }
.btn-play{
  background: linear-gradient(120deg, var(--red), #ff5a4d); color:#fff;
  box-shadow: 0 14px 30px rgba(232,53,43,.4);
}
.btn-play:hover{ transform: translateY(-2px); box-shadow: 0 18px 38px rgba(232,53,43,.5); }
.play-ico{
  display:grid; place-items:center; width:26px; height:26px; border-radius:50%;
  background: rgba(255,255,255,.22); font-size:.7rem;
}
.btn-ghost{
  background: rgba(255,255,255,.1); color:#fff; border:1px solid rgba(255,255,255,.28);
}
.btn-ghost:hover{ background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn-ghost-dark{ color: var(--navy); border-color: var(--line); background: var(--bg-alt); }
.btn-ghost-dark:hover{ background:#e9e9f6; }

.hero-platforms{ font-size:.92rem; color: rgba(255,255,255,.75); max-width:460px; }
.hero-platforms strong{ color:#fff; }

/* Disco visual */
.hero-visual{ display:grid; place-items:center; }
.disc{ position:relative; width: min(360px, 78vw); aspect-ratio:1; display:grid; place-items:center; }
.disc-ring{
  position:absolute; inset:0; border-radius:50%;
  border:2px solid rgba(255,255,255,.15);
  animation: spin 18s linear infinite;
}
.disc-ring.ring-2{ inset:26px; border-color: rgba(232,53,43,.35); border-top-color: var(--red); animation-duration: 9s; }
@keyframes spin{ to{ transform: rotate(360deg);} }
.disc-glass{
  position:absolute; width:76%; aspect-ratio:1; border-radius:50%; z-index:1;
  background: linear-gradient(150deg, rgba(255,255,255,.62), rgba(255,255,255,.34));
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:
    var(--shadow-lg),
    inset 0 2px 1px rgba(255,255,255,.8),
    inset 0 -24px 44px rgba(22,21,90,.14);
  animation: float 6s ease-in-out infinite;
}
.disc-logo{
  position:relative; z-index:2; width:54%;
  animation: float 6s ease-in-out infinite;
}
@keyframes float{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }
.wave{ position:absolute; bottom:6%; display:flex; align-items:flex-end; gap:5px; height:42px; z-index:3; }
.wave span{ width:5px; background: linear-gradient(var(--red), #ff8175); border-radius:4px; animation: wave 1.1s ease-in-out infinite; }
.wave span:nth-child(odd){ background: linear-gradient(#7d6cff, #fff); }
.wave span:nth-child(1){ height:40%; animation-delay:0s;}
.wave span:nth-child(2){ height:75%; animation-delay:.12s;}
.wave span:nth-child(3){ height:55%; animation-delay:.24s;}
.wave span:nth-child(4){ height:90%; animation-delay:.36s;}
.wave span:nth-child(5){ height:35%; animation-delay:.48s;}
.wave span:nth-child(6){ height:70%; animation-delay:.6s;}
.wave span:nth-child(7){ height:50%; animation-delay:.72s;}
.wave span:nth-child(8){ height:85%; animation-delay:.84s;}
.wave span:nth-child(9){ height:45%; animation-delay:.96s;}
.wave span:nth-child(10){ height:65%; animation-delay:1.08s;}
@keyframes wave{ 0%,100%{ transform: scaleY(.5);} 50%{ transform: scaleY(1);} }

/* ============================================================
   SECTIONS (genérico)
   ============================================================ */
.section{ padding: 92px 0; }
.section-alt{ background: var(--bg-alt); }
.section-head{ max-width:720px; margin:0 auto 54px; text-align:center; }
.eyebrow{
  display:inline-block; font-family:var(--font-head); font-weight:700; font-size:.8rem;
  letter-spacing:2px; text-transform:uppercase; color: var(--red); margin-bottom:14px;
}
.eyebrow-light{ color: var(--red); }
.section h2{
  font-family: var(--font-head); font-weight:800; letter-spacing:-.5px;
  font-size: clamp(1.8rem, 3.8vw, 2.7rem); line-height:1.1; color: var(--navy);
}
.section-desc{ margin-top:16px; color: var(--muted); font-size:1.08rem; }

/* Sobre */
.about-lead{ font-size: clamp(1.1rem, 2.2vw, 1.35rem); color: var(--ink); max-width:860px; margin:0 auto 48px; text-align:center; }
.about-lead strong{ color: var(--blue); }
.feature-cards{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.card{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding:32px 28px;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-ico{
  width:56px; height:56px; display:grid; place-items:center; font-size:1.6rem; border-radius:16px;
  background: var(--grad-brand); margin-bottom:18px; box-shadow:0 8px 18px rgba(45,27,181,.25);
}
.card h3{ font-family:var(--font-head); font-size:1.2rem; color:var(--navy); margin-bottom:8px; }
.card p{ color: var(--muted); font-size:.98rem; }

/* Onde ouvir */
.listen-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:22px; }
.listen-way{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  padding:30px 24px; text-align:center; transition: transform .2s, box-shadow .2s, border-color .2s;
}
.listen-way:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.listen-ico{ font-size:2.2rem; margin-bottom:14px; }
.listen-way h3{ font-family:var(--font-head); color:var(--navy); font-size:1.15rem; margin-bottom:8px; }
.listen-way p{ color: var(--muted); font-size:.95rem; }
.listen-way strong{ color: var(--red); }

/* Programação */
.schedule-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
.schedule-card{
  position:relative; overflow:hidden;
  background: linear-gradient(180deg, #fff, #fbfbff);
  border:1px solid var(--line); border-radius: var(--radius); padding:30px 28px;
  box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.schedule-card::before{ content:""; position:absolute; top:0; left:0; right:0; height:5px; background: var(--grad-brand); }
.schedule-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.schedule-tag{
  display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:1px; text-transform:uppercase;
  color: var(--blue); background: rgba(45,27,181,.08); padding:5px 12px; border-radius:999px; margin-bottom:14px;
}
.schedule-card h3{ font-family:var(--font-head); font-size:1.4rem; color:var(--navy); margin-bottom:16px; }
.schedule-card ul{ list-style:none; display:flex; flex-direction:column; gap:12px; }
.schedule-card li{ display:flex; justify-content:space-between; align-items:center; gap:12px; padding-bottom:12px; border-bottom:1px dashed var(--line); font-weight:600; color:var(--ink); }
.schedule-card li:last-child{ border-bottom:0; padding-bottom:0; }
.schedule-card li span{ color: var(--red); font-weight:700; font-size:.9rem; }
.schedule-note{ text-align:center; margin-top:34px; color:var(--muted); font-size:1.02rem; }
.schedule-note strong{ color: var(--blue); }

/* Blitz */
.section-blitz{ background: var(--grad-hero); color:#fff; padding: 96px 0; position:relative; overflow:hidden; }
.section-blitz::before{ content:""; position:absolute; width:420px; height:420px; border-radius:50%; background: radial-gradient(circle at 30% 30%, #ff6a5e, transparent 70%); top:-120px; right:-80px; opacity:.4; }
.blitz-inner{ position:relative; display:grid; grid-template-columns: 1.1fr .9fr; gap:56px; align-items:center; }
.blitz-copy h2{ color:#fff; margin:12px 0 20px; font-family:var(--font-head); font-weight:800; font-size:clamp(1.8rem,3.6vw,2.6rem); letter-spacing:-.5px; }
.blitz-copy p{ color: rgba(255,255,255,.85); margin-bottom:16px; font-size:1.05rem; }
.blitz-copy strong{ color:#fff; }
.blitz-tags{ display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.blitz-tags span{ background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.22); padding:9px 16px; border-radius:999px; font-size:.85rem; font-weight:600; }
.blitz-visual{ display:grid; place-items:center; }
.blitz-card{
  background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px);
  border-radius: 26px; padding:40px; text-align:center; width:100%; max-width:340px; box-shadow: var(--shadow-lg);
}
.blitz-live{ display:inline-flex; align-items:center; gap:8px; font-size:.8rem; font-weight:600; background: rgba(232,53,43,.25); border:1px solid rgba(255,120,110,.4); padding:6px 14px; border-radius:999px; margin-bottom:22px; }
.blitz-emoji{ font-size:4.4rem; margin-bottom:14px; animation: float 5s ease-in-out infinite; }
.blitz-card strong{ display:block; font-family:var(--font-head); font-size:1.4rem; }
.blitz-card p{ color: rgba(255,255,255,.75); font-size:.95rem; margin-top:4px; }

/* Cobertura */
.cities{ list-style:none; display:grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap:14px; }
.cities li{
  background:#fff; border:1px solid var(--line); border-radius: 14px; padding:16px 20px;
  font-weight:600; color:var(--navy); display:flex; align-items:center; gap:10px;
  transition: transform .18s, box-shadow .18s, color .18s; box-shadow: var(--shadow-sm);
}
.cities li::before{ content:"📍"; font-size:1rem; }
.cities li:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); color: var(--blue); }

/* Anuncie */
.anuncie-box{
  background: var(--bg-alt); border:1px solid var(--line); border-radius: 30px;
  padding: clamp(32px, 5vw, 60px); display:grid; grid-template-columns: 1.2fr .8fr; gap:48px; align-items:center;
  position:relative; overflow:hidden;
}
.anuncie-box::before{ content:""; position:absolute; width:300px; height:300px; border-radius:50%; background: var(--grad-brand); opacity:.08; top:-100px; right:-60px; }
.anuncie-copy{ position:relative; }
.anuncie-copy h2{ margin:12px 0 16px; }
.anuncie-copy p{ color:var(--muted); font-size:1.06rem; margin-bottom:28px; max-width:520px; }
.anuncie-actions{ display:flex; flex-wrap:wrap; gap:14px; }
.anuncie-formats{ position:relative; display:flex; flex-direction:column; gap:14px; }
.format{ background:#fff; border:1px solid var(--line); border-radius:16px; padding:18px 22px; box-shadow: var(--shadow-sm); }
.format strong{ display:block; font-family:var(--font-head); color:var(--navy); font-size:1.1rem; }
.format span{ color:var(--muted); font-size:.92rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background: var(--navy-2); color: rgba(255,255,255,.8); padding: 70px 0 30px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap:40px; }
.footer-logo{ height:46px; background:#fff; padding:10px 14px; border-radius:12px; width:max-content; margin-bottom:18px; }
.footer-brand p{ font-size:.95rem; max-width:280px; }
.footer-system{ margin-top:12px; font-size:.82rem; color: rgba(255,255,255,.55); letter-spacing:.3px; }
.footer-col h4{ font-family:var(--font-head); color:#fff; font-size:1.02rem; margin-bottom:16px; }
.footer-col ul{ list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col a, .footer-col li{ font-size:.94rem; transition: color .2s; }
.footer-col a:hover{ color:#ff8175; }
.footer-legal{ margin-top:50px; padding-top:24px; border-top:1px solid rgba(255,255,255,.12); display:flex; flex-wrap:wrap; justify-content:space-between; gap:12px; font-size:.82rem; color: rgba(255,255,255,.5); }

/* ============================================================
   PLAYER FIXO
   ============================================================ */
.player{
  position: fixed; left:0; right:0; bottom:0; z-index: 90;
  background: rgba(16,15,62,.95); backdrop-filter: blur(14px);
  border-top:1px solid rgba(255,255,255,.12); color:#fff;
  box-shadow: 0 -10px 40px rgba(0,0,0,.3);
}
.player-inner{ display:flex; align-items:center; gap:18px; padding:12px 24px; }
.player-btn{
  flex-shrink:0; width:52px; height:52px; border-radius:50%; border:0; cursor:pointer;
  background: linear-gradient(120deg, var(--red), #ff5a4d); color:#fff; font-size:1.1rem;
  display:grid; place-items:center; box-shadow: 0 8px 20px rgba(232,53,43,.45);
  transition: transform .18s;
}
.player-btn:hover{ transform: scale(1.06); }
.player-info{ display:flex; flex-direction:column; line-height:1.3; min-width:0; }
.player-title{ font-family:var(--font-head); font-weight:700; font-size:.98rem; }
.player-status{ font-size:.8rem; color: rgba(255,255,255,.7); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.player-eq{ display:flex; align-items:flex-end; gap:3px; height:26px; margin-left:auto; opacity:.35; transition:opacity .3s; }
.player-eq span{ width:4px; height:8px; background: linear-gradient(#7d6cff,#ff5a4d); border-radius:3px; }
.player.playing .player-eq{ opacity:1; }
.player.playing .player-eq span{ animation: eq .9s ease-in-out infinite; }
.player-eq span:nth-child(1){ animation-delay:0s; }
.player-eq span:nth-child(2){ animation-delay:.15s; }
.player-eq span:nth-child(3){ animation-delay:.3s; }
.player-eq span:nth-child(4){ animation-delay:.45s; }
@keyframes eq{ 0%,100%{ height:8px;} 50%{ height:24px;} }
.player-vol{ display:flex; align-items:center; gap:8px; }
.vol-ico{ font-size:1rem; }
#volume{ width:96px; accent-color: var(--red); cursor:pointer; }

/* ============================================================
   BOTÕES DE APP (App Store / Google Play)
   ============================================================ */
.app-badges{ display:flex; flex-wrap:wrap; gap:12px; }
.app-badge{
  display:inline-flex; align-items:center; gap:11px;
  background:#fff; color: var(--navy); border:1px solid var(--line);
  padding:10px 18px 10px 16px; border-radius:14px; box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s;
}
.app-badge:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); }
.app-badge svg{ width:26px; height:26px; flex-shrink:0; }
.app-badge .ab-txt{ display:flex; flex-direction:column; line-height:1.15; text-align:left; }
.app-badge .ab-small{ font-size:.68rem; color: var(--muted); font-weight:600; letter-spacing:.3px; }
.app-badge .ab-big{ font-family:var(--font-head); font-weight:700; font-size:1.02rem; }
/* variação sobre fundo escuro (hero/footer) */
.app-badges.on-dark .app-badge{ background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); color:#fff; box-shadow:none; }
.app-badges.on-dark .app-badge .ab-small{ color: rgba(255,255,255,.7); }
.app-badges.on-dark .app-badge:hover{ background: rgba(255,255,255,.18); }
.hero-apps{ margin-top:22px; }
.hero-apps .apps-label{ font-size:.82rem; color: rgba(255,255,255,.65); margin-bottom:10px; letter-spacing:.3px; }

/* ============================================================
   "NO AR AGORA" (now playing)
   ============================================================ */
.now-playing{
  display:flex; align-items:center; gap:20px; flex-wrap:wrap;
  background: var(--grad-hero); color:#fff; border-radius: 22px;
  padding: 24px 30px; margin: 0 auto 44px; max-width: 820px;
  box-shadow: var(--shadow-md); position:relative; overflow:hidden;
}
.now-playing::before{ content:""; position:absolute; width:220px; height:220px; border-radius:50%; background: radial-gradient(circle at 30% 30%, #ff6a5e, transparent 70%); top:-90px; right:-40px; opacity:.4; }
.np-eq{ position:relative; display:flex; align-items:flex-end; gap:4px; height:40px; flex-shrink:0; }
.np-eq span{ width:6px; height:14px; background: linear-gradient(#7d6cff,#ff5a4d); border-radius:4px; animation: eq .9s ease-in-out infinite; }
.np-eq span:nth-child(2){ animation-delay:.15s; }
.np-eq span:nth-child(3){ animation-delay:.3s; }
.np-eq span:nth-child(4){ animation-delay:.45s; }
.np-eq span:nth-child(5){ animation-delay:.6s; }
.np-info{ position:relative; flex:1; min-width:200px; }
.np-label{ display:inline-flex; align-items:center; gap:8px; font-size:.76rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:#ff9d94; margin-bottom:6px; }
.np-name{ font-family:var(--font-head); font-weight:800; font-size:clamp(1.3rem,3vw,1.7rem); line-height:1.1; }
.np-time{ font-size:.92rem; color: rgba(255,255,255,.75); margin-top:4px; }
.np-play{
  flex-shrink:0; display:inline-flex; align-items:center; gap:10px; cursor:pointer; border:0;
  font-family:var(--font-head); font-weight:700; font-size:.98rem; color:#fff;
  background: linear-gradient(120deg, var(--red), #ff5a4d); padding:13px 24px; border-radius:999px;
  box-shadow: 0 12px 26px rgba(232,53,43,.4); transition: transform .18s;
}
.np-play:hover{ transform: translateY(-2px); }
.np-actions{ display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
.np-yt{
  display:inline-flex; align-items:center; gap:8px; cursor:pointer;
  font-family:var(--font-head); font-weight:700; font-size:.94rem; color:#fff;
  background:#ff0033; padding:12px 20px; border-radius:999px;
  box-shadow:0 10px 24px rgba(255,0,51,.35); transition: transform .18s, filter .18s;
}
.np-yt[hidden]{ display:none; }
.np-yt:hover{ transform: translateY(-2px); filter:brightness(1.05); }
.np-yt svg{ width:20px; height:20px; }

/* marcador de vídeo (jornais) na grade */
.schedule-card li .li-yt{
  font-style:normal; font-weight:700; font-size:.7rem; color:#fff; background:#ff0033;
  padding:2px 8px; border-radius:999px; margin-left:6px; white-space:nowrap;
}

/* item de programa "ao vivo" na grade */
.schedule-card li.live{
  color: var(--red); font-weight:800;
}
.schedule-card li.live span{ color:#fff; background: var(--red); padding:3px 9px; border-radius:999px; font-size:.72rem; }
.schedule-card.active{ box-shadow: 0 0 0 2px var(--red), var(--shadow-md); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 960px){
  .hero-inner{ grid-template-columns: 1fr; gap:40px; text-align:center; }
  .hero-copy{ order:2; }
  .hero-visual{ order:1; }
  .hero-actions, .hero-platforms{ justify-content:center; margin-left:auto; margin-right:auto; }
  .badge{ margin-inline:auto; }
  .blitz-inner, .anuncie-box{ grid-template-columns: 1fr; gap:36px; }
  .feature-cards, .listen-grid, .schedule-grid{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px){
  .nav{
    position: fixed; top: var(--header-h); left:0; right:0;
    flex-direction:column; align-items:stretch; gap:4px; padding:16px 24px 24px;
    background: rgba(255,255,255,.98); backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md); transform: translateY(-140%); transition: transform .35s ease;
    max-height: calc(100vh - var(--header-h)); overflow:auto;
  }
  .nav.open{ transform: translateY(0); }
  .nav a{ padding:14px 16px; border-radius:10px; }
  .nav-cta{ text-align:center; margin:6px 0 0; }
  .nav-toggle{ display:flex; }
}
@media (max-width: 560px){
  .section{ padding:64px 0; }
  .feature-cards, .listen-grid, .schedule-grid, .footer-grid{ grid-template-columns: 1fr; }
  .player-vol{ display:none; }
  .player-eq{ margin-left:auto; }
  .hero-actions{ flex-direction:column; }
  .hero-actions .btn{ width:100%; justify-content:center; }
  .brand-freq{ display:none; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
}
