/* ================================================
   RÁDIO TRANSAMÉRICA 99,7 FM — STYLE
   Design: Preto + Amarelo vibrante (FEE000)
   Replicando trans99fm.com.br
   ================================================ */

:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --accent: #FEE000;
  --accent-hover: #e8d000;
  --accent-dark: #c4a800;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted: #666666;
  --text-on-accent: #000000;
  --border: #1a1a1a;
  --border-accent: #FEE00033;
  --shadow: rgba(254, 224, 0, 0.08);
  --shadow-strong: rgba(254, 224, 0, 0.2);
  --red: #e74c3c;
  --green: #2ecc71;
  --radius: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --font: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --transition: 0.3s ease;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 70px;
}
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font); }
input { font-family: var(--font); }

/* ==================== COOKIE BAR ==================== */
.cookie-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
  background: #1a1a1a;
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.cookie-bar button {
  background: var(--accent);
  color: var(--text-on-accent);
  padding: 6px 20px;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: var(--radius);
  text-transform: uppercase;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(0,0,0,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}

/* LOGO */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.4rem; color: var(--text-on-accent);
  position: relative;
  overflow: hidden;
}
.logo-icon::after {
  content: '';
  position: absolute; right: -2px; top: 0; bottom: 0; width: 8px;
  background: repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(0,0,0,0.15) 3px, rgba(0,0,0,0.15) 4px);
}
.logo-text {
  font-weight: 800; font-size: 1.1rem; letter-spacing: 3px;
  text-transform: uppercase;
}

/* NAV DESKTOP */
.nav-desktop { display: flex; gap: 4px; }
.nav-desktop a {
  color: var(--text-secondary);
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--accent);
  background: rgba(254,224,0,0.08);
}

/* MOBILE MENU BTN */
.mobile-menu-btn {
  display: none;
  background: none;
  width: 36px; height: 36px;
  flex-direction: column; gap: 5px;
  justify-content: center;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9500;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-primary);
  font-size: 1.2rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu-close {
  position: absolute; top: 20px; right: 24px;
  background: none; color: var(--text-primary);
  font-size: 1.5rem;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(254,224,0,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(254,224,0,0.04) 0%, transparent 50%),
              var(--bg-primary);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, var(--bg-primary) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 40px 24px;
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--text-on-accent);
  padding: 6px 20px;
  font-weight: 800; font-size: 0.85rem;
  letter-spacing: 3px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 3.5rem; font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  font-weight: 400;
}
.hero-now {
  display: flex; align-items: center; gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.now-label {
  background: var(--red);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse-label 2s infinite;
}
@keyframes pulse-label {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.now-time {
  font-size: 0.9rem; color: var(--text-secondary);
}
.now-program {
  font-size: 0.95rem; color: var(--accent); font-weight: 700;
}

.btn-play-hero {
  background: var(--accent);
  color: var(--text-on-accent);
  border: none;
  padding: 16px 48px;
  font-size: 1rem; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: 50px;
  cursor: pointer;
  display: flex; align-items: center; gap: 12px;
  transition: var(--transition);
  box-shadow: 0 0 30px var(--shadow-strong);
}
.btn-play-hero:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px var(--shadow-strong);
}
.btn-play-hero .play-icon { font-size: 1.2rem; }

/* HERO WAVES */
.hero-waves {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  overflow: hidden;
}
.hero-waves .wave {
  position: absolute; bottom: 0; left: -10%;
  width: 120%; height: 40px;
  background: transparent;
  border-radius: 50%;
}
.hero-waves .wave:nth-child(1) {
  animation: wave-anim 6s infinite ease-in-out;
  border-bottom: 2px solid rgba(254,224,0,0.1);
}
.hero-waves .wave:nth-child(2) {
  animation: wave-anim 8s infinite ease-in-out 1s;
  border-bottom: 2px solid rgba(254,224,0,0.06);
}
.hero-waves .wave:nth-child(3) {
  animation: wave-anim 10s infinite ease-in-out 2s;
  border-bottom: 2px solid rgba(254,224,0,0.03);
}
@keyframes wave-anim {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3%); }
}

/* ==================== RADIO PLAYER SECTION ==================== */
.radio-section {
  padding: 60px 0;
  background: var(--bg-secondary);
}
.radio-container {
  max-width: 900px; margin: 0 auto; padding: 0 24px;
}
.radio-player-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
}
.radio-player-header {
  text-align: center; margin-bottom: 24px;
}
.radio-live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(231,76,60,0.15);
  color: var(--red);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.radio-player-header h2 {
  font-size: 1.4rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
}

/* VINYL */
.radio-player-body {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 24px;
}
.vinyl-container {
  flex-shrink: 0;
  position: relative;
}
.vinyl {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, #222 25%, #111 30%, #1a1a1a 50%, #0d0d0d 51%, #111 70%, #0a0a0a 71%, #111 100%);
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.5), inset 0 0 30px rgba(0,0,0,0.3);
}
.vinyl.spinning { animation: spin-vinyl 3s linear infinite; }
@keyframes spin-vinyl {
  100% { transform: rotate(360deg); }
}
.vinyl-inner {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.vinyl-label {
  font-weight: 900; font-size: 1.3rem;
  color: var(--text-on-accent);
}

/* VISUALIZER BARS */
.visualizer-bars {
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 2px; align-items: flex-end; height: 24px;
}
.visualizer-bars .bar {
  width: 3px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
  transition: height 0.15s ease;
}
.visualizer-bars.active .bar {
  animation: bar-dance 0.5s ease-in-out infinite alternate;
}
.visualizer-bars.active .bar:nth-child(1) { animation-delay: 0s; }
.visualizer-bars.active .bar:nth-child(2) { animation-delay: 0.05s; }
.visualizer-bars.active .bar:nth-child(3) { animation-delay: 0.1s; }
.visualizer-bars.active .bar:nth-child(4) { animation-delay: 0.15s; }
.visualizer-bars.active .bar:nth-child(5) { animation-delay: 0.2s; }
.visualizer-bars.active .bar:nth-child(6) { animation-delay: 0.08s; }
.visualizer-bars.active .bar:nth-child(7) { animation-delay: 0.12s; }
.visualizer-bars.active .bar:nth-child(8) { animation-delay: 0.18s; }
.visualizer-bars.active .bar:nth-child(9) { animation-delay: 0.03s; }
.visualizer-bars.active .bar:nth-child(10) { animation-delay: 0.22s; }
.visualizer-bars.active .bar:nth-child(11) { animation-delay: 0.07s; }
.visualizer-bars.active .bar:nth-child(12) { animation-delay: 0.13s; }
.visualizer-bars.active .bar:nth-child(13) { animation-delay: 0.17s; }
.visualizer-bars.active .bar:nth-child(14) { animation-delay: 0.25s; }
.visualizer-bars.active .bar:nth-child(15) { animation-delay: 0.09s; }
.visualizer-bars.active .bar:nth-child(16) { animation-delay: 0.2s; }
.visualizer-bars.active .bar:nth-child(17) { animation-delay: 0.14s; }
.visualizer-bars.active .bar:nth-child(18) { animation-delay: 0.06s; }
@keyframes bar-dance {
  0% { height: 4px; }
  100% { height: 22px; }
}

.radio-now-info { flex: 1; }
.radio-now-program {
  font-size: 1.1rem; font-weight: 700;
  color: var(--accent); margin-bottom: 4px;
}
.radio-now-time {
  font-size: 0.85rem; color: var(--text-secondary);
}

/* PLAYER CONTROLS */
.radio-player-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-bottom: 16px;
}
.btn-play {
  width: 60px; height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  box-shadow: 0 0 20px var(--shadow);
}
.btn-play:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px var(--shadow-strong);
}
.play-icon-main { font-size: 1.4rem; color: var(--text-on-accent); margin-left: 4px; }
.play-icon-main.paused { margin-left: 0; }

.volume-control {
  display: flex; align-items: center; gap: 8px;
}
.volume-slider {
  width: 100px; height: 4px;
  accent-color: var(--accent);
  cursor: pointer;
}

.radio-share {
  display: flex; justify-content: flex-end; gap: 8px;
}
.share-btn {
  background: rgba(254,224,0,0.1);
  color: var(--accent);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 1rem;
}
.share-btn:hover { background: rgba(254,224,0,0.2); }

/* ==================== SONG REQUEST ==================== */
.song-request-section {
  padding: 60px 0;
  background: var(--accent);
}
.section-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.section-title-yellow {
  font-size: 1.6rem; font-weight: 900;
  color: var(--text-on-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.request-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.request-card {
  background: #000;
  color: var(--accent);
  padding: 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none;
  cursor: pointer;
}
.request-card:hover { transform: translateY(-3px); background: #111; }
.request-icon { font-size: 1.5rem; }
.request-label {
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.request-value {
  font-size: 0.85rem; font-weight: 600;
}
.request-card-peca { border: 2px solid var(--accent); }

/* ==================== MODAL ==================== */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 10001;
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-card {
  background: #111;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 90%; max-width: 480px;
  max-height: 90vh; overflow-y: auto;
}
.modal-card h2 {
  font-size: 1.3rem; font-weight: 800;
  color: var(--accent); margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1px;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; color: #fff; font-size: 1.2rem;
}
.request-form .form-group {
  margin-bottom: 14px;
}
.request-form label {
  display: block; font-size: 0.8rem; font-weight: 700;
  color: var(--text-secondary); margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: 1px;
}
.request-form input {
  width: 100%; padding: 10px 14px;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.9rem;
}
.request-form input:focus {
  outline: none; border-color: var(--accent);
}
.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--text-on-accent);
  padding: 12px;
  font-weight: 800; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 2px;
  border-radius: var(--radius);
  margin-top: 8px;
}

/* ==================== SECTION TITLES ==================== */
.section-title {
  font-size: 1.6rem; font-weight: 900;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 50px; height: 3px;
  background: var(--accent);
  margin-top: 8px;
}

/* ==================== NOTÍCIAS ==================== */
.noticias-section {
  padding: 60px 0;
  background: var(--bg-primary);
}
.noticias-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.noticias-header .section-title { margin-bottom: 0; }
.noticias-header .section-title::after { display: none; }
.see-more {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
}

.noticias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.noticia-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.noticia-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.noticia-img {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.noticia-body {
  padding: 16px;
}
.noticia-body h3 {
  font-size: 0.95rem; font-weight: 700;
  line-height: 1.4; margin-bottom: 8px;
  color: var(--text-primary);
}
.noticia-body p {
  font-size: 0.82rem; color: var(--text-secondary);
  line-height: 1.5;
}
.noticia-card.featured {
  grid-column: 1 / -1;
}
.noticia-card.featured .noticia-img { height: 280px; }
.noticia-card.featured .noticia-body h3 { font-size: 1.2rem; }

.ultimas-title {
  font-size: 1rem; font-weight: 800;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 16px;
}
.ultimas-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.ultimas-list li a {
  font-size: 0.88rem; font-weight: 600;
  color: var(--text-secondary);
}
.ultimas-list li a:hover { color: var(--accent); }

/* ==================== TOP 10 ==================== */
.top10-section {
  padding: 60px 0;
  background: var(--accent);
}
.top10-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 8px;
}
.top10-item {
  display: flex; align-items: center; gap: 12px;
  background: #000;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.top10-item:hover { background: #111; }
.top10-num {
  font-size: 1.3rem; font-weight: 900;
  color: var(--accent);
  min-width: 30px;
}
.top10-info { flex: 1; }
.top10-artist {
  font-size: 0.85rem; font-weight: 700;
  color: var(--text-primary);
}
.top10-song {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ==================== PROGRAMAS ==================== */
.programas-section {
  padding: 60px 0;
  background: var(--bg-primary);
}
.programas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.programa-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.programa-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.programa-card .programa-icon {
  width: 60px; height: 60px;
  margin: 0 auto 12px;
  background: rgba(254,224,0,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.programa-card h3 {
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--text-primary);
}
.programa-card p {
  font-size: 0.75rem; color: var(--text-secondary); margin-top: 4px;
}

/* ==================== VÍDEOS ==================== */
.videos-section {
  padding: 60px 0;
  background: var(--bg-secondary);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.video-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 20px;
  text-align: center;
}
.video-icon {
  font-size: 3rem; color: var(--accent); margin-bottom: 8px;
}
.video-placeholder p {
  color: var(--text-secondary); font-weight: 600;
}

/* ==================== APLICATIVO ==================== */
.app-section {
  padding: 80px 0;
  background: var(--accent);
  text-align: center;
}
.app-section h2 {
  font-size: 2rem; font-weight: 900;
  color: var(--text-on-accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.app-section p {
  font-size: 1rem; color: #333;
  margin-bottom: 32px;
  font-weight: 500;
}
.app-buttons {
  display: flex; gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.app-btn {
  display: flex; align-items: center; gap: 12px;
  background: #000;
  color: var(--accent);
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  text-decoration: none;
}
.app-btn:hover { background: #111; transform: translateY(-3px); }
.app-btn-icon { font-size: 1.5rem; }
.app-btn small { font-size: 0.65rem; color: var(--text-secondary); }
.app-btn strong { font-size: 1rem; font-weight: 800; }

/* ==================== COMERCIAL ==================== */
.comercial-section {
  padding: 60px 0;
  background: var(--bg-primary);
}
.comercial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.comercial-card h3 {
  font-size: 1.2rem; font-weight: 800;
  color: var(--accent); margin-bottom: 12px;
}
.comercial-card p {
  font-size: 0.95rem; color: var(--text-secondary);
  margin-bottom: 20px; line-height: 1.6;
}
.comercial-contact {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.comercial-btn {
  background: var(--accent);
  color: var(--text-on-accent);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700; font-size: 0.85rem;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.comercial-btn:hover { background: var(--accent-hover); }

/* ==================== GRADE ==================== */
.grade-section {
  padding: 60px 0;
  background: var(--bg-secondary);
}
.grade-table-wrap {
  overflow-x: auto;
}
.grade-table {
  width: 100%;
  border-collapse: collapse;
}
.grade-table thead th {
  background: var(--accent);
  color: var(--text-on-accent);
  padding: 12px 16px;
  font-size: 0.8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  text-align: left;
}
.grade-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.grade-table tbody tr:hover { background: rgba(254,224,0,0.04); }
.grade-table tbody tr.current { background: rgba(254,224,0,0.08); }
.grade-table tbody td {
  padding: 10px 16px;
  font-size: 0.85rem;
}
.grade-table tbody td:first-child {
  font-weight: 700; color: var(--accent);
  white-space: nowrap;
  width: 130px;
}
.grade-table tbody td:last-child {
  color: var(--text-primary); font-weight: 600;
}

/* ==================== EQUIPE ==================== */
.equipe-section {
  padding: 60px 0;
  background: var(--bg-primary);
}
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.equipe-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}
.equipe-card:hover {
  border-color: var(--accent);
}
.equipe-card .equipe-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--accent), #c4a800);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 900;
  color: var(--text-on-accent);
}
.equipe-card h3 {
  font-size: 0.9rem; font-weight: 700;
  color: var(--text-primary);
}
.equipe-card p {
  font-size: 0.78rem; color: var(--text-secondary); margin-top: 4px;
}

/* ==================== QUEM SOMOS ==================== */
.quemsomos-section {
  padding: 60px 0;
  background: var(--bg-secondary);
}
.quemsomos-text {
  max-width: 700px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.quemsomos-text p { margin-bottom: 12px; }

/* ==================== CONTATO ==================== */
.contato-section {
  padding: 60px 0;
  background: var(--bg-primary);
}
.contato-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.contato-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.contato-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.contato-icon { font-size: 1.5rem; }
.contato-label {
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-secondary);
}
.contato-value {
  font-size: 0.95rem; font-weight: 700;
  color: var(--text-primary);
}

/* ==================== FOOTER ==================== */
.footer {
  background: #0a0a0a;
  border-top: 2px solid var(--accent);
  padding: 32px 0 20px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 20px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo .logo-icon { width: 36px; height: 36px; font-size: 1.1rem; }
.footer-logo .logo-text { font-size: 0.9rem; }
.footer-nav { display: flex; gap: 16px; }
.footer-nav a {
  font-size: 0.8rem; font-weight: 600;
  color: var(--text-secondary); text-transform: uppercase;
}
.footer-nav a:hover { color: var(--accent); }
.footer-divider {
  height: 1px; background: var(--border); margin-bottom: 16px;
}
.footer-bottom {
  text-align: center;
}
.footer-contact {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap;
  font-size: 0.85rem; color: var(--text-secondary);
  margin-bottom: 12px;
}
.footer-copy {
  font-size: 0.78rem; color: var(--text-muted);
}
.footer-platform {
  font-size: 0.7rem; color: var(--text-muted); margin-top: 4px;
}

/* ==================== PLAYER BAR (FIXO INFERIOR) ==================== */
.player-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 8000;
  background: #111;
  border-top: 2px solid var(--accent);
}
.player-bar-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.player-bar-info {
  display: flex; align-items: center; gap: 10px;
}
.player-live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: blink 1.5s infinite;
}
.player-bar-name {
  font-weight: 700; font-size: 0.85rem;
  color: var(--accent);
}
.player-bar-program {
  font-size: 0.75rem; color: var(--text-secondary);
}
.player-bar-controls {
  display: flex; align-items: center; gap: 12px;
}
.player-bar-btn {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.player-bar-btn:hover { transform: scale(1.1); }
.player-bar-btn span {
  color: var(--text-on-accent);
  font-size: 0.9rem;
  margin-left: 2px;
}
.volume-slider-sm {
  width: 70px; height: 3px;
  accent-color: var(--accent);
}

/* ==================== SIDE WIDGET ==================== */
.side-widget {
  position: fixed; right: 16px; bottom: 90px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 7000;
}
.side-widget a {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transition);
}
.side-widget-phone {
  background: #1a1a1a; color: var(--accent);
  border: 1px solid var(--border);
}
.side-widget-whatsapp {
  background: #25d366; color: #fff;
}
.side-widget a:hover { transform: scale(1.15); }

/* ==================== SEARCH OVERLAY ==================== */
.search-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9800;
  align-items: center; justify-content: center;
}
.search-overlay.open { display: flex; }
.search-box {
  width: 90%; max-width: 500px;
  display: flex; gap: 8px;
}
.search-box input {
  flex: 1;
  padding: 14px 20px;
  background: #1a1a1a;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-size: 1rem;
}
.search-box input:focus { outline: none; }
.search-close {
  background: var(--accent); color: var(--text-on-accent);
  padding: 0 16px;
  border-radius: var(--radius-lg);
  font-weight: 800; font-size: 1.2rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-title { font-size: 2.2rem; letter-spacing: 3px; }
  .noticias-grid { grid-template-columns: 1fr; }
  .noticia-card.featured .noticia-img { height: 200px; }
  .grade-table tbody td { padding: 8px 10px; font-size: 0.8rem; }
}

@media (max-width: 600px) {
  .header-inner { height: 56px; }
  .hero-title { font-size: 1.6rem; letter-spacing: 2px; }
  .hero-subtitle { font-size: 0.9rem; }
  .btn-play-hero { padding: 12px 32px; font-size: 0.85rem; }
  .hero-badge { font-size: 0.75rem; padding: 4px 14px; }
  .radio-player-card { padding: 20px; }
  .radio-player-body { flex-direction: column; text-align: center; }
  .vinyl { width: 100px; height: 100px; }
  .vinyl-inner { width: 40px; height: 40px; }
  .vinyl-label { font-size: 1rem; }
  .request-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title, .section-title-yellow { font-size: 1.3rem; }
  .top10-list { grid-template-columns: 1fr; }
  .programas-grid { grid-template-columns: repeat(2, 1fr); }
  .equipe-grid { grid-template-columns: repeat(2, 1fr); }
  .app-section h2 { font-size: 1.3rem; }
  .contato-grid { grid-template-columns: 1fr; }
  .player-bar-name { font-size: 0.75rem; }
  .player-bar-program { display: none; }
  .volume-slider-sm { width: 50px; }
  .side-widget { right: 10px; bottom: 80px; }
  .side-widget a { width: 38px; height: 38px; font-size: 1rem; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}

/* ==================== ANIMATIONS / SCROLL ==================== */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1; transform: translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* Selection */
::selection { background: var(--accent); color: var(--text-on-accent); }