/*
 * NexoRadio Globo Premium 6.2.0
 * Capa visual final. Se carga después del CSS heredado para mantener
 * compatibilidad con el reproductor y los tipos de contenido de WordPress.
 */

:root {
  --nxr-bg: #070609;
  --nxr-bg-soft: #0e0910;
  --nxr-panel: #151017;
  --nxr-panel-2: #1b1118;
  --nxr-text: #ffffff;
  --nxr-muted: rgba(255, 255, 255, .64);
  --nxr-line: rgba(255, 255, 255, .08);
  --nxr-pink: var(--globo-primary, #d10f50);
  --nxr-pink-bright: #ff2f7b;
  --nxr-green: #21c765;
  --nxr-radius: 24px;
  --nxr-shadow: 0 28px 78px rgba(0, 0, 0, .38);
}

html { scroll-behavior: smooth; }
html.nxg5-modal-open { overflow: hidden; }
body.nxglobo-front-page {
  background: var(--nxr-bg) !important;
  color: var(--nxr-text);
  overflow-x: hidden;
  padding-bottom: 116px !important;
}
body.nxglobo-front-page main { overflow: clip; }
body.nxglobo-front-page .nxg5-shell,
body.nxglobo-front-page .hder-container {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header */
body.nxglobo-front-page .nxglobo-site-header {
  height: 78px !important;
  background: rgba(8, 5, 9, .82) !important;
  border-bottom: 1px solid rgba(255,255,255,.07) !important;
  box-shadow: 0 12px 38px rgba(0,0,0,.18) !important;
  backdrop-filter: blur(22px) saturate(150%);
}
body.nxglobo-front-page .nxglobo-site-header.is-scrolled {
  background: rgba(8, 5, 9, .94) !important;
}
body.nxglobo-front-page .nxglobo-site-header__inner {
  height: 78px;
  gap: 22px;
}
body.nxglobo-front-page .nxglobo-site-header__logo img {
  max-height: 44px;
  width: auto;
}
body.nxglobo-front-page .nxglobo-desktop-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
body.nxglobo-front-page .nxglobo-desktop-menu a {
  position: relative;
  color: rgba(255,255,255,.76);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
body.nxglobo-front-page .nxglobo-desktop-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  background: var(--nxr-pink-bright);
  transition: right .22s ease;
}
body.nxglobo-front-page .nxglobo-desktop-menu a:hover { color: #fff; }
body.nxglobo-front-page .nxglobo-desktop-menu a:hover::after { right: 0; }
body.nxglobo-front-page .nxglobo-site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
body.nxglobo-front-page .nxglobo-header-socials {
  display: flex;
  align-items: center;
  gap: 7px;
}
body.nxglobo-front-page .nxglobo-header-socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: 13px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
body.nxglobo-front-page .nxglobo-header-socials a:hover {
  transform: translateY(-2px);
  background: var(--nxr-pink);
  border-color: var(--nxr-pink);
}
body.nxglobo-front-page .nxglobo-header-promo {
  min-height: 42px !important;
  padding: 0 18px !important;
  border-radius: 13px !important;
  background: linear-gradient(135deg, var(--nxr-pink-bright), #b00043) !important;
  color: #fff !important;
  box-shadow: 0 13px 30px rgba(229,0,90,.26);
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: .05em;
}
body.nxglobo-front-page .nxglobo-header-promo:hover { transform: translateY(-2px); }

/* React slider */
.nxg6-react-slider-root { min-height: 1px; }
.nxr-slider {
  position: relative;
  padding: 104px 0 26px;
  background:
    radial-gradient(circle at 84% 3%, rgba(225,0,90,.17), transparent 30%),
    linear-gradient(180deg, #09060a 0%, #070609 100%);
}
body.admin-bar .nxr-slider { padding-top: 136px; }
.nxr-slider__frame {
  position: relative;
  aspect-ratio: 16 / 7.35;
  min-height: 430px;
  max-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(255,47,123,.38);
  border-radius: 30px;
  background: #10080e;
  box-shadow: var(--nxr-shadow), inset 0 1px 0 rgba(255,255,255,.07);
}
.nxr-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition: opacity .55s ease, visibility .55s ease, transform .75s ease;
}
.nxr-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
  z-index: 2;
}
.nxr-slider__link {
  position: absolute;
  inset: 0;
  display: block;
  background: #11080f;
}
.nxr-slider__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.nxr-slider__arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 50%;
  background: rgba(8,5,10,.62);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.nxr-slider__arrow:hover {
  background: var(--nxr-pink);
  border-color: var(--nxr-pink);
  transform: translateY(-50%) scale(1.06);
}
.nxr-slider__arrow--prev { left: 18px; }
.nxr-slider__arrow--next { right: 18px; }
.nxr-slider__dots {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(6,4,7,.50);
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}
.nxr-slider__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.42);
  cursor: pointer;
  transition: width .22s ease, background .22s ease;
}
.nxr-slider__dots button.is-active {
  width: 28px;
  background: var(--nxr-pink-bright);
}
.nxr-slider--fallback .nxr-slider__frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}

/* WhatsApp */
body.nxglobo-front-page .nxg6-whatsapp-strip {
  padding: 0 0 28px;
  background: var(--nxr-bg);
}
body.nxglobo-front-page .nxg6-whatsapp-strip__button {
  min-height: 82px;
  border: 1px solid rgba(55,235,124,.35);
  border-radius: 22px;
  background: linear-gradient(135deg, #0d9f4c, #20c665 55%, #079345);
  box-shadow: 0 18px 46px rgba(13,169,78,.20);
}

/* Secciones */
body.nxglobo-front-page .nxg5-section {
  padding: 70px 0;
  background: var(--nxr-bg);
}
body.nxglobo-front-page .nxg5-section:nth-of-type(even) {
  background: linear-gradient(180deg, #0b080d, #08070a);
}
body.nxglobo-front-page .nxg5-section-heading {
  margin-bottom: 30px;
}
body.nxglobo-front-page .nxg5-section-heading > div > span {
  color: var(--nxr-pink-bright);
  font-size: 10px;
  letter-spacing: .18em;
}
body.nxglobo-front-page .nxg5-section-heading h2 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -.045em;
}
body.nxglobo-front-page .nxg5-section-heading > a {
  color: rgba(255,255,255,.68);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
}
body.nxglobo-front-page .nxg5-section-heading > a:hover { color: #fff; }

/* Programación */
body.nxglobo-front-page .nxg5-section--programs {
  background: #f6f2f4 !important;
  color: #1b0b13;
}
body.nxglobo-front-page .nxg5-section--programs .nxg5-section-heading h2 { color: #1b0b13; }
body.nxglobo-front-page .nxg5-schedule-tabs {
  border: 1px solid rgba(42,10,25,.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(61,18,38,.09);
}
body.nxglobo-front-page .nxg5-schedule-tab.is-active {
  background: linear-gradient(135deg, var(--nxr-pink), #a4003d);
  color: #fff;
  box-shadow: 0 12px 28px rgba(209,15,80,.24);
}
body.nxglobo-front-page .nxg5-schedule-item {
  border: 1px solid rgba(42,10,25,.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(61,18,38,.08);
}

/* Noticias: estructura exacta de referencia */
body.nxglobo-front-page .nxg5-news-premium {
  display: grid;
  grid-template-columns: minmax(0, 1.72fr) minmax(0, .84fr) minmax(0, .84fr);
  grid-template-areas:
    "hero top tall"
    "hero mid tall";
  grid-template-rows: repeat(2, minmax(230px, 1fr));
  gap: 14px;
  min-height: 500px;
}
body.nxglobo-front-page .nxg5-news-premium--count-1 {
  grid-template-columns: 1fr;
  grid-template-areas: "hero";
}
body.nxglobo-front-page .nxg5-news-premium--count-2 {
  grid-template-columns: minmax(0, 1.55fr) minmax(0, .95fr);
  grid-template-areas: "hero tall";
}
body.nxglobo-front-page .nxg5-news-premium--count-3 {
  grid-template-columns: minmax(0, 1.55fr) minmax(0, .95fr);
  grid-template-areas: "hero top" "hero mid";
}
body.nxglobo-front-page .nxg5-news-premium-card__link {
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: none;
}
body.nxglobo-front-page .nxg5-news-premium-card__content {
  padding: 18px 20px 20px;
}
body.nxglobo-front-page .nxg5-news-premium-card--hero .nxg5-news-premium-card__content {
  max-width: 80%;
  padding: 26px 28px;
}
body.nxglobo-front-page .nxg5-news-premium-card__tag {
  min-height: 27px;
  padding: 0 13px;
  color: #ec2297;
  font-size: 11px;
}
body.nxglobo-front-page .nxg5-news-premium-card--hero h3 {
  font-size: clamp(27px, 3vw, 46px);
  line-height: 1.06;
  -webkit-line-clamp: 4;
}
body.nxglobo-front-page .nxg5-news-premium-card--top h3,
body.nxglobo-front-page .nxg5-news-premium-card--mid h3,
body.nxglobo-front-page .nxg5-news-premium-card--tall h3 {
  font-size: clamp(16px, 1.35vw, 23px);
  line-height: 1.13;
}

/* Canales */
@media (min-width: 1101px) {
  body.nxglobo-front-page .nxg5-live-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}
body.nxglobo-front-page .nxg5-live-card {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background: linear-gradient(180deg, #171018, #100c12);
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
}
body.nxglobo-front-page .nxg5-live-card:hover {
  border-color: rgba(255,47,123,.50);
  transform: translateY(-5px);
}
body.nxglobo-front-page .nxg5-live-card__media { border-radius: 19px 19px 0 0; }
body.nxglobo-front-page .nxg5-live-card__content h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Videos y tarjetas */
body.nxglobo-front-page .nxg5-video-card,
body.nxglobo-front-page .nxg5-podcast-card,
body.nxglobo-front-page .nxg5-host-card {
  border-color: rgba(255,255,255,.08);
  background: linear-gradient(180deg, #171018, #100c12);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

/* Mini player */
body.nxglobo-front-page #app-super .player {
  border: 1px solid rgba(255,255,255,.13) !important;
  background: linear-gradient(110deg, rgba(84,3,34,.97), rgba(209,15,80,.97), rgba(109,3,43,.97)) !important;
  box-shadow: 0 20px 55px rgba(0,0,0,.42) !important;
  backdrop-filter: blur(16px);
}
body.nxglobo-front-page #app-super .player-button-play {
  box-shadow: 0 10px 26px rgba(0,0,0,.20) !important;
}

/* React promociones */
.nxr-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 10090;
  display: grid;
  place-items: center;
  padding: 18px;
}
.nxr-promo-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(3,3,5,.82);
  backdrop-filter: blur(12px);
  cursor: default;
}
.nxr-promo-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100vw - 32px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  border: 1px solid rgba(255,47,123,.32);
  border-radius: 28px;
  background: linear-gradient(145deg, #180b15, #09070a 72%);
  box-shadow: 0 34px 100px rgba(0,0,0,.58);
  outline: none;
}
.nxr-promo-modal__dialog--form { width: min(620px, calc(100vw - 32px)); }
.nxr-promo-modal__close {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  background: rgba(8,5,10,.76);
  color: #fff;
  cursor: pointer;
}
.nxr-promo-gallery { padding: 42px; }
.nxr-promo-gallery__heading { padding-right: 48px; margin-bottom: 22px; }
.nxr-promo-gallery__heading span {
  color: var(--nxr-pink-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}
.nxr-promo-gallery__heading h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -.04em;
}
.nxr-promo-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.nxr-promo-gallery__grid.is-single {
  grid-template-columns: minmax(0, 340px);
  justify-content: center;
}
.nxr-promo-gallery__item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: #220811;
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.nxr-promo-gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 6.8;
  display: block;
  object-fit: contain;
  background: #220811;
}
.nxr-promo-gallery__item > span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 16px;
  border-radius: 12px;
  background: rgba(8,5,10,.78);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .06em;
  backdrop-filter: blur(9px);
}
.nxr-promo-empty {
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
  color: #fff;
}
.nxr-promo-empty > i { color: var(--nxr-pink-bright); font-size: 34px; }
.nxr-promo-empty p { margin: 0; color: var(--nxr-muted); }
.nxr-promo-form-view { padding: 48px 32px 32px; }
.nxr-promo-form-view__back {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  background: rgba(255,255,255,.04);
  color: #fff;
  cursor: pointer;
}
.nxr-promo-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 25px;
  border-radius: 20px;
  background: linear-gradient(155deg, #d31335, #b50825);
  box-shadow: 0 24px 60px rgba(0,0,0,.30);
}
.nxr-promo-form__heading span {
  color: rgba(255,255,255,.78);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
}
.nxr-promo-form__heading h2 {
  margin: 6px 0 4px;
  color: #fff;
  font-size: 30px;
  line-height: 1.05;
}
.nxr-promo-form label { display: flex; flex-direction: column; gap: 5px; }
.nxr-promo-form label > span { color: rgba(255,255,255,.92); font-size: 10px; font-weight: 800; }
.nxr-promo-form input,
.nxr-promo-form textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: #282126;
  font: inherit;
  outline: 0;
}
.nxr-promo-form input { height: 48px; padding: 0 14px; }
.nxr-promo-form textarea { min-height: 92px; padding: 13px 14px; resize: vertical; }
.nxr-promo-form input:focus,
.nxr-promo-form textarea:focus { box-shadow: 0 0 0 3px rgba(255,255,255,.24); }
.nxr-promo-form__submit {
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 11px;
  background: rgba(88,0,15,.25);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.nxr-promo-form__submit:disabled { opacity: .65; cursor: wait; }
.nxr-promo-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 11px;
  font-size: 12px;
  font-weight: 700;
}
.nxr-promo-status.is-success { background: rgba(20,100,53,.42); color: #d9ffe8; }
.nxr-promo-status.is-error { background: rgba(89,0,13,.42); color: #fff0f2; }
.nxr-honeypot { position: absolute !important; left: -9999px !important; }

/* Footer */
body.nxglobo-front-page .nxg5-footer {
  border-top: 1px solid rgba(255,255,255,.07);
  background: #070507;
}

/* Responsive */
@media (max-width: 1100px) {
  body.nxglobo-front-page .nxglobo-header-socials { display: none; }
  body.nxglobo-front-page .nxg5-news-premium {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, .9fr);
    grid-template-areas: "hero hero" "top tall" "mid tall";
    grid-template-rows: minmax(350px, auto) repeat(2, minmax(190px, 1fr));
  }
  body.nxglobo-front-page .nxg5-news-premium-card--hero .nxg5-news-premium-card__content { max-width: 88%; }
}
@media (max-width: 900px) {
  body.nxglobo-front-page .nxglobo-desktop-menu { display: none; }
  .nxr-slider { padding-top: 94px; }
  body.admin-bar .nxr-slider { padding-top: 138px; }
  .nxr-slider__frame {
    width: calc(100% - 18px) !important;
    aspect-ratio: 16 / 8.3;
    min-height: 0;
    border-radius: 22px;
  }
  body.nxglobo-front-page .nxg5-news-premium,
  body.nxglobo-front-page .nxg5-news-premium--count-2,
  body.nxglobo-front-page .nxg5-news-premium--count-3 {
    grid-template-columns: 1fr;
    grid-template-areas: "hero" "top" "mid" "tall";
    grid-template-rows: none;
    min-height: 0;
  }
  body.nxglobo-front-page .nxg5-news-premium-card { min-height: 280px; }
  body.nxglobo-front-page .nxg5-news-premium-card--hero .nxg5-news-premium-card__content,
  body.nxglobo-front-page .nxg5-news-premium-card__content { max-width: 100%; }
  .nxr-promo-gallery { padding: 42px 18px 20px; }
  .nxr-promo-gallery__grid { grid-template-columns: 1fr; }
  .nxr-promo-gallery__grid.is-single { grid-template-columns: minmax(0, 320px); }
}
@media (max-width: 620px) {
  body.nxglobo-front-page .nxg5-shell,
  body.nxglobo-front-page .hder-container { width: min(100% - 22px, 1220px); }
  body.nxglobo-front-page .nxglobo-header-promo span { display: none; }
  body.nxglobo-front-page .nxglobo-header-promo { width: 42px; padding: 0 !important; justify-content: center; }
  .nxr-slider__frame { aspect-ratio: 4 / 3; border-radius: 18px; }
  .nxr-slider__arrow { width: 38px; height: 38px; }
  .nxr-slider__arrow--prev { left: 8px; }
  .nxr-slider__arrow--next { right: 8px; }
  .nxr-slider__dots { bottom: 9px; }
  body.nxglobo-front-page .nxg5-section { padding: 54px 0; }
  body.nxglobo-front-page .nxg5-section-heading { align-items: flex-start; }
  body.nxglobo-front-page .nxg5-section-heading > a { margin-top: 10px; }
  .nxr-promo-modal { padding: 6px; }
  .nxr-promo-modal__dialog { width: calc(100vw - 12px); max-height: calc(100vh - 12px); border-radius: 20px; }
  .nxr-promo-form-view { padding: 48px 14px 16px; }
  .nxr-promo-form { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ======================================================================
 * GLOBO PREMIUM 6.1.0 · STUDIO POP REFINEMENT
 * Escala más fina, editorial y juvenil. Esta capa compacta los elementos
 * principales sin modificar el motor del reproductor ni la lógica React.
 * ====================================================================== */

:root {
  --nxr-bg: #08080c;
  --nxr-bg-soft: #0c0c12;
  --nxr-panel: #121219;
  --nxr-panel-2: #171720;
  --nxr-text: #f8f8fb;
  --nxr-muted: rgba(248, 248, 251, .58);
  --nxr-line: rgba(255, 255, 255, .075);
  --nxr-pink: var(--globo-primary, #d10f50);
  --nxr-pink-bright: #ff2f7d;
  --nxr-violet: #8a63ff;
  --nxr-green: #1fd36b;
  --nxr-radius: 16px;
  --nxr-shadow: 0 18px 55px rgba(0, 0, 0, .30);
}

body.nxglobo-front-page {
  background:
    radial-gradient(circle at 78% 4%, rgba(255, 47, 125, .055), transparent 26%),
    radial-gradient(circle at 8% 34%, rgba(138, 99, 255, .035), transparent 25%),
    var(--nxr-bg) !important;
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  letter-spacing: -.006em;
  padding-bottom: 96px !important;
}
body.nxglobo-front-page .nxg5-shell,
body.nxglobo-front-page .hder-container,
body.nxglobo-front-page .nxglobo-shell {
  width: min(1160px, calc(100% - 48px));
}
body.nxglobo-front-page a,
body.nxglobo-front-page button { -webkit-tap-highlight-color: transparent; }
body.nxglobo-front-page img { image-rendering: auto; }

/* Header más fino */
body.nxglobo-front-page .nxglobo-site-header {
  height: 68px !important;
  background: rgba(8, 8, 12, .78) !important;
  border-bottom-color: rgba(255,255,255,.055) !important;
  box-shadow: 0 8px 26px rgba(0,0,0,.16) !important;
  backdrop-filter: blur(20px) saturate(145%);
}
body.nxglobo-front-page .nxglobo-site-header.is-scrolled {
  background: rgba(8, 8, 12, .94) !important;
}
body.nxglobo-front-page .nxglobo-site-header__inner {
  height: 68px;
  grid-template-columns: 144px 1fr auto;
  gap: 18px;
}
body.nxglobo-front-page .nxglobo-site-header__logo img {
  height: auto !important;
  max-height: 38px !important;
  max-width: 112px !important;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.25));
}
body.nxglobo-front-page .nxglobo-desktop-menu { gap: 23px; }
body.nxglobo-front-page .nxglobo-desktop-menu a {
  padding: 24px 0 21px;
  color: rgba(255,255,255,.67);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .065em;
}
body.nxglobo-front-page .nxglobo-desktop-menu a::after {
  bottom: 14px;
  height: 1.5px;
}
body.nxglobo-front-page .nxglobo-site-header__actions { gap: 8px; }
body.nxglobo-front-page .nxglobo-header-socials { gap: 5px; }
body.nxglobo-front-page .nxglobo-header-socials a {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  font-size: 11px;
  background: rgba(255,255,255,.025);
}
body.nxglobo-front-page .nxglobo-header-socials a:hover {
  transform: translateY(-1px);
  background: rgba(255,47,125,.16);
  border-color: rgba(255,47,125,.45);
  color: #ff74aa;
}
body.nxglobo-front-page .nxglobo-header-promo {
  min-height: 36px !important;
  padding: 0 14px !important;
  border-radius: 11px !important;
  gap: 7px !important;
  box-shadow: 0 9px 22px rgba(209,15,80,.20) !important;
  font-size: 9px !important;
  letter-spacing: .075em;
}

/* Slider editorial, menos alto */
.nxr-slider {
  padding: 88px 0 20px;
  background:
    radial-gradient(circle at 80% 0%, rgba(255,47,125,.10), transparent 28%),
    transparent;
}
body.admin-bar .nxr-slider { padding-top: 120px; }
.nxr-slider__frame {
  aspect-ratio: 16 / 6.7;
  min-height: 350px;
  max-height: 478px;
  border-color: rgba(255,47,125,.22);
  border-radius: 20px;
  box-shadow: 0 20px 58px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.045);
}
.nxr-slider__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
}
.nxr-slider__slide { transform: scale(1.008); }
.nxr-slider__arrow {
  width: 38px;
  height: 38px;
  border-color: rgba(255,255,255,.14);
  background: rgba(8,8,12,.54);
  font-size: 12px;
}
.nxr-slider__arrow--prev { left: 13px; }
.nxr-slider__arrow--next { right: 13px; }
.nxr-slider__dots {
  bottom: 12px;
  gap: 6px;
  padding: 5px 8px;
  border-color: rgba(255,255,255,.075);
  background: rgba(8,8,12,.46);
}
.nxr-slider__dots button { width: 6px; height: 6px; }
.nxr-slider__dots button.is-active { width: 20px; }

/* WhatsApp cabina: protagonista sin ser pesado */
body.nxglobo-front-page .nxg6-whatsapp-strip { padding: 0 0 18px; }
body.nxglobo-front-page .nxg6-whatsapp-strip__button {
  min-height: 62px;
  padding: 8px 16px;
  border-radius: 16px;
  border-color: rgba(52,231,119,.24);
  background: linear-gradient(108deg, #0b8f43, #17b85a 55%, #0a9447);
  box-shadow: 0 12px 31px rgba(9,150,70,.17);
}
body.nxglobo-front-page .nxg6-whatsapp-strip__icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  font-size: 20px;
}
body.nxglobo-front-page .nxg6-whatsapp-strip__copy { gap: 2px; }
body.nxglobo-front-page .nxg6-whatsapp-strip__copy strong { font-size: 14px; letter-spacing: -.015em; }
body.nxglobo-front-page .nxg6-whatsapp-strip__copy small { font-size: 9px; opacity: .72; }
body.nxglobo-front-page .nxg6-whatsapp-strip__status {
  min-height: 28px;
  padding: 0 10px;
  font-size: 7.5px;
  letter-spacing: .08em;
}
body.nxglobo-front-page .nxg6-whatsapp-strip__arrow {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

/* Ritmo general de secciones */
body.nxglobo-front-page .nxg5-section,
body.nxglobo-front-page .nxg5-home .nxglobo-section {
  padding: 52px 0;
  background: transparent !important;
}
body.nxglobo-front-page .nxg5-section + .nxg5-section,
body.nxglobo-front-page .nxglobo-section + .nxg5-section,
body.nxglobo-front-page .nxg5-section + .nxglobo-section {
  border-top: 1px solid rgba(255,255,255,.035);
}
body.nxglobo-front-page .nxg5-section-heading,
body.nxglobo-front-page .nxglobo-section-heading {
  align-items: center;
  margin-bottom: 22px;
  gap: 18px;
}
body.nxglobo-front-page .nxg5-section-heading > div > span,
body.nxglobo-front-page .nxglobo-section-heading > div > span {
  margin: 0;
  color: #ff5a98 !important;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .19em;
}
body.nxglobo-front-page .nxg5-section-heading h2,
body.nxglobo-front-page .nxglobo-section-heading h2,
body.nxglobo-front-page .nxglobo-section-heading--light h2 {
  margin-top: 5px;
  color: #f8f8fb !important;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 790;
  line-height: 1;
  letter-spacing: -.045em;
}
body.nxglobo-front-page .nxglobo-section-heading::before { display: none; }
body.nxglobo-front-page .nxg5-section-heading > i,
body.nxglobo-front-page .nxglobo-section-heading > i {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  box-shadow: none;
  color: #ff5a98;
  font-size: 14px;
}
body.nxglobo-front-page .nxg5-section-heading > a,
body.nxglobo-front-page .nxglobo-section-heading > a {
  min-height: 34px;
  padding: 0 12px;
  border-color: rgba(255,255,255,.075);
  border-radius: 10px;
  background: rgba(255,255,255,.025);
  color: rgba(255,255,255,.61);
  font-size: 8px;
  letter-spacing: .075em;
}

/* Programación compacta estilo estudio */
body.nxglobo-front-page .nxg5-section--schedule {
  color: #fff;
  background:
    radial-gradient(circle at 96% 8%, rgba(255,47,125,.055), transparent 29%),
    transparent !important;
}
body.nxglobo-front-page .nxg5-schedule {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.065);
  border-radius: 16px;
  background: rgba(255,255,255,.018);
  box-shadow: 0 16px 45px rgba(0,0,0,.15);
}
body.nxglobo-front-page .nxg5-schedule-tabs {
  min-height: 46px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
  border-radius: 0;
  background: rgba(255,255,255,.018);
  box-shadow: none;
}
body.nxglobo-front-page .nxg5-schedule-tab {
  min-height: 46px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.04);
  background: transparent;
  color: rgba(255,255,255,.53);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: .01em;
}
body.nxglobo-front-page .nxg5-schedule-tab:last-child { border-right: 0; }
body.nxglobo-front-page .nxg5-schedule-tab.is-active {
  position: relative;
  background: rgba(255,47,125,.095);
  color: #fff;
  box-shadow: inset 0 -2px 0 #ff2f7d;
}
body.nxglobo-front-page .nxg5-schedule-panels { padding: 10px; }
body.nxglobo-front-page .nxg5-schedule-list { gap: 8px; }
body.nxglobo-front-page .nxg5-schedule-item {
  min-height: 96px;
  grid-template-columns: 104px 92px minmax(0,1fr) 48px;
  border-color: rgba(255,255,255,.055);
  border-radius: 13px;
  background: linear-gradient(108deg, rgba(255,255,255,.035), rgba(255,255,255,.018));
  box-shadow: none;
}
body.nxglobo-front-page .nxg5-schedule-item:hover {
  transform: translateY(-1px);
  border-color: rgba(255,47,125,.28);
  background: linear-gradient(108deg, rgba(255,47,125,.055), rgba(255,255,255,.02));
}
body.nxglobo-front-page .nxg5-schedule-item.is-live {
  border-color: rgba(255,47,125,.34);
  box-shadow: inset 3px 0 0 #ff2f7d;
}
body.nxglobo-front-page .nxg5-schedule-item__time {
  padding: 10px 8px;
  border-right-color: rgba(255,255,255,.05);
  background: rgba(255,47,125,.035);
}
body.nxglobo-front-page .nxg5-schedule-item__time span { font-size: 7px; letter-spacing: .09em; }
body.nxglobo-front-page .nxg5-schedule-item__time strong {
  margin-top: 5px;
  color: #ff5a98;
  font-size: 24px;
  font-weight: 770;
}
body.nxglobo-front-page .nxg5-schedule-item__time em { margin-top: 3px; font-size: 8.5px; }
body.nxglobo-front-page .nxg5-schedule-item__time em::before { font-size: 6px; }
body.nxglobo-front-page .nxg5-schedule-item__image { background: #171018; }
body.nxglobo-front-page .nxg5-schedule-item__content { padding: 13px 18px; }
body.nxglobo-front-page .nxg5-schedule-item__content > span { font-size: 7.5px; }
body.nxglobo-front-page .nxg5-schedule-item__content h3 {
  margin-top: 6px;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -.025em;
}
body.nxglobo-front-page .nxg5-schedule-item__content p {
  margin-top: 5px;
  color: rgba(255,255,255,.50);
  font-size: 9px;
}
body.nxglobo-front-page .nxg5-card-arrow {
  width: 31px;
  height: 31px;
  align-self: center;
  justify-self: center;
  border-radius: 10px;
  background: rgba(255,255,255,.045);
  color: #ff5a98;
  font-size: 11px;
}

/* Noticias editoriales, menos masivas */
body.nxglobo-front-page .nxg5-news-premium {
  grid-template-columns: minmax(0, 1.52fr) minmax(0, .78fr) minmax(0, .78fr);
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 10px;
  min-height: 410px;
}
body.nxglobo-front-page .nxg5-news-premium-card__link {
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 14px;
  background: #121217;
  box-shadow: 0 12px 32px rgba(0,0,0,.14);
}
body.nxglobo-front-page .nxg5-news-premium-card__overlay {
  background:
    linear-gradient(to top, rgba(7,7,11,.91) 0%, rgba(7,7,11,.50) 40%, rgba(7,7,11,.08) 74%, transparent 100%),
    linear-gradient(135deg, rgba(255,47,125,.055), transparent 45%);
}
body.nxglobo-front-page .nxg5-news-premium-card__content {
  gap: 7px;
  padding: 14px 15px 15px;
}
body.nxglobo-front-page .nxg5-news-premium-card--hero .nxg5-news-premium-card__content {
  max-width: 75%;
  padding: 20px 21px;
}
body.nxglobo-front-page .nxg5-news-premium-card__tag {
  min-height: 22px;
  padding: 0 9px;
  border-radius: 7px;
  background: rgba(255,255,255,.92);
  color: #d51a65;
  font-size: 7.5px;
  letter-spacing: .03em;
}
body.nxglobo-front-page .nxg5-news-premium-card__tag i { width: 5px; height: 5px; background: #8a63ff; }
body.nxglobo-front-page .nxg5-news-premium-card--hero h3 {
  font-size: clamp(25px, 2.55vw, 38px);
  line-height: 1.08;
  -webkit-line-clamp: 3;
}
body.nxglobo-front-page .nxg5-news-premium-card--hero p { font-size: 11px; line-height: 1.48; }
body.nxglobo-front-page .nxg5-news-premium-card--top h3,
body.nxglobo-front-page .nxg5-news-premium-card--mid h3,
body.nxglobo-front-page .nxg5-news-premium-card--tall h3 {
  font-size: clamp(13px, 1.14vw, 18px);
  line-height: 1.17;
}
body.nxglobo-front-page .nxg5-news-premium-card--tall p { font-size: 9.5px; }
body.nxglobo-front-page .nxg5-news-premium-card__dots { right: 12px; bottom: 14px; gap: 4px; }
body.nxglobo-front-page .nxg5-news-premium-card__dots b { width: 4px; height: 4px; }
body.nxglobo-front-page .nxg5-news-premium-card__dots b:nth-child(2) { height: 15px; }

/* Canales, videos y tarjetas */
body.nxglobo-front-page .nxg5-live-grid { gap: 10px; }
body.nxglobo-front-page .nxg5-live-card {
  border-color: rgba(255,255,255,.06);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.016));
  box-shadow: 0 12px 34px rgba(0,0,0,.14);
}
body.nxglobo-front-page .nxg5-live-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,47,125,.30);
}
body.nxglobo-front-page .nxg5-live-card__media { border-radius: 13px 13px 0 0; }
body.nxglobo-front-page .nxg5-live-card__status {
  top: 9px;
  left: 9px;
  padding: 5px 8px;
  font-size: 6.5px;
}
body.nxglobo-front-page .nxg5-live-card__play {
  width: 42px;
  height: 42px;
  border-color: rgba(255,255,255,.30);
  font-size: 12px;
}
body.nxglobo-front-page .nxg5-live-card__content { padding: 13px 13px 14px; }
body.nxglobo-front-page .nxg5-live-card__content h3 { font-size: 13px; line-height: 1.28; }
body.nxglobo-front-page .nxg5-live-card__content p {
  min-height: 27px;
  margin: 5px 0 10px;
  font-size: 8.5px;
  line-height: 1.45;
}
body.nxglobo-front-page .nxg5-live-card__actions { gap: 6px; }
body.nxglobo-front-page .nxg5-live-action {
  min-height: 29px;
  padding: 0 9px;
  border-radius: 8px;
  font-size: 6.5px;
  letter-spacing: .04em;
}
body.nxglobo-front-page .nxg5-video-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
body.nxglobo-front-page .nxg5-video-card {
  border-color: rgba(255,255,255,.055);
  border-radius: 13px;
  background: rgba(255,255,255,.022);
  box-shadow: none;
}
body.nxglobo-front-page .nxg5-video-card:hover { transform: translateY(-3px); border-color: rgba(255,47,125,.30); }
body.nxglobo-front-page .nxg5-video-card__media { aspect-ratio: 16 / 9; }
body.nxglobo-front-page .nxg5-video-card__media b { width: 38px; height: 38px; font-size: 11px; }
body.nxglobo-front-page .nxg5-video-card__content { gap: 4px; padding: 11px; }
body.nxglobo-front-page .nxg5-video-card__content strong { font-size: 10px; }
body.nxglobo-front-page .nxg5-video-card__content small { font-size: 7px; }

/* Componentes heredados integrados al nuevo lenguaje visual */
body.nxglobo-front-page .nxglobo-podcast-grid,
body.nxglobo-front-page .nxglobo-host-grid { gap: 12px; }
body.nxglobo-front-page .nxglobo-podcast-card,
body.nxglobo-front-page .nxglobo-host-card {
  border-color: rgba(255,255,255,.06);
  border-radius: 15px;
  background: rgba(255,255,255,.025);
  box-shadow: 0 12px 34px rgba(0,0,0,.13);
}
body.nxglobo-front-page .nxglobo-podcast-card:hover,
body.nxglobo-front-page .nxglobo-host-card:hover { transform: translateY(-3px); }
body.nxglobo-front-page .nxglobo-podcast-card__body { padding: 14px; }
body.nxglobo-front-page .nxglobo-podcast-card__body > span { font-size: 7px; }
body.nxglobo-front-page .nxglobo-podcast-card h3 { margin: 6px 0; font-size: 15px; }
body.nxglobo-front-page .nxglobo-podcast-card p { font-size: 9px; }
body.nxglobo-front-page .nxglobo-host-card { min-height: 320px; }
body.nxglobo-front-page .nxglobo-ranking-list { gap: 8px; }
body.nxglobo-front-page .nxglobo-ranking-item {
  min-height: 68px;
  grid-template-columns: 34px 50px minmax(0,1fr) auto;
  gap: 10px;
  padding: 8px 11px 8px 8px;
  border-radius: 13px;
  background: rgba(255,255,255,.045);
}
body.nxglobo-front-page .nxglobo-ranking-item__position { font-family: Montserrat,sans-serif; font-size: 22px; font-weight: 800; }
body.nxglobo-front-page .nxglobo-ranking-item img { width: 50px; height: 50px; border-radius: 10px; }
body.nxglobo-front-page .nxglobo-ranking-item h3 { font-size: 11px; }
body.nxglobo-front-page .nxglobo-ranking-item p { font-size: 7.5px; }
body.nxglobo-front-page .nxglobo-ranking-item > i { width: 29px; height: 29px; border-radius: 9px; font-size: 9px; }

/* Modal de promociones más limpio */
.nxr-promo-modal__dialog {
  width: min(820px, calc(100vw - 32px));
  border-color: rgba(255,47,125,.20);
  border-radius: 20px;
  background: linear-gradient(145deg, #151119, #09090d 75%);
  box-shadow: 0 28px 80px rgba(0,0,0,.52);
}
.nxr-promo-modal__dialog--form { width: min(560px, calc(100vw - 32px)); }
.nxr-promo-modal__close { width: 36px; height: 36px; top: 11px; right: 11px; }
.nxr-promo-gallery { padding: 34px; }
.nxr-promo-gallery__heading { margin-bottom: 17px; }
.nxr-promo-gallery__heading h2 { font-size: clamp(25px, 3vw, 38px); }
.nxr-promo-gallery__grid { gap: 12px; }
.nxr-promo-gallery__item { border-radius: 15px; box-shadow: 0 14px 36px rgba(0,0,0,.24); }
.nxr-promo-gallery__item > span { left: 10px; right: 10px; bottom: 10px; min-height: 35px; border-radius: 9px; font-size: 7px; }
.nxr-promo-form-view { padding: 42px 25px 25px; }
.nxr-promo-form { gap: 10px; padding: 21px; border-radius: 15px; background: linear-gradient(145deg, #d81652, #a70b3d); }
.nxr-promo-form__heading h2 { font-size: 25px; }
.nxr-promo-form input { height: 43px; }
.nxr-promo-form textarea { min-height: 82px; }
.nxr-promo-form__submit { min-height: 43px; }

/* Footer */
body.nxglobo-front-page .nxg5-footer {
  padding: 44px 0 118px;
  border-top-color: rgba(255,255,255,.055);
  background: #07070a;
}
body.nxglobo-front-page .nxg5-footer__grid { gap: 32px; }
body.nxglobo-front-page .nxg5-footer__brand img { width: 92px; height: 62px; }
body.nxglobo-front-page .nxg5-footer__copyright { margin-top: 30px; }

/* Mini player más delgado y elegante */
body.nxglobo-front-page #app-super .player {
  bottom: 15px !important;
  width: min(900px, calc(100vw - 32px)) !important;
  min-height: 64px !important;
  border-color: rgba(255,255,255,.12) !important;
  border-radius: 16px !important;
  background: linear-gradient(105deg, rgba(55,8,28,.97), rgba(184,15,76,.96), rgba(73,8,36,.97)) !important;
  box-shadow: 0 16px 44px rgba(0,0,0,.38) !important;
}
body.nxglobo-front-page #app-super .player-wrapper { min-height: 64px !important; padding: 6px 11px 6px 7px !important; }
body.nxglobo-front-page #app-super .player-cover { min-height: 52px !important; }
body.nxglobo-front-page #app-super .player-artwork-style { width: 50px !important; height: 50px !important; border-radius: 11px !important; }
body.nxglobo-front-page #app-super .player-picture img { border-radius: 11px !important; }
body.nxglobo-front-page #app-super .player-cover-title { min-width: 220px !important; max-width: 390px !important; }
body.nxglobo-front-page #app-super .player-controller { right: 16px !important; gap: 7px !important; }
body.nxglobo-front-page #app-super .player-button-play { width: 44px !important; height: 44px !important; }
body.nxglobo-front-page #app-super .player-button-volume-toggle { width: 36px !important; height: 36px !important; border-radius: 10px !important; }

/* Responsive */
@media (max-width: 1100px) {
  body.nxglobo-front-page .nxg5-shell,
  body.nxglobo-front-page .hder-container,
  body.nxglobo-front-page .nxglobo-shell { width: min(100% - 34px, 1160px); }
  body.nxglobo-front-page .nxglobo-site-header__inner { grid-template-columns: 125px 1fr auto; }
  body.nxglobo-front-page .nxglobo-header-socials { display: none; }
  body.nxglobo-front-page .nxg5-news-premium {
    grid-template-columns: minmax(0, 1.28fr) minmax(0, .82fr);
    grid-template-areas: "hero hero" "top tall" "mid tall";
    grid-template-rows: minmax(300px, auto) repeat(2, minmax(160px, 1fr));
    min-height: 0;
  }
  body.nxglobo-front-page .nxg5-news-premium-card--hero .nxg5-news-premium-card__content { max-width: 83%; }
  body.nxglobo-front-page .nxg5-video-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

@media (max-width: 900px) {
  body.nxglobo-front-page .nxglobo-site-header,
  body.nxglobo-front-page .nxglobo-site-header__inner { height: 64px !important; }
  body.nxglobo-front-page .nxglobo-desktop-menu { display: none; }
  body.nxglobo-front-page .nxglobo-menu-button { display: inline-grid; place-items: center; }
  .nxr-slider { padding-top: 80px; }
  body.admin-bar .nxr-slider { padding-top: 122px; }
  .nxr-slider__frame {
    width: calc(100% - 18px) !important;
    aspect-ratio: 16 / 8.6;
    min-height: 0;
    border-radius: 17px;
  }
  body.nxglobo-front-page .nxg5-section,
  body.nxglobo-front-page .nxg5-home .nxglobo-section { padding: 44px 0; }
  body.nxglobo-front-page .nxg5-schedule-tabs { grid-template-columns: repeat(7, 94px); overflow-x: auto; scrollbar-width: none; }
  body.nxglobo-front-page .nxg5-schedule-tabs::-webkit-scrollbar { display: none; }
  body.nxglobo-front-page .nxg5-schedule-item { grid-template-columns: 92px 78px minmax(0,1fr); }
  body.nxglobo-front-page .nxg5-schedule-item > .nxg5-card-arrow { display: none; }
  body.nxglobo-front-page .nxg5-news-premium,
  body.nxglobo-front-page .nxg5-news-premium--count-2,
  body.nxglobo-front-page .nxg5-news-premium--count-3,
  body.nxglobo-front-page .nxg5-news-premium--count-4 {
    grid-template-columns: 1fr;
    grid-template-areas: "hero" "top" "mid" "tall";
    grid-template-rows: none;
  }
  body.nxglobo-front-page .nxg5-news-premium-card { min-height: 235px; }
  body.nxglobo-front-page .nxg5-news-premium-card--hero { min-height: 310px; }
  body.nxglobo-front-page .nxg5-news-premium-card--hero .nxg5-news-premium-card__content,
  body.nxglobo-front-page .nxg5-news-premium-card__content { max-width: 100%; }
  body.nxglobo-front-page .nxg5-live-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  body.nxglobo-front-page #app-super .player { bottom: 68px !important; }
}

@media (max-width: 620px) {
  body.nxglobo-front-page { padding-bottom: 122px !important; }
  body.nxglobo-front-page .nxg5-shell,
  body.nxglobo-front-page .hder-container,
  body.nxglobo-front-page .nxglobo-shell { width: min(100% - 20px, 1160px); }
  body.nxglobo-front-page .nxglobo-site-header,
  body.nxglobo-front-page .nxglobo-site-header__inner { height: 60px !important; }
  body.nxglobo-front-page .nxglobo-site-header__inner { grid-template-columns: 1fr auto; gap: 10px; }
  body.nxglobo-front-page .nxglobo-site-header__logo img { max-height: 34px !important; }
  body.nxglobo-front-page .nxglobo-header-promo {
    width: 36px;
    min-height: 36px !important;
    padding: 0 !important;
    border-radius: 11px !important;
  }
  .nxr-slider { padding-top: 72px; padding-bottom: 13px; }
  body.admin-bar .nxr-slider { padding-top: 118px; }
  .nxr-slider__frame { aspect-ratio: 16 / 10.8; border-radius: 14px; }
  .nxr-slider__arrow { width: 32px; height: 32px; }
  .nxr-slider__arrow--prev { left: 7px; }
  .nxr-slider__arrow--next { right: 7px; }
  body.nxglobo-front-page .nxg6-whatsapp-strip { padding-bottom: 10px; }
  body.nxglobo-front-page .nxg6-whatsapp-strip__button { min-height: 55px; padding: 7px 10px; border-radius: 13px; }
  body.nxglobo-front-page .nxg6-whatsapp-strip__icon { width: 36px; height: 36px; border-radius: 11px; font-size: 18px; }
  body.nxglobo-front-page .nxg6-whatsapp-strip__copy strong { font-size: 12px; }
  body.nxglobo-front-page .nxg6-whatsapp-strip__copy small,
  body.nxglobo-front-page .nxg6-whatsapp-strip__status { display: none; }
  body.nxglobo-front-page .nxg6-whatsapp-strip__arrow { width: 31px; height: 31px; }
  body.nxglobo-front-page .nxg5-section,
  body.nxglobo-front-page .nxg5-home .nxglobo-section { padding: 38px 0; }
  body.nxglobo-front-page .nxg5-section-heading,
  body.nxglobo-front-page .nxglobo-section-heading { align-items: flex-end; margin-bottom: 17px; }
  body.nxglobo-front-page .nxg5-section-heading h2,
  body.nxglobo-front-page .nxglobo-section-heading h2 { font-size: 26px; }
  body.nxglobo-front-page .nxg5-section-heading > i,
  body.nxglobo-front-page .nxglobo-section-heading > i { width: 34px; height: 34px; border-radius: 10px; }
  body.nxglobo-front-page .nxg5-section-heading > a { display: none; }
  body.nxglobo-front-page .nxg5-schedule { border-radius: 13px; }
  body.nxglobo-front-page .nxg5-schedule-panels { padding: 7px; }
  body.nxglobo-front-page .nxg5-schedule-item { min-height: 84px; grid-template-columns: 73px 66px minmax(0,1fr); border-radius: 10px; }
  body.nxglobo-front-page .nxg5-schedule-item__time strong { font-size: 19px; }
  body.nxglobo-front-page .nxg5-schedule-item__content { padding: 9px 10px; }
  body.nxglobo-front-page .nxg5-schedule-item__content h3 { font-size: 13px; }
  body.nxglobo-front-page .nxg5-schedule-item__content p { font-size: 7.5px; -webkit-line-clamp: 2; }
  body.nxglobo-front-page .nxg5-news-premium { gap: 8px; }
  body.nxglobo-front-page .nxg5-news-premium-card,
  body.nxglobo-front-page .nxg5-news-premium-card--hero { min-height: 220px; }
  body.nxglobo-front-page .nxg5-news-premium-card__link { border-radius: 12px; }
  body.nxglobo-front-page .nxg5-news-premium-card--hero h3 { font-size: 23px; }
  body.nxglobo-front-page .nxg5-news-premium-card--hero p { display: none; }
  body.nxglobo-front-page .nxg5-live-grid,
  body.nxglobo-front-page .nxg5-video-grid,
  body.nxglobo-front-page .nxglobo-podcast-grid,
  body.nxglobo-front-page .nxglobo-host-grid { grid-template-columns: 1fr; }
  body.nxglobo-front-page .nxglobo-ranking-list { grid-template-columns: 1fr; }
  .nxr-promo-gallery { padding: 32px 14px 16px; }
  .nxr-promo-form-view { padding: 42px 12px 14px; }
  body.nxglobo-front-page .nxg5-footer { padding: 38px 0 152px; }
  body.nxglobo-front-page #app-super .player {
    bottom: 63px !important;
    width: calc(100vw - 14px) !important;
    min-height: 58px !important;
    border-radius: 13px !important;
  }
  body.nxglobo-front-page #app-super .player-wrapper { min-height: 58px !important; padding: 4px 7px !important; }
  body.nxglobo-front-page #app-super .player-artwork-style { width: 46px !important; height: 46px !important; }
  body.nxglobo-front-page #app-super .player-cover-title { width: calc(100vw - 150px) !important; min-width: 0 !important; }
  body.nxglobo-front-page #app-super .player-button-play { width: 40px !important; height: 40px !important; }
  body.nxglobo-front-page .nxglobo-mobile-nav { height: 58px; }
}


/* Navegación de regreso en noticias individuales */
body.single-post .nxglobo-post-home-nav {
  display: flex;
  align-items: center;
}
body.single-post .nxglobo-post-home-nav--top {
  margin: 16px 0 14px;
}
body.single-post .nxglobo-post-home-nav--bottom {
  justify-content: center;
  margin: 34px 0 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(44, 17, 29, .09);
}
body.single-post .nxglobo-post-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid rgba(109, 37, 69, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #2a1720;
  box-shadow: 0 9px 24px rgba(53, 15, 33, .07);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .025em;
  text-decoration: none !important;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, background .2s ease;
}
body.single-post .nxglobo-post-home-link i {
  font-size: 11px;
  color: var(--nxr-pink);
  transition: transform .2s ease, color .2s ease;
}
body.single-post .nxglobo-post-home-link:hover,
body.single-post .nxglobo-post-home-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(209, 15, 80, .34);
  background: #fff;
  color: var(--nxr-pink);
  box-shadow: 0 13px 30px rgba(119, 15, 54, .13);
  outline: none;
}
body.single-post .nxglobo-post-home-link:hover i,
body.single-post .nxglobo-post-home-link:focus-visible i {
  transform: translateX(-2px);
  color: var(--nxr-pink-bright);
}

@media (max-width: 620px) {
  body.single-post .nxglobo-post-home-nav--top { margin: 12px 0 11px; }
  body.single-post .nxglobo-post-home-nav--bottom { margin-top: 27px; padding-top: 20px; }
  body.single-post .nxglobo-post-home-link {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 10px;
  }
}

/* =========================================================
   6.1.3 · Noticias recientes con principal rotativa
   ========================================================= */
body.nxglobo-front-page .nxg5-news-premium-card {
  position: relative;
  transition: opacity .18s ease, transform .18s ease;
}
body.nxglobo-front-page .nxg5-news-premium.is-changing .nxg5-news-premium-card {
  opacity: .34;
  transform: scale(.994);
}
body.nxglobo-front-page .nxg5-news-premium-card__content p {
  display: none;
}
body.nxglobo-front-page .nxg5-news-premium-card--hero .nxg5-news-premium-card__content p,
body.nxglobo-front-page .nxg5-news-premium-card--tall .nxg5-news-premium-card__content p {
  display: -webkit-box;
}
body.nxglobo-front-page .nxg5-news-premium-card__dots {
  display: none;
  right: 12px;
  bottom: 14px;
  z-index: 5;
  flex-direction: column;
  gap: 4px;
}
body.nxglobo-front-page .nxg5-news-premium-card--hero .nxg5-news-premium-card__dots {
  display: flex;
}
body.nxglobo-front-page .nxg5-news-premium-card__dots button {
  width: 5px;
  height: 5px;
  min-width: 5px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.54);
  box-shadow: none;
  cursor: pointer;
  transition: height .18s ease, background-color .18s ease, opacity .18s ease;
}
body.nxglobo-front-page .nxg5-news-premium-card__dots button.is-active {
  height: 16px;
  background: #fff;
}
body.nxglobo-front-page .nxg5-news-premium-card__dots button:focus-visible {
  outline: 2px solid #ff4d91;
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  body.nxglobo-front-page .nxg5-news-premium-card {
    transition: none;
  }
}

/* =========================================================
   6.1.4 · Optimización móvil: slider y footer proporcionados
   ========================================================= */
@media (max-width: 620px) {
  html,
  body.nxglobo-front-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    -webkit-text-size-adjust: 100%;
  }

  body.nxglobo-front-page main,
  body.nxglobo-front-page .nxg5-home,
  body.nxglobo-front-page .nxg6-react-slider-root,
  body.nxglobo-front-page .nxr-slider,
  body.nxglobo-front-page .nxg5-section,
  body.nxglobo-front-page .nxglobo-section {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
  }

  /* El banner conserva su proporción panorámica y deja de recortarse. */
  body.nxglobo-front-page .nxr-slider {
    padding-top: 70px;
    padding-bottom: 12px;
  }
  body.admin-bar.nxglobo-front-page .nxr-slider {
    padding-top: 116px;
  }
  body.nxglobo-front-page .nxr-slider__frame {
    width: calc(100% - 20px) !important;
    max-width: 100%;
    min-height: 0 !important;
    max-height: none !important;
    height: auto;
    aspect-ratio: 1920 / 850;
    margin-inline: auto;
    border-radius: 14px;
    overflow: hidden;
  }
  body.nxglobo-front-page .nxr-slider__slide,
  body.nxglobo-front-page .nxr-slider__link {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  body.nxglobo-front-page .nxr-slider__image,
  body.nxglobo-front-page .nxr-slider--fallback .nxr-slider__frame img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #08070a;
  }
  body.nxglobo-front-page .nxr-slider__arrow {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
  body.nxglobo-front-page .nxr-slider__dots {
    bottom: 7px;
    gap: 5px;
    padding: 5px 8px;
  }
  body.nxglobo-front-page .nxr-slider__dots button {
    width: 5px;
    height: 5px;
  }
  body.nxglobo-front-page .nxr-slider__dots button.is-active {
    width: 18px;
  }

  /* Previene anchos heredados que pueden empujar otras secciones. */
  body.nxglobo-front-page .nxg5-schedule,
  body.nxglobo-front-page .nxg5-news-premium,
  body.nxglobo-front-page .nxg5-live-grid,
  body.nxglobo-front-page .nxg5-video-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  /* Footer móvil compacto: marca arriba y enlaces en dos columnas. */
  body.nxglobo-front-page .nxg5-footer {
    padding: 30px 0 132px;
  }
  body.nxglobo-front-page .nxg5-footer__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "brand brand"
      "links info";
    column-gap: 22px;
    row-gap: 24px;
  }
  body.nxglobo-front-page .nxg5-footer__brand {
    grid-area: brand;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 14px;
    row-gap: 6px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  body.nxglobo-front-page .nxg5-footer__brand > a {
    grid-row: 1 / 3;
    display: inline-flex;
    align-items: center;
  }
  body.nxglobo-front-page .nxg5-footer__brand img {
    width: 64px;
    height: 48px;
    object-fit: contain;
  }
  body.nxglobo-front-page .nxg5-footer__brand p {
    margin: 0;
    font-size: 9px;
    line-height: 1.45;
  }
  body.nxglobo-front-page .nxg5-footer__socials {
    margin-top: 0;
    gap: 7px;
  }
  body.nxglobo-front-page .nxg5-footer__socials a {
    width: 29px;
    height: 29px;
    font-size: 10px;
  }
  body.nxglobo-front-page .nxg5-footer__column {
    gap: 9px;
    min-width: 0;
  }
  body.nxglobo-front-page .nxg5-footer__column:nth-child(2) {
    grid-area: links;
  }
  body.nxglobo-front-page .nxg5-footer__column:nth-child(3) {
    grid-area: info;
  }
  body.nxglobo-front-page .nxg5-footer__column:last-child {
    display: none;
  }
  body.nxglobo-front-page .nxg5-footer__column > strong {
    margin-bottom: 3px;
    font-size: 9px;
    line-height: 1.2;
    letter-spacing: .09em;
  }
  body.nxglobo-front-page .nxg5-footer__column > a {
    font-size: 9px;
    line-height: 1.35;
  }
  body.nxglobo-front-page .nxg5-footer__copyright {
    width: calc(100% - 28px);
    margin: 24px auto 0;
    padding-top: 16px;
    font-size: 7.5px;
    line-height: 1.55;
  }
}

@media (max-width: 380px) {
  body.nxglobo-front-page .nxr-slider__frame {
    width: calc(100% - 16px) !important;
    border-radius: 12px;
  }
  body.nxglobo-front-page .nxg5-footer__grid {
    column-gap: 16px;
  }
  body.nxglobo-front-page .nxg5-footer__brand {
    grid-template-columns: 56px minmax(0, 1fr);
    column-gap: 11px;
  }
  body.nxglobo-front-page .nxg5-footer__brand img {
    width: 56px;
    height: 43px;
  }
}

/* ========================================================================
   6.1.5 · Menú móvil funcional y alineación fina del footer
   ======================================================================== */
body.nxglobo-front-page .nxglobo-front-offcanvas {
  width: min(88vw, 350px);
  max-width: 350px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(255,47,123,.14), transparent 32%),
    #0a080c;
  border-left: 1px solid rgba(255,255,255,.08);
  box-shadow: -24px 0 70px rgba(0,0,0,.52);
  color: #fff;
}
body.nxglobo-front-page .nxglobo-front-offcanvas[aria-hidden="false"] { visibility: visible; }
body.nxglobo-front-page .nxglobo-front-offcanvas__header {
  min-height: 76px;
  padding: 14px 18px;
  background: rgba(255,255,255,.025);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
body.nxglobo-front-page .nxglobo-front-offcanvas__logo {
  display: inline-flex;
  align-items: center;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__logo img {
  width: 72px;
  height: 46px;
  max-width: none;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
body.nxglobo-front-page .nxglobo-front-offcanvas .offcanvas-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 13px;
  background: rgba(255,255,255,.045);
  color: #fff;
  font-size: 17px;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__body {
  flex: 1 1 auto;
  padding: 28px 18px 20px;
  overflow-y: auto;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__eyebrow {
  display: block;
  margin: 0 8px 13px;
  color: var(--nxr-pink-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__menu {
  padding: 0;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__menu ul {
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__menu li { margin: 0; }
body.nxglobo-front-page .nxglobo-front-offcanvas__menu a {
  width: 100%;
  min-height: 54px;
  height: auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  color: rgba(255,255,255,.88) !important;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none !important;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__menu a > span {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__menu a > span i {
  width: 19px;
  color: var(--nxr-pink-bright);
  font-size: 14px;
  text-align: center;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__menu a > i {
  color: rgba(255,255,255,.28);
  font-size: 10px;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__menu a:hover,
body.nxglobo-front-page .nxglobo-front-offcanvas__menu a:focus-visible {
  padding: 0 15px;
  transform: translateX(-2px);
  border-color: rgba(255,47,123,.42);
  border-radius: 16px;
  background: rgba(255,47,123,.10);
  color: #fff !important;
  outline: none;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__footer {
  flex: 0 0 auto;
  padding: 18px 22px max(22px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.16);
}
body.nxglobo-front-page .nxglobo-front-offcanvas__footer p {
  margin: 0 0 13px;
  color: rgba(255,255,255,.56);
  font-size: 10px;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
body.nxglobo-front-page .nxglobo-front-offcanvas__socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  color: #fff;
  font-size: 11px;
}
body.nxglobo-front-page .offcanvas-overlay { backdrop-filter: blur(4px); }

@media (max-width: 760px) {
  /* Marca y redes centradas; columnas del menú con la misma línea de inicio. */
  body.nxglobo-front-page .nxg5-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "brand brand"
      "links info";
    column-gap: 28px;
    row-gap: 25px;
  }
  body.nxglobo-front-page .nxg5-footer__brand {
    grid-area: brand;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-bottom: 21px;
    text-align: center;
  }
  body.nxglobo-front-page .nxg5-footer__brand > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  body.nxglobo-front-page .nxg5-footer__brand img {
    width: 72px;
    height: 52px;
  }
  body.nxglobo-front-page .nxg5-footer__brand p {
    margin: 0;
    text-align: center;
  }
  body.nxglobo-front-page .nxg5-footer__socials {
    width: 100%;
    margin: 2px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
  }
  body.nxglobo-front-page .nxg5-footer__socials a {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }
  body.nxglobo-front-page .nxg5-footer__column:nth-child(2),
  body.nxglobo-front-page .nxg5-footer__column:nth-child(3) {
    width: 100%;
    align-items: flex-start;
    padding-inline: 4px;
    text-align: left;
  }
  body.nxglobo-front-page .nxg5-footer__column:nth-child(2) { grid-area: links; }
  body.nxglobo-front-page .nxg5-footer__column:nth-child(3) { grid-area: info; }
  body.nxglobo-front-page .nxg5-footer__column > strong,
  body.nxglobo-front-page .nxg5-footer__column > a {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 380px) {
  body.nxglobo-front-page .nxg5-footer__grid { column-gap: 19px; }
  body.nxglobo-front-page .nxg5-footer__column:nth-child(2),
  body.nxglobo-front-page .nxg5-footer__column:nth-child(3) { padding-inline: 0; }
}


/* ========================================================================
   6.1.6 · Alineación fina footer móvil y navegación inferior
   ======================================================================== */
@media (max-width: 760px) {
  body.nxglobo-front-page .nxglobo-mobile-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 0;
    padding-inline: 6px;
  }
  body.nxglobo-front-page .nxglobo-mobile-nav a {
    width: 100%;
    padding-inline: 0;
  }
  body.nxglobo-front-page .nxglobo-mobile-nav a span {
    width: 100%;
    text-align: center;
  }

  body.nxglobo-front-page .nxg5-footer__grid {
    width: min(100%, 360px);
    margin-inline: auto;
    column-gap: 18px;
    row-gap: 24px;
  }
  body.nxglobo-front-page .nxg5-footer__column:nth-child(2),
  body.nxglobo-front-page .nxg5-footer__column:nth-child(3) {
    width: min(100%, 148px);
    justify-self: center;
    padding-inline: 0;
    align-self: start;
  }
  body.nxglobo-front-page .nxg5-footer__column > strong {
    min-height: 1.2em;
  }
}

@media (max-width: 420px) {
  body.nxglobo-front-page .nxg5-footer__grid {
    width: calc(100% - 36px);
    max-width: 340px;
  }
  body.nxglobo-front-page .nxg5-footer__column:nth-child(2),
  body.nxglobo-front-page .nxg5-footer__column:nth-child(3) {
    width: min(100%, 136px);
  }
}

/* ========================================================================
   6.1.7 · Hamburguesa reversible y respuesta visible del formulario
   ======================================================================== */
body.nxglobo-front-page .nxglobo-menu-button {
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
}
body.nxglobo-front-page .nxglobo-menu-button.is-open {
  border-color: rgba(255,47,123,.56);
  background: rgba(255,47,123,.14);
  box-shadow: 0 0 0 4px rgba(255,47,123,.08);
}
body.nxglobo-front-page .nxglobo-menu-button.is-open i { transform: rotate(90deg); }

.nxr-promo-status {
  min-height: 68px;
  padding: 14px 16px;
  border: 1px solid transparent;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
  outline: none;
}
.nxr-promo-status > i {
  flex: 0 0 auto;
  font-size: 23px;
}
.nxr-promo-status__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nxr-promo-status__copy strong {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
}
.nxr-promo-status__copy span {
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.42;
}
.nxr-promo-status.is-success {
  border-color: rgba(116,255,175,.42);
  background: linear-gradient(135deg, #087a3f, #0fa85a);
  color: #fff;
}
.nxr-promo-status.is-error {
  border-color: rgba(255,142,157,.44);
  background: linear-gradient(135deg, #a7152d, #d52b47);
  color: #fff;
}

@media (max-width: 760px) {
  .nxr-promo-status {
    min-height: 64px;
    padding: 13px 14px;
    border-radius: 12px;
  }
  .nxr-promo-status > i { font-size: 21px; }
  .nxr-promo-status__copy strong { font-size: 13px; }
  .nxr-promo-status__copy span { font-size: 10px; }
}


/* ========================================================================
   6.1.8 · Alerta automática Facebook Live
   ======================================================================== */
.nxg-facebook-live-alert[hidden] { display: none !important; }
.nxg-facebook-live-alert {
  position: relative;
  z-index: 24;
  margin: -2px 0 10px;
}
.nxg-facebook-live-alert__link {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 13px 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 17px;
  background:
    radial-gradient(circle at 12% 0, rgba(255,255,255,.13), transparent 32%),
    linear-gradient(110deg, #9e0928, #e01842 55%, #92051f);
  box-shadow: 0 16px 34px rgba(117,0,25,.25);
  color: #fff !important;
  text-decoration: none !important;
}
.nxg-facebook-live-alert__link::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.18) 48%, transparent 61%);
  transform: translateX(-100%);
  animation: nxgFacebookLiveShine 3.6s ease-in-out infinite;
}
.nxg-facebook-live-alert__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(0,0,0,.24);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  white-space: nowrap;
}
.nxg-facebook-live-alert__badge i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.7);
  animation: nxgFacebookLivePulse 1.45s infinite;
}
.nxg-facebook-live-alert__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nxg-facebook-live-alert__copy strong {
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.16;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nxg-facebook-live-alert__copy small {
  overflow: hidden;
  color: rgba(255,255,255,.84);
  font-size: 10px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nxg-facebook-live-alert__action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .06em;
  white-space: nowrap;
}
body.nxglobo-front-page .nxglobo-mobile-nav a.is-facebook-live { color: #ff315d; }
body.nxglobo-front-page .nxglobo-mobile-nav a.is-facebook-live i { position: relative; }
body.nxglobo-front-page .nxglobo-mobile-nav a.is-facebook-live i::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -8px;
  width: 7px;
  height: 7px;
  border: 2px solid #0a080c;
  border-radius: 50%;
  background: #ff315d;
  animation: nxgFacebookLivePulse 1.45s infinite;
}
@keyframes nxgFacebookLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.62); }
  70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@keyframes nxgFacebookLiveShine {
  0%, 58% { transform: translateX(-100%); }
  82%, 100% { transform: translateX(100%); }
}
@media (max-width: 760px) {
  .nxg-facebook-live-alert { margin: 0 0 8px; }
  .nxg-facebook-live-alert__link {
    min-height: 66px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 11px;
    padding: 11px 12px;
    border-radius: 14px;
  }
  .nxg-facebook-live-alert__badge {
    padding: 8px 9px;
    font-size: 8px;
  }
  .nxg-facebook-live-alert__copy strong { font-size: 12px; }
  .nxg-facebook-live-alert__copy small { font-size: 8.5px; }
  .nxg-facebook-live-alert__action { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .nxg-facebook-live-alert__link::after,
  .nxg-facebook-live-alert__badge i,
  body.nxglobo-front-page .nxglobo-mobile-nav a.is-facebook-live i::after { animation: none; }
}

/* ========================================================================
   6.2.0 · Modo día / noche completo
   ======================================================================== */
html[data-nxg-theme="day"] {
  --nxr-bg: #f7f4f6;
  --nxr-bg-soft: #efe8ec;
  --nxr-panel: #ffffff;
  --nxr-panel-2: #f9f5f7;
  --nxr-text: #21151b;
  --nxr-muted: rgba(33, 21, 27, .64);
  --nxr-line: rgba(74, 31, 48, .11);
  --nxr-shadow: 0 24px 64px rgba(72, 23, 43, .13);
}
html[data-nxg-theme="night"] { color-scheme: dark; }
html[data-nxg-theme="day"] { color-scheme: light; }

/* Control compacto del header y control descriptivo del panel. */
.nxglobo-theme-toggle {
  appearance: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nxglobo-theme-toggle--header {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 13px;
  background: rgba(255,255,255,.045);
  color: #fff;
  box-shadow: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.nxglobo-theme-toggle--header:hover,
.nxglobo-theme-toggle--header:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255,47,123,.48);
  background: rgba(255,47,123,.10);
  outline: none;
}
.nxglobo-theme-toggle--header > span { display: none; }
.nxglobo-theme-toggle--header i { font-size: 14px; }
.nxglobo-theme-toggle--panel {
  width: 100%;
  min-height: 66px;
  margin: 0 0 24px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 38px minmax(0,1fr) auto;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  color: #fff;
  text-align: left;
}
.nxglobo-theme-toggle__visual {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,47,123,.12);
  color: var(--nxr-pink-bright);
}
.nxglobo-theme-toggle__copy { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.nxglobo-theme-toggle__copy strong { color: inherit; font-size: 12px; font-weight: 850; }
.nxglobo-theme-toggle__copy small { color: rgba(255,255,255,.46); font-size: 8px; }
.nxglobo-theme-toggle__switch {
  width: 36px;
  height: 20px;
  padding: 2px;
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  transition: background .2s ease;
}
.nxglobo-theme-toggle__switch i {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,.25);
  transition: transform .22s ease;
}
.nxglobo-theme-toggle--panel.is-day .nxglobo-theme-toggle__switch { background: var(--nxr-pink); }
.nxglobo-theme-toggle--panel.is-day .nxglobo-theme-toggle__switch i { transform: translateX(16px); }
body.nxglobo-front-page .nxglobo-front-offcanvas__eyebrow--nav { margin-top: 0; }

/* La apariencia cambia suavemente sin afectar animaciones internas. */
body,
.nxglobo-site-header,
.nxr-slider,
.nxg5-section,
.nxglobo-section,
.nxg5-schedule,
.nxg5-schedule-item,
.nxg5-live-card,
.nxg5-video-card,
.nxglobo-podcast-card,
.nxglobo-host-card,
.nxglobo-ranking-item,
.nxg5-footer,
.nxglobo-mobile-nav,
.nxglobo-front-offcanvas,
.nxr-promo-modal__dialog {
  transition: background-color .28s ease, background .28s ease, color .28s ease, border-color .28s ease, box-shadow .28s ease;
}

/* ---------------------------- PORTADA · DÍA ---------------------------- */
html[data-nxg-theme="day"] body.nxglobo-front-page {
  background: #f7f4f6 !important;
  color: #21151b;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-site-header,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-site-header.is-scrolled {
  background: rgba(255,255,255,.91) !important;
  border-bottom-color: rgba(73,27,45,.10) !important;
  box-shadow: 0 12px 34px rgba(76,23,45,.10) !important;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-site-header__logo img {
  filter: brightness(0) saturate(100%);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-desktop-menu a { color: rgba(42,24,32,.72) !important; }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-desktop-menu a:hover { color: #1f1218 !important; }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-header-socials a,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-theme-toggle--header,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-menu-button {
  border-color: rgba(61,28,41,.11);
  background: rgba(58,27,40,.045);
  color: #2b1820;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-header-socials a:hover,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-theme-toggle--header:hover,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-menu-button:hover {
  color: #fff;
}
html[data-nxg-theme="day"] .nxr-slider {
  background:
    radial-gradient(circle at 84% 3%, rgba(225,0,90,.09), transparent 31%),
    linear-gradient(180deg, #fbf8fa 0%, #f7f4f6 100%);
}
html[data-nxg-theme="day"] .nxr-slider__frame {
  border-color: rgba(187,19,81,.18);
  background: #fff;
  box-shadow: 0 22px 58px rgba(89,25,51,.15), inset 0 1px 0 rgba(255,255,255,.8);
}
html[data-nxg-theme="day"] .nxr-slider__frame::after { box-shadow: inset 0 0 0 1px rgba(82,27,48,.05); }
html[data-nxg-theme="day"] .nxr-slider__dots {
  border-color: rgba(255,255,255,.70);
  background: rgba(255,255,255,.78);
  box-shadow: 0 6px 18px rgba(36,16,24,.12);
}
html[data-nxg-theme="day"] .nxr-slider__dots button { background: rgba(37,22,28,.30); }
html[data-nxg-theme="day"] .nxr-slider__dots button.is-active { background: var(--nxr-pink-bright); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-home .nxglobo-section { background: transparent !important; }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section + .nxg5-section,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-section + .nxg5-section,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section + .nxglobo-section {
  border-top-color: rgba(75,29,47,.075);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section-heading h2,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-section-heading h2,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-section-heading--light h2 { color: #201218 !important; }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section-heading > i,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-section-heading > i {
  border-color: rgba(83,34,53,.10);
  background: #fff;
  box-shadow: 0 9px 25px rgba(69,22,41,.08);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section-heading > a,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-section-heading > a {
  border-color: rgba(83,34,53,.10);
  background: rgba(255,255,255,.76);
  color: rgba(45,24,32,.62);
}

/* Programación clara con contraste real. */
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--schedule { color: #24151c; }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule {
  border-color: rgba(80,31,50,.10);
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 48px rgba(73,23,42,.09);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-tabs {
  border-bottom-color: rgba(80,31,50,.09);
  background: #f5eff2;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-tab {
  border-right-color: rgba(80,31,50,.07);
  color: rgba(43,23,31,.58);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-tab.is-active {
  background: rgba(215,15,82,.09);
  color: #9c123f;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-item {
  border-color: rgba(79,30,49,.09);
  background: linear-gradient(108deg, #fff, #fbf7f9);
  box-shadow: 0 7px 20px rgba(69,22,41,.045);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-item:hover {
  border-color: rgba(215,15,82,.24);
  background: linear-gradient(108deg, #fff7fa, #fff);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-item__time {
  border-right-color: rgba(79,30,49,.08);
  background: rgba(215,15,82,.035);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-item__time span,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-item__time em,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-item__content > span { color: rgba(42,22,30,.60); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-item__content h3 { color: #24141b; }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-item__content p { color: rgba(42,22,30,.56); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-card-arrow { background: #f6edf1; }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-empty-state { color: #24141b; }

/* Tarjetas: canales, videos, podcasts, ranking y locutores. */
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-live-card,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-video-card,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-podcast-card,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-host-card {
  border-color: rgba(78,30,48,.10);
  background: #fff;
  box-shadow: 0 14px 38px rgba(69,22,41,.08);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-live-card__content h3,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-video-card__content strong,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-podcast-card h3 { color: #24141b; }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-live-card__content p,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-video-card__content small,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-podcast-card p { color: rgba(42,22,30,.58); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-live-action:not(.nxg5-live-action--primary) {
  border-color: rgba(74,27,45,.12);
  background: #f7f0f3;
  color: #5e2a3e;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-ranking-item {
  border: 1px solid rgba(78,30,48,.09);
  background: #fff;
  box-shadow: 0 8px 24px rgba(69,22,41,.055);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-ranking-item__position,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-ranking-item h3 { color: #24141b; }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-ranking-item p { color: rgba(42,22,30,.55); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-ranking-item > i { background: #f5ebef; color: var(--nxr-pink); }

/* Noticias conservan su fotografía oscura y reciben un borde más limpio. */
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-news-premium-card__link {
  border-color: rgba(78,30,48,.13);
  box-shadow: 0 14px 38px rgba(69,22,41,.12);
}

/* Modales de promociones y video. */
html[data-nxg-theme="day"] .nxr-promo-modal__dialog {
  border-color: rgba(188,20,79,.18);
  background: linear-gradient(145deg, #fff, #f7f1f4 78%);
  color: #24141b;
  box-shadow: 0 28px 80px rgba(72,23,43,.22);
}
html[data-nxg-theme="day"] .nxr-promo-gallery__heading h2,
html[data-nxg-theme="day"] .nxr-promo-form__heading h2 { color: #24141b; }
html[data-nxg-theme="day"] .nxr-promo-gallery__heading span,
html[data-nxg-theme="day"] .nxr-promo-form__heading span { color: #c51658; }
html[data-nxg-theme="day"] .nxr-promo-modal__close,
html[data-nxg-theme="day"] .nxr-promo-form-view__back {
  border-color: rgba(73,27,45,.12);
  background: rgba(255,255,255,.82);
  color: #2d1720;
}
html[data-nxg-theme="day"] .nxr-promo-form-view { color: #24141b; }
html[data-nxg-theme="day"] .nxr-promo-form {
  background: linear-gradient(145deg, #fff, #f8f1f4);
  border: 1px solid rgba(188,20,79,.13);
  box-shadow: 0 15px 38px rgba(72,23,43,.10);
}
html[data-nxg-theme="day"] .nxr-promo-form label > span { color: #432530; }
html[data-nxg-theme="day"] .nxr-promo-form input,
html[data-nxg-theme="day"] .nxr-promo-form textarea {
  border-color: rgba(73,27,45,.13);
  background: #fff;
  color: #24141b;
}
html[data-nxg-theme="day"] .nxr-promo-form input::placeholder,
html[data-nxg-theme="day"] .nxr-promo-form textarea::placeholder { color: rgba(42,22,30,.42); }
html[data-nxg-theme="day"] .nxg5-live-modal__dialog {
  border-color: rgba(73,27,45,.12);
  background: #fff;
  color: #24141b;
  box-shadow: 0 26px 76px rgba(72,23,43,.24);
}
html[data-nxg-theme="day"] .nxg5-live-modal__header h3 { color: #24141b; }
html[data-nxg-theme="day"] .nxg5-live-modal__close { background: #f5edf1; color: #2b1820; }

/* Footer claro y navegación móvil clara. */
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer {
  border-top-color: rgba(76,29,47,.09);
  background: #eee7eb;
  color: #26151d;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer__brand img { filter: brightness(0) saturate(100%); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer__brand p,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer__column p { color: rgba(43,23,31,.60); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer__column > strong { color: #26151d; }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer__column > a { color: rgba(43,23,31,.66); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer__column > a:hover { color: #b6104d; }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer__socials a {
  border-color: rgba(73,27,45,.13);
  background: rgba(255,255,255,.56);
  color: #2b1820;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer__copyright {
  border-top-color: rgba(73,27,45,.09);
  color: rgba(43,23,31,.48);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-mobile-nav {
  border-color: rgba(73,27,45,.13) !important;
  background: rgba(255,255,255,.94) !important;
  box-shadow: 0 16px 46px rgba(72,23,43,.16);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-mobile-nav a { color: #8d7480; }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-mobile-nav a:hover,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-mobile-nav a.is-active { color: #b7104d; }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-mobile-nav a.is-facebook-live i::after { border-color: #fff; }

/* Menú hamburguesa claro. */
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-front-offcanvas {
  border-left-color: rgba(73,27,45,.10);
  background:
    radial-gradient(circle at 100% 0, rgba(215,15,82,.09), transparent 32%),
    #fbf8fa;
  box-shadow: -24px 0 70px rgba(72,23,43,.22);
  color: #26151d;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-front-offcanvas__header {
  border-bottom-color: rgba(73,27,45,.09);
  background: rgba(255,255,255,.56);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-front-offcanvas__logo img { filter: brightness(0) saturate(100%); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-front-offcanvas .offcanvas-close {
  border-color: rgba(73,27,45,.11);
  background: #fff;
  color: #2a1720;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-theme-toggle--panel,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-front-offcanvas__menu a {
  border-color: rgba(73,27,45,.10);
  background: #fff;
  color: #2a1720 !important;
}
html[data-nxg-theme="day"] .nxglobo-theme-toggle__copy small { color: rgba(43,23,31,.48); }
html[data-nxg-theme="day"] .nxglobo-theme-toggle__switch { background: rgba(73,27,45,.14); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-front-offcanvas__menu a > i { color: rgba(43,23,31,.28); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-front-offcanvas__menu a:hover,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-front-offcanvas__menu a:focus-visible {
  border-color: rgba(215,15,82,.28);
  background: #fff2f7;
  color: #a20f43 !important;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-front-offcanvas__footer {
  border-top-color: rgba(73,27,45,.09);
  background: rgba(238,231,235,.72);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-front-offcanvas__footer p { color: rgba(43,23,31,.56); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-front-offcanvas__socials a {
  border-color: rgba(73,27,45,.11);
  background: #fff;
  color: #2a1720;
}

/* El miniplayer mantiene el color de marca, pero gana borde adecuado en día. */
html[data-nxg-theme="day"] body.nxglobo-front-page #app-super .player {
  border-color: rgba(255,255,255,.56) !important;
  box-shadow: 0 16px 44px rgba(72,23,43,.24) !important;
}

/* ---------------------- ENTRADAS Y PÁGINAS INTERNAS --------------------- */
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) {
  background: #08070a;
  color: #f7f4f6;
}
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .hder {
  background: rgba(8,7,10,.94);
  border-bottom-color: rgba(255,255,255,.08);
}
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .logo img,
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .custom-logo { filter: brightness(0) invert(1); }
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .main-menu a,
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .btn-search,
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .btn-menu { color: #fff; }
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .elty-container,
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .post-content,
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .widget,
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .related {
  color: #f4eff2;
}
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .post-header h1,
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .post-content h1,
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .post-content h2,
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .post-content h3,
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .widget-title,
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .related__title { color: #fff; }
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .post-content p,
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .post-content li { color: rgba(255,255,255,.76); }
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .post-content,
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .widget,
html[data-nxg-theme="night"] body:not(.nxglobo-front-page) .related-item {
  border-color: rgba(255,255,255,.08);
  background: #121015;
}
html[data-nxg-theme="night"] body.single-post .nxglobo-post-home-link {
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.045);
  color: #fff;
}
html[data-nxg-theme="day"] body:not(.nxglobo-front-page) {
  background: #f7f4f6;
  color: #24141b;
}
html[data-nxg-theme="day"] body:not(.nxglobo-front-page) .nxglobo-theme-toggle--header {
  border-color: rgba(73,27,45,.12);
  background: rgba(73,27,45,.045);
  color: #2b1820;
}

@media (max-width: 760px) {
  .nxglobo-theme-toggle--header {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 12px;
  }
  body.nxglobo-front-page .nxglobo-site-header__actions { gap: 8px; }
  .nxglobo-theme-toggle--panel { margin-bottom: 20px; }
}

@media (max-width: 380px) {
  .nxglobo-theme-toggle--header {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
  body.nxglobo-front-page .nxglobo-site-header__actions { gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  body,
  .nxglobo-site-header,
  .nxr-slider,
  .nxg5-section,
  .nxglobo-section,
  .nxg5-schedule,
  .nxg5-schedule-item,
  .nxg5-live-card,
  .nxg5-video-card,
  .nxglobo-podcast-card,
  .nxglobo-host-card,
  .nxglobo-ranking-item,
  .nxg5-footer,
  .nxglobo-mobile-nav,
  .nxglobo-front-offcanvas,
  .nxr-promo-modal__dialog { transition: none !important; }
}


/* ========================================================================
   6.2.1 · Refinamiento premium del modo día y contraste real
   ======================================================================== */
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-home {
  background:
    radial-gradient(circle at 100% 0, rgba(219,22,87,.07), transparent 24%),
    linear-gradient(180deg, #f8f5f7 0%, #f4eef2 100%) !important;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-home .nxglobo-section {
  color: #24141b;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--schedule,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--news,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--news-premium,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--live,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--videos,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-home .nxglobo-section {
  position: relative;
  background: transparent !important;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--schedule::before,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--news::before,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--news-premium::before,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--live::before,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--videos::before,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-home .nxglobo-section::before {
  content: "";
  position: absolute;
  inset: 18px 16px;
  border: 1px solid rgba(88,31,52,.07);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(251,247,249,.88));
  box-shadow: 0 18px 56px rgba(80,28,49,.07);
  z-index: 0;
  pointer-events: none;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--news::before,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--news-premium::before,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--videos::before {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,240,244,.90));
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-shell,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-shell,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section > *,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-section > * {
  position: relative;
  z-index: 1;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section-heading > div > span,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-section-heading > div > span {
  color: #cf1453 !important;
  text-shadow: none;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section-heading h2,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-section-heading h2,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-section-heading--light h2 {
  color: #1f1218 !important;
  text-shadow: none;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section-heading > a,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-section-heading > a {
  border-color: rgba(87,32,52,.12);
  background: #fff;
  color: #6a3a4d;
  box-shadow: 0 8px 22px rgba(79,28,49,.07);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section-heading > a:hover,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-section-heading > a:hover {
  border-color: rgba(215,15,82,.22);
  color: #b6104d;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-live-card,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-video-card,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-podcast-card,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-host-card,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-ranking-item {
  box-shadow: 0 18px 44px rgba(79,28,49,.08);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-live-card__content,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-video-card__content,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-podcast-card__content,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-host-card__content,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-ranking-item {
  color: #24141b;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-live-card__content h3,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-video-card__content strong,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-podcast-card h3,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-host-card h3,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-ranking-item h3 {
  color: #21131a !important;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-live-card__content p,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-live-card__content small,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-video-card__content small,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-podcast-card p,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-host-card p,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-ranking-item p {
  color: rgba(42,22,30,.66) !important;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-live-badge,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-video-card__badge,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxglobo-ranking-chip {
  box-shadow: 0 10px 22px rgba(215,15,82,.16);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-news-premium-card__link {
  border-color: rgba(87,32,52,.11);
  box-shadow: 0 20px 44px rgba(79,28,49,.11);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer {
  background: linear-gradient(180deg, #f1eaee, #ebe3e7);
}
html[data-nxg-theme="day"] body.nxglobo-front-page #app-super .player {
  border-color: rgba(255,255,255,.72) !important;
  box-shadow: 0 20px 52px rgba(79,28,49,.22) !important;
}
@media (max-width: 760px) {
  html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--schedule::before,
  html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--news::before,
  html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--news-premium::before,
  html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--live::before,
  html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section--videos::before,
  html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-home .nxglobo-section::before {
    inset: 12px 10px;
    border-radius: 20px;
  }
}


/* ========================================================================
   6.2.2 · Footer día con contraste reforzado
   ======================================================================== */
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer {
  background: linear-gradient(180deg, #efe7eb, #e8dfe4) !important;
  color: #24141b !important;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer__brand p,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer__column p {
  color: rgba(36,20,27,.76) !important;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer__column > strong {
  color: #1f1218 !important;
  letter-spacing: .11em;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer__column > a {
  color: rgba(36,20,27,.84) !important;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer__column > a:hover {
  color: #b6104d !important;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer__socials a {
  border-color: rgba(73,27,45,.16) !important;
  background: rgba(255,255,255,.90) !important;
  color: #23141b !important;
  box-shadow: 0 8px 18px rgba(79,28,49,.07);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer__copyright {
  color: rgba(36,20,27,.62) !important;
}


/* ========================================================================
   6.2.3 · Promociones día con contraste premium + metadatos del tema
   ======================================================================== */
html[data-nxg-theme="day"] .nxr-promo-modal__dialog {
  background: linear-gradient(145deg, #fff, #f4edf1 78%) !important;
  box-shadow: 0 30px 86px rgba(72,23,43,.24) !important;
}
html[data-nxg-theme="day"] .nxr-promo-form-view {
  color: #24141b !important;
}
html[data-nxg-theme="day"] .nxr-promo-form__heading span {
  color: #c31252 !important;
  font-weight: 900;
}
html[data-nxg-theme="day"] .nxr-promo-form__heading h2 {
  color: #2a1720 !important;
}
html[data-nxg-theme="day"] .nxr-promo-form {
  background: linear-gradient(145deg, #fdfbfd, #f6eef2) !important;
  border: 1px solid rgba(188,20,79,.18) !important;
  box-shadow: 0 18px 44px rgba(72,23,43,.10) !important;
}
html[data-nxg-theme="day"] .nxr-promo-form label > span {
  color: #331f28 !important;
  font-weight: 850;
}
html[data-nxg-theme="day"] .nxr-promo-form input,
html[data-nxg-theme="day"] .nxr-promo-form textarea {
  border: 1px solid rgba(87,32,52,.12) !important;
  background: #ffffff !important;
  color: #24141b !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}
html[data-nxg-theme="day"] .nxr-promo-form input:focus,
html[data-nxg-theme="day"] .nxr-promo-form textarea:focus {
  border-color: rgba(203,18,82,.34) !important;
  box-shadow: 0 0 0 4px rgba(203,18,82,.10) !important;
}
html[data-nxg-theme="day"] .nxr-promo-form input::placeholder,
html[data-nxg-theme="day"] .nxr-promo-form textarea::placeholder {
  color: rgba(42,22,30,.48) !important;
}
html[data-nxg-theme="day"] .nxr-promo-form__submit {
  border-color: rgba(177,15,69,.10) !important;
  background: linear-gradient(135deg, #e31962, #b50d48) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 28px rgba(181,13,72,.22);
}
html[data-nxg-theme="day"] .nxr-promo-form__submit:hover {
  filter: brightness(1.03);
}
html[data-nxg-theme="day"] .nxr-promo-status {
  border-width: 1px;
  box-shadow: 0 14px 32px rgba(72,23,43,.10);
}
html[data-nxg-theme="day"] .nxr-promo-status__copy strong,
html[data-nxg-theme="day"] .nxr-promo-status__copy span {
  color: #fff !important;
}
html[data-nxg-theme="day"] .nxr-promo-form-view__back,
html[data-nxg-theme="day"] .nxr-promo-modal__close {
  background: rgba(255,255,255,.94) !important;
  color: #2a1720 !important;
}

/* ========================================================================
   6.3.0 · Programación estudio premium + tipografía global Manrope
   ======================================================================== */
body.nxglobo-theme,
body.nxglobo-front-page,
body.nxglobo-front-page button,
body.nxglobo-front-page input,
body.nxglobo-front-page textarea,
body.nxglobo-front-page select {
  font-family: "Manrope", "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Legibilidad global ligeramente mayor sin inflar la interfaz. */
body.nxglobo-front-page .nxglobo-desktop-menu a { font-size: 11px; }
body.nxglobo-front-page .nxglobo-header-socials a { font-size: 12px; }
body.nxglobo-front-page .nxg5-section-heading > div > span,
body.nxglobo-front-page .nxglobo-section-heading > div > span { font-size: 9px; }
body.nxglobo-front-page .nxg5-section-heading h2,
body.nxglobo-front-page .nxglobo-section-heading h2,
body.nxglobo-front-page .nxglobo-section-heading--light h2 {
  font-family: "Manrope", "Montserrat", sans-serif;
  font-weight: 850;
  letter-spacing: -.045em;
}
body.nxglobo-front-page .nxg5-section-heading > a,
body.nxglobo-front-page .nxglobo-section-heading > a { font-size: 9px; }
body.nxglobo-front-page .nxg5-live-card__content h3,
body.nxglobo-front-page .nxg5-video-card__content strong,
body.nxglobo-front-page .nxglobo-podcast-card h3,
body.nxglobo-front-page .nxglobo-host-card h3 { font-size: 14px; }
body.nxglobo-front-page .nxg5-live-card__content p,
body.nxglobo-front-page .nxg5-video-card__content small,
body.nxglobo-front-page .nxglobo-podcast-card p,
body.nxglobo-front-page .nxglobo-host-card p { font-size: 9px; line-height: 1.55; }
body.nxglobo-front-page .nxg5-footer__brand p,
body.nxglobo-front-page .nxg5-footer__column p,
body.nxglobo-front-page .nxg5-footer__column > a { font-size: 10px; }
body.nxglobo-front-page .nxg5-footer__column > strong { font-size: 10px; }
body.nxglobo-front-page .nxg5-footer__copyright { font-size: 9px; }
body.nxglobo-front-page .nxglobo-mobile-nav a { font-size: 9px; }

/* Nueva composición de programación: destacado + dos columnas compactas. */
body.nxglobo-front-page .nxg5-schedule--studio {
  overflow: hidden;
  border-radius: 19px;
}
body.nxglobo-front-page .nxg5-schedule--studio .nxg5-schedule-panels {
  padding: 14px;
}
body.nxglobo-front-page .nxg5-schedule-panel[hidden] { display: none !important; }

body.nxglobo-front-page .nxg5-schedule-featured {
  position: relative;
  min-height: 240px;
  display: grid;
  grid-template-columns: minmax(210px, .72fr) minmax(0, 1.35fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 17px;
  background:
    radial-gradient(circle at 88% 15%, rgba(255,47,125,.12), transparent 32%),
    linear-gradient(125deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  box-shadow: 0 18px 46px rgba(0,0,0,.20);
}
body.nxglobo-front-page .nxg5-schedule-featured.is-live {
  border-color: rgba(255,47,125,.40);
  box-shadow: 0 20px 52px rgba(176,10,72,.16), inset 0 0 0 1px rgba(255,47,125,.07);
}
body.nxglobo-front-page .nxg5-schedule-featured__image {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  background: linear-gradient(145deg, #e90059, #a90c45);
}
body.nxglobo-front-page .nxg5-schedule-featured__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 68%, rgba(11,7,12,.88));
  pointer-events: none;
}
body.nxglobo-front-page .nxg5-schedule-featured__image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: block;
  object-fit: cover;
}
body.nxglobo-front-page .nxg5-schedule-featured__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px 34px 30px 28px;
}
body.nxglobo-front-page .nxg5-schedule-featured__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ff6aa3;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
}
body.nxglobo-front-page .nxg5-schedule-featured__eyebrow > i:not(.fa-regular) {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff2f7d;
  box-shadow: 0 0 0 5px rgba(255,47,125,.12), 0 0 18px rgba(255,47,125,.55);
  animation: nxg53LivePulse 1.7s ease-in-out infinite;
}
@keyframes nxg53LivePulse {
  0%,100% { transform: scale(.92); opacity: .75; }
  50% { transform: scale(1.08); opacity: 1; }
}
body.nxglobo-front-page .nxg5-schedule-featured__time {
  margin-top: 18px;
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 750;
}
body.nxglobo-front-page .nxg5-schedule-featured__time i { margin-right: 6px; color: #ff4f92; }
body.nxglobo-front-page .nxg5-schedule-featured h3 {
  margin: 9px 0 0;
  font-size: clamp(25px, 2.8vw, 38px);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: -.045em;
}
body.nxglobo-front-page .nxg5-schedule-featured h3 a { color: #fff; }
body.nxglobo-front-page .nxg5-schedule-featured p {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  line-height: 1.6;
}
body.nxglobo-front-page .nxg5-schedule-featured__button {
  min-height: 40px;
  margin-top: 21px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 11px;
  background: linear-gradient(135deg, #ec1767, #b60d4a);
  color: #fff;
  box-shadow: 0 12px 28px rgba(181,13,74,.22);
  font-size: 10px;
  font-weight: 850;
}
body.nxglobo-front-page .nxg5-schedule-featured__button:hover { transform: translateY(-1px); filter: brightness(1.04); }

body.nxglobo-front-page .nxg5-schedule-next-heading {
  min-height: 58px;
  margin: 14px 2px 8px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 0 4px 9px;
  border-bottom: 1px solid rgba(255,255,255,.055);
}
body.nxglobo-front-page .nxg5-schedule-next-heading div { display: flex; flex-direction: column; gap: 2px; }
body.nxglobo-front-page .nxg5-schedule-next-heading span {
  color: #ff5a98;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .15em;
}
body.nxglobo-front-page .nxg5-schedule-next-heading strong {
  color: #fff;
  font-size: 17px;
  font-weight: 820;
}
body.nxglobo-front-page .nxg5-schedule-next-heading small {
  color: rgba(255,255,255,.42);
  font-size: 9px;
  font-weight: 700;
}

body.nxglobo-front-page .nxg5-schedule-compact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}
body.nxglobo-front-page .nxg5-schedule-compact {
  min-width: 0;
  min-height: 92px;
  display: grid;
  grid-template-columns: 77px 74px minmax(0,1fr) 34px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 13px;
  background: linear-gradient(110deg, rgba(255,255,255,.032), rgba(255,255,255,.015));
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
body.nxglobo-front-page .nxg5-schedule-compact:hover {
  transform: translateY(-2px);
  border-color: rgba(255,47,125,.25);
  background: linear-gradient(110deg, rgba(255,47,125,.05), rgba(255,255,255,.022));
}
body.nxglobo-front-page .nxg5-schedule-compact.is-live { box-shadow: inset 3px 0 0 #ff2f7d; }
body.nxglobo-front-page .nxg5-schedule-compact__time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 9px 6px;
  border-right: 1px solid rgba(255,255,255,.05);
  background: rgba(255,47,125,.04);
}
body.nxglobo-front-page .nxg5-schedule-compact__time strong {
  color: #ff5a98;
  font-size: 17px;
  font-weight: 850;
  line-height: 1;
}
body.nxglobo-front-page .nxg5-schedule-compact__time span {
  margin-top: 7px;
  color: rgba(255,255,255,.40);
  font-size: 8px;
  font-weight: 700;
}
body.nxglobo-front-page .nxg5-schedule-compact__image {
  overflow: hidden;
  background: #d90056;
}
body.nxglobo-front-page .nxg5-schedule-compact__image img {
  width: 100%;
  height: 100%;
  min-height: 92px;
  display: block;
  object-fit: cover;
}
body.nxglobo-front-page .nxg5-schedule-compact__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 13px;
}
body.nxglobo-front-page .nxg5-schedule-compact__live {
  margin-bottom: 3px;
  color: #ff5a98;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .10em;
}
body.nxglobo-front-page .nxg5-schedule-compact__live i {
  width: 6px;
  height: 6px;
  margin-right: 4px;
  display: inline-block;
  border-radius: 50%;
  background: #ff2f7d;
}
body.nxglobo-front-page .nxg5-schedule-compact h3 {
  margin: 0;
  overflow: hidden;
  font-size: 13px;
  font-weight: 830;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.nxglobo-front-page .nxg5-schedule-compact h3 a { color: #fff; }
body.nxglobo-front-page .nxg5-schedule-compact p {
  margin: 6px 0 0;
  overflow: hidden;
  color: rgba(255,255,255,.48);
  font-size: 8.5px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.nxglobo-front-page .nxg5-schedule-compact__arrow {
  align-self: center;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(255,255,255,.045);
  color: #ff2f7d;
  font-size: 9px;
}
body.nxglobo-front-page .nxg5-schedule-compact:hover .nxg5-schedule-compact__arrow { background: rgba(255,47,125,.12); }

/* Modo día de la nueva programación. */
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-featured {
  border-color: rgba(84,31,51,.10);
  background:
    radial-gradient(circle at 88% 15%, rgba(215,15,82,.08), transparent 34%),
    linear-gradient(125deg, #fff, #faf5f8);
  box-shadow: 0 20px 48px rgba(79,28,49,.09);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-featured__image::after {
  background: linear-gradient(90deg, transparent 68%, rgba(255,255,255,.93));
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-featured__time { color: rgba(42,22,30,.60); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-featured h3 a { color: #21131a; }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-featured p { color: rgba(42,22,30,.66); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-next-heading { border-bottom-color: rgba(79,30,49,.08); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-next-heading strong { color: #24141b; }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-next-heading small { color: rgba(42,22,30,.48); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-compact {
  border-color: rgba(79,30,49,.09);
  background: linear-gradient(110deg, #fff, #faf6f8);
  box-shadow: 0 8px 22px rgba(79,28,49,.045);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-compact:hover {
  border-color: rgba(215,15,82,.22);
  background: linear-gradient(110deg, #fff7fa, #fff);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-compact__time {
  border-right-color: rgba(79,30,49,.08);
  background: rgba(215,15,82,.035);
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-compact__time span { color: rgba(42,22,30,.48); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-compact h3 a { color: #21131a; }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-compact p { color: rgba(42,22,30,.56); }
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-compact__arrow { background: #f5edf1; }

@media (max-width: 980px) {
  body.nxglobo-front-page .nxg5-schedule-featured { grid-template-columns: minmax(180px, .65fr) minmax(0, 1.2fr); }
  body.nxglobo-front-page .nxg5-schedule-compact-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body.nxglobo-front-page .nxg5-section-heading > div > span,
  body.nxglobo-front-page .nxglobo-section-heading > div > span { font-size: 8.5px; }
  body.nxglobo-front-page .nxg5-section-heading h2,
  body.nxglobo-front-page .nxglobo-section-heading h2 { font-size: 29px; }
  body.nxglobo-front-page .nxg5-schedule--studio .nxg5-schedule-panels { padding: 8px; }
  body.nxglobo-front-page .nxg5-schedule-featured {
    min-height: 0;
    grid-template-columns: 1fr;
  }
  body.nxglobo-front-page .nxg5-schedule-featured__image,
  body.nxglobo-front-page .nxg5-schedule-featured__image img { min-height: 160px; height: 160px; }
  body.nxglobo-front-page .nxg5-schedule-featured__image::after {
    background: linear-gradient(180deg, transparent 52%, rgba(11,7,12,.92));
  }
  html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-schedule-featured__image::after {
    background: linear-gradient(180deg, transparent 60%, rgba(255,255,255,.92));
  }
  body.nxglobo-front-page .nxg5-schedule-featured__content { padding: 20px; }
  body.nxglobo-front-page .nxg5-schedule-featured__time { margin-top: 13px; font-size: 10px; }
  body.nxglobo-front-page .nxg5-schedule-featured h3 { font-size: 26px; }
  body.nxglobo-front-page .nxg5-schedule-featured p { font-size: 11px; }
  body.nxglobo-front-page .nxg5-schedule-featured__button { margin-top: 16px; }
  body.nxglobo-front-page .nxg5-schedule-next-heading { min-height: 52px; margin-top: 10px; }
  body.nxglobo-front-page .nxg5-schedule-compact {
    min-height: 82px;
    grid-template-columns: 68px 64px minmax(0,1fr) 30px;
  }
  body.nxglobo-front-page .nxg5-schedule-compact__image img { min-height: 82px; }
  body.nxglobo-front-page .nxg5-schedule-compact__time strong { font-size: 15px; }
  body.nxglobo-front-page .nxg5-schedule-compact__content { padding: 10px; }
  body.nxglobo-front-page .nxg5-schedule-compact h3 { font-size: 12px; }
  body.nxglobo-front-page .nxg5-schedule-compact p { font-size: 8px; }
  body.nxglobo-front-page .nxg5-footer__brand p,
  body.nxglobo-front-page .nxg5-footer__column p,
  body.nxglobo-front-page .nxg5-footer__column > a { font-size: 10px; }
  body.nxglobo-front-page .nxglobo-mobile-nav a { font-size: 9px; }
}

@media (max-width: 390px) {
  body.nxglobo-front-page .nxg5-schedule-compact {
    grid-template-columns: 62px 58px minmax(0,1fr) 27px;
  }
  body.nxglobo-front-page .nxg5-schedule-compact__content { padding: 9px 7px; }
  body.nxglobo-front-page .nxg5-schedule-compact p { display: none; }
}


/* ========================================================================
   6.3.3 · Logotipo del encabezado más visible
   ======================================================================== */
body.nxglobo-front-page .nxglobo-site-header__inner {
  grid-template-columns: 158px 1fr auto;
}
body.nxglobo-front-page .nxglobo-site-header__logo {
  min-width: 0;
  overflow: visible;
}
body.nxglobo-front-page .nxglobo-site-header__logo img {
  width: auto !important;
  height: auto !important;
  max-width: 132px !important;
  max-height: 52px !important;
  object-fit: contain;
  filter: drop-shadow(0 7px 14px rgba(0,0,0,.28));
}
@media (max-width: 991px) {
  body.nxglobo-front-page .nxglobo-site-header__inner {
    grid-template-columns: 1fr auto;
  }
  body.nxglobo-front-page .nxglobo-site-header__logo img {
    max-width: 112px !important;
    max-height: 46px !important;
  }
}
@media (max-width: 620px) {
  body.nxglobo-front-page .nxglobo-site-header__logo img {
    max-width: 104px !important;
    max-height: 43px !important;
  }
}


/* ========================================================================
   6.3.4 · Refinamiento premium continuo + limpieza de encabezado
   ======================================================================== */
body.nxglobo-front-page .nxg5-home {
  background:
    radial-gradient(circle at 0% 2%, rgba(114,7,45,.22), transparent 24%),
    radial-gradient(circle at 100% 12%, rgba(124,10,56,.20), transparent 23%),
    linear-gradient(180deg, #040307 0%, #060409 42%, #050408 100%) !important;
}
body.nxglobo-front-page .nxg5-section,
body.nxglobo-front-page .nxg5-section--schedule,
body.nxglobo-front-page .nxg5-section--promos,
body.nxglobo-front-page .nxg5-section--news,
body.nxglobo-front-page .nxg5-section--news-premium,
body.nxglobo-front-page .nxg5-section--live,
body.nxglobo-front-page .nxg5-section--videos,
body.nxglobo-front-page .nxg5-footer,
body.nxglobo-front-page .nxg5-home .nxglobo-section {
  background: transparent !important;
  border-top: 0 !important;
}
body.nxglobo-front-page .nxg5-section::before,
body.nxglobo-front-page .nxg5-home .nxglobo-section::before {
  background:
    radial-gradient(circle at 14% 0%, rgba(229,0,90,.055), transparent 34%),
    radial-gradient(circle at 86% 100%, rgba(113,8,49,.045), transparent 26%) !important;
  opacity: .9;
}
body.nxglobo-front-page .nxg5-section + .nxg5-section {
  margin-top: -2px;
}
body.nxglobo-front-page .nxg5-shell,
body.nxglobo-front-page .nxglobo-shell {
  position: relative;
}
body.nxglobo-front-page .nxg5-shell:not(.nxr-slider__frame)::before,
body.nxglobo-front-page .nxglobo-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.012), rgba(255,255,255,0));
  pointer-events: none;
  opacity: .35;
}
body.nxglobo-front-page .nxg5-schedule,
body.nxglobo-front-page .nxg5-live-card,
body.nxglobo-front-page .nxg5-video-card,
body.nxglobo-front-page .nxg5-news-premium-card__link,
body.nxglobo-front-page .nxglobo-podcast-card,
body.nxglobo-front-page .nxglobo-host-card,
body.nxglobo-front-page .nxglobo-ranking-item {
  border-color: rgba(255,255,255,.055) !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
}
body.nxglobo-front-page .nxg5-facebook-live,
body.nxglobo-front-page .nxg6-whatsapp-strip__button {
  box-shadow: 0 16px 42px rgba(0,0,0,.20);
}
body.nxglobo-front-page .nxg5-footer {
  padding-top: 36px;
}
body.nxglobo-front-page .nxg5-footer__copyright {
  border-top-color: rgba(255,255,255,.045) !important;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-home {
  background:
    radial-gradient(circle at 100% 0, rgba(219,22,87,.06), transparent 24%),
    linear-gradient(180deg, #f8f4f7 0%, #f2ebef 100%) !important;
}
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-section,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-home .nxglobo-section,
html[data-nxg-theme="day"] body.nxglobo-front-page .nxg5-footer {
  border-top: 0 !important;
}
@media (max-width: 760px) {
  body.nxglobo-front-page .nxg5-shell:not(.nxr-slider__frame)::before,
  body.nxglobo-front-page .nxglobo-shell::before {
    border-radius: 22px;
  }
  body.nxglobo-front-page .nxg5-section + .nxg5-section {
    margin-top: 0;
  }
}


/* ========================================================================
   6.3.7 · Reparación definitiva del slider
   Evita que reglas generales de shells alteren el posicionamiento React.
   ======================================================================== */
body.nxglobo-front-page .nxr-slider__frame > .nxr-slider__slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
body.nxglobo-front-page .nxr-slider__frame > .nxr-slider__slide.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  z-index: 2 !important;
}
body.nxglobo-front-page .nxr-slider__frame > .nxr-slider__arrow {
  position: absolute !important;
  top: 50% !important;
  z-index: 5 !important;
}
body.nxglobo-front-page .nxr-slider__frame > .nxr-slider__arrow--prev {
  left: 13px !important;
  right: auto !important;
}
body.nxglobo-front-page .nxr-slider__frame > .nxr-slider__arrow--next {
  right: 13px !important;
  left: auto !important;
}
body.nxglobo-front-page .nxr-slider__frame > .nxr-slider__dots {
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  top: auto !important;
  bottom: 12px !important;
  z-index: 6 !important;
  transform: translateX(-50%) !important;
}
body.nxglobo-front-page .nxr-slider__image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  opacity: 1 !important;
  visibility: visible !important;
}
@media (max-width: 620px) {
  body.nxglobo-front-page .nxr-slider__frame > .nxr-slider__arrow--prev { left: 8px !important; }
  body.nxglobo-front-page .nxr-slider__frame > .nxr-slider__arrow--next { right: 8px !important; }
  body.nxglobo-front-page .nxr-slider__frame > .nxr-slider__dots { bottom: 7px !important; }
  body.nxglobo-front-page .nxr-slider__image {
    object-fit: contain !important;
    object-position: center center !important;
  }
}
