/* ═══════════════════════════════════════
   VARIABLES Y BASE
═══════════════════════════════════════ */
:root {
  --bg:        #0d0d0d;
  --surface:   #161616;
  --card:      #1e1e1e;
  --card-high: #252525;
  --accent:    #e8703a;
  --accent-2:  #5b9bd5;
  --text:      #f0ece4;
  --muted:     #8a8070;
  --live:      #ff4444;
  --border:    rgba(240,236,228,0.07);
  --radius:    14px;
  --radius-sm: 8px;
  --t:         320ms ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

@media (pointer: fine) {
  body { cursor: none; }
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ═══════════════════════════════════════
   CURSOR PERSONALIZADO
═══════════════════════════════════════ */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 18px; height: 18px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  mix-blend-mode: exclusion;
}

.cursor.hovering {
  width: 36px; height: 36px;
  border-color: var(--text);
  opacity: 0.6;
}

@media (pointer: coarse) { .cursor { display: none; } }

/* ═══════════════════════════════════════
   GRAIN OVERLAY
═══════════════════════════════════════ */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════
   TIPOGRAFÍA
═══════════════════════════════════════ */
.syne { font-family: 'Syne Mono', monospace; }

h1, h2, h3 { font-weight: 600; line-height: 1.2; }

.section-title {
  font-family: 'Syne Mono', monospace;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text);
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 0.4rem;
}

/* ═══════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  min-width: 40px;
  max-width: 200px;
  opacity: 0.4;
}

/* ═══════════════════════════════════════
   BOTONES
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: var(--t);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #0d0d0d;
  font-weight: 600;
}

.btn--primary:hover { background: #f07d44; transform: translateY(-1px); }

.btn--outline {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════
   DOTS LIVE
═══════════════════════════════════════ */
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--live);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}

.live-dot-sm {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--live);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ═══════════════════════════════════════
   NAVEGACIÓN
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--t);
}

.nav.scrolled { background: rgba(13,13,13,0.97); }

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-text {
  font-family: 'Syne Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text);
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color var(--t);
  letter-spacing: 0.02em;
}

.nav__links a:hover { color: var(--text); }

.nav__menu-btn {
  display: none;
  padding: 4px;
  align-items: center;
  justify-content: center;
}

.nav__mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 4px;
  border-top: 1px solid var(--border);
}

.nav__mobile-menu a {
  padding: 12px 0;
  font-size: 1rem;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}

.nav__mobile-menu a:last-child { border-bottom: none; }
.nav__mobile-menu a:hover { color: var(--text); }

.nav__mobile-menu.open { display: flex; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 100px 24px 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__wave-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 1;
}

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

.bg-wave--1 { animation: waveDrift 7s ease-in-out infinite; }
.bg-wave--2 { animation: waveDrift 9s ease-in-out infinite reverse; }
.bg-wave--3 { animation: waveDrift 11s ease-in-out infinite 2s; }

/* Partículas flotantes */
.particles { position: absolute; inset: 0; }

.p {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: floatUp 8s ease-in-out infinite;
}

.p--1 { width: 3px; height: 3px; left: 12%; animation-delay: 0s; animation-duration: 10s; }
.p--2 { width: 2px; height: 2px; left: 28%; background: var(--accent-2); animation-delay: 1.5s; animation-duration: 8s; }
.p--3 { width: 4px; height: 4px; left: 45%; animation-delay: 3s; animation-duration: 12s; }
.p--4 { width: 2px; height: 2px; left: 62%; background: var(--accent-2); animation-delay: 0.8s; animation-duration: 9s; }
.p--5 { width: 3px; height: 3px; left: 76%; animation-delay: 2.2s; animation-duration: 11s; }
.p--6 { width: 2px; height: 2px; left: 88%; background: var(--accent-2); animation-delay: 4s; animation-duration: 7s; }
.p--7 { width: 4px; height: 4px; left: 20%; animation-delay: 5s; animation-duration: 13s; }
.p--8 { width: 2px; height: 2px; left: 55%; background: var(--accent-2); animation-delay: 6s; animation-duration: 10s; }

@keyframes floatUp {
  0% { transform: translateY(100vh); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-10vh); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.badge-live {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,68,68,0.12);
  border: 1px solid rgba(255,68,68,0.3);
  color: #ff6666;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.badge-freq {
  font-family: 'Syne Mono', monospace;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.hero__title {
  font-family: 'Syne Mono', monospace;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__title-radio {
  display: block;
  color: var(--muted);
  font-size: 0.45em;
  letter-spacing: 0.2em;
  margin-bottom: 4px;
  font-weight: 400;
}

.hero__title-name {
  display: block;
  background: linear-gradient(135deg, var(--text) 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--muted);
  margin-bottom: 36px;
  min-height: 1.8em;
  font-style: italic;
}

.tagline-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: cursorBlink 0.9s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ═══════════════════════════════════════
   PLAYER PRINCIPAL
═══════════════════════════════════════ */
.player {
  background: rgba(30,30,30,0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.player::before {
  content: '';
  position: absolute;
  top: -1px; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.player__track {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
}

.player__artwork {
  flex-shrink: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(232,112,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--card);
  transition: var(--t);
}

.artwork-svg { width: 100%; height: 100%; }

.player.playing .player__artwork { animation: spinDisc 12s linear infinite; }

@keyframes spinDisc {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.player__track-info { flex: 1; min-width: 0; }

.player__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ff6666;
  margin-bottom: 6px;
}

.player__now-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 2px;
}

.player__song {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player__artist {
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Visualizador */
.visualizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
  margin-bottom: 22px;
  justify-content: center;
}

.bar {
  width: 4px;
  height: 4px;
  background: linear-gradient(to top, var(--accent), var(--accent-2));
  border-radius: 3px 3px 0 0;
  transition: height 0.1s ease;
}

.visualizer.playing .bar { animation: barPulse 0.7s ease-in-out infinite alternate; }
.visualizer.playing .bar:nth-child(1)  { animation-delay: 0.00s; animation-duration: 0.62s; }
.visualizer.playing .bar:nth-child(2)  { animation-delay: 0.08s; animation-duration: 0.55s; }
.visualizer.playing .bar:nth-child(3)  { animation-delay: 0.16s; animation-duration: 0.70s; }
.visualizer.playing .bar:nth-child(4)  { animation-delay: 0.24s; animation-duration: 0.48s; }
.visualizer.playing .bar:nth-child(5)  { animation-delay: 0.32s; animation-duration: 0.65s; }
.visualizer.playing .bar:nth-child(6)  { animation-delay: 0.12s; animation-duration: 0.80s; }
.visualizer.playing .bar:nth-child(7)  { animation-delay: 0.20s; animation-duration: 0.58s; }
.visualizer.playing .bar:nth-child(8)  { animation-delay: 0.04s; animation-duration: 0.72s; }
.visualizer.playing .bar:nth-child(9)  { animation-delay: 0.28s; animation-duration: 0.50s; }
.visualizer.playing .bar:nth-child(10) { animation-delay: 0.36s; animation-duration: 0.68s; }
.visualizer.playing .bar:nth-child(11) { animation-delay: 0.14s; animation-duration: 0.60s; }
.visualizer.playing .bar:nth-child(12) { animation-delay: 0.22s; animation-duration: 0.76s; }

@keyframes barPulse {
  0%   { height: 4px; opacity: 0.5; }
  100% { height: 32px; opacity: 1; }
}

/* Controles del player */
.player__controls {
  display: flex;
  align-items: center;
  gap: 14px;
}

.play-btn {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t), transform var(--t);
}

.play-btn:hover { background: #f07d44; transform: scale(1.04); }
.play-btn:active { transform: scale(0.97); }

.play-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  pointer-events: none;
}

.play-btn.playing .play-ripple { animation: rippleOut 1.8s ease-out infinite; }

@keyframes rippleOut {
  0%   { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.4); opacity: 0; }
}

.play-icon { pointer-events: none; }

.play-icon--pause { display: none; }
.play-btn.playing .play-icon--play  { display: none; }
.play-btn.playing .play-icon--pause { display: block; }

/* Volumen */
.vol-control {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.vol-btn {
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color var(--t);
  flex-shrink: 0;
}

.vol-btn:hover { color: var(--text); }

.vol-icon--mute { display: none; }
.vol-btn.muted .vol-icon--on  { display: none; }
.vol-btn.muted .vol-icon--mute { display: block; }

.vol-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: rgba(240,236,228,0.12);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  transition: transform 0.15s ease;
}

.vol-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.vol-slider::-moz-range-thumb {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
}

.share-btn {
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: var(--t);
  flex-shrink: 0;
}

.share-btn:hover { color: var(--accent); border-color: var(--accent); }

.player__stream-msg {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  min-height: 1.2em;
}

.player__stream-msg.error { color: #ff7070; }

/* Visualización oceánica derecha */
.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__ocean-vis {
  width: 100%;
  max-width: 440px;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.vis-ring--1 { animation: ringPulse 4s ease-in-out infinite; transform-origin: 210px 210px; }
.vis-ring--2 { animation: ringPulse 5s ease-in-out infinite 0.6s; transform-origin: 210px 210px; }
.vis-ring--3 { animation: ringPulse 6s ease-in-out infinite 1.2s; transform-origin: 210px 210px; }
.vis-ring--4 { animation: ringPulse 7s ease-in-out infinite 1.8s; transform-origin: 210px 210px; }

.vis-wave--1 { animation: waveDrift 6s ease-in-out infinite; }
.vis-wave--2 { animation: waveDrift 8s ease-in-out infinite reverse; }
.vis-wave--3 { animation: waveDrift 10s ease-in-out infinite 1s; }

/* ═══════════════════════════════════════
   SECCIÓN: AHORA EN LA RADIO
═══════════════════════════════════════ */
.now-on {
  padding: 100px 0;
  background: var(--surface);
}

.now-on__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.now-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.now-card__artwork {
  position: relative;
  flex-shrink: 0;
  width: 110px; height: 110px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
}

.now-card__artwork svg { width: 100%; height: 100%; }

.playing-bars {
  position: absolute;
  bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 2px;
  opacity: 0;
  transition: opacity var(--t);
}

.playing-bars.active { opacity: 1; }

.playing-bars span {
  width: 3px; height: 10px;
  background: var(--accent);
  border-radius: 2px;
  animation: barPulse 0.6s ease-in-out infinite alternate;
}

.playing-bars span:nth-child(2) { animation-delay: 0.15s; }
.playing-bars span:nth-child(3) { animation-delay: 0.3s; }

.now-card__label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.now-card__song {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.now-card__program { color: var(--muted); font-size: 0.88rem; }
.now-card__status { font-size: 0.78rem; color: var(--accent); margin-top: 8px; }

.upcoming {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.upcoming__title {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.upcoming__list { display: flex; flex-direction: column; gap: 16px; }

.upcoming__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.upcoming__item:last-child { border-bottom: none; padding-bottom: 0; }

.upcoming__time {
  font-family: 'Syne Mono', monospace;
  font-size: 0.85rem;
  color: var(--accent);
  flex-shrink: 0;
  width: 44px;
  margin-top: 1px;
}

.upcoming__show { display: block; font-weight: 500; font-size: 0.9rem; }
.upcoming__host { display: block; font-size: 0.8rem; color: var(--muted); }

/* Ticker */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  margin: 0 -24px;
  position: relative;
}

.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}

.ticker__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: tickerScroll 35s linear infinite;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker__item {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0 20px;
  white-space: nowrap;
}

.ticker__dot {
  color: var(--accent);
  font-size: 1rem;
  opacity: 0.5;
}

.request-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════
   SECCIÓN: PROGRAMACIÓN
═══════════════════════════════════════ */
.schedule {
  padding: 100px 0;
  background: var(--bg);
}

.day-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.day-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--border);
  transition: var(--t);
  letter-spacing: 0.03em;
}

.day-btn:hover { color: var(--text); border-color: rgba(240,236,228,0.2); }

.day-btn.active {
  background: var(--accent);
  color: #0d0d0d;
  border-color: var(--accent);
  font-weight: 600;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.program-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  position: relative;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.program-card:hover {
  border-color: rgba(232,112,58,0.2);
  transform: translateY(-2px);
}

.program-card.hidden { display: none; }

.program-card__time {
  font-family: 'Syne Mono', monospace;
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.program-card__avatar {
  width: 54px; height: 54px;
}

.program-card__avatar svg { width: 100%; height: 100%; }

.program-card__name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.program-card__host {
  font-size: 0.82rem;
  color: var(--accent-2);
  margin-top: 2px;
}

.program-card__desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.55;
}

.program-card__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(232,112,58,0.1);
  color: var(--accent);
  border: 1px solid rgba(232,112,58,0.2);
}

/* ═══════════════════════════════════════
   SECCIÓN: COMUNIDAD
═══════════════════════════════════════ */
.community {
  padding: 100px 0;
  background: var(--surface);
}

.community__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.wall__title, .request-wrapper__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 20px;
}

.messages-list { display: flex; flex-direction: column; gap: 16px; }

.message-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: var(--t);
}

.message-card:hover { border-color: rgba(232,112,58,0.15); }

.message-card__avatar { flex-shrink: 0; width: 42px; height: 42px; }
.message-card__avatar svg { width: 100%; height: 100%; }

.message-card__name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}

.message-card__text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.55;
  margin-bottom: 8px;
}

.message-card__time {
  font-size: 0.74rem;
  color: var(--muted);
}

/* Formulario de petición */
.request-wrapper {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.request-form { display: flex; flex-direction: column; gap: 16px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-field label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.optional { font-weight: 400; opacity: 0.6; }

.form-field input, .form-field textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color var(--t);
  resize: vertical;
  outline: none;
}

.form-field input:focus, .form-field textarea:focus {
  border-color: var(--accent);
}

.form-field input::placeholder, .form-field textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

/* Estado de éxito del formulario */
.request-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px;
  text-align: center;
}

.success-icon { opacity: 0.9; }

.success-text {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.last-request-text {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Redes sociales */
.social-row {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.social-row__title {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
  transition: var(--t);
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link--ig:hover { color: #c7498f; border-color: #c7498f; }
.social-link--fb:hover { color: #4267b2; border-color: #4267b2; }
.social-link--tt:hover { color: #ffffff; border-color: #ffffff; }

/* ═══════════════════════════════════════
   SECCIÓN: NOTICIAS
═══════════════════════════════════════ */
.news {
  padding: 100px 0;
  background: var(--bg);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.news-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--t);
}

.news-card:hover {
  border-color: rgba(232,112,58,0.2);
  transform: translateY(-3px);
}

.news-card__visual {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-card__visual svg { width: 100%; height: 100%; }

.news-card__body { padding: 20px; }

.news-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(91,155,213,0.12);
  color: var(--accent-2);
  border: 1px solid rgba(91,155,213,0.2);
  margin-bottom: 12px;
}

.news-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--text);
}

.news-card__excerpt {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.news-card__date {
  font-size: 0.76rem;
  color: var(--muted);
  opacity: 0.7;
}

.news-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer__name {
  font-family: 'Syne Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--text);
}

.footer__slogan {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

.footer__freq {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer__freq strong { color: var(--accent); }

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.footer__nav a {
  font-size: 0.86rem;
  color: var(--muted);
  transition: color var(--t);
}

.footer__nav a:hover { color: var(--text); }

.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.footer__copy, .footer__made {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer__made {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer__heart { flex-shrink: 0; }

/* ═══════════════════════════════════════
   MINI PLAYER STICKY
═══════════════════════════════════════ */
.mini-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(22,22,22,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.mini-player:not([hidden]) { display: block; }
.mini-player.visible { transform: translateY(0); }

.mini-player__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 62px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.mini-player__logo { flex-shrink: 0; }

.mini-player__info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.mini-player__live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--live);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

.mini-player__song {
  font-size: 0.88rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-player__controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.mini-play-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
}

.mini-play-btn:hover { background: #f07d44; }

.mini-icon { pointer-events: none; }
.mini-icon--pause { display: none; }
.mini-player.playing .mini-icon--play  { display: none; }
.mini-player.playing .mini-icon--pause { display: block; }

.mini-vol {
  -webkit-appearance: none;
  appearance: none;
  width: 80px; height: 3px;
  background: rgba(240,236,228,0.12);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.mini-vol::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

/* ═══════════════════════════════════════
   WHATSAPP FAB
═══════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 88px; right: 24px;
  z-index: 95;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform var(--t), box-shadow var(--t);
}

.wa-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}

.mini-player.visible ~ .wa-fab { bottom: 82px; }

/* ═══════════════════════════════════════
   ANIMACIONES DE SCROLL REVEAL
═══════════════════════════════════════ */
.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__right { display: none; }

  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { padding: 90px 20px 60px; }

  .hero__title { font-size: clamp(2.8rem, 12vw, 4rem); }

  .player { padding: 20px; }

  .player__track { gap: 14px; }
  .player__artwork { width: 64px; height: 64px; }

  .now-on__grid { grid-template-columns: 1fr; }
  .community__grid { grid-template-columns: 1fr; }

  .programs-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__nav { align-items: flex-start; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .mini-vol { display: none; }

  .section-inner { padding: 0 20px; }

  .wa-fab { bottom: 80px; right: 16px; }
}

@media (max-width: 480px) {
  .hero__badges { flex-wrap: wrap; }
  .programs-grid { gap: 14px; }
  .news-grid { gap: 16px; }
  .social-links { flex-direction: column; align-items: stretch; }
  .social-link { justify-content: center; }
  .day-filter { gap: 6px; }
  .day-btn { padding: 7px 14px; font-size: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
