/* ═══════════════════════════════════════════════════════════════
   RADIO BELÉN — styles.css
   Diseño: Broadcast oscuro premium · Negro / Azul profundo / Dorado
   Tipografía: Bebas Neue (display) + Outfit (body)
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #0A0F1E;
  --bg-2:        #0F1628;
  --bg-card:     #141C32;
  --bg-card-2:   #1A2240;
  --border:      rgba(255,255,255,.07);
  --border-gold: rgba(201,168,76,.25);
  --gold:        #C9A84C;
  --gold-light:  #E4C76B;
  --gold-pale:   rgba(201,168,76,.12);
  --blue:        #1E3A8A;
  --blue-light:  #3B82F6;
  --white:       #FFFFFF;
  --text-1:      rgba(255,255,255,.95);
  --text-2:      rgba(255,255,255,.65);
  --text-3:      rgba(255,255,255,.40);
  --live-red:    #EF4444;
  --success:     #22C55E;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-card: 0 8px 32px rgba(0,0,0,.4);
  --shadow-gold: 0 8px 28px rgba(201,168,76,.2);
  --transition:  all .3s cubic-bezier(.4,0,.2,1);
  --navbar-h:    68px;
  --ff-display:  'Bebas Neue', Impact, sans-serif;
  --ff-body:     'Outfit', 'Segoe UI', sans-serif;
}

/* Modo claro */
body:not(.dark-mode) {
  --bg:        #F0F2F8;
  --bg-2:      #E8EBF5;
  --bg-card:   #FFFFFF;
  --bg-card-2: #F5F7FF;
  --border:    rgba(0,0,0,.08);
  --text-1:    #0A0F1E;
  --text-2:    #3D4466;
  --text-3:    #8891AA;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text-1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .3s ease, color .3s ease;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
textarea, input, select { font-family: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Layout ────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--alt { background: var(--bg-2); }
.center-action { text-align: center; margin-top: 40px; }

/* ── Typography ────────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: .03em;
  color: var(--text-1);
  line-height: 1.1;
  margin-bottom: 10px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.7;
}
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── Botones ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn--gold { background: var(--gold); color: #000; }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn--ghost { background: transparent; color: var(--text-1); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--sm { padding: 8px 18px; font-size: .8rem; }
.btn--full { width: 100%; justify-content: center; }
.btn-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.btn-icon:hover { border-color: var(--gold); }

/* Ondas en botón hero */
.btn-wave { display: flex; gap: 3px; align-items: center; height: 14px; }
.btn-wave i { display: block; width: 3px; background: rgba(0,0,0,.6); border-radius: 2px; animation: wavePulse 1.2s ease infinite; }
.btn-wave i:nth-child(2) { animation-delay: .15s; }
.btn-wave i:nth-child(3) { animation-delay: .3s; }
@keyframes wavePulse {
  0%,100%{height:4px}
  50%{height:12px}
}

/* ═══════════════════════════════════════════════════════════════
   MINI REPRODUCTOR
   ═══════════════════════════════════════════════════════════════ */
.mini-player {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: var(--bg-card);
  border-top: 1px solid var(--border-gold);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -8px 32px rgba(0,0,0,.5);
}
.mini-player:not([hidden]) { transform: translateY(0); }
.mini-player__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.mini-player__wave {
  display: flex;
  gap: 3px;
  align-items: center;
  height: 20px;
}
.mini-player__wave span {
  display: block;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: miniWave 1s ease infinite;
}
.mini-player__wave span:nth-child(2) { animation-delay: .1s; }
.mini-player__wave span:nth-child(3) { animation-delay: .2s; }
.mini-player__wave span:nth-child(4) { animation-delay: .3s; }
.mini-player__wave span:nth-child(5) { animation-delay: .4s; }
@keyframes miniWave {
  0%,100%{height:4px}
  50%{height:18px}
}
.mini-player.paused .mini-player__wave span { animation: none; height: 4px; }
.mini-player__info { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.mini-player__live { font-size: .6rem; font-weight: 800; letter-spacing: .15em; color: var(--live-red); text-transform: uppercase; }
.mini-player__title { font-size: .85rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-1); }
.mini-player__btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.mini-player__btn:hover { background: var(--gold-light); transform: scale(1.08); }
.mini-player__vol { width: 80px; accent-color: var(--gold); cursor: pointer; }
.mini-player__close { color: var(--text-3); font-size: .85rem; flex-shrink: 0; transition: var(--transition); }
.mini-player__close:hover { color: var(--text-1); }

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navbar-h);
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
#site-header.scrolled {
  background: rgba(10,15,30,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-h);
  gap: 20px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header__logo-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: #000;
}
.header__logo-text { display: flex; flex-direction: column; line-height: 1; }
.header__logo-text strong { font-size: 1rem; font-weight: 800; color: var(--text-1); letter-spacing: .02em; }
.header__logo-text span { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-3); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__links a {
  padding: 6px 11px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--text-2);
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav__links a:hover, .nav__links a.active { color: var(--gold); background: var(--gold-pale); }
.nav__back {
  background: var(--border) !important;
  color: var(--text-2) !important;
}
.nav__back:hover { background: var(--gold-pale) !important; color: var(--gold) !important; }
.header__actions { display: flex; align-items: center; gap: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-1); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--navbar-h); left: 0; right: 0;
  background: rgba(10,15,30,.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  padding: 12px 20px 20px;
  gap: 2px;
  border-bottom: 1px solid var(--border-gold);
  animation: slideDown .3s ease;
}
.mobile-nav.open { display: flex; }
@keyframes slideDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
.mobile-nav a { padding: 12px 14px; font-size: .9rem; font-weight: 600; color: var(--text-2); border-radius: 8px; transition: var(--transition); }
.mobile-nav a:hover { background: var(--gold-pale); color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--navbar-h) 0 60px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  pointer-events: none;
}
.hero__orb--1 { width: 500px; height: 500px; background: radial-gradient(circle, #1E3A8A, transparent); top: -100px; right: -100px; animation: orbFloat 12s ease-in-out infinite; }
.hero__orb--2 { width: 400px; height: 400px; background: radial-gradient(circle, #C9A84C40, transparent); bottom: 0; left: -80px; animation: orbFloat 16s ease-in-out infinite reverse; }
.hero__orb--3 { width: 300px; height: 300px; background: radial-gradient(circle, #3B82F620, transparent); top: 40%; left: 40%; animation: orbFloat 10s ease-in-out infinite 2s; }
@keyframes orbFloat { 0%,100%{transform:translate(0,0)} 33%{transform:translate(20px,-30px)} 66%{transform:translate(-15px,20px)} }
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 20px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.3);
  color: #FCA5A5;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--live-red);
  animation: pulseDot 1.5s ease infinite;
}
@keyframes pulseDot {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.5;transform:scale(1.3)}
}
.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: .03em;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 20px;
}
.hero__title em { color: var(--gold); font-style: normal; }
.hero__sub { font-size: 1.05rem; color: var(--text-2); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat strong { font-family: var(--ff-display); font-size: 1.8rem; letter-spacing: .03em; color: var(--gold); }
.hero__stat span { font-size: .75rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .1em; }
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine { 0%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} 100%{opacity:0;transform:scaleY(1);transform-origin:bottom} }

/* ═══════════════════════════════════════════════════════════════
   REPRODUCTOR
   ═══════════════════════════════════════════════════════════════ */
.player-section { padding: 88px 0; }
.player-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  min-height: 500px;
}
.player-card__visual {
  grid-column: 1 / -1;
  padding: 24px 32px 16px;
  background: linear-gradient(135deg, var(--bg-card-2), var(--bg-card));
  border-bottom: 1px solid var(--border);
}
.visualizer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 60px;
}
.vis-bar {
  width: 6px;
  background: var(--gold);
  border-radius: 3px 3px 0 0;
  animation: visBar 1.2s ease infinite;
  opacity: .7;
}
.vis-bar:nth-child(2n)   { animation-duration: .9s; background: var(--blue-light); }
.vis-bar:nth-child(3n)   { animation-duration: 1.5s; animation-delay: .3s; }
.vis-bar:nth-child(4n)   { animation-duration: 1s; animation-delay: .6s; }
@keyframes visBar {
  0%,100%{height:6px}
  50%{height:48px}
}
.visualizer.paused .vis-bar { animation: none; height: 6px; opacity: .3; }
.player-card__body { padding: 28px 32px; display: flex; flex-direction: column; gap: 24px; border-right: 1px solid var(--border); }
.player-card__now { display: flex; align-items: center; gap: 18px; }
.player-card__artwork {
  position: relative;
  flex-shrink: 0;
  width: 72px; height: 72px;
}
.artwork-inner {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--bg-card-2));
  border: 2px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  animation: artworkSpin 20s linear infinite paused;
}
.artwork-inner.spinning { animation-play-state: running; }
@keyframes artworkSpin { to{transform:rotate(360deg)} }
.artwork-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: .3;
  animation: ringPulse 2s ease infinite;
}
@keyframes ringPulse { 0%,100%{transform:scale(1);opacity:.3} 50%{transform:scale(1.06);opacity:.6} }
.live-badge {
  display: inline-block;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--live-red);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.track-title { font-family: var(--ff-display); font-size: 1.4rem; letter-spacing: .03em; color: var(--text-1); line-height: 1.1; margin-bottom: 4px; }
.track-artist { font-size: .8rem; color: var(--text-3); }
.player-card__controls { display: flex; align-items: center; gap: 16px; }
.ctrl-btn--main {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.ctrl-btn--main:hover { background: var(--gold-light); transform: scale(1.08); box-shadow: var(--shadow-gold); }
.ctrl-volume { display: flex; align-items: center; gap: 8px; flex: 1; }
.vol-icon { font-size: .9rem; }
.volume-slider { flex: 1; accent-color: var(--gold); cursor: pointer; height: 4px; }
.ctrl-share {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.ctrl-share:hover { border-color: var(--gold); color: var(--gold); }

/* Stream config (ocultar en producción) */
.player-card__stream-config {
  background: var(--bg-card-2);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: .78rem;
}
.player-card__stream-config label { display: block; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.stream-input-row { display: flex; gap: 8px; }
.stream-input-row input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-1);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  font-size: .78rem;
}
.stream-input-row input:focus { outline: none; border-color: var(--gold); }
.player-card__stream-config small { display: block; margin-top: 6px; color: var(--text-3); font-size: .7rem; }
.code-hint { display: block; margin-top: 8px; background: var(--bg); border: 1px solid var(--border); padding: 6px 10px; border-radius: 4px; font-size: .7rem; color: var(--gold); font-family: monospace; overflow-x: auto; }

/* Chat */
.player-card__chat { padding: 28px 24px; display: flex; flex-direction: column; gap: 0; max-height: 480px; }
.chat-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: .78rem; font-weight: 700; color: var(--text-2); }
.chat-count { background: var(--gold-pale); color: var(--gold); padding: 2px 8px; border-radius: 50px; font-size: .65rem; font-weight: 700; }
.chat-messages { flex: 1; overflow-y: auto; display: flex; flex-direction: column; gap: 10px; padding-right: 4px; scroll-behavior: smooth; }
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.chat-msg { display: flex; flex-direction: column; gap: 2px; }
.chat-msg.own { align-items: flex-end; }
.chat-msg__header { display: flex; align-items: center; gap: 6px; }
.chat-msg__name { font-size: .68rem; font-weight: 700; color: var(--gold); }
.chat-msg__time { font-size: .62rem; color: var(--text-3); }
.chat-msg__bubble { background: var(--bg-card-2); border-radius: 0 10px 10px 10px; padding: 7px 12px; font-size: .78rem; color: var(--text-1); max-width: 90%; line-height: 1.5; border: 1px solid var(--border); }
.chat-msg.own .chat-msg__bubble { background: var(--gold-pale); border-color: var(--border-gold); border-radius: 10px 0 10px 10px; }
.chat-input-row { display: flex; gap: 8px; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }
.chat-input-row input {
  flex: 1;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  color: var(--text-1);
  padding: 9px 14px;
  border-radius: 50px;
  font-size: .82rem;
  transition: var(--transition);
}
.chat-input-row input:focus { outline: none; border-color: var(--gold); }
.chat-input-row button {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.chat-input-row button:hover { background: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════
   PROGRAMACIÓN
   ═══════════════════════════════════════════════════════════════ */
.prog-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.prog-tab {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-2);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.prog-tab:hover { border-color: var(--gold); color: var(--gold); }
.prog-tab.active { background: var(--gold); color: #000; border-color: var(--gold); }
.prog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.prog-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: var(--transition);
}
.prog-item.now-playing { border-color: var(--gold); background: var(--gold-pale); }
.prog-item:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.prog-item__time { font-family: var(--ff-display); font-size: 1.1rem; letter-spacing: .05em; color: var(--gold); min-width: 56px; flex-shrink: 0; }
.prog-item__info { flex: 1; min-width: 0; }
.prog-item__name { font-weight: 700; font-size: .9rem; color: var(--text-1); }
.prog-item__host { font-size: .72rem; color: var(--text-3); margin-top: 2px; }
.prog-item__badge {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 50px;
  flex-shrink: 0;
}
.prog-item__badge.live { background: rgba(239,68,68,.15); color: var(--live-red); border: 1px solid rgba(239,68,68,.3); }
.prog-item__badge.next { background: var(--gold-pale); color: var(--gold); border: 1px solid var(--border-gold); }

/* ═══════════════════════════════════════════════════════════════
   DEVOCIONAL
   ═══════════════════════════════════════════════════════════════ */
.devocional-section {
  background: linear-gradient(135deg, #0A0F1E 0%, #0F1A3A 50%, #0A0F1E 100%);
  position: relative;
  overflow: hidden;
}
.devocional-section::before {
  content: '✝';
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  font-size: 30rem;
  color: rgba(255,255,255,.015);
  pointer-events: none;
  line-height: 1;
}
.devo-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  box-shadow: var(--shadow-card);
}
.devo-card__date { font-size: .7rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.devo-card__verse { border-left: 3px solid var(--gold); padding: 16px 24px; background: var(--gold-pale); border-radius: 0 var(--radius-md) var(--radius-md) 0; margin-bottom: 24px; }
.devo-card__verse p { font-family: var(--ff-display); font-size: 1.3rem; letter-spacing: .02em; color: var(--text-1); line-height: 1.4; margin-bottom: 8px; }
.devo-card__verse cite { font-size: .78rem; color: var(--gold); font-style: normal; font-weight: 700; }
.devo-card__reflection h3 { font-family: var(--ff-display); font-size: 1.2rem; letter-spacing: .04em; color: var(--text-1); margin-bottom: 10px; }
.devo-card__reflection p { font-size: .92rem; color: var(--text-2); line-height: 1.8; }
.devo-card__actions { display: flex; gap: 10px; margin-top: 24px; justify-content: flex-end; }

/* ═══════════════════════════════════════════════════════════════
   PLATAFORMAS DE PODCAST
   ═══════════════════════════════════════════════════════════════ */
.platform-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; margin-bottom: 40px; }
.platform-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: var(--transition);
}
.platform-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.platform-card--spotify:hover { border-color: #1DB954; }
.platform-card--apple:hover   { border-color: #FC3C44; }
.platform-card--amazon:hover  { border-color: #FF9900; }
.platform-card--youtube:hover { border-color: #FF0000; }
.platform-card__icon { flex-shrink: 0; }
.platform-card--spotify .platform-card__icon { color: #1DB954; }
.platform-card--apple   .platform-card__icon { color: #FC3C44; }
.platform-card--amazon  .platform-card__icon { color: #FF9900; }
.platform-card--youtube .platform-card__icon { color: #FF0000; }
.platform-card__info { flex: 1; }
.platform-card__info strong { display: block; font-size: .9rem; font-weight: 700; color: var(--text-1); }
.platform-card__info span { font-size: .75rem; color: var(--text-3); }
.platform-card__arrow { color: var(--text-3); transition: var(--transition); }
.platform-card:hover .platform-card__arrow { color: var(--gold); transform: translateX(4px); }
.spotify-embed-wrap { margin-top: 16px; }
.embed-label { font-size: .8rem; font-weight: 700; color: var(--text-2); margin-bottom: 12px; letter-spacing: .06em; text-transform: uppercase; }
.spotify-placeholder {
  background: var(--bg-card);
  border: 1.5px dashed var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.placeholder-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.placeholder-inner strong { font-size: 1rem; color: var(--text-1); }
.placeholder-inner p { font-size: .82rem; color: var(--text-3); line-height: 1.6; max-width: 420px; }

/* ═══════════════════════════════════════════════════════════════
   VIDEOS
   ═══════════════════════════════════════════════════════════════ */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.video-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: var(--border-gold); }
.video-card__embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.video-card__embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.video-placeholder {
  position: absolute;
  inset: 0;
  background: var(--bg-card-2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
}
.video-placeholder:hover .play-circle { transform: scale(1.12); background: var(--gold-light); }
.video-placeholder__thumb { flex: 1; display: flex; align-items: center; justify-content: center; }
.play-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
}
.video-placeholder__info { padding: 14px 16px; background: linear-gradient(transparent, rgba(0,0,0,.7)); }
.video-tag { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 3px; }
.video-placeholder__info strong { font-size: .85rem; color: var(--white); }
.video-card__body { padding: 18px 20px; }
.video-duration { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.video-card__title { font-family: var(--ff-display); font-size: 1.1rem; letter-spacing: .03em; color: var(--text-1); margin: 6px 0 8px; }
.video-card__desc { font-size: .78rem; color: var(--text-3); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   REDES SOCIALES
   ═══════════════════════════════════════════════════════════════ */
.social-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.social-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  transition: var(--transition);
}
.social-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.social-card__icon { flex-shrink: 0; }
.social-card__info { flex: 1; min-width: 0; }
.social-card__info strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text-1); }
.social-card__info span  { display: block; font-size: .72rem; color: var(--text-3); }
.social-card__info em    { display: block; font-size: .68rem; font-style: normal; color: var(--gold); margin-top: 2px; }
.social-card--instagram:hover { border-color: #E1306C; }
.social-card--instagram .social-card__icon { color: #E1306C; }
.social-card--tiktok:hover { border-color: #69C9D0; }
.social-card--tiktok .social-card__icon { color: #fff; }
.social-card--facebook:hover { border-color: #1877F2; }
.social-card--facebook .social-card__icon { color: #1877F2; }
.social-card--youtube:hover { border-color: #FF0000; }
.social-card--youtube .social-card__icon { color: #FF0000; }
.social-card--x:hover { border-color: #fff; }
.social-card--x .social-card__icon { color: var(--text-1); }
.social-card--whatsapp:hover { border-color: #25D366; }
.social-card--whatsapp .social-card__icon { color: #25D366; }

/* ═══════════════════════════════════════════════════════════════
   EVENTOS
   ═══════════════════════════════════════════════════════════════ */
.eventos-list { display: flex; flex-direction: column; gap: 14px; }
.evento-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: var(--transition);
}
.evento-item:hover { border-color: var(--border-gold); transform: translateX(4px); }
.evento-item__date {
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: .05em;
  color: var(--gold);
  min-width: 60px;
  text-align: center;
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  flex-shrink: 0;
}
.evento-item__date span { display: block; font-size: 1.6rem; line-height: 1; }
.evento-item__info { flex: 1; }
.evento-item__title { font-weight: 700; font-size: .95rem; color: var(--text-1); margin-bottom: 4px; }
.evento-item__meta { font-size: .75rem; color: var(--text-3); }
.evento-item__tag { font-size: .65rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 3px 10px; border-radius: 50px; background: var(--gold-pale); color: var(--gold); border: 1px solid var(--border-gold); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   PETICIONES DE ORACIÓN
   ═══════════════════════════════════════════════════════════════ */
.oracion-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.prayer-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .78rem; font-weight: 700; color: var(--text-2); letter-spacing: .05em; text-transform: uppercase; }
.form-group .req { color: var(--live-red); }
.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text-1);
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: .88rem;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group small { font-size: .7rem; color: var(--text-3); text-align: right; }
.form-check { flex-direction: row; align-items: center; gap: 10px; }
.form-check input[type="checkbox"] { accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.form-check label { font-size: .82rem; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-2); cursor: pointer; }
.wall-title { font-family: var(--ff-display); font-size: 1.3rem; letter-spacing: .04em; color: var(--text-1); margin-bottom: 16px; }
.prayer-wall { display: flex; flex-direction: column; gap: 12px; max-height: 440px; overflow-y: auto; padding-right: 8px; }
.prayer-wall::-webkit-scrollbar { width: 4px; }
.prayer-wall::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.prayer-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: var(--transition);
  animation: fadeInUp .5s ease;
}
@keyframes fadeInUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.prayer-item__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.prayer-item__name { font-size: .72rem; font-weight: 700; color: var(--gold); }
.prayer-item__time { font-size: .65rem; color: var(--text-3); }
.prayer-item p { font-size: .8rem; color: var(--text-2); line-height: 1.5; }
.prayer-item__pray { margin-top: 8px; font-size: .7rem; color: var(--text-3); cursor: pointer; transition: var(--transition); }
.prayer-item__pray:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
#site-footer { background: var(--bg-card); border-top: 1px solid var(--border); padding-top: 72px; }
.footer__inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo { display: flex; align-items: center; gap: 10px; }
.footer__logo-icon { width: 36px; height: 36px; background: var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #000; flex-shrink: 0; }
.footer__logo strong { display: block; font-size: 1rem; font-weight: 800; color: var(--text-1); }
.footer__logo span { display: block; font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-3); }
.footer__brand > p { font-size: .83rem; color: var(--text-3); line-height: 1.7; }
.footer__address { font-style: normal; font-size: .78rem; color: var(--text-3); line-height: 1.8; }
.footer__address a { color: var(--gold); }
.footer__address a:hover { color: var(--gold-light); }
.footer__nav h4 { font-family: var(--ff-display); font-size: 1rem; letter-spacing: .06em; color: var(--text-1); margin-bottom: 14px; }
.footer__nav ul { display: flex; flex-direction: column; gap: 8px; }
.footer__nav ul a { font-size: .82rem; color: var(--text-3); transition: var(--transition); }
.footer__nav ul a:hover { color: var(--gold); padding-left: 4px; }
.footer__schedule h4 { font-family: var(--ff-display); font-size: 1rem; letter-spacing: .06em; color: var(--text-1); margin-bottom: 14px; }
.footer__schedule ul { display: flex; flex-direction: column; gap: 8px; }
.footer__schedule li { font-size: .78rem; color: var(--text-3); line-height: 1.5; }
.footer__schedule strong { color: var(--gold); }
.footer__bottom { border-top: 1px solid var(--border); padding: 18px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer__bottom p { font-size: .72rem; color: var(--text-3); }
.footer__bottom a { color: var(--gold); }
.footer__bottom a:hover { color: var(--gold-light); }

/* ═══════════════════════════════════════════════════════════════
   FABs FLOTANTES
   ═══════════════════════════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  z-index: 900;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  animation: waPulse 3s infinite;
}
.wa-fab:hover { transform: scale(1.1); animation: none; box-shadow: 0 8px 32px rgba(37,211,102,.6); }
@keyframes waPulse {
  0%,100%{box-shadow:0 6px 24px rgba(37,211,102,.4)}
  50%{box-shadow:0 6px 36px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.1)}
}
.wa-fab__tooltip {
  position: absolute;
  right: 64px;
  background: var(--bg-card);
  color: var(--text-1);
  font-size: .75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.wa-fab:hover .wa-fab__tooltip { opacity: 1; }
.back-top {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  font-size: .85rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  z-index: 899;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-3px); }

/* ── Scroll reveal ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .player-card { grid-template-columns: 1fr; }
  .player-card__body { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 768px) {
  :root { --navbar-h: 60px; }
  #main-nav { display: none; }
  .hamburger { display: flex; }
  .oracion-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .mini-player__vol { display: none; }
  .devo-card { padding: 28px 24px; }
  .videos-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(3rem, 10vw, 5rem); }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .btn { justify-content: center; width: 100%; }
  .player-card__chat { display: none; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .platform-grid { grid-template-columns: 1fr; }
  .evento-item { flex-direction: column; align-items: flex-start; gap: 10px; }
}
