    :root {
      --bg-main: #060608;
      --accent: #e01b4f;
      --accent-soft: #b7133d;
      --text-main: #f5f5f5;
      --text-muted: #9a9a9a;
      --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      min-height: 100vh;
      background: radial-gradient(circle at top, #14141a 0%, #020205 55%);
      color: var(--text-main);
      font-family: var(--font-main);
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
    }

    /* CABEZAL CON LOGO */

    .site-header {
      width: 100%;
      padding: 16px 0 8px;
      background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .site-header-inner {
      max-width: 1100px;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .logo-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .logo-img {
      max-width: 180px;
      height: auto;
      display: block;
      filter: drop-shadow(0 0 12px rgba(0,0,0,0.8));
    }

    @media (max-width: 600px) {
      .logo-img {
        max-width: 150px;
      }
    }

    /* Contenedor general de la home */
    .page {
      width: 100%;
      min-height: calc(100vh - 80px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: 8px 16px 40px;
      gap: 32px;
    }

    .landing {
      width: 100%;
      max-width: 1100px;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
      gap: 32px;
      align-items: center;
    }

    @media (max-width: 850px) {
      .landing {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
      }
    }

    .landing-left {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--text-muted);
    }

    .label-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--accent) 0%, #4c0018 100%);
      box-shadow: 0 0 10px rgba(224, 27, 79, 0.7);
    }

    h1 {
      font-size: clamp(2.1rem, 3vw + 1rem, 3.2rem);
      line-height: 1.05;
      font-weight: 700;
    }

    h1 span.highlight {
      color: var(--accent);
      letter-spacing: 0.04em;
    }

    .subtitle {
      margin-top: 6px;
      font-size: 0.95rem;
      line-height: 1.5;
      color: var(--text-muted);
      max-width: 40rem;
    }

    .hint {
      margin-top: 8px;
      font-size: 0.8rem;
      color: var(--text-muted);
      opacity: 0.9;
      max-width: 40rem;
    }

    .hint strong {
      color: var(--accent-soft);
      font-weight: 500;
    }

    .meta {
      margin-top: 26px;
      font-size: 0.78rem;
      color: var(--text-muted);
      max-width: 28rem;
    }

    .meta span.tag {
      color: var(--accent-soft);
    }

    /* CTA genérica (botones) */

    .cta-row {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .btn {
      border-radius: 999px;
      padding: 10px 18px;
      border: 1px solid rgba(224, 27, 79, 0.7);
      background: linear-gradient(
        135deg,
        rgba(224, 27, 79, 0.16),
        rgba(8, 8, 12, 0.9)
      );
      color: var(--text-main);
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.13em;
      cursor: pointer;
      transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 0 18px rgba(224, 27, 79, 0.5);
      border-color: var(--accent);
      background: linear-gradient(
        135deg,
        rgba(224, 27, 79, 0.3),
        rgba(8, 8, 12, 0.95)
      );
    }

    /* Contenedor de la nube 3D */
    .cloud-wrapper {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      max-width: 520px;
      margin-inline: auto;
      border-radius: 32px;
      background: radial-gradient(circle at top, #1a1a22, #020205);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.02),
        0 20px 60px rgba(0, 0, 0, 0.75);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cloud-wrapper::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: radial-gradient(circle at 10% 0%, rgba(224, 27, 79, 0.22), transparent 55%);
      mix-blend-mode: screen;
      pointer-events: none;
    }

    .tag-cloud {
      position: relative;
      width: 100%;
      height: 100%;
      transform-style: preserve-3d;
      perspective: 900px;
      cursor: grab;
      touch-action: none;
    }

    .tag-cloud.dragging {
      cursor: grabbing;
    }

    .tag-cloud .tag {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      white-space: nowrap;
      font-size: 0.75rem;
      padding: 4px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(0, 0, 0, 0.35);
      color: var(--text-main);
      text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
      pointer-events: auto;
      text-decoration: none;
      transition:
        background 140ms ease,
        border-color 140ms ease,
        color 140ms ease;
    }

    .tag-cloud .tag:hover {
      background: rgba(224, 27, 79, 0.4);
      border-color: rgba(224, 27, 79, 0.8);
    }

    /* Profundidad neutra: no teñir de rojo, solo variar brillo/opacity */
    .tag[data-depth="front"] {
      filter: brightness(1.08);
      box-shadow: none;
    }

    .tag[data-depth="back"] {
      filter: brightness(0.75);
      opacity: 0.55;
      box-shadow: none;
    }

    .cloud-legend {
      position: absolute;
      inset: 14px 18px auto auto;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 0.7rem;
      color: var(--text-muted);
      background: rgba(0, 0, 0, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.06);
      pointer-events: none;
    }

    @media (max-width: 850px) {
      .cloud-legend {
        inset: auto auto 14px 50%;
        transform: translateX(-50%);
      }
    }

    /* Descripción bajo la nube */

    .cloud-description-section {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .cloud-description-inner {
      width: 100%;
      max-width: 900px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }

    .cloud-description-inner .subtitle,
    .cloud-description-inner .hint {
      max-width: 900px;
    }

    /* ROSTER VIEW */

    .roster-section {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .roster-inner {
      width: 100%;
      max-width: 1100px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 8px;
    }

    .roster-header h2 {
      font-size: 1.25rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .roster-header p {
      margin-top: 4px;
      font-size: 0.9rem;
      color: var(--text-muted);
      max-width: 40rem;
    }

    .roster-grid {
      margin-top: 8px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    @media (max-width: 900px) {
      .roster-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 650px) {
      .roster-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .roster-card {
      border-radius: 18px;
      overflow: hidden;
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      flex-direction: column;
      transition:
        transform 140ms ease,
        box-shadow 140ms ease,
        border-color 140ms ease;
    }

    .roster-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8);
      border-color: rgba(224, 27, 79, 0.7);
    }

    .roster-card-img-wrap {
      position: relative;
      width: 100%;
      padding-top: 75%;
      background: radial-gradient(circle at top, #1c1c22, #040407);
      overflow: hidden;
    }

    .roster-card-img-link {
      position: absolute;
      inset: 0;
      display: block;
    }

    .roster-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .roster-card-overlay {
      position: absolute;
      inset: auto 0 0 0;
      padding: 10px 12px 11px;
      background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.35), rgba(0,0,0,0.0));
      display: flex;
      flex-direction: column;
      gap: 3px;
      pointer-events: none;
    }

    .roster-card-name-overlay {
      font-family: Impact, Haettenschweiler, "Arial Narrow Bold", system-ui, sans-serif;
      font-size: clamp(1.4rem, 2.4vw, 1.8rem);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #ffffff;
      text-shadow: 0 0 10px rgba(0,0,0,0.95);
      line-height: 1.05;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }

    .roster-card-country-overlay {
      font-size: 0.82rem;
      color: #f5f5f5;
      opacity: 0.95;
      text-shadow: 0 0 6px rgba(0,0,0,0.9);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }

    .roster-empty {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-top: 8px;
    }

    /* TELETIPO NOTICIAS */

    .news-ticker-section {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .news-ticker-inner {
      width: 100%;
      max-width: 1100px;
      margin-top: 10px;
      border-radius: 999px;
      overflow: hidden;
      background: radial-gradient(circle at 0% 50%, #ff0044 0%, #840021 45%, #1a0106 100%);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 16px 46px rgba(0, 0, 0, 0.9);
      display: flex;
      align-items: stretch;
    }

    .news-ticker-label {
      padding: 8px 14px;
      display: flex;
      align-items: center;
      gap: 6px;
      border-right: 1px solid rgba(255,255,255,0.25);
      background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
      text-transform: uppercase;
      font-size: 0.74rem;
      letter-spacing: 0.18em;
      white-space: nowrap;
    }

    .news-ticker-label-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #ffffff;
      box-shadow: 0 0 10px rgba(255,255,255,0.95);
    }

    .news-ticker-label span {
      font-weight: 600;
    }

    .news-ticker-marquee {
      position: relative;
      flex: 1;
      overflow: hidden;
      padding: 4px 0;
    }

    .news-ticker-track {
      display: inline-flex;
      align-items: center;
      gap: 32px;
      padding-inline: 18px;
      animation: ticker-scroll 45s linear infinite;
      will-change: transform;
    }

    .news-item {
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .news-item a {
      color: #ffeef4;
      text-decoration: none;
      font-weight: 600;
      text-shadow: 0 0 8px rgba(0,0,0,0.9);
      transition: color 120ms ease, text-shadow 120ms ease, transform 120ms ease;
    }

    .news-item a:hover {
      color: #ffffff;
      text-shadow: 0 0 14px rgba(0,0,0,1);
      transform: translateY(-1px);
    }

    .news-bullet {
      font-weight: 700;
      opacity: 0.9;
    }

    @keyframes ticker-scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    @media (max-width: 650px) {
      .news-ticker-inner {
        border-radius: 16px;
      }
      .news-ticker-label {
        padding-inline: 10px;
        font-size: 0.68rem;
        letter-spacing: 0.16em;
      }
      .news-ticker-track {
        gap: 24px;
        padding-inline: 12px;
      }
      .news-item {
        font-size: 0.75rem;
      }
    }

    /* CTA GLOBAL – después del scroller de noticias */

    .cta-global-wrapper {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .cta-global {
      width: 100%;
      max-width: 1100px;
      display: flex;
      justify-content: center;
      gap: 14px;
      margin: 26px 0 6px;
      flex-wrap: wrap;
    }

    /* PENTAGRAM TV – reproductor único + playlist aleatoria */

    .tv-section {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .tv-inner {
      width: 100%;
      max-width: 1100px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 18px;
    }

    .tv-header h2 {
      font-size: 1.3rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .tv-header p {
      margin-top: 4px;
      font-size: 0.9rem;
      color: var(--text-muted);
      max-width: 32rem;
    }

    .tv-layout {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
      gap: 18px;
      align-items: flex-start;
    }

    @media (max-width: 900px) {
      .tv-layout {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .tv-player {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      border-radius: 18px;
      overflow: hidden;
      background: #000;
      box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    }

    .tv-player iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .tv-playlist {
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-height: 360px;
      overflow-y: auto;
      padding-right: 4px;
    }

    @media (max-width: 600px) {
      .tv-playlist {
        max-height: 220px;
      }
    }

    .tv-item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 10px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.06);
      background: rgba(0, 0, 0, 0.4);
      color: var(--text-main);
      font-size: 0.85rem;
      cursor: pointer;
      transition:
        background 140ms ease,
        border-color 140ms ease,
        transform 120ms ease;
    }

    .tv-item-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(224, 27, 79, 0.7);
    }

    .tv-item span {
      flex: 1;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .tv-item:hover {
      background: rgba(224, 27, 79, 0.18);
      border-color: rgba(224, 27, 79, 0.7);
      transform: translateY(-1px);
    }

    .tv-item.active {
      background: rgba(224, 27, 79, 0.32);
      border-color: rgba(224, 27, 79, 1);
    }

    .tv-empty {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    @media (max-width: 600px) {
      .tv-header h2 {
        font-size: 1.1rem;
      }
      .tv-header p {
        font-size: 0.85rem;
      }
    }


/* Variantes de la nube según tipo de hashtag */

/* Artistas: burbuja roja destacada */
.tag-artist {
  background-color: #e01b4f;       /* rojo Pentagram / acento */
  border: 1px solid #ff5c7f;       /* borde un poco más claro */
  color: #ffffff;
  box-shadow: 0 0 12px rgba(224, 27, 79, 0.65);
}

/* Frente del artista: más glow rojo */
.tag-artist[data-depth="front"] {
  box-shadow: 0 0 18px rgba(224, 27, 79, 0.95);
}

/* Fondo del artista: glow leve */
.tag-artist[data-depth="back"] {
  box-shadow: 0 0 8px rgba(224, 27, 79, 0.4);
}

/* Países: azul "planeta tierra" */
.tag-country {
  background-color: #1766d1;       /* azul profundo tipo planeta */
  border: 1px solid #4d94ff;       /* azul más claro en el borde */
  color: #ffffff;
  box-shadow: 0 0 12px rgba(23, 102, 209, 0.6);
}

/* Override específico: cuando un país está al frente de la esfera */
.tag-country[data-depth="front"] {
  border-color: #8fd4ff;                 /* celeste tipo "Francia/cielo" */
  box-shadow: 0 0 18px rgba(143, 212, 255, 0.95);
}

/* Cuando está atrás, un glow más sutil */
.tag-country[data-depth="back"] {
  border-color: #4d94ff;
  box-shadow: 0 0 8px rgba(23, 102, 209, 0.4);
}



/* ---------------------------------------------------------------- */
/* flujo.php – estilos del flujo interactivo */

:root {
  /* Nuevas variables para el flujo interactivo */
  --border-subtle: #262636;
  --radius-main: 18px;
}

/* CONTENEDOR DEL FLUJO INTERACTIVO */

.flow-shell {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 12px 0 32px;
}

.flow-frame {
  width: 100%;
  max-width: 520px;
  background: rgba(5, 5, 11, 0.94);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(224, 27, 79, 0.08);
  padding: 16px 14px 18px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .flow-frame {
    padding: 20px 20px 24px;
  }
}

/* HEADER DEL FLUJO */

.flow-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 12px;
}

.flow-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ff7a9a 0, #e01b4f 35%, #3b0b1d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-title-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.flow-title {
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

/* CUERPO DEL FLUJO */

.flow-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  padding-bottom: 8px;
}

.flow-step {
  display: none;
  flex: 1;
  flex-direction: column;
  animation: flow-fade-in 0.2s ease-out;
}

.flow-step.active {
  display: flex;
}

.flow-question {
  margin-bottom: 12px;
}

.flow-question-title {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.flow-question-subtitle {
  font-size: 13px;
  color: var(--text-muted);
}

.flow-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

/* OPCIONES DEL FLUJO */

.flow-option {
  width: 100%;
  border-radius: var(--radius-main);
  border: 1px solid var(--border-subtle);
  background: linear-gradient(135deg, rgba(19, 19, 30, 0.96), rgba(10, 10, 18, 0.96));
  padding: 11px 14px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition:
    transform 0.12s ease-out,
    box-shadow 0.12s ease-out,
    border-color 0.12s ease-out,
    background 0.12s ease-out;
}

.flow-option-label {
  font-size: 15px;
  font-weight: 500;
}

.flow-option-helper {
  font-size: 11px;
  color: var(--text-muted);
}

.flow-option-indicator {
  font-size: 16px;
  opacity: 0.5;
}

.flow-option:hover,
.flow-option:focus-visible {
  outline: none;
  border-color: rgba(224, 27, 79, 0.7);
  box-shadow:
    0 0 0 1px rgba(224, 27, 79, 0.7),
    0 9px 25px rgba(0, 0, 0, 0.9);
  transform: translateY(-1px);
  background: radial-gradient(
    circle at 0% 0%,
    rgba(224, 27, 79, 0.18),
    rgba(9, 9, 15, 0.98)
  );
}

.flow-option:active {
  transform: translateY(0);
  box-shadow:
    0 0 0 1px rgba(224, 27, 79, 0.7),
    0 4px 14px rgba(0, 0, 0, 0.9);
}

/* TEXTOS AUXILIARES */

.flow-small {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* FOOTER DEL FLUJO */

.flow-footer {
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.flow-back {
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(11, 11, 18, 0.9);
  color: var(--text-main);
  font-size: 12px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  min-width: 0;
}

.flow-back span:first-child {
  font-size: 14px;
}

.flow-progress {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-muted);
}

.flow-back[disabled] {
  opacity: 0.3;
  cursor: default;
}

/* RESULTADO */

.flow-result-header {
  margin-bottom: 14px;
}

.flow-result-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(224, 27, 79, 0.08);
  border: 1px solid rgba(224, 27, 79, 0.3);
  color: #ff88ab;
  margin-bottom: 8px;
}

.flow-result-title {
  font-size: 19px;
  margin-bottom: 4px;
}

.flow-result-subtitle {
  font-size: 13px;
  color: var(--text-muted);
}

.flow-result-body {
  margin-top: 14px;
  background: radial-gradient(
    circle at 0 0,
    rgba(224, 27, 79, 0.12),
    rgba(9, 9, 15, 0.98)
  );
  border-radius: 20px;
  padding: 14px 14px 12px;
  border: 1px solid var(--border-subtle);
}

.flow-result-section-title {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------------------------------------------------------- */

/* Scroll vertical de CTAs en mobile: ventana de 3 botones */

@media (max-width: 768px) {
  .cta-global.cta-scroll {
    flex-direction: column;          /* apilar botones en vertical */
    flex-wrap: nowrap;               /* evitar wrap horizontal */
    align-items: stretch;
    max-height: 9.5rem;              /* aprox. 3 botones visibles */
    overflow-y: auto;                /* scroll SOLO vertical */
    overflow-x: hidden;              /* bloquear scroll horizontal */
    padding-right: 4px;              /* pequeño margen para no tapar texto */
  }

  /* Ocultar scrollbar en mobile WebKit (opcional) */
  .cta-global.cta-scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  /* Firefox / otros: scrollbar mínimo y discreto */
  .cta-global.cta-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.25) transparent;
  }
}

/* ----------------------------------------------------------
   Botón flotante de WhatsApp – Pentagram UY
---------------------------------------------------------- */

.whatsapp-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366; /* verde WhatsApp */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  z-index: 1200;
  transition:
    transform 0.15s ease-out,
    box-shadow 0.15s ease-out,
    background 0.15s ease-out;
}

.whatsapp-floating:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.85);
  background: #1ebe5a;
}

.whatsapp-floating-inner {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .whatsapp-floating {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

    /* Fix: asegurar que el teletipo de noticias quede por encima
       de capas de la nube y reciba los eventos de toque/click
       también en mobile. */
    .news-ticker-section {
      position: relative;
      z-index: 40;
      pointer-events: auto;
    }
    .news-ticker-inner,
    .news-ticker-marquee,
    .news-ticker-track,
    .news-item,
    .news-item a {
      pointer-events: auto;
    }

/* FIX: asegurar que los botones de playlist sean clickeables */
.tv-playlist, .tv-item, .tv-item *{
  pointer-events: auto !important;
}    

/* ========================================== */
/* LOGO PENTAGRAM – HEADER                    */
/* ========================================== */

.site-header .logo-img{
  width: 148px;
  height: auto;
  max-width: 100%;
  display: block;
}
