/* =====================================================
   LATINOS FM — main.css
   Única fuente de estilos del sitio.
   ===================================================== */

/* ─── Variables ─────────────────────────────────────── */
:root {
  --or:   #FF6600;
  --or2:  #FF8800;
  --red:  #e63d32;
  --blk:  #212121;
  --gris: #666666;
  --gris-claro: #f5f5f5;
  --borde: #e0e0e0;
  --max:  1145px;
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;
}

/* ─── 1. RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--blk);
  background: #fff;
  padding-bottom: 72px;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── 2. TOPBAR (.top-emisoras) ─────────────────────── */
.top-emisoras {
  height: 36px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.top-emisoras a {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 18px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: opacity .2s;
}
.top-emisoras a:hover { opacity: .8; }
.top-emisoras .t-main   { color: var(--or); }
.top-emisoras .t-classic{ color: #cc0000; }
.top-emisoras .t-urban  { color: #FF8800; }

/* ─── 3. HEADER (.header-wrap) ──────────────────────── */
.header-wrap {
  background: #fff;
  position: relative;
}
.header-wrap::after {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, #e63d32, #FF6600, #FFD600, #4CAF50, #2196F3, #9C27B0);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 90px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 16px;
}
/* Hamburger */
.h-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.h-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blk);
  transition: transform .25s, opacity .25s;
}
/* Logo */
.h-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
}
.h-logo-ring {
  width: 81px;
  height: 81px;
  border-radius: 50%;
  border: 4px solid var(--or);
  overflow: hidden;
  flex-shrink: 0;
}
.h-logo-ring img { width: 100%; height: 100%; object-fit: cover; }
.h-logo-text { line-height: 1.2; }
.h-logo-text .main {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--blk);
  letter-spacing: .04em;
}
.h-logo-text .main span { color: var(--or); }
.h-logo-text .sub {
  font-size: 12.75px;
  color: var(--gris);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.h-logo-text .h-aniv {
  display: inline-block;
  margin-top: 5px;
  background: linear-gradient(90deg, #e63d32, #FF6600);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
/* Reloj */
.h-right { min-width: 130px; text-align: right; }
.madrid-clock { line-height: 1.4; }
.madrid-clock .clock-time {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--blk);
}
.madrid-clock .clock-date {
  font-size: 12px;
  color: var(--gris);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ─── 4. NAV (.nav-bar) ──────────────────────────────── */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--borde);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 46px;
  gap: 4px;
}
.nav-bar a {
  display: inline-flex;
  align-items: center;
  height: 46px;
  padding: 0 14px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--blk);
  letter-spacing: .03em;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.nav-bar a:hover,
.nav-bar a.active { color: var(--or); border-bottom-color: var(--or); }
.nav-spacer { flex: 1; }
.nav-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--or);
  color: #fff !important;
  border-radius: 4px;
  height: 32px;
  padding: 0 14px;
  font-size: 13px !important;
  font-weight: 700 !important;
  border-bottom: none !important;
  letter-spacing: .05em;
}
.nav-live-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

/* ─── App banner ─────────────────────────────────────── */
.home-app-banner {
  width: 100%;
  line-height: 0;
}
.home-app-banner img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ─── 5. TICKER (.ticker-emisoras) ──────────────────── */
.ticker-emisoras {
  background: #000;
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid #222;
}
.ticker-label {
  flex-shrink: 0;
  padding: 0 16px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--or);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-right: 1px solid #333;
  height: 100%;
  display: flex;
  align-items: center;
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
  font-size: 13px;
  color: #aaa;
  padding-left: 20px;
}
.ticker-content span { margin-right: 48px; }
.ticker-content span b { color: #fff; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── 6. HERO GRID (.hero-grid) ─────────────────────── */
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 20px 0;
  display: grid;
  grid-template-columns: 1fr 380px;
  grid-template-rows: 235px 235px;
  gap: 4px;
}
.hero-main {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.hero-side { grid-column: 2 / 3; }

.hero-card {
  position: relative;
  display: block;
  overflow: hidden;
  height: 100%;
  background: #111;
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.hero-card:hover img { transform: scale(1.04); }
.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.2) 55%, transparent 100%);
}
.hero-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 18px;
}
.hero-badge {
  display: inline-block;
  background: var(--or);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  margin-bottom: 8px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.hero-main .hero-title { font-size: 29px; }
.hero-side .hero-title { font-size: 17px; }
.hero-meta {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
}

/* ─── 7. HOME SECTION (.home-section) ───────────────── */
.home-section {
  max-width: var(--max);
  margin: 36px auto 0;
  padding: 0 20px;
}
.home-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.home-section-header::before,
.home-section-header::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--or);
  opacity: .25;
}
.home-section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--or);
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.home-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home-section-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.home-section-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ─── 8. CARD (.card) ───────────────────────────────── */
.card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--borde);
  overflow: hidden;
  transition: box-shadow .2s;
  background: #fff;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.card-img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--gris-claro);
}
.card-img-wrap { position: relative; overflow: hidden; }
.card-img-wrap .card-img { transition: transform .3s; }
.card:hover .card-img { transform: scale(1.03); }
.card-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.3);
}
.card-play-icon::after {
  content: '';
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--or);
  position: absolute;
}
.card-play-icon::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 17px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  z-index: 1;
  margin-left: 4px;
}
.card-body { padding: 12px 14px 14px; flex: 1; display: flex; flex-direction: column; }
.card-badge {
  display: inline-block;
  background: var(--or);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 2px 8px;
  margin-bottom: 8px;
  align-self: flex-start;
}
.card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--blk);
  line-height: 1.4;
  flex: 1;
}
.card-meta {
  margin-top: 10px;
  font-size: 13px;
  color: var(--gris);
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-meta-sep { color: var(--borde); }

/* ─── 9. SECCIÓN DARK / ORANGE ──────────────────────── */
.section-orange {
  background: #0a0a0a;
  padding: 36px 0 40px;
  margin-top: 36px;
}
.section-orange .home-section-title { color: var(--or); }
.section-orange .home-section-header::before,
.section-orange .home-section-header::after { background: var(--or); opacity: .3; }
.section-orange .home-section-more { color: #fff; }
.section-orange .card { background: #1a1a1a; }
.section-orange .card-title { color: #fff; }
.section-orange .card-meta  { color: rgba(255,255,255,.5); }
.section-orange .card-badge { background: var(--or); color: #fff; }

.section-dark {
  background: #0a0a0a;
  padding: 36px 0 40px;
  margin-top: 36px;
}
.section-dark .home-section-title { color: var(--or); }
.section-dark .home-section-header::before,
.section-dark .home-section-header::after { background: var(--or); opacity: .3; }
.section-dark-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.section-dark .card {
  background: #1a1a1a;
  border-color: #333;
}
.section-dark .card-title { color: #fff; }
.section-dark .card-meta { color: #999; }
.section-dark .card:hover { box-shadow: 0 4px 20px rgba(255,102,0,.2); }

/* ─── 10. LAYOUT ARTÍCULO (.article-layout) ─────────── */
.article-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 20px 48px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
/* Breadcrumb */
.article-breadcrumb {
  font-size: 13px;
  color: var(--gris);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-breadcrumb a { color: var(--gris); }
.article-breadcrumb a:hover { color: var(--or); }
.article-breadcrumb-sep { color: var(--borde); }
/* Hero artículo */
.article-hero {
  margin-bottom: 28px;
}
.article-hero-img-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.article-hero-img {
  width: 100%;
  aspect-ratio: 20/17;
  object-fit: cover;
  display: block;
}
.article-kicker-over {
  position: absolute;
  top: 16px;
  left: 16px;
  margin: 0;
}
.article-hero-data { padding-top: 0; }
.article-kicker {
  display: inline-block;
  background: var(--or);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.article-title {
  font-family: var(--font-display);
  font-size: 29px;
  font-weight: 800;
  color: var(--blk);
  line-height: 1.3;
  margin-bottom: 12px;
}
.article-dek {
  font-size: 18px;
  color: var(--gris);
  line-height: 1.6;
  margin-bottom: 14px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gris);
  flex-wrap: wrap;
}
.article-meta-sep { color: var(--borde); }
.article-meta-read { color: var(--or); font-weight: 600; }
/* Share buttons */
.article-share {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.article-share-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--gris);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  transition: opacity .2s;
  color: #fff;
}
.share-btn:hover { opacity: .85; }
.share-btn-wa  { background: #25D366; }
.share-btn-fb  { background: #1877F2; }
.share-btn-x   { background: #000; }
/* Cuerpo artículo */
.article-body {
  font-size: 19px;
  line-height: 1.85;
  color: var(--blk);
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--or);
  margin: 32px 0 12px;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--blk);
  margin: 24px 0 10px;
}
.article-body p { margin-bottom: 18px; }
.article-body ul,
.article-body ol { margin: 0 0 18px 24px; }
.article-body li { margin-bottom: 6px; }
.article-body blockquote {
  border-left: 4px solid var(--or);
  padding: 12px 20px;
  background: var(--gris-claro);
  margin: 20px 0;
  font-style: italic;
  color: var(--gris);
}
.article-body a { color: var(--or); text-decoration: underline; }
.article-body img { margin: 20px 0; max-width: 100%; }
/* Author box */
.article-author-box {
  display: flex;
  gap: 16px;
  background: var(--gris-claro);
  padding: 20px;
  margin-top: 36px;
  align-items: flex-start;
  border-left: 4px solid var(--or);
}
.author-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--or);
}
.author-info { flex: 1; }
.author-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--blk);
  margin-bottom: 2px;
}
.author-cargo {
  font-size: 13px;
  color: var(--gris);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.author-bio { font-size: 15px; color: var(--gris); line-height: 1.6; }
.author-link {
  display: inline-block;
  margin-top: 10px;
  background: var(--or);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  letter-spacing: .05em;
}

/* ─── 11. LAYOUT PODCAST ─────────────────────────────── */
.podcast-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8;
  overflow: hidden;
  margin-bottom: 32px;
  background: #000;
}
.podcast-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.podcast-top-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 28px 32px 60px;
  background: linear-gradient(to bottom, rgba(0,0,0,.75) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.podcast-top-overlay .article-kicker {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 700;
}
.podcast-top-overlay .article-title {
  color: #fff;
  font-size: 22px;
  line-height: 1.3;
  margin: 0;
  max-width: 70%;
}
.podcast-top-overlay .article-dek {
  color: rgba(255,255,255,.65);
  font-size: 13px;
  margin: 0;
  max-width: 65%;
}
.podcast-top-overlay .article-meta {
  color: rgba(255,255,255,.4);
  font-size: 12px;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.podcast-top-overlay .article-meta-sep { opacity: .4; }
.podcast-bottom-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 32px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.6) 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.podcast-bottom-overlay.playing .icon-play  { display: none; }
.podcast-bottom-overlay.playing .icon-pause { display: block; }
.pod-row-title {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pod-row-title .pod-play-btn {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.pod-row-title .pod-play-btn svg { width: 22px; height: 22px; }
.pod-title-inline {
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  flex: 1;
}
.pod-row-share {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pod-row-share .share-btn { font-size: 11px; padding: 4px 12px; }
.pod-vol-inline {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pod-vol-inline .pod-vol-icon svg { width: 17px; height: 17px; fill: rgba(255,255,255,.6); display: block; }
.pod-vol-inline .pod-volume {
  width: 80px;
  background: rgba(255,255,255,.2);
}
.pod-vol-inline .pod-volume::-webkit-slider-thumb { background: #fff; }
.pod-vol-inline .pod-volume::-moz-range-thumb     { background: #fff; }
.podcast-platforms { display: flex; gap: 8px; flex-wrap: wrap; }
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,.08);
  color: #ccc;
  transition: background .2s;
}
.platform-btn:hover { background: var(--or); color: #fff; }
@media (max-width: 700px) {
  .podcast-card { aspect-ratio: unset; min-height: 520px; }
  .podcast-top-overlay .article-title { max-width: 100%; font-size: 17px; }
  .podcast-top-overlay .article-dek   { max-width: 100%; }
  .podcast-bottom-overlay { padding: 16px 20px; }
}

/* ─── 12. LAYOUT VIDEO (.video-layout) ──────────────── */
.video-hero {
  margin-bottom: 28px;
}
.video-iframe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  margin-bottom: 20px;
}
.video-iframe-wrap .article-kicker-over { z-index: 2; }
.video-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ─── 13. LAYOUT CATEGORÍA (.categoria-layout) ──────── */
.categoria-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 48px 20px;
  text-align: center;
  margin-bottom: 32px;
}
.categoria-nombre {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--or);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.categoria-desc {
  margin-top: 10px;
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.categoria-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px 48px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ─── SIDEBAR ────────────────────────────────────────── */
.sidebar { position: sticky; top: 56px; }
.sidebar-block { margin-bottom: 32px; }
.sidebar-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--or);
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--or);
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.most-read-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--borde);
}
.most-read-item:last-child { border-bottom: none; }
.most-read-img {
  width: 64px;
  height: 48px;
  object-fit: cover;
  flex-shrink: 0;
}
.most-read-body { flex: 1; }
.most-read-badge {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--or);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.most-read-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--blk);
  line-height: 1.35;
}
.most-read-item:hover .most-read-title { color: var(--or); }

/* ─── 14. CIUDAD LANDING (.ciudad-*) ────────────────── */
.ciudad-hero {
  padding: 24px 20px 0;
  max-width: var(--max);
  margin: 0 auto;
}
.ciudad-hero-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: stretch;
}
.ciudad-hero-main {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: #111;
}
.ciudad-hero-main > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ciudad-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.3) 40%, rgba(0,0,0,.82) 100%);
}
.ciudad-hero-copy {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px;
  color: #fff;
  z-index: 2;
}
.ciudad-kicker {
  display: inline-block;
  background: var(--or);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 12px;
}
.ciudad-titulo {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.ciudad-dek {
  font-size: 18px;
  color: rgba(255,255,255,.88);
  line-height: 1.6;
  max-width: 44ch;
}
.ciudad-panel {
  background: #fff;
  border: 1px solid var(--borde);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ciudad-panel-freq {
  font-family: var(--font-display);
  font-size: 53px;
  font-weight: 800;
  color: var(--blk);
  line-height: 1;
  letter-spacing: -.03em;
}
.ciudad-panel-freq span { color: var(--or); font-size: 26px; }
.ciudad-panel-dial {
  font-size: 15px;
  color: var(--gris);
  line-height: 1.5;
  border-top: 1px solid var(--borde);
  padding-top: 14px;
}
.ciudad-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ciudad-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,102,0,.25);
  background: #fff7f1;
  color: var(--or);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ciudad-shell {
  max-width: var(--max);
  margin: 32px auto 0;
  padding: 0 20px 56px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.ciudad-intro { margin-bottom: 28px; }
.ciudad-intro h2 {
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 800;
  color: var(--blk);
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.ciudad-intro p {
  font-size: 18px;
  color: var(--gris);
  line-height: 1.75;
  max-width: 56ch;
}
.ciudad-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ciudad-card {
  display: block;
  border: 1px solid var(--borde);
  background: #fff;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.ciudad-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-3px); }
.ciudad-card-media {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gris-claro);
}
.ciudad-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.ciudad-card:hover .ciudad-card-media img { transform: scale(1.04); }
.ciudad-card-copy { padding: 18px; }
.ciudad-card-tag {
  display: inline-block;
  color: var(--or);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ciudad-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--blk);
  line-height: 1.3;
  margin-bottom: 8px;
}
.ciudad-card-desc {
  font-size: 15px;
  color: var(--gris);
  line-height: 1.6;
  margin-bottom: 12px;
}
.ciudad-card-cta {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ciudad-card-cta:hover { color: var(--or); }

@media (max-width: 768px) {
  .ciudad-hero { padding: 12px 12px 0; }
  .ciudad-hero-grid { grid-template-columns: 1fr; }
  .ciudad-hero-main { min-height: 300px; }
  .ciudad-panel { flex-direction: row; align-items: center; flex-wrap: wrap; padding: 16px; }
  .ciudad-panel-freq { font-size: 40px; }
  .ciudad-shell { grid-template-columns: 1fr; padding: 0 12px 36px; }
  .ciudad-cards { grid-template-columns: 1fr; }
}

/* ─── 15. LAYOUT AUTOR (.autor-*) ───────────────────── */
.autor-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 48px 20px;
  border-bottom: 3px solid var(--or);
}
.autor-header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
}
.autor-foto {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  object-fit: cover;
  flex-shrink: 0;
  border: 4px solid var(--or);
}
.autor-header-body { flex: 1; }
.autor-cargo-label {
  display: inline-block;
  background: var(--or);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.autor-nombre {
  font-family: var(--font-display);
  font-size: 33px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.autor-bio-header {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 660px;
}
.autor-shell {
  max-width: var(--max);
  margin: 32px auto 0;
  padding: 0 20px 48px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.autor-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.autor-section-header::before,
.autor-section-header::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--or);
  opacity: .25;
}
.autor-section-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--or);
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .autor-header-inner { flex-direction: column; text-align: center; gap: 20px; }
  .autor-bio-header { max-width: 100%; }
  .autor-shell { grid-template-columns: 1fr; }
  .autor-foto { width: 110px; height: 110px; }
  .autor-nombre { font-size: 24px; }
}

/* ─── 15. FOOTER (.site-footer) ─────────────────────── */
.footer-social {
  background: var(--gris-claro);
  border-top: 3px solid var(--or);
  padding: 28px 20px 20px;
  text-align: center;
}
.footer-social p {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gris);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid var(--borde);
  transition: border-color .2s, background .2s;
}
.social-icon:hover { border-color: var(--or); background: var(--or); }
.social-icon:hover svg { fill: #fff; }
.social-icon svg { width: 20px; height: 20px; fill: var(--blk); transition: fill .2s; }
.site-footer {
  background: var(--gris-claro);
  padding: 20px 20px 24px;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 16px;
}
.footer-links a {
  font-size: 13px;
  color: var(--gris);
  transition: color .2s;
}
.footer-links a:hover { color: var(--or); }
.footer-links-sep { color: var(--borde); }
.footer-txt {
  text-align: center;
  font-size: 13px;
  color: var(--gris);
  line-height: 1.8;
}
.footer-txt a { color: var(--or); }
.footer-txt b { color: var(--blk); }

/* ─── 15. PLAYER BAR (.player-bar) ──────────────────── */
.player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  z-index: 200;
  border-top: 2px solid var(--or);
}
.pl-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--or);
  flex-shrink: 0;
}
.pl-info { flex: 1; min-width: 0; }
.pl-station {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--or);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pl-show {
  font-size: 12px;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pl-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}
.pl-btn {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.pl-btn:hover { background: rgba(255,255,255,.2); }
.pl-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--or);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.pl-play:hover { background: var(--or2); }
.pl-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.pl-live-badge {
  background: var(--or);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .08em;
}
.pl-select {
  background: #2a2a2a;
  color: #ccc;
  border: 1px solid #444;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 13px;
  height: 30px;
  cursor: pointer;
}
.pl-emisoras-btn {
  background: var(--or);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 0 12px;
  height: 30px;
  border-radius: 4px;
  letter-spacing: .05em;
  display: none;
}

/* ─── Panel emisoras (.pl-stations-panel) ───────────── */
.pl-stations-panel {
  position: fixed;
  bottom: 74px;
  left: 0;
  right: 0;
  background: #111;
  border-top: 2px solid var(--or);
  z-index: 199;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.pl-stations-panel.open {
  max-height: 420px;
}
.pl-station-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: rgba(255,255,255,.85);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
  transition: background .15s;
  -webkit-tap-highlight-color: transparent;
}
.pl-station-item:active,
.pl-station-item:hover { background: rgba(255,255,255,.08); }
.pl-station-item.active { color: var(--or); }
.pl-station-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
  flex-shrink: 0;
  transition: background .15s;
}
.pl-station-item.active .pl-station-dot { background: var(--or); }
.pl-station-freq {
  margin-left: auto;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
}

/* ─── 16. RESPONSIVE ─────────────────────────────────── */
@media (max-width: 768px) {
  .h-hamburger { display: flex; }
  .h-right { display: none; }
  .h-logo { justify-content: center; }
  .nav-bar { position: relative; }
  .nav-inner { overflow-x: auto; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--borde);
    flex-direction: column;
    padding: 8px 0;
    z-index: 101;
  }
  .nav-links.nav-open { display: flex; }
  .nav-bar a { height: 42px; width: 100%; padding: 0 20px; border-bottom: none; }
  .nav-bar a:hover, .nav-bar a.active { background: var(--gris-claro); border-bottom: none; }
  .nav-spacer { display: none; }
  .nav-live { margin: 4px 20px; width: calc(100% - 40px); justify-content: center; }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 280px auto auto;
    padding: 12px 12px 0;
  }
  .hero-main { grid-row: auto; }
  .hero-side { grid-row: auto; grid-column: auto; height: 180px; }

  .home-section { padding: 0 12px; margin-top: 24px; }
  .home-section-grid,
  .home-section-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .home-section-grid-2 { grid-template-columns: 1fr; }

  .article-shell {
    grid-template-columns: 1fr;
    padding: 16px 12px 36px;
    gap: 28px;
  }
  .article-hero { grid-template-columns: 1fr; }
  .article-hero-img { max-height: 220px; width: 100%; }
  .sidebar { position: static; }

  .podcast-card { grid-template-columns: 1fr; }
  .podcast-cover { min-height: 200px; max-height: 220px; }

  

  .categoria-shell { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }

  .player-bar { gap: 8px; padding: 0 10px; }
  .pl-select { display: none; }
  .pl-emisoras-btn { display: flex; align-items: center; }
}

@media (max-width: 480px) {
  .header-inner { height: 70px; padding: 0 12px; }
  .h-logo-text .main { font-size: 20px; }
  .h-logo-ring { width: 50px; height: 50px; }
  .hero-main .hero-title { font-size: 22px; }
  .hero-side .hero-title { font-size: 14px; }
  .article-title { font-size: 22px; }
  .article-body { font-size: 17px; }
  .home-section-grid { grid-template-columns: 1fr; }
  .home-section-grid-4 { grid-template-columns: 1fr; }
  .pl-show { display: none; }
  .pl-live-badge { display: none; }
  .categoria-nombre { font-size: 29px; }
}

/* ─── Publicidad (.ad-slot) ─────────────────────────── */
.ad-slot { border: 1px solid var(--borde); padding: 8px; text-align: center; background: #fafafa; }
.ad-slot--728 { width: 100%; min-height: 90px; margin: 24px 0; }
.ad-slot--300x250 { width: 300px; min-height: 250px; margin-bottom: 24px; }
.ad-slot--300x600 { width: 300px; min-height: 600px; margin-bottom: 24px; }
.ad-label { font-size: 11px; color: var(--gris); letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.home-section-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}
.home-section-with-sidebar > div { min-width: 0; }
@media (max-width: 768px) {
  .home-section-with-sidebar { grid-template-columns: 1fr; }
  .ad-slot--300x250,
  .ad-slot--300x600 { width: 100%; }
}

/* ─── Utilidades adicionales ────────────────────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.page-spacer { height: 40px; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ─── PODCAST PLAYER PREMIUM ─────────────────────────── */
.pod-player {
  background: #111;
  border-radius: 16px;
  padding: 24px 28px;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.pod-player-main {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pod-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--or);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255,102,0,.45);
  transition: transform .15s, box-shadow .15s;
}
.pod-play-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 22px rgba(255,102,0,.6);
}
.pod-play-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.pod-play-btn .icon-pause { display: none; }
.pod-player.playing .pod-play-btn .icon-play  { display: none; }
.pod-player.playing .pod-play-btn .icon-pause { display: block; }
.pod-time-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pod-times {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #888;
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
}
.pod-times .pod-current { color: var(--or); font-weight: 700; }
.pod-seek {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: #333;
  outline: none;
  cursor: pointer;
}
.pod-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--or);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(255,102,0,.5);
}
.pod-seek::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--or);
  border: none;
  cursor: pointer;
}
.pod-player-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pod-vol-icon {
  flex-shrink: 0;
}
.pod-vol-icon svg {
  width: 18px;
  height: 18px;
  fill: #666;
  display: block;
}
.pod-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 100px;
  height: 4px;
  border-radius: 4px;
  background: #333;
  outline: none;
  cursor: pointer;
}
.pod-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #888;
  cursor: pointer;
}
.pod-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #888;
  border: none;
  cursor: pointer;
}
.pod-speed-btn {
  margin-left: auto;
  background: #222;
  border: 1px solid #333;
  color: #aaa;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.pod-speed-btn:hover { background: var(--or); color: #fff; border-color: var(--or); }

/* ─── Podcast article info (debajo de la card) ───────── */
.podcast-article-info {
  padding: 24px 0 8px;
  border-bottom: 1px solid var(--borde);
  margin-bottom: 24px;
}
.podcast-article-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--blk);
  line-height: 1.25;
  margin-bottom: 10px;
}
.podcast-article-dek {
  font-size: 16px;
  color: var(--gris);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ─── CARRUSEL HOME ──────────────────────────────────── */
.carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}
.carousel-track-wrap {
  overflow: hidden;
  flex: 1;
}
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.carousel-track .card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
}
.carousel-track .card-img {
  aspect-ratio: 4/3;
}
.carousel-track .card-title {
  font-size: 14px;
}
.carousel-track .card-body {
  padding: 10px 12px 12px;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--borde);
  box-shadow: 0 4px 16px rgba(0,0,0,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, box-shadow .2s, transform .15s;
  z-index: 2;
}
.carousel-btn:hover {
  background: var(--or);
  border-color: var(--or);
  box-shadow: 0 6px 20px rgba(255,102,0,.35);
  transform: scale(1.08);
}
.carousel-btn:hover svg { stroke: #fff; }
.carousel-btn:disabled { opacity: .25; cursor: default; transform: none; box-shadow: none; }
.carousel-btn svg { width: 20px; height: 20px; stroke: var(--blk); stroke-width: 2.5; fill: none; }
.carousel-btn.carousel-prev { margin-right: 14px; }
.carousel-btn.carousel-next { margin-left: 14px; }
@media (max-width: 768px) {
  .carousel-track .card { flex: 0 0 calc(100% - 0px); }
  .carousel-btn { width: 38px; height: 38px; }
}

/* ─── BANNER REGULARIZACIÓN 2026 ────────────────────── */
@keyframes reg-shine {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes reg-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,0,0,.4); }
  50%       { box-shadow: 0 0 0 8px rgba(200,0,0,0); }
}
.promo-banner-reg2026 {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #0a0a0a;
  border: 1px solid #2a0000;
  border-left: 4px solid #cc0000;
  padding: 18px 24px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .2s;
  animation: reg-pulse 2.5s ease-in-out infinite;
}
.promo-banner-reg2026::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(200,0,0,.08) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: reg-shine 3s linear infinite;
}
.promo-banner-reg2026:hover {
  border-color: #ff2020;
  transform: translateY(-2px);
}
.promo-banner-tag {
  background: #cc0000;
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.promo-banner-text {
  color: #ccc;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  flex: 1;
  line-height: 1.4;
  position: relative;
}
.promo-banner-text strong {
  color: #fff;
  font-weight: 700;
}
.promo-banner-cta {
  color: #cc0000;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  transition: color .2s;
}
.promo-banner-reg2026:hover .promo-banner-cta { color: #ff4444; }
@media (max-width: 600px) {
  .promo-banner-reg2026 { flex-wrap: wrap; gap: 10px; padding: 14px 16px; }
  .promo-banner-cta { width: 100%; }
}

/* ─── PÁGINAS LEGALES ────────────────────────────────── */
.legal-shell {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}
.legal-header {
  margin-bottom: 36px;
  border-bottom: 2px solid var(--borde);
  padding-bottom: 24px;
}
.legal-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--blk);
  margin: 12px 0 10px;
}
.legal-intro {
  font-size: 16px;
  color: var(--gris);
  line-height: 1.7;
  max-width: 70ch;
}
.legal-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.legal-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--borde);
}
.legal-block:last-child { border-bottom: none; }
.legal-block h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--blk);
  margin-bottom: 12px;
}
.legal-block p {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 10px;
}
.legal-block p:last-child { margin-bottom: 0; }
.legal-block ul {
  margin: 8px 0 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-block ul li {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}
.legal-block a { color: var(--or); text-decoration: underline; }

/* ─── CIUDAD SEO BODY ────────────────────────────────── */
.ciudad-seo-block {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--borde);
}
.ciudad-seo-block h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--blk);
  margin-bottom: 14px;
}
.ciudad-seo-block p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--borde);
}
.faq-item:last-child { border-bottom: none; }
.faq-item dt {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--blk);
  margin-bottom: 8px;
}
.faq-item dd {
  font-size: 15px;
  color: #555;
  line-height: 1.75;
  margin: 0;
}
.article-breadcrumb--light a,
.article-breadcrumb--light span {
  color: rgba(255,255,255,.85) !important;
}
.article-breadcrumb--light .article-breadcrumb-sep {
  color: rgba(255,255,255,.5) !important;
}

/* ═══════════════════════════════════════════════════════
   HUB DE CIUDAD
   ═══════════════════════════════════════════════════════ */

/* ── City bar ── */
.hub-city-bar {
  background: var(--or);
  padding: 0;
}
.hub-city-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hub-city-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hub-city-label strong { font-weight: 800; }
.hub-city-freq {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}

/* ── Breadcrumb ── */
.hub-breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--gris);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hub-breadcrumb a { color: var(--gris); }
.hub-breadcrumb a:hover { color: var(--or); }
.hub-breadcrumb-sep { color: var(--borde); }

/* ── Hero ── */
.hub-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #111;
  max-width: var(--max);
  margin: 0 auto 0;
}
.hub-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hub-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.75) 0%, rgba(255,102,0,.2) 100%);
}
.hub-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 48px;
  z-index: 2;
}
.hub-hero-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 14px;
}
.hub-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  max-width: 700px;
  margin-bottom: 28px;
}
.hub-hero-play {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  align-self: flex-start;
}
.hub-play-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--or);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(255,102,0,.5);
}
.hub-play-circle svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  margin-left: 3px;
}
.hub-hero-play:hover .hub-play-circle {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(255,102,0,.7);
}
.hub-play-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── Programas ── */
.hub-programas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hub-programa-card {
  border: 1px solid rgba(255,255,255,.1);
  padding: 20px;
  background: rgba(255,255,255,.06);
  transition: background .2s;
}
.hub-programa-card:hover { background: rgba(255,255,255,.1); }
.hub-programa-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.hub-programa-dias {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.hub-programa-horario {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--or);
}
.hub-programa-nombre {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.hub-programa-desc {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 10px;
}
.hub-programa-locutor {
  font-size: 12px;
  font-weight: 700;
  color: var(--or);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Locutores ── */
.hub-locutores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hub-locutor-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--borde);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .15s;
  background: #fff;
}
.hub-locutor-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.hub-locutor-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: var(--gris-claro);
}
.hub-locutor-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hub-locutor-programa {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--or);
  margin-bottom: 4px;
}
.hub-locutor-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--blk);
  margin-bottom: 8px;
  line-height: 1.3;
}
.hub-locutor-bio {
  font-size: 13px;
  color: var(--gris);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Eventos ── */
.hub-eventos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hub-evento-main,
.hub-evento-side {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.hub-evento-main { min-height: 360px; }
.hub-evento-side  { min-height: 165px; }
.hub-eventos-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hub-evento-main img,
.hub-evento-side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hub-evento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.75) 100%);
}
.hub-evento-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  z-index: 2;
  color: #fff;
}
.hub-evento-fecha {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--or);
  margin-bottom: 4px;
}
.hub-evento-titulo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 4px;
}
.hub-evento-venue {
  font-size: 12px;
  color: rgba(255,255,255,.7);
}

/* ── Restaurantes ── */
.hub-restaurantes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hub-restaurante-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 20px;
  transition: background .2s;
}
.hub-restaurante-card:hover { background: rgba(255,255,255,.1); }
.hub-restaurante-head { margin-bottom: 10px; }
.hub-restaurante-tipo {
  display: inline-block;
  background: var(--or);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 2px 8px;
  margin-bottom: 6px;
}
.hub-restaurante-nombre {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.hub-restaurante-desc {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 14px;
}
.hub-restaurante-datos { display: flex; flex-direction: column; gap: 5px; }
.hub-restaurante-dato { font-size: 13px; color: rgba(255,255,255,.75); }
.hub-dato-label {
  font-weight: 700;
  color: var(--or);
  margin-right: 5px;
}

/* ── Responsive hub ── */
@media (max-width: 960px) {
  .hub-programas-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-locutores-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-restaurantes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .hub-hero { height: 340px; }
  .hub-hero-content { padding: 24px 20px; }
  .hub-city-freq { font-size: 16px; }
  .hub-programas-grid,
  .hub-locutores-grid,
  .hub-eventos-grid,
  .hub-restaurantes-grid { grid-template-columns: 1fr; }
  .hub-evento-main { min-height: 260px; }
}

/* ─── Página de Contacto ────────────────────────────── */
.contact-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1200 50%, #1a1a1a 100%);
  padding: 56px 20px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(230,61,50,.15) 0%,
    rgba(255,102,0,.18) 50%,
    rgba(255,214,0,.10) 100%);
  pointer-events: none;
}
.contact-hero-eyebrow {
  display: inline-block;
  background: linear-gradient(90deg, #e63d32, #FF6600);
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: .03em;
}
.contact-hero h1 span { color: var(--or); }
.contact-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 20px 72px;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 48px;
  align-items: start;
}

/* ── Info lateral ── */
.contact-info-block { display: flex; flex-direction: column; gap: 28px; }
.contact-phone-card {
  background: linear-gradient(135deg, #1a1a1a, #2a1000);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
}
.contact-phone-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e63d32, #FF6600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-phone-icon svg { width: 24px; height: 24px; fill: #fff; }
.contact-phone-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}
.contact-phone-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .03em;
}
.contact-phone-sub {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 3px;
}

.contact-depts-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gris);
  margin-bottom: 12px;
}
.contact-dept-cards { display: flex; flex-direction: column; gap: 10px; }
.contact-dept-card {
  background: #fff;
  border: 1.5px solid var(--borde);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.contact-dept-card:hover {
  border-color: var(--or);
  box-shadow: 0 4px 16px rgba(255,102,0,.1);
  background: #fffaf7;
}
.contact-dept-card.is-active {
  border-color: var(--or);
  background: #fff7f2;
  box-shadow: 0 4px 20px rgba(255,102,0,.15);
}
.contact-dept-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-dept-body { flex: 1; min-width: 0; }
.contact-dept-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--blk);
  margin-bottom: 1px;
}
.contact-dept-desc {
  font-size: 12px;
  color: var(--gris);
}
.contact-dept-arrow {
  font-size: 16px;
  color: var(--or);
  font-weight: 700;
  opacity: 0;
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}
.contact-dept-card:hover .contact-dept-arrow,
.contact-dept-card.is-active .contact-dept-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ── Formulario ── */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--borde);
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,.07);
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--blk);
  margin: 0 0 6px;
}
.contact-form-sub {
  font-size: 14px;
  color: var(--gris);
  margin: 0 0 28px;
  line-height: 1.5;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-field { display: flex; flex-direction: column; gap: 6px; }
.contact-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blk);
}
.contact-input,
.contact-select,
.contact-textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1.5px solid var(--borde);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--blk);
  background: #fafafa;
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.contact-input:focus,
.contact-select:focus,
.contact-textarea:focus {
  border-color: var(--or);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,102,0,.12);
}
.contact-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.contact-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.contact-select-hint {
  font-size: 12px;
  color: var(--gris);
  margin-top: -10px;
}
.contact-select-hint span {
  font-weight: 700;
  color: var(--or);
}
.contact-submit {
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(90deg, #e63d32, #FF6600);
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(230,61,50,.3);
  margin-top: 6px;
}
.contact-submit:hover {
  opacity: .92;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(230,61,50,.4);
}
.contact-submit:active { transform: translateY(0); }
.contact-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}
.contact-notice {
  font-size: 12px;
  color: var(--gris);
  text-align: center;
  line-height: 1.5;
}
.contact-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}
.contact-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e63d32, #FF6600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.contact-success-icon svg { width: 32px; height: 32px; fill: #fff; }
.contact-success h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--blk);
  margin: 0 0 8px;
}
.contact-success p { font-size: 14px; color: var(--gris); margin: 0; }

@media (max-width: 900px) {
  .contact-shell { grid-template-columns: 1fr; gap: 32px; }
  .contact-dept-email { max-width: 100%; }
}
@media (max-width: 600px) {
  .contact-form-wrap { padding: 28px 20px; border-radius: 14px; }
  .contact-field-row { grid-template-columns: 1fr; gap: 18px; }
  .contact-hero { padding: 40px 16px 36px; }
}


