/* ============================================================
   EMISORA PRO — Main Stylesheet
   Dark Radio/Podcast Design — v1.0
   ============================================================ */

/* ---- Variables ---- */
:root {
  --bg-primary:    #080d1a;
  --bg-secondary:  #0c1220;
  --bg-card:       #111827;
  --bg-card-2:     #131929;
  --bg-card-hover: #1a2035;
  --bg-nav:        #06090f;
  --purple:        #7c3aed;
  --purple-light:  #9333ea;
  --purple-dark:   #5b21b6;
  --cyan:          #06b6d4;
  --cyan-light:    #22d3ee;
  --white:         #ffffff;
  --gray-100:      #f1f5f9;
  --gray-400:      #94a3b8;
  --gray-600:      #64748b;
  --gray-800:      #1e293b;
  --border:        rgba(124,58,237,.18);
  --border-cyan:   rgba(6,182,212,.18);
  --grad-main:     linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
  --grad-purple:   linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
  --grad-card:     linear-gradient(135deg, rgba(124,58,237,.08), rgba(6,182,212,.04));
  --shadow-purple: 0 0 30px rgba(124,58,237,.35);
  --shadow-cyan:   0 0 30px rgba(6,182,212,.35);
  --shadow-card:   0 8px 32px rgba(0,0,0,.4);
  --radius:        12px;
  --radius-lg:     18px;
  --radius-sm:     8px;
  --transition:    .25s ease;
  --header-h:      82px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-primary);
  color: var(--white);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
.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;
}

/* ---- Typography ---- */
.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-purple { color: var(--purple-light); }
.text-cyan   { color: var(--cyan); }
.text-muted  { color: var(--gray-400); }
.section-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(6,9,15,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.navbar-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.navbar-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-card);
  transition: transform var(--transition);
}
.navbar-brand:hover .navbar-logo,
.navbar-brand:hover .navbar-logo-placeholder { transform: scale(1.05); }
.navbar-logo-placeholder {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--grad-main);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.5rem; color: #fff;
  transition: transform var(--transition);
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: .1rem;
  margin: 0 auto;
}
.navbar-nav a {
  padding: .5rem .75rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-400);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
  white-space: nowrap;
}
.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--white);
}
.navbar-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--grad-main);
  border-radius: 2px;
}
.navbar-more { position: relative; }
.navbar-more-btn {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem .75rem;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-400);
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.navbar-more-btn i { font-size: .6rem; transition: transform var(--transition); }
.navbar-more-btn:hover,
.navbar-more-btn.active { color: var(--white); }
.navbar-more.open .navbar-more-btn { color: var(--white); background: rgba(255,255,255,.05); }
.navbar-more.open .navbar-more-btn i { transform: rotate(180deg); }
.navbar-more-panel {
  position: absolute;
  top: calc(100% + .7rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 190px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: .4rem;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 10;
}
.navbar-more.open .navbar-more-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.navbar-more-panel a {
  padding: .55rem .8rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  color: var(--gray-400);
  border-radius: 6px;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.navbar-more-panel a:hover,
.navbar-more-panel a.active {
  color: var(--white);
  background: rgba(124,58,237,.14);
}
.navbar-social {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.navbar-social a {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  font-size: .85rem;
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
}
.navbar-social a:hover { color: #fff; background: var(--border); }
.btn-live {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.1rem;
  background: var(--grad-main);
  border: none;
  border-radius: 24px;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(124,58,237,.5);
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}
.btn-live:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(124,58,237,.65); }
.btn-live .live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: pulse-dot 1.4s infinite;
}
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .3rem;
  margin-left: auto;
}
.navbar-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  margin-top: var(--header-h);
  overflow: hidden;
  background: var(--bg-secondary);
}
.hero-slider {
  display: flex;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.hero-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 480px;
  padding: 3rem 6vw;
  gap: 2rem;
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(124,58,237,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-badge .dot {
  color: var(--purple-light);
}
.hero-badge .part-purple { color: var(--purple-light); }
.hero-badge .part-cyan   { color: var(--cyan); }
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .4rem;
}
.hero-title .gradient-line {
  display: block;
  font-style: italic;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stars {
  color: var(--purple-light);
  font-size: .85rem;
  letter-spacing: .3em;
  margin: .6rem 0;
}
.hero-desc {
  font-size: .9rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1.6rem;
  line-height: 1.5;
}
.hero-desc span { color: var(--cyan); }
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.8rem;
  background: var(--grad-main);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(124,58,237,.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,.7); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.8rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 50px;
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: var(--purple-light); background: rgba(124,58,237,.12); }
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.hero-image img {
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(124,58,237,.5));
  animation: float 4s ease-in-out infinite;
}
.hero-image-glow {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.25) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}
/* Slider controls */
.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  backdrop-filter: blur(8px);
}
.hero-arrow:hover { background: rgba(124,58,237,.5); border-color: var(--purple); }
.hero-arrow.prev { left: 1.5rem; }
.hero-arrow.next { right: 1.5rem; }
.hero-dots {
  position: absolute;
  bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.hero-dot.active { background: var(--purple-light); transform: scale(1.3); }

/* ============================================================
   RADIO PLAYER BAR
   ============================================================ */
.player-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .8rem 0;
}
.player-bar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: auto auto 1fr auto auto auto auto;
  align-items: center;
  gap: 1.5rem;
}
.player-label {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  flex-shrink: 0;
}
.player-label-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--purple-light);
  text-transform: uppercase;
}
.player-label-text {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-400);
}
.player-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-main);
  border: none;
  color: #fff;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(124,58,237,.5);
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}
.player-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(124,58,237,.7); }
.player-info {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  flex-shrink: 0;
}
.player-info-now {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-600);
  font-weight: 600;
}
.player-info-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}
.player-info-sub {
  font-size: .75rem;
  color: var(--gray-400);
}
.player-badge-live {
  padding: .25rem .7rem;
  background: rgba(124,58,237,.2);
  border: 1px solid rgba(124,58,237,.4);
  border-radius: 20px;
  font-size: .65rem;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: .1em;
  flex-shrink: 0;
}
.player-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
  flex-shrink: 0;
}
.eq-bar {
  width: 4px;
  background: linear-gradient(to top, var(--purple), var(--cyan));
  border-radius: 2px;
  animation: eq-anim var(--dur, .8s) ease-in-out infinite alternate;
}
.eq-bar:nth-child(1) { --h: 40%; --dur: .7s; }
.eq-bar:nth-child(2) { --h: 70%; --dur: .5s; }
.eq-bar:nth-child(3) { --h: 55%; --dur: .9s; }
.eq-bar:nth-child(4) { --h: 90%; --dur: .6s; }
.eq-bar:nth-child(5) { --h: 65%; --dur: .8s; }
.eq-bar:nth-child(6) { --h: 45%; --dur: .4s; }
.eq-bar:nth-child(7) { --h: 80%; --dur: .7s; }
.eq-bar:nth-child(8) { --h: 50%; --dur: .5s; }
.eq-bar:nth-child(9) { --h: 75%; --dur: .9s; }
.eq-bar:nth-child(10){ --h: 35%; --dur: .6s; }
.eq-bar:nth-child(11){ --h: 85%; --dur: .8s; }
.eq-bar:nth-child(12){ --h: 60%; --dur: .7s; }
.player-volume {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.volume-icon { color: var(--gray-400); font-size: .9rem; }
.volume-slider {
  -webkit-appearance: none;
  width: 90px;
  height: 4px;
  background: rgba(255,255,255,.15);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--purple-light);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(124,58,237,.6);
}
.player-listeners {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .1rem;
  flex-shrink: 0;
}
.player-listeners-label {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-600);
  font-weight: 600;
}
.player-listeners-count {
  font-size: 1.25rem;
  font-weight: 900;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.player-listeners-icon {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  color: var(--gray-400);
}

/* ============================================================
   LAYOUT / SECTIONS
   ============================================================ */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 3rem 0;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.section-header-left {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.section-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--grad-main);
  box-shadow: 0 0 10px var(--purple);
}
.link-all {
  font-size: .78rem;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: .06em;
  transition: color var(--transition);
}
.link-all:hover { color: var(--cyan); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(124,58,237,.4);
  box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 20px rgba(124,58,237,.15);
}
.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg-secondary);
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.card:hover .card-img img { transform: scale(1.05); }
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
}
.card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(124,58,237,.85);
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
  backdrop-filter: blur(4px);
}
.card:hover .card-play { transform: translate(-50%,-50%) scale(1.12); background: var(--purple); }
.card-duration {
  position: absolute;
  bottom: .5rem; right: .5rem;
  background: rgba(0,0,0,.75);
  padding: .2rem .5rem;
  border-radius: var(--radius-sm);
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
}
.card-badge {
  position: absolute;
  top: .6rem; left: .6rem;
  background: rgba(124,58,237,.85);
  padding: .2rem .55rem;
  border-radius: 4px;
  font-size: .62rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: .3rem;
}
.card-body {
  padding: 1rem;
}
.card-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-sub {
  font-size: .78rem;
  color: var(--gray-400);
  line-height: 1.4;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.card-meta-tag {
  font-size: .65rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: flex; align-items: center; gap: .3rem;
}

/* ============================================================
   ENTREVISTA DESTACADA
   ============================================================ */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.featured-interview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.featured-interview-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.featured-interview-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.featured-interview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.featured-interview-badge {
  font-size: .62rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: .5rem;
}
.featured-interview-names {
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.featured-interview-names .x {
  color: var(--purple-light);
}
.featured-interview-sub {
  font-size: .72rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}
.featured-interview-play {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.featured-interview-play:hover { background: rgba(124,58,237,.7); }
.featured-interview-dots {
  display: flex;
  gap: .4rem;
  padding: .75rem 1.25rem;
}
.featured-interview-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  cursor: pointer;
}
.featured-interview-dots span.active { background: var(--purple-light); }
.btn-ver-entrevista {
  display: inline-block;
  padding: .4rem 1rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .06em;
  transition: background var(--transition), border-color var(--transition);
  margin-top: .5rem;
}
.btn-ver-entrevista:hover { background: rgba(124,58,237,.3); border-color: var(--purple-light); }

/* Video grid */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

/* ============================================================
   PODCAST LIST
   ============================================================ */
.podcast-list { display: flex; flex-direction: column; gap: .6rem; }
.podcast-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
}
.podcast-item:hover { border-color: rgba(124,58,237,.4); background: var(--bg-card-hover); }
.podcast-thumb {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-secondary);
}
.podcast-meta { flex: 1; min-width: 0; }
.podcast-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.podcast-sub {
  font-size: .72rem;
  color: var(--gray-400);
  margin-top: .15rem;
}
.podcast-dur {
  font-size: .72rem;
  color: var(--gray-600);
  flex-shrink: 0;
}
.podcast-play-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--purple-light);
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.podcast-item:hover .podcast-play-btn { background: var(--purple); border-color: var(--purple); color: #fff; }

/* ============================================================
   GÉNEROS
   ============================================================ */
.genres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.genre-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 100px;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.genre-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.5); }
.genre-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}
.genre-card:hover .genre-card-bg { transform: scale(1.07); }
.genre-card-overlay {
  position: absolute;
  inset: 0;
}
.genre-card-content {
  position: relative;
  z-index: 2;
  flex: 1;
}
.genre-card-name {
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: .3rem;
}
.genre-card-desc { font-size: .78rem; color: rgba(255,255,255,.75); }
.genre-card-arrow {
  position: relative;
  z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .85rem;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}

/* ============================================================
   NOTICIAS / BLOG
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.news-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,.4); }
.news-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-secondary);
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 1.2rem; }
.news-category {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cyan);
  margin-bottom: .5rem;
  display: flex; align-items: center; gap: .3rem;
}
.news-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-excerpt {
  font-size: .8rem;
  color: var(--gray-400);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.news-date { font-size: .72rem; color: var(--gray-600); }
.news-read-more {
  font-size: .72rem;
  font-weight: 700;
  color: var(--purple-light);
  display: flex; align-items: center; gap: .3rem;
  transition: color var(--transition);
}
.news-read-more:hover { color: var(--cyan); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  position: relative;
  background: #060810;
  border-top: 1px solid var(--border);
  padding: 4rem 0 1.5rem;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-main);
  opacity: .8;
}
footer::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.08) 0%, transparent 70%);
  top: -250px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(auto-fit, minmax(160px, 1fr));
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand {}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.footer-logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-main);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: #fff;
}
.footer-brand-name {
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer-tagline {
  font-size: .82rem;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 1rem;
}
.footer-live-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .8rem;
  background: rgba(124,58,237,.1);
  border: 1px solid rgba(124,58,237,.3);
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--purple-light);
  margin-bottom: 1.25rem;
}
.footer-live-badge .live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-glow 1.6s ease-in-out infinite;
}
.footer-heading {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-heading::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad-main);
  box-shadow: 0 0 8px var(--purple);
  flex-shrink: 0;
}
.footer-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-links a {
  font-size: .83rem;
  color: var(--gray-400);
  transition: color var(--transition), transform var(--transition);
  display: flex; align-items: center; gap: .4rem;
}
.footer-links a:hover { color: var(--white); transform: translateX(3px); }
.footer-social-row {
  display: flex;
  gap: .6rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--gray-400);
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.footer-social-btn:hover { background: var(--grad-main); border-color: var(--purple); color: #fff; transform: translateY(-3px); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .82rem;
  color: var(--gray-400);
  margin-bottom: .8rem;
}
.footer-contact-item i {
  width: 30px; height: 30px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--purple-light);
  font-size: .78rem;
}
.footer-apps { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.25rem; }
.app-badge {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.app-badge:hover { border-color: var(--purple); background: rgba(124,58,237,.1); transform: translateY(-2px); }
.app-badge i { font-size: 1.4rem; color: var(--white); }
.app-badge-text { display: flex; flex-direction: column; }
.app-badge-sub { font-size: .58rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: .08em; }
.app-badge-name { font-size: .85rem; font-weight: 700; }
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: .78rem; color: var(--gray-600); }
.footer-copy span { color: var(--purple-light); }
.footer-legal-links { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal-links a {
  font-size: .75rem;
  color: var(--gray-600);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: var(--purple-light); }
.footer-legal-sep { color: var(--gray-600); opacity: .5; font-size: .7rem; }
.footer-credit { font-size: .75rem; color: var(--gray-600); }
.footer-credit span { color: var(--purple-light); font-weight: 600; }

/* Back-to-top */
.back-to-top {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--gray-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 750;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition), color var(--transition), visibility var(--transition);
  box-shadow: var(--shadow-card);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--grad-main); color: #fff; border-color: var(--purple); }

/* ============================================================
   INDIVIDUAL PAGE LAYOUTS
   ============================================================ */
.page-hero {
  padding: 4rem 0 2.5rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  margin-top: var(--header-h);
}
.page-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.page-hero-sub { font-size: .95rem; color: var(--gray-400); margin-top: .5rem; }
.page-content { padding: 3rem 0; }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: .4rem;
}
.form-control {
  width: 100%;
  padding: .8rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,.2);
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* Pagination */
.pagination {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.page-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--gray-400);
  font-size: .85rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.page-link:hover, .page-link.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-header { text-align: center; padding: 3rem 0 2rem; }
.post-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  max-width: 800px;
  margin: 0 auto 1rem;
}
.post-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: .82rem;
  color: var(--gray-400);
  flex-wrap: wrap;
}
.post-featured-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 500px;
  margin: 2rem 0;
}
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.post-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #cbd5e1;
}
.post-content h2 { color: #fff; font-size: 1.4rem; margin: 2rem 0 .75rem; }
.post-content h3 { color: #fff; font-size: 1.15rem; margin: 1.5rem 0 .5rem; }
.post-content p { margin-bottom: 1.2rem; }
.post-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.post-content a { color: var(--purple-light); text-decoration: underline; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.post-content li { margin-bottom: .4rem; }
.post-video-embed {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2rem 0;
  background: #000;
}
.post-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%       { transform: scale(1.1); opacity: 1; }
}
@keyframes eq-anim {
  from { height: 20%; }
  to   { height: var(--h, 70%); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   UTILITIES
   ============================================================ */
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.text-center { text-align: center; }
.w-100 { width: 100%; }
.hidden { display: none !important; }
.badge {
  display: inline-block;
  padding: .2rem .55rem;
  border-radius: 4px;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.badge-purple { background: rgba(124,58,237,.2); color: var(--purple-light); border: 1px solid rgba(124,58,237,.3); }
.badge-cyan   { background: rgba(6,182,212,.2);  color: var(--cyan-light);   border: 1px solid rgba(6,182,212,.3); }

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.4s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-loading {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .hero-slide { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { display: none; }
  .featured-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .genres-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .player-bar-inner { grid-template-columns: auto auto 1fr auto auto auto; gap: 1rem; }
  .player-equalizer { display: none; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .navbar-logo, .navbar-logo-placeholder { width: 44px; height: 44px; font-size: 1.1rem; }
  .navbar-nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--bg-nav); flex-direction: column; padding: 1rem; border-bottom: 1px solid var(--border); max-height: calc(100vh - var(--header-h)); overflow-y: auto; }
  .navbar-nav.open { display: flex; }
  .navbar-toggle { display: flex; }
  .navbar-social { display: none; }
  .navbar-more-btn { width: 100%; justify-content: space-between; }
  .navbar-more-panel {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: none;
    padding: .25rem 0 0 1rem;
    display: none;
  }
  .navbar-more.open .navbar-more-panel { display: flex; }
  .video-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-title { font-size: 2rem; }
  .hero-title .gradient-line { font-size: 2.8rem; }
  .genres-grid { grid-template-columns: 1fr; }
  .player-bar-inner { grid-template-columns: auto auto 1fr auto; }
  .player-volume, .player-listeners { display: none; }
  .section { padding: 2rem 0; }
  .container { padding: 0 1rem; }
}
@media (max-width: 480px) {
  .hero-slide { padding: 2rem 1rem; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
}

/* ============================================================
   WHATSAPP FLOTANTE
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: wa-bounce 2.5s ease-in-out 3s 3;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37,211,102,.65);
}
.wa-float:hover .wa-float-tooltip { opacity:1; transform:translateY(0); pointer-events:auto; }
.wa-float-icon {
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}
.wa-float-tooltip {
  position: absolute;
  right: calc(100% + .6rem);
  top: 50%;
  transform: translateY(calc(-50% + 5px));
  background: #111827;
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: .35rem .75rem;
  border-radius: 6px;
  border: 1px solid rgba(37,211,102,.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.wa-float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #111827;
}
.wa-float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.5);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(1.55); opacity: 0; }
}
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Adjust WA button when audio player is open */
body.ap-open .wa-float { bottom: 5.5rem; }

/* ============================================================
   DESCARGA LA APP (CTA)
   ============================================================ */
.app-cta {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #0c1220 0%, #131929 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.app-cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,.12) 0%, transparent 70%);
  top: 50%; right: -220px;
  transform: translateY(-50%);
  pointer-events: none;
}
.app-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
.app-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem;
  background: rgba(6,182,212,.12);
  border: 1px solid rgba(6,182,212,.3);
  border-radius: 20px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--cyan-light);
  margin-bottom: 1.1rem;
}
.app-cta-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.app-cta-desc {
  color: var(--gray-400);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 480px;
}
.app-cta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}
.app-badge-lg { padding: .85rem 1.3rem; }
.app-badge-lg i { font-size: 1.7rem; }
.app-badge-lg .app-badge-name { font-size: .95rem; }
.app-cta-visual { display: flex; justify-content: center; }
.app-cta-phone {
  width: 200px; height: 400px;
  border-radius: 36px;
  background: linear-gradient(160deg, #1a2035, #0c1220);
  border: 3px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-card), 0 0 60px rgba(124,58,237,.25);
  display: flex; align-items: center; justify-content: center;
}
.app-cta-phone-screen {
  position: relative;
  width: 170px; height: 370px;
  border-radius: 26px;
  background: var(--grad-main);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: #fff;
  opacity: .92;
}
.app-cta-phone-screen .live-dot {
  position: absolute;
  top: 16px; right: 16px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse-glow 1.6s ease-in-out infinite;
}
@media (max-width: 900px) {
  .app-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .app-cta-badges { justify-content: center; }
  .app-cta-desc { max-width: none; }
  .app-cta-visual { display: none; }
}

/* ============================================================
   CHAT EN VIVO (widget flotante)
   ============================================================ */
.chat-bubble {
  position: fixed;
  right: 1.75rem;
  bottom: 6.5rem;
  z-index: 9998;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--grad-main);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(124,58,237,.5);
  cursor: pointer;
  transition: transform var(--transition);
}
.chat-bubble:hover { transform: scale(1.08); }
.chat-bubble-badge {
  position: absolute;
  top: -3px; right: -3px;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: #ef4444;
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bg-primary);
}
.chat-panel {
  position: fixed;
  right: 1.5rem;
  bottom: 6.5rem;
  z-index: 9997;
  width: 370px;
  max-width: calc(100vw - 2rem);
  height: 520px;
  max-height: calc(100vh - 8rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.97);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.chat-panel.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.chat-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--grad-main);
  color: #fff;
  flex-shrink: 0;
}
.chat-panel-heading strong { display: block; font-size: .92rem; }
.chat-panel-sub { display: flex; align-items: center; gap: .4rem; font-size: .7rem; opacity: .9; margin-top: .15rem; }
.chat-panel-sub .live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: pulse-glow 1.6s ease-in-out infinite;
}
.chat-panel-close {
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.chat-panel-close:hover { background: rgba(255,255,255,.3); }
.chat-panel-tabs { display: flex; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.chat-tab {
  flex: 1;
  padding: .7rem;
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.chat-tab.active { color: var(--white); border-bottom-color: var(--purple); }
.chat-tab-panel { display: none; flex: 1; min-height: 0; flex-direction: column; }
.chat-tab-panel.active { display: flex; }
.chat-name-setup { padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.chat-name-setup p { font-size: .8rem; color: var(--gray-400); }
.chat-name-setup input {
  padding: .65rem .9rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card-2);
  color: #fff;
  font-size: .85rem;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  min-height: 0;
}
.chat-msg { display: flex; flex-direction: column; gap: .25rem; }
.chat-msg-meta { display: flex; align-items: center; gap: .5rem; font-size: .68rem; }
.chat-msg-name { font-weight: 700; color: var(--purple-light); }
.chat-msg-time { color: var(--gray-600); }
.chat-msg-bubble {
  background: var(--bg-card-2);
  border-radius: 10px;
  padding: .55rem .8rem;
  font-size: .83rem;
  color: #e2e8f0;
  line-height: 1.5;
  align-self: flex-start;
  max-width: 88%;
  word-break: break-word;
}
.chat-msg-admin .chat-msg-bubble {
  background: rgba(124,58,237,.18);
  border: 1px solid rgba(124,58,237,.35);
}
.chat-system-note { text-align: center; font-size: .72rem; color: #f87171; padding: .3rem; }
.chat-form {
  display: flex;
  gap: .6rem;
  padding: .85rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.chat-form input {
  flex: 1;
  padding: .6rem .9rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--bg-card-2);
  color: #fff;
  font-size: .83rem;
}
.chat-form button {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad-main);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.request-form {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  overflow-y: auto;
}
.request-form input, .request-form textarea {
  padding: .65rem .9rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card-2);
  color: #fff;
  font-size: .85rem;
  font-family: inherit;
  resize: vertical;
}
.request-result { padding: 0 1.25rem 1rem; font-size: .8rem; display: none; }
.request-result.show { display: block; }
.request-result.ok  { color: #22c55e; }
.request-result.err { color: #f87171; }

@media (max-width: 480px) {
  .chat-bubble { right: 1.25rem; bottom: 5.5rem; }
  .chat-panel  { right: .75rem; left: .75rem; width: auto; bottom: 6rem; height: 70vh; }
}

/* ============================================================
   NOW PLAYING
   ============================================================ */
.player-info-nowplaying {
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--cyan-light);
  margin-top: .3rem;
}
.player-info-nowplaying i { font-size: .72rem; }
.now-playing-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.1rem;
  background: rgba(6,182,212,.1);
  border: 1px solid rgba(6,182,212,.3);
  border-radius: 20px;
  font-size: .82rem;
  color: var(--cyan-light);
  font-weight: 600;
}

/* ============================================================
   PÁGINAS LEGALES
   ============================================================ */
.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 2rem 0 .75rem;
  color: var(--white);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1rem; font-weight: 700; margin: 1.5rem 0 .5rem; color: var(--white); }
.legal-content p { color: var(--gray-400); line-height: 1.8; margin-bottom: 1rem; font-size: .92rem; }
.legal-content ul, .legal-content ol { color: var(--gray-400); line-height: 1.8; margin: 0 0 1rem 1.25rem; font-size: .92rem; }
.legal-content a { color: var(--cyan-light); text-decoration: underline; }

/* ============================================================
   TOP CANCIONES
   ============================================================ */
.active-filter { background: rgba(124,58,237,.15); border-color: var(--purple-light); color: var(--white); }
.top-songs-list { display: flex; flex-direction: column; gap: .75rem; }
.top-song-row {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.top-song-podium { border-color: rgba(245,158,11,.35); background: rgba(245,158,11,.05); }
.top-song-rank {
  width: 40px;
  flex-shrink: 0;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--gray-600);
}
.top-song-podium .top-song-rank { font-size: 1.6rem; }
.top-song-info { flex: 1; min-width: 0; }
.top-song-title { font-size: .95rem; font-weight: 700; color: var(--white); }
.top-song-artist { font-size: .8rem; color: var(--gray-400); margin-top: .15rem; }
.top-song-count { text-align: right; flex-shrink: 0; }
.top-song-count span { display: block; font-size: 1.1rem; font-weight: 900; color: var(--purple-light); }
.top-song-count small { font-size: .68rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: .06em; }

/* ============================================================
   POPUP INSTALAR APP (PWA)
   ============================================================ */
.pwa-install-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(6,9,15,.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.pwa-install-backdrop.show { opacity: 1; visibility: visible; }
.pwa-install-modal {
  position: relative;
  width: 100%;
  max-width: 340px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), var(--shadow-purple);
  padding: 2rem 1.75rem 1.75rem;
  text-align: center;
  transform: translateY(12px) scale(.96);
  transition: transform .25s ease;
}
.pwa-install-backdrop.show .pwa-install-modal { transform: translateY(0) scale(1); }
.pwa-install-close {
  position: absolute;
  top: .75rem; right: .75rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  transition: background var(--transition), color var(--transition);
}
.pwa-install-close:hover { background: rgba(255,255,255,.12); color: #fff; }
.pwa-install-logo {
  width: 72px; height: 72px;
  border-radius: 20px;
  object-fit: cover;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 24px rgba(124,58,237,.4);
}
.pwa-install-title { font-size: 1.05rem; font-weight: 800; margin-bottom: .5rem; color: var(--white); }
.pwa-install-desc { font-size: .84rem; color: var(--gray-400); line-height: 1.6; margin-bottom: 1.25rem; }
.pwa-install-btn {
  width: 100%;
  padding: .8rem 1rem;
  background: var(--grad-main);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  box-shadow: 0 4px 16px rgba(124,58,237,.4);
  transition: transform var(--transition);
}
.pwa-install-btn:hover { transform: translateY(-1px); }
.pwa-ios-steps { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.25rem; }
.pwa-ios-step {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .6rem .8rem;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .8rem;
  color: var(--gray-400);
  text-align: left;
}
.pwa-ios-step i { color: var(--purple-light); font-size: 1rem; flex-shrink: 0; width: 20px; text-align: center; }
.pwa-ios-step strong { color: var(--white); }
.pwa-install-later {
  background: none;
  border: none;
  color: var(--gray-600);
  font-size: .78rem;
  cursor: pointer;
  margin-top: .25rem;
  transition: color var(--transition);
}
.pwa-install-later:hover { color: var(--gray-400); }

/* ============================================================
   NEWSLETTER CTA
   ============================================================ */
.newsletter-cta {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(6,182,212,.06));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.newsletter-cta-text h3 {
  font-size: 1.15rem;
  font-weight: 800;
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: .3rem;
}
.newsletter-cta-text h3 i { color: var(--purple-light); }
.newsletter-cta-text p { font-size: .88rem; color: var(--gray-400); }
.newsletter-cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  flex-shrink: 0;
}
.newsletter-cta-form input {
  padding: .8rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: #fff;
  font-size: .88rem;
  min-width: 240px;
}
.newsletter-cta-form button {
  padding: .8rem 1.3rem;
  border-radius: 10px;
  border: none;
  background: var(--grad-main);
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  display: flex; align-items: center; gap: .5rem;
  white-space: nowrap;
  transition: transform var(--transition);
}
.newsletter-cta-form button:hover { transform: translateY(-1px); }
.newsletter-cta-form .form-result { flex-basis: 100%; margin-top: 0 !important; }

/* ============================================================
   SPONSORS
   ============================================================ */
.sponsors-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 150px;
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  filter: grayscale(0);
  opacity: .9;
  transition: transform var(--transition), opacity var(--transition);
}
.sponsor-logo:hover { transform: translateY(-3px); opacity: 1; }
.sponsor-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ============================================================
   EVENTOS
   ============================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.event-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.event-card:hover { transform: translateY(-4px); border-color: rgba(124,58,237,.4); }
.event-card-past { opacity: .6; }
.event-card-date {
  position: absolute;
  top: .85rem; left: .85rem;
  z-index: 2;
  width: 52px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  padding: .4rem .3rem;
  box-shadow: var(--shadow-card);
}
.event-card-day { display: block; font-size: 1.2rem; font-weight: 900; color: var(--white); line-height: 1.1; }
.event-card-month { display: block; font-size: .62rem; font-weight: 700; color: var(--purple-light); text-transform: uppercase; letter-spacing: .06em; }
.event-card-img { height: 160px; overflow: hidden; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; }
.event-card-body { padding: 1.1rem; }
.event-card-title { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.event-card-meta { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .5rem; }
.event-card-meta span { font-size: .78rem; color: var(--gray-400); display: flex; align-items: center; gap: .4rem; }
.event-card-meta i { color: var(--purple-light); width: 14px; }
.event-card-desc { font-size: .82rem; color: var(--gray-400); line-height: 1.6; }

@media (max-width: 768px) {
  .newsletter-cta-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .newsletter-cta-form input { min-width: 0; flex: 1; }
}

/* ============================================================
   BOTÓN Y MODAL DE DONACIONES
   ============================================================ */
.btn-donate {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.1rem;
  background: linear-gradient(135deg, #ec4899, #f43f5e);
  border: none;
  border-radius: 24px;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(244,63,94,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-donate:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(244,63,94,.55); }
.btn-donate i { font-size: .85rem; }

.donate-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(6,9,15,.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.donate-modal-backdrop.show { opacity: 1; visibility: visible; }
.donate-modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  padding: 2rem 1.75rem 1.75rem;
  transform: translateY(12px) scale(.97);
  transition: transform .25s ease;
}
.donate-modal-backdrop.show .donate-modal { transform: translateY(0) scale(1); }
.donate-modal-close {
  position: absolute;
  top: .75rem; right: .75rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.donate-modal-close:hover { background: rgba(255,255,255,.12); color: #fff; }
.donate-modal-header { text-align: center; margin-bottom: 1.5rem; }
.donate-modal-header i { font-size: 1.8rem; color: #f43f5e; margin-bottom: .5rem; }
.donate-modal-header h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: .4rem; }
.donate-modal-header p { font-size: .84rem; color: var(--gray-400); }

.donate-cards { display: flex; flex-direction: column; gap: 1rem; }
.donate-cards-page { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.donation-card {
  --dc-color: #7c3aed;
  position: relative;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--dc-color);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.donation-card-badge {
  display: inline-block;
  padding: .3rem .9rem;
  border-radius: 20px;
  background: var(--dc-color);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: .85rem;
}
.donation-qr {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: .5rem;
  margin: 0 auto .85rem;
}
.donation-holder { font-size: .92rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.donation-number-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-bottom: .5rem;
}
.donation-number { font-size: 1rem; font-weight: 800; color: var(--dc-color); font-family: monospace; letter-spacing: .03em; }
.donation-copy-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--dc-color);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.donation-copy-btn:hover { transform: scale(1.08); }
.donation-copy-btn.copied { background: rgba(34,197,94,.2); border-color: rgba(34,197,94,.5); color: #22c55e; }
.donation-note { font-size: .76rem; color: var(--gray-400); line-height: 1.6; margin-top: .5rem; }
