/* VARIABLES CENTRALIZADAS EN THEME.CSS */
:root {
  --container-width: 1120px;
  --container-px: 18px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --app-bg: #0B0F14;
    --app-surface: rgba(255, 255, 255, 0.06);
    --app-text: #E5E7EB;
    --app-muted: rgba(229, 231, 235, 0.70);
    --app-border: rgba(255, 255, 255, 0.10);
    --accent: #FF7A1A;
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    --glass: blur(10px);
    --aura-opacity: 0.22;
    --aura-blur: 56px;
    --aura-strength: 0.75;
  }
}

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

html {
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  font-size: 16px;
}

html,
body {
  background-color: var(--bg-base-1);
  /* Fallback */
}

/* 1) Contenedor que "sostiene" el fondo */
body {
  position: relative;
  min-height: 100svh;
  overflow-x: hidden;
  isolation: isolate;
  background-color: var(--bg-page);
}

/* FONDOS ELIMINADOS, AHORA ESTAN EN THEME.CSS PAPELES */

/* Base Grain - Ocultar o remover si el body::after ya provee ruido, pero lo dejamos vacío para no romper HTML existente */
.layer-grain {
  display: none;
}

/* Accesibilidad + rendimiento */
@media (prefers-reduced-motion: reduce) {
  body::before {
    animation: none;
  }
}

.rn-container {
  width: min(var(--container-width), 100%);
  margin: 0 auto;
  padding: 0 var(--container-px);
  position: relative;
  z-index: 1;
  /* Asegurar que el contenido esté sobre el fondo */
}

.hidden {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: 36px 0;
  position: relative;
}

@media (max-width: 720px) {
  section {
    padding: 28px 0;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid var(--border);
}

.header.scrolled {
  background-color: var(--bg);
  padding: 12px 5%;
  box-shadow: var(--shadow);
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;

  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
}

.logo img {
  width: 60px;
}

.logo h1 {
  font-size: 2rem;
  text-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
  transition: text-shadow 0.3s;
}

.logo:hover {
  transform: scale(1.15);

  filter: drop-shadow(0 0 25px rgba(255, 140, 0, 1));
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 12px;
  align-items: center;
}

.nav-list a {
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 0 14px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border-radius: 999px;
  transition: 0.3s;
  background: var(--surface);
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-list a:hover {
  background-color: var(--accent);
  color: var(--accent-contrast);
  border-color: var(--accent);
  box-shadow: 0 4px 15px var(--focus);
}

.hero {
  min-height: auto;
  padding: 120px 5% 40px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-text {
  max-width: 550px;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 140, 0, 0.15);
  border: 1px solid rgba(255, 140, 0, 0.4);
  border-radius: 999px;
  color: #ffaa00;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.2);
}

.hero-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 10px 0 0;
  padding-bottom: 15px;
  color: var(--text-heading);
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.hero-text p {
  background-color: var(--surface);
  color: var(--text);
  backdrop-filter: blur(4px);
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 400;
  max-width: 700px;
  margin: 10px 0 1.2rem 0;
}

.btn-live {
  display: inline-block;
  padding: 16px 40px;

  font-size: 1.3rem;

  background-color: #fdf5e6;

  color: #ff6600;

  border: 2px solid #ff6600;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;

  box-shadow: 0 0 25px rgba(255, 69, 0, 0.4);
  transition: transform 0.2s, background-color 0.3s, color 0.3s;
  animation: pulseBtn 2s infinite;
}

.btn-live:hover {
  transform: scale(1.05);
  background-color: #ff6600;
  color: #fdf5e6;
}

.btn-live.on {
  background: #ff4500;

  color: white;
  border-color: #ff4500;
  box-shadow: 0 0 35px rgba(255, 69, 0, 0.8);
  animation: pulseBtn 1s infinite;
}

.section-streaming {
  display: flex;
  justify-content: center;
  padding: 20px 5%;
  margin-bottom: 25px;
}

.section-streaming .alerta-transmision {
  background: var(--bg-panel);
  color: var(--text-main);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 30px;
  border: 1px solid var(--border-soft);
  text-align: center;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.section-streaming .alerta-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;

  /* Nuevo efecto dorado "Shine" igual al Hero */
  background: linear-gradient(90deg, #ff8c00, #ffcc33, #ff8c00);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

  text-shadow: 0px 4px 15px rgba(255, 140, 0, 0.3);
  animation: shine 5s linear infinite;
}

.section-streaming .alerta-text p {
  font-size: 1.4rem;
  line-height: 1.45;
  color: #eee;
  max-width: 90%;
  margin: 0 auto;
}

.mic-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 400px;
}

.mic {
  width: 100%;
  max-width: 380px;
  z-index: 2;
  filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.6));
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.mic-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  /* El color ambar base, luego su opacidad está regida por --aura-opacity */
  background: radial-gradient(circle, rgba(255, 140, 0, var(--aura-opacity)) 0%, rgba(255, 69, 0, 0) 70%);
  border-radius: 50%;
  z-index: 1;
  animation: auraPulse 3s infinite ease-in-out;
  will-change: transform, opacity;
  filter: blur(var(--aura-blur));
}

.info {
  /* Limpiando fondo para que use el de .text-readability */
  display: flex;
  justify-content: center;
}

.info-content {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.info-content h2 {
  font-size: 2.2rem;
  color: #ff8c00;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.info-content p {
  color: #ddd;
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.section-colaboraciones {
  /* Limpiando fondo para que use el contenedor principal */
  display: flex;
  justify-content: center;
}

.colab-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.colab-text {
  flex: 2;
}

.colab-text h2 {
  font-size: 2.2rem;
  color: #ff8c00;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.colab-text p {
  color: #ddd;
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.colab-action {
  flex: 1;
  display: flex;
  justify-content: center;
}

.btn-bio {
  display: inline-block;
  padding: 14px 35px;
  font-size: 1.1rem;
  background-color: transparent;
  color: #ff8c00;
  border: 2px solid #ff8c00;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.btn-bio:hover {
  background-color: #ff8c00;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
  transform: translateY(-2px);
}

.footer {

  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.3));
  backdrop-filter: blur(5px);
  padding: 30px 5% 20px;

  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;

  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;

  align-items: flex-start !important;
  padding-top: 50px;
}

.footer-col {
  flex: 1;
  min-width: 250px;

  margin-top: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.footer-col h3,
.footer-col h4 {
  color: orange;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;

  margin-top: 0 !important;
  margin-bottom: 25px !important;
  line-height: 1.2 !important;
  height: auto !important;
}

.footer-link,
.footer p {
  color: #ddd;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  font-size: 1.1rem;

  transition: 0.2s;
}

.footer-link:hover {
  color: orange;
  padding-left: 5px;
}

.btn-wsp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: white;
  padding: 12px 25px;

  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 0;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  transition: 0.3s;
}

.btn-wsp:hover {
  background-color: #1ebc50;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
}

.section-streaming .video-facade {
  position: relative;
  width: 100%;
  height: 500px;
  background: black;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.section-streaming .facade-poster {
  width: 150px !important;
  height: auto !important;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.section-streaming .video-facade:hover .facade-poster {
  opacity: 0.4;
}

.section-streaming .facade-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  z-index: 10;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.section-streaming .facade-play-btn svg {
  filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.8));
  transition: transform 0.2s;
}

.section-streaming .video-facade:hover .facade-play-btn svg {
  transform: scale(1.2);
  fill: #ff8c00;
}

.section-streaming .facade-play-btn span {
  margin-top: 10px;
  font-weight: bold;
  font-size: 1.2rem;
  text-transform: uppercase;
}

@keyframes auraPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.4;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.4;
  }
}

@keyframes pulseBtn {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 140, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
  }
}

.section-streaming .video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: auto;
  min-height: 500px;
  background: black;
  border-radius: 20px;
  overflow: hidden;
  margin: 20px 0;
  box-shadow: 0 0 30px rgba(255, 140, 0, 0.4);
  border: 4px solid var(--bg-page);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-streaming .video-container:hover {
  transform: scale(1.01);
  box-shadow: 0 0 50px rgba(255, 69, 0, 0.6);
}

.section-streaming .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.msg-animated {
  display: inline-block;
  position: relative;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);

  font-weight: 500;
  animation: pulseText 4s ease-in-out infinite;
}

@keyframes pulseText {

  0%,
  100% {
    opacity: 0.9;
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 20px rgba(255, 140, 0, 0.8);
  }
}

.wsp-note {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: 8px;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  background: #ff8c00;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
  border-color: #ff8c00;
}

@media (max-width: 768px) {

  .header {
    padding: 15px 20px;
  }

  .logo img {
    width: 50px;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .nav-list {
    display: none;
    align-items: center;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 80px;
    align-items: center;
  }

  .hero-text h2 {
    font-size: 2.2rem;
  }

  .mic-wrapper {
    width: 300px;
    height: 300px;
    margin-top: 50px;
  }

  .mic-aura {
    width: 220px;
    height: 220px;
  }

  .footer-col {
    text-align: center;
    margin-bottom: 30px;
  }

  .footer-link,
  .footer p {
    font-size: 1.2rem;

    padding: 5px 0;

  }

  .btn-wsp {
    width: 100%;

    justify-content: center;
    padding: 15px;
  }

  .alerta-transmision {
    padding: 30px 20px;

  }

  .alerta-text h2 {
    font-size: 2rem;
  }

  .social-links {
    justify-content: center;
    margin-top: 10px;
  }

  .colab-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .colab-text h2 {
    font-size: 1.8rem;
  }
}

.text-readability {
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.mic {

  filter: drop-shadow(0 0 35px rgba(255, 130, 0, 0.8)) sepia(0.6) contrast(1.4) brightness(0.8) blur(0.6px);

  mix-blend-mode: hard-light;

  opacity: 0.95;
}

.fenix-section {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  margin: 40px 0;
  /* CSS Fallback robusto para Safari antiguo y rendimiento */
  background: rgba(15, 15, 15, 0.9);
  border-top: 1px solid rgba(255, 140, 0, 0.2);
  border-bottom: 1px solid rgba(255, 140, 0, 0.2);

  /* OPTIMIZACIÓN RENDER / LAG REDUCTION */
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

@supports ((-webkit-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px))) {
  .fenix-section {
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
  }
}

.fenix-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  position: relative;
  width: 100%;
  padding: 10px 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  /* scrollbar hidden */
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  /* EFECTO FADE: Desvanece los primeros y últimos 5% del ancho */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  contain: layout paint;
  /* scroll-behavior: smooth; ELIMINADO: causaba resistencia y lag al arrastrar con JS o tocar */
  scroll-behavior: auto;
}

.fenix-wrapper::-webkit-scrollbar {
  display: none;
}

.fenix-wrapper:active {
  cursor: grabbing;
}

.fenix-track {
  display: flex;

  gap: 25px;
  flex-wrap: nowrap !important;

  width: max-content;

  align-items: center;
  contain: layout paint;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.fenix-track img {
  height: 205px;
  width: 320px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  user-select: none;
  background: #222;

  /* Reduced effects for animation loop */
  box-shadow: none;
  filter: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.fenix-track img:hover {
  transform: scale(1.05);
  z-index: 10;
  border: 2px solid #ff8800;
}

@media (min-width: 769px) {
  .fenix-wrapper:hover .fenix-track {
    animation-play-state: paused;
  }

  .fenix-wrapper:active .fenix-track {
    animation-play-state: paused;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fenix-track {
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .fenix-wrapper {
    overflow-x: auto !important;
    white-space: nowrap !important;
  }

  .fenix-track {
    width: max-content !important;
    display: inline-flex !important;
  }

  /* INTERACTIVIDAD CLAVE: Pausa total al tocar con el dedo */
  .fenix-track:active,
  .fenix-wrapper:active {
    animation-play-state: paused !important;
  }

  /* Tamaño de imágenes móvil */
  .fenix-track img {
    height: 155px !important;
    width: 245px !important;
  }
}

/* ============================
   ESTILOS REPRODUCTOR NATIVO
   ============================ */
.audio-player-wrapper {
  width: 100%;
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
  padding: 0 15px;
}

.audio-player-glass {
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 140, 0, 0.3);
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.audio-player-glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(255, 69, 0, 0.15);
  border-color: rgba(255, 140, 0, 0.6);
}

.player-status {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.live-badge {
  background: #ff4500;
  color: white;
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  box-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
  animation: pulseLive 2s infinite;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

@keyframes pulseLive {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 69, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(255, 69, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 69, 0, 0);
  }
}

.player-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #ff8c00;
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.player-subtitle {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 30px;
  font-weight: 400;
  opacity: 0.8;
}

.main-play-btn {
  background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
  border: none;
  border-radius: 50px;
  padding: 18px 45px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(255, 69, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
}

.main-play-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.main-play-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 69, 0, 0.5);
  background: linear-gradient(135deg, #ffa500 0%, #ff5500 100%);
}

.main-play-btn:hover::after {
  opacity: 1;
}

.main-play-btn:active {
  transform: scale(0.96);
}

.main-play-btn svg {
  width: 28px;
  height: 28px;
  fill: white;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

/* Estado Reproduciendo */
.main-play-btn.playing {
  background: transparent;
  border: 2px solid #ff4500;
  color: #ff4500;
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.2);
}

.main-play-btn.playing svg {
  fill: #ff4500;
}

.main-play-btn.playing:hover {
  background: rgba(255, 69, 0, 0.1);
  box-shadow: 0 0 30px rgba(255, 69, 0, 0.3);
}

/* EQ Animado */
.equalizer {
  display: flex;
  gap: 4px;
  height: 18px;
  align-items: flex-end;
}

.equalizer .bar {
  width: 4px;
  background: #ff8c00;
  border-radius: 2px;
  height: 4px;
  transition: height 0.2s;
}

/* Animación EQ activa */
.audio-player-glass.active .equalizer .bar {
  animation: eq-bounce 0.8s infinite ease-in-out alternate;
}

.audio-player-glass.active .equalizer .bar:nth-child(1) {
  animation-delay: 0s;
  height: 12px;
}

.audio-player-glass.active .equalizer .bar:nth-child(2) {
  animation-delay: 0.2s;
  height: 18px;
}

.audio-player-glass.active .equalizer .bar:nth-child(3) {
  animation-delay: 0.4s;
  height: 10px;
}

@keyframes eq-bounce {
  0% {
    height: 4px;
    opacity: 0.5;
  }

  100% {
    height: 100%;
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .audio-player-glass {
    padding: 25px 20px;
  }

  .player-title {
    font-size: 1.5rem;
  }

  .main-play-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

/* ===============================
   IMPÚLSATE NARANJA (DOBLE CTA) - SCOPED
   =============================== */
#impulsate.boost-naranja {
  padding: 22px 0;
}

#impulsate .boost-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  backdrop-filter: blur(10px);
}

#impulsate .boost-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

#impulsate .boost-pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 140, 0, 0.15);
  border: 1px solid rgba(255, 140, 0, 0.4);
  color: #ffaa00;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.2);
}

#impulsate .boost-pill--sub {
  background: rgba(0, 0, 0, .22);
  border-color: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .72);
}

#impulsate .boost-title {
  font-family: var(--font-heading, sans-serif);
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  letter-spacing: -0.02em;
  margin: 0;

  background: linear-gradient(90deg, #ff8c00, #ffcc33, #ff8c00);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0px 4px 15px rgba(255, 140, 0, 0.25);
  animation: shine 5s linear infinite;
  padding-bottom: 5px;
}

#impulsate .boost-sub {
  margin: 8px 0 6px;
  color: rgba(255, 255, 255, .76);
  max-width: 60ch;
}

#impulsate .boost-proof {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
}

#impulsate .boost-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

#impulsate .benefit {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .08);
}

#impulsate .benefit-ic {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 140, 0, .14);
  border: 1px solid rgba(255, 140, 0, .24);
  position: relative;
}

#impulsate .benefit-ic::before {
  content: "";
  position: absolute;
  inset: 8px;
  background: rgba(255, 255, 255, .92);
  -webkit-mask: var(--ic) no-repeat center / contain;
  mask: var(--ic) no-repeat center / contain;
}

#impulsate .benefit--radio .benefit-ic {
  --ic: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M3 10v4a2 2 0 0 0 2 2h1l4 3v-12L6 10H5a2 2 0 0 0-2 2zm13.5 2a4.5 4.5 0 0 1-2.1 3.8l-.9-1.4a2.9 2.9 0 0 0 0-4.8l.9-1.4A4.5 4.5 0 0 1 16.5 12zm3 0a7.5 7.5 0 0 1-3.5 6.4l-.9-1.4a5.9 5.9 0 0 0 0-10l.9-1.4A7.5 7.5 0 0 1 19.5 12z'/></svg>");
}

#impulsate .benefit--web .benefit-ic {
  --ic: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm7.9 9H16.6a15 15 0 0 0-1.2-5A8 8 0 0 1 19.9 11zM12 4c.9 1.2 1.7 3.1 2.2 7H9.8c.5-3.9 1.3-5.8 2.2-7zM4.1 13h3.3a15 15 0 0 0 1.2 5A8 8 0 0 1 4.1 13zm3.3-2H4.1a8 8 0 0 1 4.5-5a15 15 0 0 0-1.2 5zm1.8 2h5.6a13.3 13.3 0 0 1-1.6 5.2A13.3 13.3 0 0 1 9.2 13zm7.4 0h3.3a8 8 0 0 1-4.5 5a15 15 0 0 0 1.2-5z'/></svg>");
}

#impulsate .benefit--gestion .benefit-ic {
  --ic: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M13 2L3 14h7l-1 8l10-12h-7l1-8z'/></svg>");
}

#impulsate .benefit-txt strong {
  display: block;
  font-weight: 900;
  color: rgba(255, 255, 255, .92);
}

#impulsate .benefit-txt span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .60);
  margin-top: 2px;
}

#impulsate .boost-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

#impulsate .boost-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, .12);
  transition: transform .15s ease, box-shadow .15s ease;
  font-size: 1.05rem;
}

#impulsate .boost-btn--primary {
  background: rgba(255, 140, 0, .22);
  border-color: rgba(255, 140, 0, .45);
  color: rgba(255, 255, 255, .92);
}

#impulsate .boost-btn--ghost {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .88);
}

#impulsate .boost-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 45px rgba(0, 0, 0, .32);
}

#impulsate .boost-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

#impulsate .boost-frame {
  width: min(320px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: radial-gradient(circle at 50% 40%, rgba(255, 140, 0, .18), rgba(0, 0, 0, .08) 60%);
  border: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#impulsate .boost-frame img {
  width: 58%;
  height: auto;
  opacity: .9;
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, .5));
}

#impulsate .boost-note {
  margin-top: 10px;
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
}

@media (max-width: 820px) {
  #impulsate .boost-wrap {
    grid-template-columns: 1fr;
  }

  #impulsate .boost-benefits {
    grid-template-columns: 1fr;
  }

  #impulsate .boost-actions {
    flex-direction: column;
  }

  #impulsate .boost-btn {
    width: 100%;
    text-align: center;
  }
}

/* Ondas decorativas estáticas (no animación) */
.bg-waves {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

/* Banda superior con borde ondulado abajo */
.bg-waves::before {
  content: "";
  position: absolute;
  left: 0;
  top: -40px;
  width: 100%;
  height: 240px;

  /* color/volumen (sutil, coherente con naranja) */
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(255, 160, 60, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(255, 120, 0, 0.10), transparent 75%);

  opacity: 0.9;

  /* "wave" con máscara (scallop) */
  --s: 88px;
  /* largo de onda */
  --r: 18px;
  /* radio del scallop */
  -webkit-mask:
    radial-gradient(var(--r) at var(--r) 100%, #000 98%, transparent 101%) 0 calc(100% - var(--r)) / var(--s) calc(2 * var(--r)) repeat-x,
    linear-gradient(#000 0 0) 0 0 / 100% calc(100% - var(--r)) no-repeat;
  mask:
    radial-gradient(var(--r) at var(--r) 100%, #000 98%, transparent 101%) 0 calc(100% - var(--r)) / var(--s) calc(2 * var(--r)) repeat-x,
    linear-gradient(#000 0 0) 0 0 / 100% calc(100% - var(--r)) no-repeat;
}

/* Banda inferior con borde ondulado arriba */
.bg-waves::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 100%;
  height: 260px;

  background:
    radial-gradient(80% 140% at 50% 100%, rgba(255, 120, 0, 0.14), transparent 62%),
    linear-gradient(0deg, rgba(255, 140, 40, 0.08), transparent 75%);

  opacity: 0.85;

  --s: 96px;
  --r: 20px;
  -webkit-mask:
    radial-gradient(var(--r) at var(--r) 0, #000 98%, transparent 101%) 0 var(--r) / var(--s) calc(2 * var(--r)) repeat-x,
    linear-gradient(#000 0 0) 0 var(--r) / 100% calc(100% - var(--r)) no-repeat;
  mask:
    radial-gradient(var(--r) at var(--r) 0, #000 98%, transparent 101%) 0 var(--r) / var(--s) calc(2 * var(--r)) repeat-x,
    linear-gradient(#000 0 0) 0 var(--r) / 100% calc(100% - var(--r)) no-repeat;
}