/* Origen Estéreo v2 - Estilo MixRadio */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #ffcc00;
  --red: #d50000;
  --blue: #0033a0;
  --dark: #080812;
  --dark2: #0d0d1a;
  --card: rgba(18, 18, 35, 0.95);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.5);
  --radius: 14px;
  --player-h: 70px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  padding-bottom: var(--player-h);
}

/* Al recargar, volver al inicio */
@media (max-width: 768px) {
  html { scroll-behavior: auto; }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(8, 8, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo { height: 38px; flex-shrink: 0; }

.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav a:hover { color: var(--gold); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 3px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  height: auto;
  min-height: auto;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 50px;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('/img/origen-logo.png') center/contain no-repeat;
  opacity: 0.06;
  filter: blur(40px);
  transform: scale(1.5);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 40%, rgba(255,204,0,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(0,51,160,0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--dark) 0%, transparent 30%, transparent 70%, var(--dark) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px 10px;
}

.hero-logo {
  width: 220px;
  max-width: 50vw;
  margin-bottom: 12px;
  filter: drop-shadow(0 8px 30px rgba(255,204,0,0.2));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-tagline {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), #ff8800);
  border: none;
  border-radius: 50px;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(255,204,0,0.3);
}

.hero-play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(255,204,0,0.5);
}

.hero-now-playing {
  display: none;
}

.hero-eq {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 18px;
}
.hero-eq span {
  width: 3px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}
.hero-eq.active span { animation: eq 0.6s ease-in-out infinite alternate; }
.hero-eq.active span:nth-child(1) { animation-delay: 0s; }
.hero-eq.active span:nth-child(2) { animation-delay: 0.1s; }
.hero-eq.active span:nth-child(3) { animation-delay: 0.2s; }
.hero-eq.active span:nth-child(4) { animation-delay: 0.15s; }
.hero-eq.active span:nth-child(5) { animation-delay: 0.25s; }

@keyframes eq { 0% { height: 4px; } 100% { height: 16px; } }

.hero-song-title { font-size: 14px; font-weight: 600; }
.hero-song-artist { font-size: 12px; color: var(--muted); }

.hero-song {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-song-sep {
  color: var(--muted);
  font-size: 12px;
}

/* ===== NOW PLAYING CARD ===== */
.now-playing-section {
  padding: 0 20px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.now-playing-card {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(20px);
}

.np-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.np-cover img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(255,204,0,0.3);
  flex-shrink: 0;
}

.np-info {}
.np-badge { font-size: 11px; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.np-info h3 { font-size: 18px; margin-top: 4px; }
.np-info p { font-size: 13px; color: var(--muted); }

.np-center-btn {
  flex: 1;
  display: flex;
  justify-content: center;
}

.np-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--gold), #ff8800);
  border: none;
  border-radius: 28px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  animation: glow-pulse 2.5s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(255,204,0,0.3); }
  50% { box-shadow: 0 4px 30px rgba(255,204,0,0.6); }
}

.np-play-btn:hover { box-shadow: 0 6px 30px rgba(255,204,0,0.5); }

.np-play-btn.playing {
  background: linear-gradient(135deg, #00c853, #00e676);
  animation: glow-green 2s ease-in-out infinite;
}

@keyframes glow-green {
  0%, 100% { box-shadow: 0 4px 15px rgba(0,200,83,0.3); }
  50% { box-shadow: 0 4px 30px rgba(0,200,83,0.6); }
}

.np-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.np-actions { display: flex; gap: 8px; }

.np-btn {
  padding: 7px 14px;
  background: rgba(255,204,0,0.08);
  border: 1px solid rgba(255,204,0,0.25);
  border-radius: 20px;
  color: var(--gold);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
  animation: subtle-glow 3s ease-in-out infinite;
}

@keyframes subtle-glow {
  0%, 100% { border-color: rgba(255,204,0,0.25); }
  50% { border-color: rgba(255,204,0,0.5); }
}

.np-btn:hover { background: rgba(255,204,0,0.15); color: #fff; border-color: rgba(255,204,0,0.6); animation: none; }

.np-right .social-icons { margin-top: 0; }

.lyrics-panel {
  max-width: 700px;
  margin: 12px auto 0;
  max-height: 200px;
  overflow-y: auto;
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  padding: 16px;
}
.lyrics-panel::-webkit-scrollbar { width: 3px; }
.lyrics-panel::-webkit-scrollbar-thumb { background: rgba(255,204,0,0.3); border-radius: 3px; }
.lyrics-line { font-size: 13px; color: var(--muted); line-height: 2; }
.lyrics-unavailable { font-size: 12px; color: var(--muted); font-style: italic; text-align: center; }

/* ===== SECTIONS ===== */
.section { padding: 80px 20px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title { font-size: 26px; font-weight: 700; }
.section-subtitle { font-size: 14px; color: var(--muted); margin-top: 4px; margin-bottom: 30px; }

/* Ranking - Estilo tabla */
.ranking-grid {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.ranking-header {
  display: grid;
  grid-template-columns: 40px 50px 1.5fr 1.2fr 120px 40px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.ranking-row {
  display: grid;
  grid-template-columns: 40px 50px 1.5fr 1.2fr 120px 40px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  transition: background 0.2s;
}

.ranking-row:hover {
  background: rgba(255,255,255,0.03);
}

.ranking-row:last-child { border-bottom: none; }

.rr-num {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.rr-num.gold { color: #ffcc00; }
.rr-num.silver { color: #c0c0c0; }
.rr-num.bronze { color: #cd7f32; }

.rr-cover {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: cover;
}

.rr-title {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 10px;
}

.rr-artist {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rr-votes {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rr-votes button {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s;
  padding: 4px;
}
.rr-votes button:hover { transform: scale(1.3); }

.rr-score {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  min-width: 30px;
  text-align: center;
}

.trend-icon { font-size: 12px; text-align: center; }
.trend-up { color: #00e676; }
.trend-down { color: #ff4444; }
.trend-new { color: var(--gold); }
.trend-same { color: var(--muted); }

/* Noticias / Farandula */
.noticias-bg { background: var(--dark2); }

.noticias-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.noticia-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  aspect-ratio: 4/3;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text);
  display: block;
}

.noticia-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,204,0,0.2);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.noticia-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.noticia-card .noticia-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.noticia-card .noticia-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
}

.noticia-card .noticia-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.noticia-card .noticia-source {
  font-size: 11px;
  color: var(--gold);
  margin-top: 6px;
  font-weight: 500;
}

/* Eventos */
/* Eventos - mismo tamaño que galería */
.eventos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.eventos-grid .galeria-item {
  aspect-ratio: 1/1;
}

/* Galería - 4x2 = 8 */
.galeria-bg { background: var(--dark2); }

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.galeria-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}

.galeria-item:hover {
  transform: scale(1.03);
  border-color: rgba(255,204,0,0.3);
}

.galeria-item.is-video { position: relative; }
.video-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  pointer-events: none;
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.galeria-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
}
.galeria-placeholder span { font-size: 36px; opacity: 0.4; }
.galeria-placeholder p { font-size: 13px; color: var(--muted); }

/* Botón Ver más */
.ver-mas-btn {
  display: block;
  margin: 24px auto 0;
  padding: 12px 32px;
  background: rgba(255,204,0,0.1);
  border: 1px solid rgba(255,204,0,0.3);
  border-radius: 24px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.ver-mas-btn:hover {
  background: rgba(255,204,0,0.2);
  border-color: var(--gold);
  transform: scale(1.03);
}

/* ===== FOOTER ===== */
.footer-main { background: rgba(4,4,10,1); padding: 60px 20px 20px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }
.footer-logo { width: 100px; }
.footer-slogan { font-size: 12px; color: var(--muted); margin-top: 8px; }
.footer-col h3 { font-size: 13px; color: var(--gold); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col p { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.social-icons { display: flex; gap: 8px; }
.social-icons a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 11px; font-weight: 700; transition: all 0.3s; }
.social-icons a[aria-label="Instagram"] { color: #e1306c; }
.social-icons a[aria-label="Instagram"]:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; border-color: transparent; transform: scale(1.15); box-shadow: 0 4px 15px rgba(225,48,108,0.4); }
.social-icons a[aria-label="X"] { color: #fff; }
.social-icons a[aria-label="X"]:hover { background: #000; color: #fff; border-color: #444; transform: scale(1.15); box-shadow: 0 4px 15px rgba(0,0,0,0.4); }
.social-icons a[aria-label="Threads"] { color: #fff; }
.social-icons a[aria-label="Threads"]:hover { background: #000; color: #fff; border-color: #444; transform: scale(1.15); box-shadow: 0 4px 15px rgba(0,0,0,0.4); }
.social-icons a[aria-label="Facebook"] { color: #1877f2; }
.social-icons a[aria-label="Facebook"]:hover { background: #1877f2; color: #fff; border-color: transparent; transform: scale(1.15); box-shadow: 0 4px 15px rgba(24,119,242,0.4); }
.social-icons a[aria-label="WhatsApp"] { color: #25d366; }
.social-icons a[aria-label="WhatsApp"]:hover { background: #25d366; color: #fff; border-color: transparent; transform: scale(1.15); box-shadow: 0 4px 15px rgba(37,211,102,0.4); }
.footer-bottom { text-align: center; margin-top: 40px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.25); }

/* ===== FIXED PLAYER ===== */
.fixed-player {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--player-h);
  background: rgba(10, 10, 20, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.06);
  z-index: 300;
}

.fp-inner {
  max-width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  position: relative;
}

/* Izquierda: cover + canción */
.fp-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.fp-cover { width: 42px; height: 42px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }

.fp-song {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fp-song #fpTitle { font-weight: 600; }
.fp-sep { color: var(--muted); font-size: 10px; }
.fp-artist-text { color: var(--muted); font-size: 12px; }

/* Centro: Logo + Nombre + WA — centrado absoluto */
.fp-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

.fp-logo-mini {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  object-fit: contain;
}

.fp-brand {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

/* Derecha */
.fp-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.fp-play {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #ff8800);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(255,204,0,0.3);
}
.fp-play:hover { transform: scale(1.08); }
.fp-play.playing { background: linear-gradient(135deg, var(--red), #ff4444); box-shadow: 0 4px 12px rgba(213,0,0,0.3); }

.fp-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.fp-live-badge.active {
  color: #00e676;
}

.fp-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s;
}

.fp-live-badge.active .fp-live-dot {
  background: #00e676;
  animation: pulse-live 1.5s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.fp-now-song { display: none; }

.fp-vol-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 4px;
  transition: color 0.3s;
}
.fp-vol-btn:hover { color: var(--text); }

.fp-vol-slider {
  width: 80px;
  -webkit-appearance: none;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  outline: none;
}
.fp-vol-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); cursor: pointer; }
.fp-vol-slider::-moz-range-thumb { width: 12px; height: 12px; border-radius: 50%; background: var(--gold); border: none; cursor: pointer; }

.fp-vol-pct { font-size: 11px; color: var(--muted); min-width: 28px; }

.fp-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: #25d366;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.3s;
}
.fp-wa-btn:hover { background: #1fb855; transform: scale(1.05); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { display: none; position: absolute; top: 60px; left: 0; right: 0; background: rgba(8,8,18,0.98); padding: 20px; flex-direction: column; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.05); z-index: 200; }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  
  .hero { padding-top: 72px; padding-bottom: 20px; }
  .hero-logo { width: 160px; margin-bottom: 0; }
  .hero-tagline { font-size: 11px; letter-spacing: 2px; margin-bottom: 10px; }
  .hero-now-playing { display: none; }
  
  .header-inner { justify-content: space-between; }
  .header-logo { margin-right: auto; }
  .nav-toggle { margin-left: auto; }
  
  .now-playing-section { margin-top: -20px; padding: 0 12px; }
  .now-playing-card { flex-direction: column; text-align: center; padding: 16px; gap: 12px; }
  .np-left { flex-direction: column; align-items: center; }
  .np-cover img { width: 100px; height: 100px; }
  .np-info { text-align: center; }
  .np-info h3 { font-size: 16px; }
  .np-center-btn { margin: 8px 0; }
  .np-right { align-items: center; width: 100%; }
  .np-actions { justify-content: center; }
  .np-right .social-icons { justify-content: center; }
  
  .section { padding: 50px 14px; }
  .section-title { font-size: 20px; }
  .section-subtitle { font-size: 13px; }
  
  .ranking-header { display: none; }
  .ranking-row {
    grid-template-columns: 28px 36px 1fr auto 24px;
    padding: 10px 10px;
    gap: 8px;
  }
  .rr-artist { display: none; }
  .rr-title { font-size: 12px; }
  .rr-cover { width: 34px; height: 34px; border-radius: 4px; }
  .rr-num { font-size: 12px; }
  .rr-votes button { font-size: 12px; }
  .rr-score { font-size: 11px; min-width: 20px; }
  
  .noticias-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .noticia-card { aspect-ratio: 1/1; }
  .noticia-card .noticia-title { font-size: 12px; -webkit-line-clamp: 2; }
  
  .galeria-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .eventos-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  
  .footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-col { text-align: center; }
  .social-icons { justify-content: center; }
  
  /* Player fijo móvil */
  .fixed-player { height: 60px; }
  .fp-inner { padding: 0 12px; }
  .fp-left { max-width: 40%; }
  .fp-cover { width: 36px; height: 36px; }
  .fp-song { font-size: 11px; }
  .fp-song .fp-sep { display: none; }
  .fp-song .fp-artist-text { display: none; }
  .fp-center { display: none; }
  .fp-right { gap: 8px; }
  .fp-vol-slider { display: none; }
  .fp-vol-pct { display: none; }
  .fp-vol-btn { display: none; }
  .fp-wa-btn { padding: 5px 10px; font-size: 10px; }
  .fp-wa-btn span { display: none; }
  .fp-play { width: 36px; height: 36px; }
  .fp-live-badge { font-size: 10px; gap: 4px; }
  .fp-live-dot { width: 6px; height: 6px; }
  .fp-now-song { display: none; }
  
  body { padding-bottom: 60px; }
}

@media (max-width: 400px) {
  .hero-logo { width: 130px; }
  .hero-play-btn { padding: 10px 20px; font-size: 12px; }
  .np-cover img { width: 80px; height: 80px; }
  .np-info h3 { font-size: 14px; }
  .np-play-btn { padding: 8px 18px; font-size: 12px; }
  .galeria-grid { grid-template-columns: 1fr 1fr; }
  .eventos-grid { grid-template-columns: 1fr 1fr; }
  .ranking-row { grid-template-columns: 24px 30px 1fr auto 20px; padding: 8px; }
  .rr-cover { width: 28px; height: 28px; }
  .section-title { font-size: 18px; }
}

/* Tablets landscape */
@media (min-width: 769px) and (max-width: 1024px) {
  .fp-inner { padding: 0 20px; }
  .now-playing-card { max-width: 90%; }
  .ranking-row { grid-template-columns: 35px 45px 1.2fr 1fr 100px 35px; }
}
