/* ============================================
   OFFICERADIO 2026 - CSS COMPLETO CONSOLIDADO
   ============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --neon-orange: #ff6b35;
  --neon-gold: #ffd700;
  --neon-cyan: #00d9ff;
  --neon-red: #ff0000;
  --neon-green: #22c55e;
  --bg-dark: #0b2a4a;
  --bg-darker: #1a1a2e;
  --text-primary: #f0f0f0;
  --text-secondary: #a0a8b8;
  --font-primary: 'Montserrat', 'Segoe UI', sans-serif;
  --font-retro: 'Special Elite', 'Courier New', monospace;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-primary);
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  padding-bottom: 80px;
  transition: background 0.3s ease, color 0.3s ease;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--neon-orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--neon-gold); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ============================================
   HEADER / TOPBAR
   ============================================ */
.topbar {
  background: linear-gradient(180deg, #1a1a2e 0%, #0f3460 50%, #16213e 100%);
  border-bottom: 3px solid #e94560;
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(233, 69, 96, 0.3);
  position: sticky;
  top: 0;
  z-index: 200;
}

.topbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand { display: flex; align-items: center; gap: 15px; }
.brand__logo { width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--neon-gold); box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); }
.brand__text { display: flex; flex-direction: column; }
.brand__name { font-size: 2rem; letter-spacing: 4px; font-family: var(--font-retro); color: var(--neon-gold); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
.brand__tag { font-size: 0.75rem; color: var(--neon-cyan); letter-spacing: 2px; text-transform: uppercase; }

.nav { display: flex; gap: 25px; justify-content: center; }
.nav a { color: #e0e0e0; font-weight: 600; font-size: 0.95rem; padding: 5px 10px; transition: color 0.3s; }
.nav a:hover { color: var(--neon-gold); }

.nav-toggle { display: none; background: transparent; border: 2px solid var(--neon-orange); color: var(--neon-orange); padding: 8px 16px; border-radius: 8px; font-size: 1rem; }

.topbar__tools { display: flex; align-items: center; gap: 15px; justify-content: flex-end; }

/* Toggle Tema Dia/Noite */
.theme-toggle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--neon-gold);
  color: var(--neon-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: var(--neon-gold);
  color: var(--bg-dark);
  transform: rotate(180deg);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.onair { background: linear-gradient(135deg, var(--neon-red) 0%, #cc0000 100%); color: white; padding: 12px 25px; border-radius: 25px; font-weight: bold; display: flex; align-items: center; gap: 10px; box-shadow: 0 0 20px rgba(255, 0, 0, 0.6); font-size: 0.9rem; letter-spacing: 1px; }
.onair__lamp { width: 12px; height: 12px; background: white; border-radius: 50%; animation: blink 1s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ============================================
   HERO
   ============================================ */
.hero { padding: 30px 0 15px; }
.hero__copy { max-width: 1200px; margin: 0 auto; }
.hero__kicker { color: var(--neon-cyan); font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; text-transform: uppercase; }
.hero__title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 15px; color: var(--text-primary); text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); font-weight: 700; }
.hero__subtitle { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 30px; }

/* ============================================
   PLAYER UNIFIED CARD
   ============================================ */
.player-unified-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  padding: 25px;
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.2), 0 10px 40px rgba(0, 0, 0, 0.6);
  align-items: stretch;
  margin: 20px auto;
  max-width: 1200px;
}

.player-left-col,
.player-right-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* ============================================
   K7 CASSETTE - CONSOLIDADO
   ============================================ */
.k7-cassette-pro {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  position: relative;
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.2), 0 10px 40px rgba(0, 0, 0, 0.6);
  min-height: 540px;
  max-height: 540px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 25px 20px 25px;
  flex: 1;
}

.k7-screw {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, #64748b 20%, #334155 60%, #0f172a 100%);
  border: 1px solid #1e293b;
  border-radius: 50%;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.8);
  z-index: 20;
}

.k7-screw::after {
  content: '';
  width: 7px;
  height: 1.5px;
  background-color: #1e293b;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.screw-tl { top: 10px; left: 10px; }
.screw-tr { top: 10px; right: 10px; }
.screw-bl { bottom: 10px; left: 10px; }
.screw-br { bottom: 10px; right: 10px; }

.k7-tape-path-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.tape-physical-line {
  fill: none;
  stroke: #2e1a0c;
  stroke-width: 4px;
  stroke-linecap: round;
}

.tape-physical-glow {
  fill: none;
  stroke: #5a351a;
  stroke-width: 1.5px;
  stroke-dasharray: 10, 25;
  display: none;
}

.playing .tape-physical-glow {
  display: block;
  animation: runTapeLine 1.2s linear infinite;
}

@keyframes runTapeLine {
  to { stroke-dashoffset: -35; }
}

/* Janela VU */
.k7-window {
  position: relative;
  width: 240px;
  height: 80px;
  background: transparent;
  border: 2px solid #334155;
  border-radius: 6px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  z-index: 5;
  margin-top: 10px;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.k7-analog-vu-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 2px;
  z-index: 2;
}

.vu-meter-analog {
  flex: 1;
  height: 100%;
  background: radial-gradient(circle at 50% 115%, #fffaaa 0%, #f7d047 50%, #b87a04 90%, #5c3005 100%);
  border: 1px solid #451a03;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.4);
}

.vu-scale-container {
  position: absolute;
  top: 6px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.vu-ticks {
  display: flex;
  justify-content: space-between;
  width: 86%;
  height: 6px;
}

.tick { width: 1px; height: 100%; background-color: #1a1613; }
.tick.tick-red { background-color: #b91c1c; width: 1.5px; }

.vu-numbers {
  display: flex;
  justify-content: space-between;
  width: 88%;
  font-family: 'Courier New', monospace;
  font-size: 7px;
  font-weight: 900;
  color: #1a1613;
  margin-top: 1px;
}

.vu-numbers .num-red { color: #b91c1c; }

.vu-channel-id {
  position: absolute;
  bottom: 3px;
  left: 5px;
  font-family: sans-serif;
  font-size: 7px;
  font-weight: 900;
  color: #3b1a04;
}

.vu-needle {
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 1px;
  height: 55px;
  background-color: #111111;
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(-45deg);
  transition: transform 0.05s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0.5px 0.5px 2px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

.vu-center-pivot {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: #1a1613;
  border: 1px solid #3b1a04;
  border-radius: 50%;
  z-index: 6;
}

/* Bobinas */
.k7-reels-pro {
  position: relative;
  width: 100%;
  height: 140px;
  margin-top: 0;
  margin-bottom: 10px;
  z-index: 6;
  flex-shrink: 0;
}

.reel-container-left {
  position: absolute;
  left: 80px;
  top: 10px;
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reel-container-right {
  position: absolute;
  right: 80px;
  top: 10px;
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tape-roll {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #2e1a0c 40%, #1a0f07 70%, #0f0904 100%);
  box-shadow: inset 0 0 10px rgba(0,0,0,0.8), 0 0 5px rgba(0,0,0,0.5);
  transition: width 0.1s linear, height 0.1s linear;
}

.playing .tape-roll {
  animation: reelAnimation 0.1s linear infinite;
}

@keyframes reelAnimation {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.reel-pro {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #cbd5e1 0%, #94a3b8 30%, #64748b 60%, #475569 100%);
  border: 3px solid #1e293b;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), inset 0 2px 6px rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.reel-internal-spinner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.playing .reel-internal-spinner {
  animation: spinReel 4s linear infinite;
}

.reel-pro__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: radial-gradient(circle at 35% 35%, #475569 0%, #1e293b 100%);
  border-radius: 50%;
  border: 2px solid #0f172a;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.reel-pro__spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 36px;
  background: linear-gradient(180deg, #64748b 0%, #334155 100%);
  border-radius: 2px;
  transform-origin: center center;
}

.reel-pro__spoke--a { transform: translate(-50%, -50%) rotate(0deg); }
.reel-pro__spoke--b { transform: translate(-50%, -50%) rotate(60deg); }
.reel-pro__spoke--c { transform: translate(-50%, -50%) rotate(120deg); }
.reel-pro__spoke--d { transform: translate(-50%, -50%) rotate(180deg); }
.reel-pro__spoke--e { transform: translate(-50%, -50%) rotate(240deg); }
.reel-pro__spoke--f { transform: translate(-50%, -50%) rotate(300deg); }

@keyframes spinReel {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Cabeça de Leitura */
.k7-head-reader {
  position: relative;
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 5px 0 15px;
  z-index: 4;
  flex-shrink: 0;
}

.head-reader__metal {
  position: relative;
  width: 200px;
  height: 32px;
  background: linear-gradient(180deg, 
    #94a3b8 0%, 
    #64748b 20%, 
    #475569 50%, 
    #334155 80%, 
    #1e293b 100%
  );
  border-radius: 6px;
  border: 2px solid #64748b;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.6),
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.head-reader__slot {
  width: 140px;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #0f172a 10%, 
    #1a1a2e 50%, 
    #0f172a 90%, 
    transparent 100%
  );
  border-radius: 2px;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.9),
    0 1px 0 rgba(255, 255, 255, 0.2);
}

.head-reader__screw {
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 35% 35%, 
    #cbd5e1 0%, 
    #94a3b8 50%, 
    #475569 100%
  );
  border-radius: 50%;
  border: 2px solid #1e293b;
  box-shadow: 
    inset 0 1px 3px rgba(255, 255, 255, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.6);
}

.head-reader__screw::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 1.5px;
  background: #1e293b;
}

.head-reader__screw--left { left: 10px; }
.head-reader__screw--right { right: 10px; }

.head-reader__tape-path {
  position: absolute;
  bottom: -15px;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #2e1a0c 10%, 
    #5a351a 50%, 
    #2e1a0c 90%, 
    transparent 100%
  );
  border-radius: 1px;
  opacity: 0.7;
}

.tape-running {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 10px,
    rgba(255, 255, 255, 0.15) 10px,
    rgba(255, 255, 255, 0.15) 12px
  );
  animation: tapeRun 0.4s linear infinite;
  animation-play-state: paused;
}

.playing .tape-running {
  animation-play-state: running;
}

@keyframes tapeRun {
  from { transform: translateX(0); }
  to { transform: translateX(12px); }
}

.playing .head-reader__metal {
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.6),
    inset 0 2px 4px rgba(255, 255, 255, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 217, 255, 0.5);
  border-color: var(--neon-cyan);
}

.playing .head-reader__slot {
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--neon-cyan) 10%, 
    #00d9ff 50%, 
    var(--neon-cyan) 90%, 
    transparent 100%
  );
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.9),
    0 0 15px rgba(0, 217, 255, 0.7);
}

/* Painel de Controles */
.k7-controls-retro {
  background: linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
  border: 2px solid #4a5568;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  flex-shrink: 0;
}

.k7-buttons-retro { display: flex; gap: 12px; }

.retro-btn {
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  border: 2px solid;
  font-family: var(--font-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.retro-btn--play {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  border-color: #15803d;
  color: white;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.4);
}

.retro-btn--play:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(34, 197, 94, 0.6);
}

.retro-btn--pause {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  border-color: #15803d;
  color: white;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.4);
}

.retro-btn--stop {
  background: linear-gradient(180deg, #ef4444 0%, #dc2626 100%);
  border-color: #b91c1c;
  color: white;
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
}

.retro-btn--stop:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(239, 68, 68, 0.6);
}

/* Knob de Volume */
.k7-volume-retro { display: flex; align-items: center; gap: 12px; }

.volume-knob-retro {
  width: 50px;
  height: 50px;
  position: relative;
  cursor: grab;
  user-select: none;
  flex-shrink: 0;
  transform: rotate(-135deg);
}

.volume-knob-retro:active { cursor: grabbing; }

.knob-ring-retro {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e2e8f0 0%, #94a3b8 40%, #475569 80%, #1e293b 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6), inset 0 2px 5px rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}

.knob-ring-retro::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 12px;
  background: #ef4444;
  border-radius: 3px;
  box-shadow: 0 0 8px #ef4444;
  z-index: 10;
}

.knob-cap-retro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #cbd5e1 0%, #64748b 100%);
}

.volume-label-retro { color: #94a3b8; font-size: 0.8rem; letter-spacing: 2px; font-weight: 600; }
.volume-value-retro { color: var(--neon-cyan); font-family: var(--font-retro); font-size: 1.1rem; font-weight: bold; }
/* ============================================
   LOCUTOR NO AR
   ============================================ */
.locutor-on-air-card {
  background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  min-height: 520px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.15);
  width: 100%;
  flex: 1;
}

.locutor-on-air-badge {
  display: inline-block;
  background: var(--neon-red);
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 20px;
  letter-spacing: 2px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  animation: pulse 2s infinite;
}

.locutor-on-air-badge.automatico {
  background: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.5);
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

.locutor-on-air-program {
  color: var(--neon-gold);
  font-family: var(--font-retro);
  font-size: 1.8rem;
  margin: 10px 0;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.locutor-on-air-time { color: var(--neon-cyan); font-size: 0.95rem; margin-bottom: 10px; }
.locutor-on-air-name { color: #cbd5e1; font-size: 1rem; margin-bottom: 15px; }
.locutor-on-air-name strong { color: var(--neon-cyan); font-weight: 700; font-size: 1.2rem; }

.locutor-on-air-photo {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 4px solid var(--neon-gold);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
  margin: 10px 0;
}

.locutor-social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #334155;
  width: 100%;
  transition: opacity 0.3s, max-height 0.3s;
  overflow: hidden;
}

.locutor-social-icons.hidden {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  pointer-events: none;
}

.locutor-social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.2);
  border: 2px solid var(--neon-orange);
  color: var(--neon-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1rem;
}

.locutor-social-icons a:hover {
  background: var(--neon-orange);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

/* ============================================
   BARRA NEON DE METADADOS
   ============================================ */
.barra-neon-midias {
  width: 100%;
  max-width: 1100px;
  margin: 15px auto 20px;
  padding: 10px 20px;
  background: rgba(11, 42, 74, 0.5);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-lg);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.35), inset 0 0 15px rgba(0, 217, 255, 0.15);
  overflow: hidden;
  box-sizing: border-box;
}

.barra-neon-midias__container {
  width: 100%;
  overflow: hidden;
}

.barra-neon-midias__text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  font-family: var(--font-retro), monospace;
  font-size: 0.95rem;
  color: #00d9ff;
  font-weight: bold;
  text-shadow: 0 0 8px rgba(0, 217, 255, 0.6);
  animation: scrollMidiasNeon 16s linear infinite;
}

.barra-neon-midias__text i {
  color: var(--neon-gold);
  margin-right: 8px;
}

@keyframes scrollMidiasNeon {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* ============================================
   HISTÓRIA + WEBCAM
   ============================================ */
.historia-webcam-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 20px auto 40px;
  max-width: 1100px;
  padding: 0 20px;
  align-items: stretch;
}

.historia-musica-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  padding: 25px;
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.15);
  min-height: 450px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.historia-musica-title {
  color: var(--neon-gold);
  font-family: var(--font-retro);
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
}

.historia-musica-title i { color: var(--neon-orange); }

.historia-slider { 
  position: relative; 
  max-width: 350px; 
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.historia-viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1/1;
  background: #000;
  border: 2px solid #334155;
  cursor: pointer;
  max-width: 350px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.historia-slide { display: none; width: 100%; height: 100%; }
.historia-slide.is-active { display: block; animation: fadeIn 0.5s; }
.historia-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.historia-slide:hover img { transform: scale(1.03); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.historia-dots { 
  display: flex; 
  justify-content: center; 
  gap: 10px; 
  margin-top: 15px;
  padding: 5px 0;
  position: relative;
  z-index: 10;
}

.historia-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.historia-dots .dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.historia-dots .dot.is-active {
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  transform: scale(1.2);
  border-color: var(--neon-cyan);
}

/* ============================================
   WEBCAM
   ============================================ */
.webcam-card-pro {
  background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  padding: 20px;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
  min-height: 450px;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.webcam-header-pro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #334155;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.webcam-title-pro {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.webcam-status-pro {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--neon-green);
  font-weight: 600;
}

.webcam-status-pro::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulse 2s infinite;
}

.webcam-screen-pro {
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.webcam-screen-pro iframe {
  width: 100%;
  height: 100%;
  max-width: 560px;
  max-height: 315px;
  border: none;
  display: block;
  object-fit: contain;
}

.webcam-overlay-pro {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 217, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
}
/* ============================================
   PLAYLIST - ÚLTIMAS TOCADAS (CSS CORRIGIDO)
   ============================================ */
.playlist-container {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: 16px;
  padding: 20px;
  max-width: 900px;
  margin: 30px auto;
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.15);
  overflow: hidden;
}

.playlist-item {
  display: grid;
  grid-template-columns: 40px 60px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 12px 15px;
  border-radius: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease, transform 0.2s ease;
}

.playlist-item:last-child {
  border-bottom: none;
}

.playlist-item:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(4px);
}

.playlist-item.playing {
  background: linear-gradient(90deg, rgba(255, 107, 53, 0.12), transparent);
  border-left: 3px solid var(--neon-orange);
  border-bottom-color: rgba(255, 107, 53, 0.2);
}

.playlist-item__number {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  font-family: var(--font-retro, monospace);
}

.playlist-item.playing .playlist-item__number {
  color: var(--neon-orange);
}

.playlist-item__cover {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #334155;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.playlist-item__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.playlist-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0; /* Permite truncamento do texto */
}

.playlist-item__title {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-item__artist {
  color: var(--text-secondary);
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.playlist-item__time {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-family: var(--font-retro, monospace);
  text-align: right;
  white-space: nowrap;
}

.playlist-item__live {
  display: inline-block;
  background: var(--neon-red);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  animation: pulseBadge 1.5s infinite;
}

@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255, 0, 0, 0); }
}

.playlist-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-secondary);
}

.playlist-empty i {
  font-size: 2.5rem;
  color: var(--neon-cyan);
  opacity: 0.5;
  margin-bottom: 10px;
}

/* Responsivo */
@media (max-width: 600px) {
  .playlist-item {
    grid-template-columns: 30px 50px 1fr auto;
    gap: 10px;
    padding: 10px;
  }
  .playlist-item__cover {
    width: 50px;
    height: 50px;
  }
  .playlist-item__title { font-size: 0.9rem; }
  .playlist-item__artist { font-size: 0.8rem; }
}
/* ============================================
   SLIDER DE PUBLICIDADE
   ============================================ */
.ad-slider {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  padding: 25px;
  margin: 40px auto;
  max-width: 900px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.15);
}

.ad-slider::before {
  content: 'PUBLICIDADE';
  position: absolute;
  top: 8px;
  left: 20px;
  font-size: 0.7rem;
  color: var(--neon-orange);
  letter-spacing: 3px;
  font-weight: bold;
  opacity: 0.8;
  z-index: 2;
}

.ad-slider__viewport {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  min-height: 180px;
}

.ad-slide { display: none; width: 100%; animation: fadeIn 0.5s; }
.ad-slide.is-active { display: block; }
.ad-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  max-height: 200px;
  object-fit: contain;
}

.ad-slider__dots { display: flex; justify-content: center; gap: 10px; margin-top: 20px; }
.ad-slider__dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}
.ad-slider__dots .dot.is-active {
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  transform: scale(1.3);
}
/* ============================================
   SEÇÕES GERAIS
   ============================================ */
.section { padding: 40px 0; }
.section--alt { background: rgba(15, 23, 42, 0.5); }
.section__head { text-align: center; margin-bottom: 30px; }
.section__head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--neon-gold);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  font-family: var(--font-retro);
  letter-spacing: 2px;
}
.section__head h2 i { color: var(--neon-orange); margin-right: 12px; }
.muted { color: #94a3b8; font-size: 0.95rem; }

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* ============================================
   PROGRAMAÇÃO
   ============================================ */
.schedule-group { margin-bottom: 35px; }
.schedule-group__title {
  color: var(--neon-cyan);
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
  font-family: var(--font-retro);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
  letter-spacing: 1px;
}

.program {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-lg);
  padding: 25px;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.program:hover {
  transform: translateY(-5px);
  border-color: var(--neon-gold);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.program h3 {
  color: var(--neon-gold);
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-family: var(--font-retro);
  line-height: 1.3;
}

.program h3 i { margin-right: 10px; color: var(--neon-orange); }
.program__time { color: var(--neon-cyan); font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 12px; font-weight: 600; }

.program__badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--neon-red);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 2px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
  animation: pulse 1.5s infinite;
  display: none;
}

.program.is-live {
  border: 2px solid var(--neon-red) !important;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 107, 53, 0.05)) !important;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
}

.program.is-live .program__badge { display: inline-block; }

/* Fotos dos Locutores na Programação */
.program__host-with-photo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.program-host-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--neon-orange);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
  flex-shrink: 0;
}

.program-host-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.9rem;
}

.program-host-info span { color: var(--text-secondary); font-size: 0.85rem; }
.program-host-info strong { color: var(--neon-cyan); font-weight: 700; }

/* ============================================
   VITRINE DE MÍDIAS (Estúdio)
   ============================================ */
.showcase--card {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 50px 20px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  overflow: hidden;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.15);
}

.showcase__photo, .showcase__media {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase__photo img, .showcase__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border: 2px solid #334155;
  transition: transform 0.3s;
}

.showcase__photo img:hover, .showcase__media img:hover {
  transform: scale(1.05);
  border-color: var(--neon-gold);
}

.showcase__center {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.disc {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.disc img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

.disc.spinning { animation: spinDisc 4s linear infinite; }

.disc--vinyl {
  width: 280px;
  height: 280px;
  z-index: 2;
  border: 4px solid var(--neon-cyan);
  box-shadow: 
    0 0 20px rgba(0, 217, 255, 0.6),
    0 0 40px rgba(0, 217, 255, 0.4),
    0 0 60px rgba(0, 217, 255, 0.2),
    inset 0 0 20px rgba(0, 217, 255, 0.3);
  animation: spinDisc 4s linear infinite, pulseGlowVinyl 2s ease-in-out infinite;
}

.disc--cd {
  width: 200px;
  height: 200px;
  z-index: 3;
  transform: translate(50px, -50px);
  border: 3px solid var(--neon-gold);
  box-shadow: 
    0 0 15px rgba(255, 215, 0, 0.6),
    0 0 30px rgba(255, 215, 0, 0.4),
    0 0 45px rgba(255, 215, 0, 0.2),
    inset 0 0 15px rgba(255, 215, 0, 0.3);
  animation: spinDiscReverse 2s linear infinite, pulseGlowCD 1.5s ease-in-out infinite;
}

.disc__reflection {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 50%;
  pointer-events: none;
}

@keyframes spinDisc {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinDiscReverse {
  from { transform: translate(50px, -50px) rotate(0deg); }
  to { transform: translate(50px, -50px) rotate(-360deg); }
}

@keyframes pulseGlowVinyl {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 217, 255, 0.6), 0 0 40px rgba(0, 217, 255, 0.4), 0 0 60px rgba(0, 217, 255, 0.2), inset 0 0 20px rgba(0, 217, 255, 0.3); }
  50% { box-shadow: 0 0 30px rgba(0, 217, 255, 0.8), 0 0 60px rgba(0, 217, 255, 0.6), 0 0 90px rgba(0, 217, 255, 0.4), inset 0 0 30px rgba(0, 217, 255, 0.5); }
}

@keyframes pulseGlowCD {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4), 0 0 45px rgba(255, 215, 0, 0.2), inset 0 0 15px rgba(255, 215, 0, 0.3); }
  50% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.9), 0 0 50px rgba(255, 215, 0, 0.7), 0 0 75px rgba(255, 215, 0, 0.5), inset 0 0 25px rgba(255, 215, 0, 0.6); }
}

/* ============================================
   EQUIPE
   ============================================ */
.team {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  margin: 0 auto;
  max-width: 1100px;
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.15), 0 10px 40px rgba(0, 0, 0, 0.6);
}

.team__head { text-align: center; margin-bottom: 40px; }
.team__head strong {
  display: block;
  font-size: 2.2rem;
  color: var(--neon-gold);
  font-family: var(--font-retro);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.team__member {
  background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
  border: 1px solid #475569;
  border-radius: var(--radius-lg);
  padding: 15px 15px 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.team__member:nth-child(odd) { transform: rotate(-2deg); }
.team__member:nth-child(even) { transform: rotate(2deg); }

.team__member:hover {
  transform: rotate(0) scale(1.05);
  z-index: 10;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.4);
}

.team__member img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 2px solid #475569;
  transition: all 0.3s;
}

.team__member:hover img {
  border-color: var(--neon-gold);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.team__member figcaption strong {
  display: block;
  font-size: 1.3rem;
  color: var(--neon-cyan) !important;
  font-weight: 700 !important;
  margin-top: 15px;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
  font-family: var(--font-retro);
}

.team__member figcaption span {
  display: block;
  font-size: 1rem;
  color: var(--neon-gold) !important;
  font-weight: 600 !important;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  font-family: var(--font-retro);
}

/* ============================================
   ACERVO (Galeria)
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery__item {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.gallery__item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--neon-gold);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
  border-bottom: 2px solid #334155;
}

.gallery__item:hover img { transform: scale(1.08); }

.gallery__item figcaption {
  padding: 18px;
  text-align: center;
  color: var(--neon-gold);
  font-family: var(--font-retro);
  font-size: 1.1rem;
  letter-spacing: 1px;
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid #334155;
}

/* ============================================
   APOIADORES E CLIENTES
   ============================================ */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.sponsor-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  padding: 30px 25px;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sponsor-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-gold);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.sponsor-card img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: grayscale(0.6);
  transition: filter 0.3s;
}

.sponsor-card:hover img { filter: grayscale(0); }
.sponsor-card h3 { color: var(--neon-gold); margin-bottom: 12px; font-size: 1.15rem; font-family: var(--font-retro); }
.sponsor-card span { color: var(--neon-cyan); font-size: 0.9rem; transition: color 0.3s; }
.sponsor-card:hover span { color: var(--neon-gold); }
/* ============================================
   SEÇÕES GERAIS
   ============================================ */
.section { padding: 40px 0; }
.section--alt { background: rgba(15, 23, 42, 0.5); }
.section__head { text-align: center; margin-bottom: 30px; }
.section__head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--neon-gold);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  font-family: var(--font-retro);
  letter-spacing: 2px;
}
.section__head h2 i { color: var(--neon-orange); margin-right: 12px; }
.muted { color: #94a3b8; font-size: 0.95rem; }

.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* ============================================
   PROGRAMAÇÃO
   ============================================ */
.schedule-group { margin-bottom: 35px; }
.schedule-group__title {
  color: var(--neon-cyan);
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
  font-family: var(--font-retro);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
  letter-spacing: 1px;
}

.program {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-lg);
  padding: 25px;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.program:hover {
  transform: translateY(-5px);
  border-color: var(--neon-gold);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.program h3 {
  color: var(--neon-gold);
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-family: var(--font-retro);
  line-height: 1.3;
}

.program h3 i { margin-right: 10px; color: var(--neon-orange); }
.program__time { color: var(--neon-cyan); font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 12px; font-weight: 600; }

.program__badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--neon-red);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 2px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
  animation: pulse 1.5s infinite;
  display: none;
}

.program.is-live {
  border: 2px solid var(--neon-red) !important;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(255, 107, 53, 0.05)) !important;
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
}

.program.is-live .program__badge { display: inline-block; }

/* Fotos dos Locutores na Programação */
.program__host-with-photo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.program-host-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--neon-orange);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.4);
  flex-shrink: 0;
}

.program-host-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.9rem;
}

.program-host-info span { color: var(--text-secondary); font-size: 0.85rem; }
.program-host-info strong { color: var(--neon-cyan); font-weight: 700; }

/* ============================================
   VITRINE DE MÍDIAS (Estúdio)
   ============================================ */
.showcase--card {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 50px 20px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  overflow: hidden;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.15);
}

.showcase__photo, .showcase__media {
  flex: 1;
  min-width: 150px;
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase__photo img, .showcase__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border: 2px solid #334155;
  transition: transform 0.3s;
}

.showcase__photo img:hover, .showcase__media img:hover {
  transform: scale(1.05);
  border-color: var(--neon-gold);
}

.showcase__center {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.disc {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.disc img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

.disc.spinning { animation: spinDisc 4s linear infinite; }

.disc--vinyl {
  width: 280px;
  height: 280px;
  z-index: 2;
  border: 4px solid var(--neon-cyan);
  box-shadow: 
    0 0 20px rgba(0, 217, 255, 0.6),
    0 0 40px rgba(0, 217, 255, 0.4),
    0 0 60px rgba(0, 217, 255, 0.2),
    inset 0 0 20px rgba(0, 217, 255, 0.3);
  animation: spinDisc 4s linear infinite, pulseGlowVinyl 2s ease-in-out infinite;
}

.disc--cd {
  width: 200px;
  height: 200px;
  z-index: 3;
  transform: translate(50px, -50px);
  border: 3px solid var(--neon-gold);
  box-shadow: 
    0 0 15px rgba(255, 215, 0, 0.6),
    0 0 30px rgba(255, 215, 0, 0.4),
    0 0 45px rgba(255, 215, 0, 0.2),
    inset 0 0 15px rgba(255, 215, 0, 0.3);
  animation: spinDiscReverse 2s linear infinite, pulseGlowCD 1.5s ease-in-out infinite;
}

.disc__reflection {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 50%;
  pointer-events: none;
}

@keyframes spinDisc {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinDiscReverse {
  from { transform: translate(50px, -50px) rotate(0deg); }
  to { transform: translate(50px, -50px) rotate(-360deg); }
}

@keyframes pulseGlowVinyl {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 217, 255, 0.6), 0 0 40px rgba(0, 217, 255, 0.4), 0 0 60px rgba(0, 217, 255, 0.2), inset 0 0 20px rgba(0, 217, 255, 0.3); }
  50% { box-shadow: 0 0 30px rgba(0, 217, 255, 0.8), 0 0 60px rgba(0, 217, 255, 0.6), 0 0 90px rgba(0, 217, 255, 0.4), inset 0 0 30px rgba(0, 217, 255, 0.5); }
}

@keyframes pulseGlowCD {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4), 0 0 45px rgba(255, 215, 0, 0.2), inset 0 0 15px rgba(255, 215, 0, 0.3); }
  50% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.9), 0 0 50px rgba(255, 215, 0, 0.7), 0 0 75px rgba(255, 215, 0, 0.5), inset 0 0 25px rgba(255, 215, 0, 0.6); }
}

/* ============================================
   EQUIPE
   ============================================ */
.team {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  margin: 0 auto;
  max-width: 1100px;
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.15), 0 10px 40px rgba(0, 0, 0, 0.6);
}

.team__head { text-align: center; margin-bottom: 40px; }
.team__head strong {
  display: block;
  font-size: 2.2rem;
  color: var(--neon-gold);
  font-family: var(--font-retro);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.team__member {
  background: linear-gradient(180deg, #334155 0%, #1e293b 100%);
  border: 1px solid #475569;
  border-radius: var(--radius-lg);
  padding: 15px 15px 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.team__member:nth-child(odd) { transform: rotate(-2deg); }
.team__member:nth-child(even) { transform: rotate(2deg); }

.team__member:hover {
  transform: rotate(0) scale(1.05);
  z-index: 10;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.4);
}

.team__member img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 2px solid #475569;
  transition: all 0.3s;
}

.team__member:hover img {
  border-color: var(--neon-gold);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.team__member figcaption strong {
  display: block;
  font-size: 1.3rem;
  color: var(--neon-cyan) !important;
  font-weight: 700 !important;
  margin-top: 15px;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
  font-family: var(--font-retro);
}

.team__member figcaption span {
  display: block;
  font-size: 1rem;
  color: var(--neon-gold) !important;
  font-weight: 600 !important;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
  font-family: var(--font-retro);
}

/* ============================================
   ACERVO (Galeria)
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery__item {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.gallery__item:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--neon-gold);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
  border-bottom: 2px solid #334155;
}

.gallery__item:hover img { transform: scale(1.08); }

.gallery__item figcaption {
  padding: 18px;
  text-align: center;
  color: var(--neon-gold);
  font-family: var(--font-retro);
  font-size: 1.1rem;
  letter-spacing: 1px;
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid #334155;
}

/* ============================================
   APOIADORES E CLIENTES
   ============================================ */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.sponsor-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  padding: 30px 25px;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sponsor-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-gold);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.sponsor-card img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: grayscale(0.6);
  transition: filter 0.3s;
}

.sponsor-card:hover img { filter: grayscale(0); }
.sponsor-card h3 { color: var(--neon-gold); margin-bottom: 12px; font-size: 1.15rem; font-family: var(--font-retro); }
.sponsor-card span { color: var(--neon-cyan); font-size: 0.9rem; transition: color 0.3s; }
.sponsor-card:hover span { color: var(--neon-gold); }
/* ============================================
   CONTATO - FORMULÁRIOS
   ============================================ */
#contato .grid--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
  align-content: start;
}

#contato .form {
  height: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 35px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.1);
}

#contato .form h3 {
  color: var(--neon-gold);
  margin-bottom: 25px;
  font-family: var(--font-retro);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

#contato .form h3 i { color: var(--neon-orange); }

#contato .form label {
  display: block;
  margin-bottom: 20px;
  color: var(--neon-gold);
  font-weight: bold;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

#contato .form input,
#contato .form textarea {
  width: 100%;
  padding: 14px;
  background: rgba(15, 23, 42, 0.8);
  border: 2px solid #475569;
  border-radius: var(--radius-md);
  color: #f8fafc;
  font-family: inherit;
  font-size: 1rem;
  margin-top: 10px;
  transition: all 0.3s;
}

#contato .form input:focus,
#contato .form textarea:focus {
  outline: none;
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
  background: rgba(15, 23, 42, 1);
}

#contato .form textarea { 
  resize: vertical; 
  min-height: 120px; 
}

#contato .form__actions { 
  display: flex; 
  justify-content: center; 
  margin-top: auto; 
  padding-top: 20px;
  flex-shrink: 0;
}

/* ============================================
   BOTÕES GERAIS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--neon-orange) 0%, var(--neon-gold) 100%);
  color: var(--bg-dark);
}

.btn--primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: rgba(15, 23, 42, 0.95);
  padding: 50px 0 100px;
  border-top: 3px solid var(--neon-orange);
  margin-top: 80px;
  box-shadow: 0 -5px 20px rgba(255, 107, 53, 0.2);
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 35px;
}

.footer-brand h3 {
  font-size: 2.2rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
  color: #f8fafc;
  font-family: var(--font-retro);
}

.footer-brand .highlight {
  color: var(--neon-gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-brand .brand__logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--neon-gold);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.footer h4 {
  color: var(--neon-gold);
  margin-bottom: 18px;
  font-size: 1.3rem;
  font-family: var(--font-retro);
  letter-spacing: 1px;
}

.footer-contact .info__list { list-style: none; }

.footer-contact .info__list li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact .info__list li:last-child { border-bottom: none; }

.footer-contact .info__list strong {
  color: var(--neon-gold);
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.footer-contact .info__list strong i {
  margin-right: 8px;
  color: var(--neon-orange);
}

.footer-contact .info__list a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-contact .info__list a:hover { color: var(--neon-gold); }

.footer-contact .info__list span {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-social .social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.2);
  border: 2px solid var(--neon-orange);
  color: var(--neon-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.1rem;
}

.social-icons a:hover {
  background: var(--neon-orange);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--neon-gold);
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  grid-column: 1 / -1;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 8px 0;
}

.footer-bottom a {
  color: var(--neon-red);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-bottom a:hover { color: var(--neon-gold); }

/* ============================================
   MODAIS
   ============================================ */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  align-items: center;
  justify-content: center;
}

.modal.is-open { display: flex; }

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.modal__panel {
  position: relative;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  padding: 35px;
  max-width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.3);
}

.modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 2px solid #334155;
}

.modal__head strong {
  color: var(--neon-gold);
  font-size: 1.6rem;
  font-family: var(--font-retro);
  letter-spacing: 1px;
}

.modal__close {
  background: transparent;
  border: 2px solid var(--neon-orange);
  color: var(--neon-orange);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal__close:hover {
  background: var(--neon-orange);
  color: white;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.historia-modal-panel { max-width: 500px; }
.historia-modal-content { text-align: center; }

.historia-modal-content img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-lg);
  margin: 0 auto 20px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 3px solid var(--neon-gold);
}

.historia-modal-desc {
  color: #e2e8f0;
  line-height: 1.7;
  font-size: 1rem;
  text-align: left;
  padding: 0 10px;
}

.gallery-modal__content img {
  width: 100%;
  max-width: 650px;
  height: auto;
  border-radius: var(--radius-lg);
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-modal__desc {
  color: #e2e8f0;
  line-height: 1.7;
  text-align: center;
  font-size: 1.05rem;
}

/* ============================================
   MINI PLAYER FIXO
   ============================================ */
.mini-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-top: 3px solid var(--neon-orange);
  padding: 12px 25px;
  display: flex;
  align-items: center;
  gap: 18px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.mini-player.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mini-player img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neon-gold);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.mini-info { flex: 1; }
.mini-info strong { display: block; color: var(--neon-gold); font-size: 0.95rem; font-weight: 700; }
.mini-info span { font-size: 0.85rem; color: var(--neon-cyan); }

#miniPlay {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--neon-orange);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  transition: var(--transition);
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

#miniPlay:hover {
  background: var(--neon-gold);
  color: var(--bg-dark);
  transform: scale(1.1);
}

/* ============================================
   BOTÕES FLUTUANTES
   ============================================ */
.install-btn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  background: linear-gradient(135deg, var(--neon-orange), var(--neon-gold));
  color: var(--bg-dark);
  border: none;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: none;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  animation: pulseInstall 2s infinite;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
  transition: transform 0.3s;
}

@keyframes pulseInstall {
  0%, 100% { box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5); }
  50% { box-shadow: 0 10px 40px rgba(255, 215, 0, 0.8); }
}

.install-btn:hover { transform: translateY(-5px) scale(1.05); }

.scroll-top {
  position: fixed;
  bottom: 90px;
  left: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--neon-orange);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  z-index: 1000;
  display: none;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.5);
  transition: var(--transition);
  align-items: center;
  justify-content: center;
}

.scroll-top:hover {
  background: var(--neon-gold);
  color: var(--bg-dark);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.whatsapp-retro-btn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: floatPhone 3s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.whatsapp-retro-btn img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
  transition: all 0.3s;
}

.whatsapp-retro-btn:hover img {
  filter: drop-shadow(0 8px 25px rgba(37, 211, 102, 0.6));
  transform: scale(1.15);
}

.whatsapp-retro-label {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

/* ============================================
   TEMA CLARO (DIA) - ALUMÍNIO ESCOVADO
   ============================================ */
body.theme-light {
  --bg-dark: #d8d8d8;
  --bg-darker: #b8b8b8;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.08) 1px,
      rgba(255, 255, 255, 0.08) 2px
    ),
    linear-gradient(135deg, #c8c8c8 0%, #e8e8e8 50%, #b8b8b8 100%);
}

body.theme-light .topbar {
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.1) 1px,
      rgba(255, 255, 255, 0.1) 2px
    ),
    linear-gradient(180deg, #f0f0f0 0%, #d0d0d0 50%, #e0e0e0 100%);
  border-bottom: 3px solid #888;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

body.theme-light .brand__name {
  color: #2a2a2a;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

body.theme-light .brand__tag { color: #555; }
body.theme-light .nav a { color: #2a2a2a; font-weight: 600; }
body.theme-light .nav a:hover { color: var(--neon-orange); }

/* K7 no tema claro */
body.theme-light .k7-cassette-pro {
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.15) 1px,
      rgba(255, 255, 255, 0.15) 2px
    ),
    linear-gradient(180deg, #e8e8e8 0%, #c8c8c8 50%, #d8d8d8 100%);
  border: 2px solid #888;
  box-shadow: 
    0 0 25px rgba(0, 0, 0, 0.3),
    0 10px 40px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

body.theme-light .k7-screw {
  background: radial-gradient(circle, #e0e0e0 20%, #a0a0a0 60%, #606060 100%);
  border: 1px solid #555;
}

body.theme-light .k7-screw::after { background-color: #333; }

body.theme-light .k7-window {
  border: 2px solid #666;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.4);
}

body.theme-light .k7-controls-retro {
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.1) 1px,
      rgba(255, 255, 255, 0.1) 2px
    ),
    linear-gradient(180deg, #d0d0d0 0%, #a8a8a8 100%);
  border: 2px solid #777;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.5);
}

body.theme-light .volume-label-retro { color: #333; }
body.theme-light .volume-value-retro { color: #0066cc; }

/* Locutor no tema claro */
body.theme-light .locutor-on-air-card {
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.15) 1px,
      rgba(255, 255, 255, 0.15) 2px
    ),
    linear-gradient(135deg, #e8e8e8 0%, #c8c8c8 100%);
  border: 2px solid #888;
  box-shadow: 
    0 0 25px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

body.theme-light .locutor-on-air-name { color: #333; }
body.theme-light .locutor-social-icons { border-top-color: #888; }
body.theme-light .locutor-social-icons a { background: rgba(255, 107, 53, 0.15); border-color: var(--neon-orange); }

/* História e Webcam no tema claro */
body.theme-light .historia-musica-card,
body.theme-light .webcam-card-pro {
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.15) 1px,
      rgba(255, 255, 255, 0.15) 2px
    ),
    linear-gradient(135deg, #e8e8e8 0%, #c8c8c8 100%);
  border: 2px solid #888;
  box-shadow: 
    0 0 25px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

body.theme-light .historia-viewport { border-color: #888; background: #fff; }
body.theme-light .historia-dots .dot { background: rgba(0, 0, 0, 0.25); }
body.theme-light .webcam-header-pro { border-bottom-color: #888; }
body.theme-light .webcam-title-pro { color: #1a1a1a; }

/* Playlist no tema claro */
body.theme-light .playlist-container {
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.15) 1px,
      rgba(255, 255, 255, 0.15) 2px
    ),
    linear-gradient(135deg, #e8e8e8 0%, #c8c8c8 100%);
  border: 2px solid #888;
  box-shadow: 
    0 0 25px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

body.theme-light .playlist-item { border-bottom-color: rgba(0, 0, 0, 0.15); }
body.theme-light .playlist-item:hover { background: rgba(255, 255, 255, 0.3); }
body.theme-light .playlist-item__number { color: #444; }
body.theme-light .playlist-item.playing .playlist-item__number { color: var(--neon-orange); }
body.theme-light .playlist-item__cover { border-color: #888; }
body.theme-light .playlist-item:hover .playlist-item__cover { border-color: var(--neon-gold); }
body.theme-light .playlist-item__title { color: #1a1a1a; text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8); }
body.theme-light .playlist-item__artist { color: #555; }
body.theme-light .playlist-item__time { color: #555; }

/* Publicidade no tema claro */
body.theme-light .ad-slider {
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.15) 1px,
      rgba(255, 255, 255, 0.15) 2px
    ),
    linear-gradient(135deg, #e8e8e8 0%, #c8c8c8 100%);
  border: 2px solid #888;
  box-shadow: 
    0 0 20px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

body.theme-light .ad-slider__dots .dot { background: rgba(0, 0, 0, 0.25); }

/* Programação no tema claro */
body.theme-light .program {
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.15) 1px,
      rgba(255, 255, 255, 0.15) 2px
    ),
    linear-gradient(135deg, #e8e8e8 0%, #c8c8c8 100%);
  border: 2px solid #888;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

body.theme-light .program h3 { color: #2a2a2a; text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8); }
body.theme-light .program__host { color: #333; }
body.theme-light .program__time { color: #0066cc; }
body.theme-light .schedule-group__title { color: #0066cc; text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8); }
body.theme-light .program__host-with-photo { border-top-color: rgba(0, 0, 0, 0.15); }
body.theme-light .program-host-info span { color: #555; }
body.theme-light .program-host-info strong { color: #0066cc; }
body.theme-light .program-host-photo { border-color: var(--neon-orange); box-shadow: 0 0 10px rgba(255, 107, 53, 0.3); }

/* Vitrine no tema claro */
body.theme-light .showcase--card {
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.15) 1px,
      rgba(255, 255, 255, 0.15) 2px
    ),
    linear-gradient(135deg, #e8e8e8 0%, #c8c8c8 100%);
  border: 2px solid #888;
  box-shadow: 
    0 0 30px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

body.theme-light .showcase__photo img,
body.theme-light .showcase__media img {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #888;
}

/* Equipe no tema claro */
body.theme-light .team {
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.15) 1px,
      rgba(255, 255, 255, 0.15) 2px
    ),
    linear-gradient(135deg, #e8e8e8 0%, #c8c8c8 100%);
  border: 2px solid #888;
  box-shadow: 
    0 0 25px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

body.theme-light .team__head strong { color: #2a2a2a; text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8); }
body.theme-light .team__member {
  background: linear-gradient(180deg, #d0d0d0 0%, #a8a8a8 100%);
  border: 2px solid #777;
  box-shadow: 
    0 10px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

body.theme-light .team__member img { border-color: #777; }
body.theme-light .team__member figcaption strong { color: #0066cc !important; text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8); }
body.theme-light .team__member figcaption span { color: #555 !important; }

/* Acervo no tema claro */
body.theme-light .gallery__item {
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.15) 1px,
      rgba(255, 255, 255, 0.15) 2px
    ),
    linear-gradient(135deg, #e8e8e8 0%, #c8c8c8 100%);
  border: 2px solid #888;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

body.theme-light .gallery__item img { border-bottom-color: #888; }
body.theme-light .gallery__item figcaption {
  background: rgba(200, 200, 200, 0.8);
  border-top-color: #888;
  color: #2a2a2a;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Apoiadores no tema claro */
body.theme-light .sponsor-card {
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.15) 1px,
      rgba(255, 255, 255, 0.15) 2px
    ),
    linear-gradient(135deg, #e8e8e8 0%, #c8c8c8 100%);
  border: 2px solid #888;
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

body.theme-light .sponsor-card h3 { color: #2a2a2a; text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8); }
body.theme-light .sponsor-card span { color: #0066cc; }

/* Contato no tema claro */
body.theme-light #contato .form {
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.15) 1px,
      rgba(255, 255, 255, 0.15) 2px
    ),
    linear-gradient(135deg, #e8e8e8 0%, #c8c8c8 100%);
  border: 2px solid #888;
  box-shadow: 
    0 0 20px rgba(0, 0, 0, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

body.theme-light #contato .form h3 { color: #2a2a2a; text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8); }
body.theme-light #contato .form label { color: #333; }
body.theme-light #contato .form input,
body.theme-light #contato .form textarea {
  background: #ffffff;
  color: #1a1a1a;
  border: 2px solid #999;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

body.theme-light #contato .form input:focus,
body.theme-light #contato .form textarea:focus {
  border-color: var(--neon-cyan);
  background: #ffffff;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.1),
    0 0 15px rgba(0, 217, 255, 0.3);
}

/* Footer no tema claro */
body.theme-light .footer {
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.1) 1px,
      rgba(255, 255, 255, 0.1) 2px
    ),
    linear-gradient(180deg, #c0c0c0 0%, #a0a0a0 100%);
  border-top: 3px solid #666;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

body.theme-light .footer-brand h3 { color: #1a1a1a; text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8); }
body.theme-light .footer-brand p { color: #444; }
body.theme-light .footer h4 { color: #2a2a2a; text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8); }
body.theme-light .footer-contact .info__list li { border-bottom-color: rgba(0, 0, 0, 0.15); }
body.theme-light .footer-contact .info__list strong { color: #2a2a2a; }
body.theme-light .footer-contact .info__list a { color: #0066cc; }
body.theme-light .footer-contact .info__list span { color: #444; }
body.theme-light .footer-links a { color: #444; }
body.theme-light .footer-links a:hover { color: var(--neon-orange); }
body.theme-light .footer-bottom p { color: #444; }

/* Modais no tema claro */
body.theme-light .modal__panel {
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.15) 1px,
      rgba(255, 255, 255, 0.15) 2px
    ),
    linear-gradient(135deg, #e8e8e8 0%, #c8c8c8 100%);
  border: 2px solid #888;
  box-shadow: 
    0 0 40px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

body.theme-light .modal__head { border-bottom-color: #888; }
body.theme-light .modal__head strong { color: #2a2a2a; text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8); }
body.theme-light .historia-modal-desc,
body.theme-light .gallery-modal__desc { color: #333; }
body.theme-light .modal__close { border-color: #666; color: #333; }
body.theme-light .modal__close:hover { background: var(--neon-orange); color: white; border-color: var(--neon-orange); }

/* Mini Player no tema claro */
body.theme-light .mini-player {
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 1px,
      rgba(255, 255, 255, 0.15) 1px,
      rgba(255, 255, 255, 0.15) 2px
    ),
    linear-gradient(135deg, #d0d0d0 0%, #a8a8a8 100%);
  border-top: 3px solid #666;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.4);
}

body.theme-light .mini-info strong { color: #1a1a1a; }
body.theme-light .mini-info span { color: #0066cc; }

/* Scrollbar no tema claro */
body.theme-light ::-webkit-scrollbar-track { background: #c0c0c0; }
body.theme-light ::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #e0e0e0 0%, #a0a0a0 100%);
  border: 2px solid #c0c0c0;
}
body.theme-light ::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #f0f0f0 0%, #b0b0b0 100%); }

/* ============================================
   SCROLLBAR CUSTOMIZADA
   ============================================ */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb {
  background: var(--neon-orange);
  border-radius: 20px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover { background: var(--neon-gold); }

::selection { background: var(--neon-orange); color: white; }

/* ============================================
   ANIMAÇÕES DE ENTRADA
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.section { animation: fadeInUp 0.6s ease-out; }

/* ============================================
   RESPONSIVIDADE FINAL
   ============================================ */

/* Tablet (até 968px) */
@media (max-width: 968px) {
  .topbar__inner { grid-template-columns: 1fr; gap: 15px; }
  .brand { justify-content: center; }
  .nav { display: none; }
  .nav.is-open { display: flex; flex-direction: column; gap: 10px; }
  .nav-toggle { display: block; }
  .topbar__tools { justify-content: center; }
  
  .player-unified-card { grid-template-columns: 1fr; max-width: 100%; }
  .player-right-col { order: -1; }
  
  .k7-cassette-pro, .locutor-on-air-card { min-height: 450px; max-height: none; }
  
  .historia-webcam-row { grid-template-columns: 1fr; gap: 25px; }
  .historia-musica-card, .webcam-card-pro { min-height: 400px; max-height: none; }
  
  .team__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .team__member { padding: 12px 12px 35px; }
  .team__member img { height: 180px; }
  .team__member figcaption strong { font-size: 1.1rem; }
  .team__member figcaption span { font-size: 0.9rem; }
  
  .showcase--card { flex-direction: column; padding: 30px 20px; gap: 25px; }
  .showcase__photo, .showcase__media { max-width: 250px; width: 100%; }
  .showcase__center { width: 260px; height: 260px; }
  .disc--vinyl { width: 240px; height: 240px; }
  .disc--cd { width: 170px; height: 170px; transform: translate(40px, -40px); }
  
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .gallery__item img { height: 200px; }
  
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .sponsor-card { padding: 25px 20px; }
  .sponsor-card img { height: 110px; }
  
  #contato .grid--2 { grid-template-columns: 1fr; }
  #contato .form { min-height: auto; }
  
  .footer__inner { grid-template-columns: repeat(2, 1fr); gap: 30px; text-align: center; }
  .social-icons { justify-content: center; }
  
  .whatsapp-retro-btn { bottom: 80px; right: 20px; }
  .whatsapp-retro-btn img { width: 65px; height: 65px; }
  .scroll-top { left: 20px; bottom: 80px; }
  .install-btn { bottom: 80px; right: 20px; }
  
  .k7-controls-retro { flex-direction: column; gap: 15px; }
}

/* Mobile (até 600px) */
@media (max-width: 600px) {
  .brand__name { font-size: 1.5rem; letter-spacing: 2px; }
  .brand__logo { width: 50px; height: 50px; }
  
  .nav { gap: 8px; }
  .nav a { font-size: 0.85rem; padding: 4px 8px; }
  
  .onair { padding: 10px 18px; font-size: 0.8rem; }
  
  .hero__title { font-size: 1.8rem; }
  .hero__subtitle { font-size: 1rem; }
  
  .k7-cassette-pro { padding: 20px 15px 0 15px; min-height: 420px; }
  
  .k7-window { width: 200px; height: 70px; }
  .k7-reels-pro { height: 120px; }
  .reel-container-left { left: 60px; }
  .reel-container-right { right: 60px; }
  .reel-pro { width: 70px; height: 70px; }
  .reel-pro__spoke { height: 30px; }
  
  .k7-head-reader { height: 60px; }
  .head-reader__metal { width: 170px; height: 28px; }
  .head-reader__slot { width: 110px; }
  
  .k7-controls-retro { padding: 15px; flex-direction: column; gap: 12px; }
  .k7-buttons-retro { flex-wrap: wrap; justify-content: center; }
  .retro-btn { padding: 8px 16px; font-size: 0.85rem; }
  
  .volume-knob-retro { width: 48px; height: 48px; }
  .knob-cap-retro { width: 30px; height: 30px; }
  
  .locutor-on-air-card { padding: 25px 20px; min-height: 420px; }
  .locutor-on-air-photo { width: 140px; height: 140px; }
  .locutor-on-air-program { font-size: 1.5rem; }
  .locutor-on-air-name strong { font-size: 1.1rem; }
  .locutor-social-icons a { width: 40px; height: 40px; font-size: 1rem; }
  
  .historia-musica-card { padding: 20px 15px; }
  .historia-musica-title { font-size: 1.2rem; }
  .historia-viewport { max-width: 100%; }
  
  .webcam-card-pro { padding: 15px; min-height: 320px; }
  .webcam-screen-pro iframe { max-width: 100%; height: auto; aspect-ratio: 16/9; }
  .webcam-title-pro { font-size: 1rem; }
  
  .team { padding: 30px 15px; }
  .team__head strong { font-size: 1.8rem; }
  .team__grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .team__member { padding: 10px 10px 30px; }
  .team__member img { height: 160px; }
  .team__member figcaption strong { font-size: 1rem; margin-top: 10px; }
  .team__member figcaption span { font-size: 0.85rem; }
  
  .showcase--card { padding: 25px 15px; }
  .showcase__photo, .showcase__media { max-width: 200px; }
  .showcase__center { width: 220px; height: 220px; }
  .disc--vinyl { width: 200px; height: 200px; }
  .disc--cd { width: 140px; height: 140px; transform: translate(35px, -35px); }
  
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .gallery__item img { height: 160px; }
  .gallery__item figcaption { padding: 12px; font-size: 0.95rem; }
  
  .sponsors-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .sponsor-card { padding: 20px 15px; }
  .sponsor-card img { height: 90px; margin-bottom: 15px; }
  .sponsor-card h3 { font-size: 1rem; margin-bottom: 8px; }
  .sponsor-card span { font-size: 0.85rem; }
  
  .schedule-group__title { font-size: 1.5rem; }
  .program { padding: 20px; }
  .program h3 { font-size: 1.2rem; }
  .grid--2 { grid-template-columns: 1fr; }
  
  .form { padding: 25px 20px; }
  .form h3 { font-size: 1.3rem; }
  
  .footer { padding: 30px 0 100px; }
  .footer__inner { grid-template-columns: 1fr; gap: 25px; }
  .footer-brand h3 { font-size: 1.6rem; }
  .footer-brand img { width: 60px; height: 60px; margin: 10px auto 0; }
  .footer h4 { font-size: 1.1rem; }
  
  .whatsapp-retro-label { display: none; }
  .whatsapp-retro-btn img { width: 60px; height: 60px; }
  .scroll-top { left: 15px; bottom: 75px; width: 48px; height: 48px; }
  .install-btn { bottom: 75px; right: 15px; padding: 12px 20px; font-size: 0.9rem; }
  
  .mini-player { padding: 10px 15px; gap: 12px; }
  .mini-player img { width: 40px; height: 40px; }
  .mini-info strong { font-size: 0.85rem; }
  .mini-info span { font-size: 0.75rem; }
  #miniPlay { width: 45px; height: 45px; }
  
  .section { padding: 30px 0; }
  .section__head h2 { font-size: 1.8rem; }
  
  .playlist-item { grid-template-columns: 30px 50px 1fr 70px; gap: 10px; padding: 10px; }
  .playlist-item__cover { width: 50px; height: 50px; }
  .playlist-item__title { font-size: 0.9rem; }
  .playlist-item__artist { font-size: 0.8rem; }
  
  .barra-neon-midias { margin: 10px 15px 15px 15px; padding: 8px 15px; }
  .barra-neon-midias__text { font-size: 0.85rem; }
}

/* Mobile Pequeno (até 400px) */
@media (max-width: 400px) {
  .brand__name { font-size: 1.2rem; letter-spacing: 1px; }
  .brand__tag { font-size: 0.65rem; }
  .brand__logo { width: 45px; height: 45px; }
  
  .hero__title { font-size: 1.5rem; }
  .hero__subtitle { font-size: 0.95rem; }
  
  .k7-cassette-pro { padding: 15px 10px 0 10px; min-height: 400px; }
  .k7-window { width: 170px; height: 60px; }
  .vu-numbers { font-size: 6px; }
  .vu-channel-id { font-size: 6px; }
  
  .reel-container-left { left: 25px; }
  .reel-container-right { right: 25px; }
  .reel-pro { width: 55px; height: 55px; }
  .reel-pro__spoke { height: 24px; }
  
  .retro-btn { padding: 8px 14px; font-size: 0.75rem; }
  .volume-knob-retro { width: 42px; height: 42px; }
  .knob-cap-retro { width: 26px; height: 26px; }
  
  .locutor-on-air-photo { width: 120px; height: 120px; }
  .locutor-on-air-program { font-size: 1.3rem; }
  
  .team__member img { height: 140px; }
  .team__member figcaption strong { font-size: 0.95rem; }
  .team__member figcaption span { font-size: 0.8rem; }
  
  .showcase__center { width: 180px; height: 180px; }
  .disc--vinyl { width: 160px; height: 160px; }
  .disc--cd { width: 110px; height: 110px; transform: translate(25px, -25px); }
  .showcase__photo, .showcase__media { max-width: 160px; }
  
  .gallery { grid-template-columns: 1fr; gap: 15px; }
  .gallery__item img { height: 180px; }
  
  .sponsors-grid { grid-template-columns: 1fr; gap: 15px; }
  .sponsor-card img { height: 100px; }
}

/* ============================================
   UTILITÁRIOS
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
/* ============================================
   CORREÇÃO 1 - CARD "TOCANDO AGORA" COM BORDA
   ============================================ */

/* Container do card Tocando Agora */
.now-playing-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
  border: 2px solid var(--neon-cyan) !important;
  border-radius: var(--radius-xl) !important;
  padding: 25px !important;
  max-width: 900px !important;
  margin: 20px auto !important;
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.15), 0 10px 40px rgba(0, 0, 0, 0.6) !important;
}

/* Layout em grid */
.now-playing-content {
  display: grid !important;
  grid-template-columns: 50px 100px 1fr 120px !important;
  gap: 20px !important;
  align-items: center !important;
}

/* Ícone de som */
.now-playing-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.5rem !important;
  color: var(--neon-orange) !important;
}

/* Capa da música - proporção correta */
.now-playing-cover {
  width: 100px !important;
  height: 100px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  border: 3px solid var(--neon-gold) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
  flex-shrink: 0 !important;
}

.now-playing-cover img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Info da música */
.now-playing-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
  min-width: 0 !important;
  padding-left: 10px !important;
}

.now-playing-title {
  color: #f0f0f0 !important;
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

.now-playing-artist {
  color: #a0a8b8 !important;
  font-size: 1rem !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  line-height: 1.2 !important;
}

/* Badge AO VIVO */
.now-playing-badge {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

.live-badge {
  background: #ff0000 !important;
  color: white !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  font-size: 0.85rem !important;
  font-weight: bold !important;
  letter-spacing: 1px !important;
  animation: pulse 2s infinite !important;
  display: inline-block !important;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6) !important;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ============================================
   CORREÇÃO 2 - VU METER CROMADO/GRAFITE
   ============================================ */

/* Janela VU - Borda cromada/grafite */
.k7-window {
  position: relative;
  width: 240px;
  height: 80px;
  background: #1a0f07;
  border: 3px solid #64748b !important;  /* Grafite */
  border-radius: 8px;
  box-shadow: 
    0 0 10px rgba(100, 116, 139, 0.3),
    inset 0 2px 10px rgba(0, 0, 0, 0.8),
    inset 0 0 15px rgba(100, 116, 139, 0.1) !important;
  overflow: hidden;
  z-index: 5;
  margin-top: 10px;
  margin-bottom: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

/* Quando tocando - brilho sutil cromado */
.playing .k7-window {
  border-color: #94a3b8 !important;  /* Cromado claro */
  box-shadow: 
    0 0 15px rgba(148, 163, 184, 0.4),
    inset 0 2px 10px rgba(0, 0, 0, 0.8),
    inset 0 0 20px rgba(148, 163, 184, 0.15) !important;
}

/* Container dos VU meters */
.k7-analog-vu-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  gap: 4px;
  z-index: 2;
  padding: 3px;
}

/* VU Meter individual - borda grafite */
.vu-meter-analog {
  flex: 1;
  height: 100%;
  background: radial-gradient(circle at 50% 115%, #fffaaa 0%, #f7d047 50%, #b87a04 90%, #5c3005 100%);
  border: 2px solid #475569 !important;  /* Grafite escuro */
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4) !important;
  transition: all 0.3s ease;
}

.playing .vu-meter-analog {
  border-color: #64748b !important;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4), 0 0 8px rgba(100, 116, 139, 0.3) !important;
}

/* Escala do VU */
.vu-scale-container {
  position: absolute;
  top: 6px; left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 3;
}

.vu-ticks { display: flex; justify-content: space-between; width: 86%; height: 6px; }
.tick { width: 1px; height: 100%; background-color: #1a1613; }
.tick.tick-red { background-color: #b91c1c; width: 1.5px; }

.vu-numbers {
  display: flex;
  justify-content: space-between;
  width: 88%;
  font-family: 'Courier New', monospace;
  font-size: 7px;
  font-weight: 900;
  color: #1a1613;
  margin-top: 1px;
}
.vu-numbers .num-red { color: #b91c1c; }

.vu-channel-id {
  position: absolute;
  bottom: 3px; left: 5px;
  font-family: sans-serif;
  font-size: 7px;
  font-weight: 900;
  color: #3b1a04;
}

/* ============================================
   AGULHA VERMELHA COM BRILHO
   ============================================ */

.vu-needle,
#needle-l,
#needle-r {
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 2px;
  height: 55px;
  background: linear-gradient(180deg, #ff0000 0%, #cc0000 100%) !important;  /* Vermelho */
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(-45deg);
  transition: transform 0.05s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 
    0 0 8px rgba(255, 0, 0, 0.8),
    0 0 15px rgba(255, 0, 0, 0.5) !important;  /* Brilho vermelho */
  z-index: 5;
  border-radius: 2px;
}

.playing .vu-needle,
.playing #needle-l,
.playing #needle-r {
  box-shadow: 
    0 0 12px rgba(255, 0, 0, 1),
    0 0 25px rgba(255, 0, 0, 0.7),
    0 0 40px rgba(255, 0, 0, 0.4) !important;  /* Brilho mais intenso quando tocando */
}

/* ============================================
   PIVÔ CENTRAL - PRETO
   ============================================ */

.vu-center-pivot {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #000000 !important;  /* Preto */
  border: 2px solid #1a1a1a !important;  /* Preto escuro */
  border-radius: 50%;
  z-index: 6;
  box-shadow: 
    0 0 5px rgba(0, 0, 0, 0.8),
    inset 0 0 3px rgba(255, 255, 255, 0.1) !important;  /* Sombra sutil */
}

/* ============================================
   MOBILE - AJUSTES
   ============================================ */

@media (max-width: 600px) {
  .now-playing-content {
    grid-template-columns: 40px 80px 1fr !important;
    gap: 12px !important;
  }
  
  .now-playing-cover {
    width: 80px !important;
    height: 80px !important;
  }
  
  .now-playing-title {
    font-size: 1.1rem !important;
    white-space: normal !important;
  }
  
  .now-playing-artist {
    font-size: 0.9rem !important;
    white-space: normal !important;
  }
  
  .now-playing-badge {
    grid-column: 3 !important;
    grid-row: 2 !important;
    justify-content: flex-start !important;
    margin-top: 5px !important;
  }
  
  .k7-window {
    width: 200px;
    height: 70px;
    border-width: 2px !important;
  }
  
  .vu-needle,
  #needle-l,
  #needle-r {
    height: 45px;
  }
}
/* ============================================
   BLOG
   ============================================ */

.blog-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.blog-filter {
  padding: 10px 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--neon-cyan);
  color: var(--text-primary);
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.blog-filter:hover,
.blog-filter.active {
  background: var(--neon-cyan);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-gold);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.blog-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 2px solid #334155;
}

.blog-card__content {
  padding: 25px;
}

.blog-card__category {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card__category.historia {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid #22c55e;
}

.blog-card__category.atualidades {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid #ef4444;
}

.blog-card__title {
  color: var(--neon-gold);
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-family: var(--font-retro);
}

.blog-card__resumo {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.blog-loading {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
  grid-column: 1 / -1;
}

.blog-loading i {
  font-size: 3rem;
  color: var(--neon-cyan);
  margin-bottom: 15px;
}

/* Modal do Blog */
.blog-modal-panel {
  max-width: 800px;
}

.blog-modal-content {
  color: var(--text-primary);
  line-height: 1.8;
}

.blog-modal-content img {
  max-width: 100%;
  border-radius: var(--radius-lg);
  margin: 20px 0;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   CORREÇÃO: REMOVER BORDA DUPLA
   ============================================ */

/* Remover borda do container pai (player-unified-card) */
.player-unified-card {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

/* Manter apenas as bordas dos cards filhos */
.k7-cassette-pro {
  border: 2px solid var(--neon-cyan) !important;
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.2), 0 10px 40px rgba(0, 0, 0, 0.6) !important;
}

.locutor-on-air-card {
  border: 2px solid var(--neon-cyan) !important;
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.15), 0 10px 40px rgba(0, 0, 0, 0.6) !important;
}
/* ============================================
   CORREÇÃO: OCULTAR LINHA DA FITA
   ============================================ */

/* Ocultar o caminho da fita que está aparecendo indevidamente */
.head-reader__tape-path {
  display: none !important;
}

/* Se houver outro elemento de fita visível, ocultar também */
.k7-head-reader .tape-path,
.k7-cassette-pro .tape-line {
  display: none !important;
}
/* ============================================
   MODAL DO BLOG - COM SCROLL CORRETO
   ============================================ */

/* Overlay escuro que cobre toda a tela */
.modal {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999 !important;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.is-open {
  display: flex !important;
}

/* Backdrop escuro */
.modal__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

/* Painel do modal */
.modal__panel {
  position: relative;
  z-index: 2;
  background: #1e293b;
  border: 2px solid var(--neon-cyan);
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.3);
  max-width: 90%;
  max-height: 90vh;
  width: 800px;
  display: flex;
  flex-direction: column;
  overflow: hidden; /* IMPORTANTE: corta o que passar */
}

/* Cabeçalho fixo do modal */
.modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 2px solid var(--neon-cyan);
  background: #0f172a;
  flex-shrink: 0; /* Não encolhe */
}

.modal__head strong {
  color: var(--neon-gold);
  font-size: 1.3rem;
  font-weight: 700;
}

.modal__close {
  background: transparent;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.modal__close:hover {
  background: var(--neon-cyan);
  color: var(--bg-dark);
}

.blog-modal-content {
  padding: 25px;
  overflow-y: auto !important;       /* OBRIGATÓRIO: permite rolar o texto */
  overflow-x: hidden;
  max-height: calc(90vh - 80px);     /* OBRIGATÓRIO: define o limite de altura */
  color: var(--text-primary);
  line-height: 1.8;
  scroll-behavior: smooth;
}

/* Customizar a barra de rolagem para ficar bonita (estilo neon) */
.blog-modal-content::-webkit-scrollbar {
  width: 8px;
}
.blog-modal-content::-webkit-scrollbar-track {
  background: #0f172a;
  border-radius: 4px;
}
.blog-modal-content::-webkit-scrollbar-thumb {
  background: var(--neon-cyan);
  border-radius: 4px;
}
.blog-modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--neon-gold);
}
/* Imagem do post */
.blog-modal-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Meta informações */
.blog-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.blog-modal-category {
  display: inline-block;
  padding: 5px 15px;
  background: var(--neon-cyan);
  color: var(--bg-dark);
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
}

.blog-modal-meta span {
  color: var(--text-secondary);
}

.blog-modal-meta i {
  margin-right: 5px;
  color: var(--neon-gold);
}

/* Texto do post */
.blog-modal-texto {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 30px;
  text-align: justify;
}

.blog-modal-texto p {
  margin-bottom: 20px;
}

/* Rodapé com fonte */
.blog-modal-footer {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  margin-bottom: 25px;
}

.blog-modal-footer a {
  color: var(--neon-cyan);
  text-decoration: none;
  word-break: break-all;
}

.blog-modal-footer a:hover {
  color: var(--neon-gold);
  text-decoration: underline;
}

/* Tags */
.blog-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-tag {
  padding: 5px 12px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--neon-gold);
  border-radius: 15px;
  font-size: 0.85rem;
  color: var(--neon-gold);
}

/* Responsivo */
@media (max-width: 768px) {
  .modal__panel {
    max-width: 95%;
    max-height: 95vh;
  }
  
  .blog-modal-content {
    max-height: calc(95vh - 80px);
    padding: 20px 15px;
  }
  
  .blog-modal-img {
    max-height: 250px;
  }
  
  .blog-modal-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .modal__head strong {
    font-size: 1.1rem;
  }
}
/* ============================================
   BARRA NEON TOCANDO AGORA - ESTILO CARD
   ============================================ */

.barra-neon-midias--card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--neon-cyan);
  border-radius: var(--radius-lg);
  padding: 20px 25px;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.15);
  max-width: 900px;
  margin: 0 auto 40px auto;
  min-height: 140px;
  transition: all 0.3s ease;
}

.barra-neon-midias--card:hover {
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.25);
  transform: translateY(-2px);
}

.barra-neon-midias__cover {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.barra-neon-midias__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.barra-neon-midias--card:hover .barra-neon-midias__cover img {
  transform: scale(1.05);
}

.barra-neon-midias__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.barra-neon-midias__text {
  font-size: 1.2rem;
  color: var(--neon-gold);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  text-align: left;
}

.barra-neon-midias__text i {
  margin-right: 10px;
  color: var(--neon-cyan);
}

.barra-neon-midias__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ef4444;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Responsivo */
@media (max-width: 768px) {
  .barra-neon-midias--card {
    grid-template-columns: 80px 1fr;
    gap: 15px;
    padding: 15px;
    min-height: 120px;
  }
  
  .barra-neon-midias__cover {
    width: 80px;
    height: 80px;
  }
  
  .barra-neon-midias__text {
    font-size: 1rem;
  }
}
/* ============================================
   ALINHAMENTO ÚLTIMAS TOCADAS
   ============================================ */

.history-header {
  text-align: center !important;
  margin-bottom: 30px;
}

.history-header h3 {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  justify-content: center;
}

.history-header i {
  color: var(--neon-cyan);
}
/* ============================================
   WIDGET OUVINTES ONLINE
   ============================================ */

.listeners-widget {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(255, 215, 0, 0.15));
  border: 1px solid var(--neon-cyan);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
  transition: all 0.3s ease;
  cursor: default;
  /* ✅ EVITAR OVERFLOW */
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
}

.listeners-widget:hover {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.25), rgba(255, 215, 0, 0.25));
  /* ✅ REMOVER SCALE - USAR APENAS BOX-SHADOW */
  box-shadow: 0 0 25px rgba(0, 217, 255, 0.6);
  /* ✅ NÃO USAR TRANSFORM */
  /* transform: scale(1.05); ❌ REMOVER */
}

.listeners-widget i {
  font-size: 1rem;
  color: var(--neon-gold);
  animation: pulseHeadphones 2s infinite;
}

@keyframes pulseHeadphones {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.listeners-widget span {
  color: var(--neon-gold);
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

/* Versão topo do site */
.listeners-widget--top {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 999;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
}

/* Versão player */
.listeners-widget--player {
  margin-top: 15px;
  justify-content: center;
}

/* Responsivo */
@media (max-width: 768px) {
  .listeners-widget {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .listeners-widget--top {
    top: 5px;
    right: 5px;
  }
}

/* Versão topo do site */
.listeners-widget--top {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 999;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
}

/* Versão player */
.listeners-widget--player {
  margin-top: 15px;
  justify-content: center;
}

/* Responsivo */
@media (max-width: 768px) {
  .listeners-widget {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .listeners-widget--top {
    top: 5px;
    right: 5px;
  }
}
/* ============================================
   CORREÇÃO FINAL DO SCROLL DO MODAL
   ============================================ */

/* 1. Trava a tela inteira quando o modal abre */
.modal.is-open {
  display: flex !important;
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 99999 !important;
  overflow: hidden !important; /* Impede qualquer scroll na tela de fundo */
}

/* 2. Faz o texto rolar DENTRO do modal */
.blog-modal-content {
  overflow-y: auto !important;       /* OBRIGATÓRIO: ativa a barra de rolagem vertical */
  overflow-x: hidden !important;
  max-height: 85vh !important;       /* OBRIGATÓRIO: limita a altura para forçar o scroll */
  padding: 25px;
  color: var(--text-primary);
  line-height: 1.8;
  scroll-behavior: smooth;
}

/* 3. Deixa a barra de rolagem bonita (estilo neon) */
.blog-modal-content::-webkit-scrollbar {
  width: 8px;
}
.blog-modal-content::-webkit-scrollbar-track {
  background: #0f172a;
  border-radius: 4px;
}
.blog-modal-content::-webkit-scrollbar-thumb {
  background: var(--neon-cyan);
  border-radius: 4px;
}
.blog-modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--neon-gold);
}
/* ============================================
   FIM DO CSS - OFFICERADIO 2026
   ============================================ */