:root {
  --black: #050201;
  --dark: #120503;
  --red: #e72b0b;
  --orange: #ff6500;
  --gold: #ffbd16;
  --yellow: #ffe16b;
  --white: #fffaf5;
  --muted: #d9c6b9;
  --panel: rgba(255, 255, 255, .055);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 8%, rgba(255, 89, 0, .18), transparent 30rem),
    linear-gradient(180deg, #030101 0%, #120503 55%, #050201 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; padding: .7rem clamp(1rem, 4vw, 4rem);
  background: rgba(4, 1, 1, .92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 128, 0, .25);
}
.brand { display: flex; align-items: center; gap: .75rem; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 22px rgba(255, 89, 0, .4); }
.brand strong, .brand span { display: block; }
.brand strong { font-size: .98rem; }
.brand span { color: var(--gold); font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; }
.nav { display: flex; gap: 1.25rem; font-size: .9rem; font-weight: 700; }
.nav a:hover { color: var(--gold); }
.menu-button { display: none; background: none; color: white; border: 0; font-size: 1.7rem; }
.hero { background: #000; }
.hero img { width: 100%; max-height: 600px; object-fit: cover; }
.section { padding: 4.7rem clamp(1.2rem, 7vw, 8rem); }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 2.6rem; }
.eyebrow { color: var(--orange); font-weight: 900; letter-spacing: .17em; font-size: .78rem; }
h1, h2 { margin: .45rem 0 1rem; line-height: 1.05; }
h1 { font-size: clamp(2.3rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { margin: .7rem 0 .5rem; }
p { color: var(--muted); line-height: 1.75; }
.live-section { background: linear-gradient(180deg, rgba(255, 84, 0, .08), transparent); }
.player-shell {
  max-width: 970px; margin: auto; display: grid; grid-template-columns: 330px 1fr;
  gap: 2.2rem; padding: 1.5rem; border-radius: 30px;
  background: var(--panel); border: 1px solid rgba(255, 151, 0, .24);
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
}
.player-visual { position: relative; }
.player-visual img { width: 100%; border-radius: 24px; }
.live-badge {
  position: absolute; left: 1rem; bottom: 1rem; padding: .58rem .9rem;
  border-radius: 999px; background: rgba(5,2,1,.88); border: 1px solid rgba(255,255,255,.18);
  font-size: .78rem; font-weight: 900;
}
.live-badge i { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #ef2a19; box-shadow: 0 0 14px #ef2a19; margin-right: .35rem; }
.player-content { align-self: center; }
.station-label { color: var(--gold); font-weight: 900; letter-spacing: .15em; font-size: .75rem; }
.audio-placeholder {
  margin: 1.2rem 0; padding: 1.1rem; border-radius: 18px;
  background: rgba(0,0,0,.34); border: 1px dashed rgba(255, 171, 0, .45);
}
.audio-placeholder span, .audio-placeholder small { display: block; }
.audio-placeholder span { font-weight: 800; color: var(--yellow); }
.audio-placeholder small { margin-top: .35rem; color: var(--muted); }
.primary-button, .whatsapp-button {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 1.5rem; border-radius: 999px; font-weight: 900;
}
.primary-button { background: linear-gradient(135deg, var(--yellow), var(--orange)); color: #210801; box-shadow: 0 0 30px rgba(255, 102, 0, .42); }
.social-section { background: rgba(255,255,255,.018); }
.social-grid { max-width: 1050px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.social-card {
  min-height: 150px; padding: 1.35rem; border-radius: 22px; display: grid;
  grid-template-columns: auto 1fr; align-items: center; gap: 1rem;
  background: linear-gradient(150deg, rgba(255,88,0,.13), rgba(255,255,255,.035));
  border: 1px solid rgba(255, 154, 0, .18); transition: transform .2s ease, border-color .2s ease;
}
.social-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.social-card b { grid-column: 1 / -1; font-size: .75rem; color: var(--gold); letter-spacing: .1em; }
.social-card strong, .social-card small { display: block; }
.social-card small { color: var(--muted); margin-top: .25rem; }
.social-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); font-size: 1.5rem; font-weight: 900; }
.chat-section { background: linear-gradient(180deg, transparent, rgba(255, 83, 0, .07)); }
.message-grid { max-width: 1050px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.message-card { padding: 1.5rem; border-radius: 22px; text-align: center; background: var(--panel); border: 1px solid rgba(255,255,255,.09); }
.message-card > span { font-size: 2rem; }
.whatsapp-box {
  max-width: 1050px; margin: 1.2rem auto 0; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.4rem; border-radius: 22px; background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.25);
}
.whatsapp-box p { margin: .25rem 0 0; }
.whatsapp-button { background: #22c55e; color: white; white-space: nowrap; }
.whatsapp-button.disabled { opacity: .55; cursor: not-allowed; }
.about-strip { display: grid; grid-template-columns: 230px 1fr; gap: 2.6rem; align-items: center; max-width: 1150px; margin: auto; }
.about-strip img { border-radius: 50%; box-shadow: 0 0 60px rgba(255, 89, 0, .25); }
footer {
  padding: 2rem clamp(1.2rem, 7vw, 8rem); display: grid; grid-template-columns: auto 1fr auto;
  gap: 1rem; align-items: center; border-top: 1px solid rgba(255,255,255,.1);
}
footer img { width: 70px; height: 70px; border-radius: 50%; }
footer p { margin: .25rem 0; }
@media (max-width: 860px) {
  .menu-button { display: block; }
  .nav { display: none; position: absolute; top: 68px; right: 1rem; flex-direction: column; background: #140503; padding: 1rem; border-radius: 14px; }
  .nav.open { display: flex; }
  .player-shell, .about-strip { grid-template-columns: 1fr; }
  .player-visual img { max-width: 330px; margin: auto; }
  .social-grid, .message-grid { grid-template-columns: 1fr; }
  .whatsapp-box { align-items: flex-start; flex-direction: column; }
  footer { grid-template-columns: auto 1fr; }
  footer > p { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .brand strong { font-size: .82rem; }
  .brand img { width: 46px; height: 46px; }
  .hero img { min-height: 240px; object-fit: cover; }
  .section { padding: 3.6rem 1rem; }
}

/* Reproductor en vivo */
.radio-player {
  margin: 1.25rem 0 .8rem;
  display: grid;
  grid-template-columns: auto 1fr minmax(130px, 180px);
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(0,0,0,.56), rgba(255,92,0,.08));
  border: 1px solid rgba(255,171,0,.38);
  box-shadow: inset 0 0 24px rgba(255,96,0,.06);
}
.play-button {
  min-width: 128px;
  border: 0;
  border-radius: 999px;
  padding: .95rem 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  font: inherit;
  font-weight: 900;
  letter-spacing: .06em;
  color: #260900;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 0 28px rgba(255,102,0,.42);
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}
.play-button:hover { transform: translateY(-2px); filter: brightness(1.08); }
.play-button:disabled { opacity: .65; cursor: wait; transform: none; }
.player-meta strong, .player-meta small { display: block; }
.player-meta strong { color: var(--yellow); }
.player-meta small { margin-top: .3rem; color: var(--muted); line-height: 1.35; }
.volume-control { display: flex; align-items: center; gap: .55rem; }
.volume-control input { width: 100%; accent-color: var(--orange); cursor: pointer; }
.mobile-volume-note { display: none; margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.4; }
.zeno-link { display: inline-block; color: var(--gold); font-size: .82rem; font-weight: 800; }
.zeno-link:hover { text-decoration: underline; }
.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; }
@media (max-width: 700px) {
  .radio-player { grid-template-columns: 1fr; }
  .play-button { width: 100%; }
  .volume-control { display: none; }
  .mobile-volume-note { display: block; }
}
