:root {
  --night:      #0E0628;
  --night-2:    #160B3B;
  --night-deep: #09041C;
  --magenta:    #F21F7B;
  --violet:     #7C3AED;
  --violet-soft:#A78BFA;
  --blue:       #2DA0F6;
  --gold:       #FC9623;
  --white:      #F9F9F8;
  --muted:      rgba(249,249,248,0.60);
  --green:      #2FBF71;
  --grad: linear-gradient(120deg, #F21F7B 0%, #7C3AED 55%, #2DA0F6 100%);
  --border: rgba(167,139,250,0.20);
  --radius: 16px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--night);
  color: var(--white);
  overflow-x: hidden;
  width: 100%;
}
::selection { background: var(--violet); color: #fff; }
img { max-width: 100%; height: auto; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
section { position: relative; padding: 96px 0; overflow: hidden; }
@media (max-width: 640px) { section { padding: 64px 0; } }

h1, h2 { font-weight: 900; line-height: 1.1; letter-spacing: -0.5px; }
.accent { color: var(--magenta); }

/* ── Botones ── */
.btn {
  display: inline-block;
  background: var(--grad);
  color: #fff; text-decoration: none;
  font-weight: 900; font-size: 16px;
  padding: 15px 32px; border-radius: 999px;
  box-shadow: 0 8px 28px rgba(124,58,237,0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(124,58,237,0.5); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-ghost {
  display: inline-block;
  color: var(--white); text-decoration: none;
  font-weight: 800; font-size: 15px;
  padding: 14px 26px; border-radius: 999px;
  border: 1.5px solid rgba(249,249,248,0.25);
  transition: border-color 0.18s, background 0.18s;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--violet-soft); background: rgba(124,58,237,0.12); }
.btn-ghost:active { transform: scale(0.98); }

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 100; min-height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 0 24px;
  background: rgba(14,6,40,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; min-width: 0; }
.nav-brand img { width: 38px; height: 38px; }
.nav-brand strong { font-size: 18px; font-weight: 900; color: var(--white); }
.nav-brand small { display: block; font-size: 8px; font-weight: 800; letter-spacing: 2px; color: var(--violet-soft); text-transform: uppercase; white-space: nowrap; }
@media (max-width: 480px) {
  .nav-brand small { display: none; }
  nav > a.btn { font-size: 12px !important; padding: 9px 16px !important; }
}

/* ── Frames de dispositivo (screenshots reales) ── */
.phone {
  border-radius: 38px;
  background: #050212;
  padding: 10px;
  border: 1px solid rgba(167,139,250,0.30);
  box-shadow: 0 30px 80px rgba(5,2,18,0.8), 0 8px 30px rgba(124,58,237,0.25);
}
.phone img { display: block; border-radius: 28px; width: 100%; }
.browser {
  border-radius: 14px;
  background: #050212;
  border: 1px solid rgba(167,139,250,0.30);
  box-shadow: 0 30px 80px rgba(5,2,18,0.8), 0 8px 30px rgba(124,58,237,0.2);
  overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #0B0524;
  border-bottom: 1px solid rgba(167,139,250,0.15);
}
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: rgba(249,249,248,0.18); }
.browser-bar span {
  margin-left: 10px; font-size: 11px; font-weight: 700; font-style: normal;
  color: var(--muted); background: rgba(249,249,248,0.06);
  padding: 3px 14px; border-radius: 6px;
}
.browser img { display: block; width: 100%; }

/* ── Hero split ── */
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 56px; align-items: center;
  padding-top: 48px;
}
@media (min-width: 900px) { .hero-grid { grid-template-columns: 6fr 5fr; } }
.hero-visual { display: flex; align-items: flex-end; justify-content: center; gap: 0; }
.hero-visual .phone { width: min(220px, 50vw); flex-shrink: 0; }
.hero-visual .hero-mascot {
  width: min(300px, 58vw);
  flex-shrink: 0;
  margin-left: -34px;
  margin-bottom: -6px;
  filter: drop-shadow(0 16px 40px rgba(9,4,28,0.8));
}

.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--violet-soft);
  margin-bottom: 16px;
}

/* ── Stat ── */
.stat-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 860px) { .stat-grid { grid-template-columns: 7fr 4fr; } }

/* ── Tiles (mockups de marca: paneles propios, sin recuadro agregado) ── */
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.tile-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 720px) { .tile-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 560px) and (max-width: 719px) { .tile-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 720px) { .tile-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 640px) { .ia-demo-grid { grid-template-columns: repeat(2, 1fr) !important; } }
.tile { transition: transform 0.2s ease; }
.tile:hover { transform: translateY(-4px); }
.tile img {
  display: block; width: 100%; border-radius: 22px;
  filter: drop-shadow(0 20px 50px rgba(5,2,18,0.55));
}
.tile-cap {
  font-size: 13px; font-weight: 800; color: var(--muted);
  text-align: center; margin-top: 14px;
}
.tile-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--violet); color: #fff; font-size: 11px; font-weight: 900;
  margin-right: 6px;
}
@media (min-width: 760px) { .panel-split { grid-template-columns: 7fr 5fr !important; } }

/* ── Pricing ── */
.price-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 900px) { .price-grid { grid-template-columns: 5fr 6fr; } }
.price-card {
  position: relative;
  background: var(--night-2);
  border-radius: 24px; padding: 40px 34px;
}
.price-card::before {
  content: ""; position: absolute; inset: -1.5px;
  border-radius: 25px; padding: 1.5px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 26px 0 28px; }
.price-card li { display: flex; gap: 12px; font-size: 15px; font-weight: 700; align-items: baseline; }
.price-card li b { color: var(--green); font-weight: 900; }
.paypal-shell { background: #fff; border-radius: 14px; padding: 12px; }

/* ── FAQ ── */
details {
  background: var(--night-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 18px 22px;
  margin-bottom: 10px;
}
details summary {
  cursor: pointer; font-weight: 800; font-size: 15px;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; color: var(--violet-soft); font-size: 22px; font-weight: 600; transition: transform 0.25s; flex-shrink: 0; }
details[open] summary::after { transform: rotate(45deg); }
details p { font-size: 14px; color: var(--muted); line-height: 1.7; padding-top: 12px; font-weight: 600; }

/* ── Beneficios: sin cuadros, ícono animado + texto ── */
.benefit-grid { display: grid; grid-template-columns: 1fr; gap: 40px 32px; }
@media (min-width: 620px) { .benefit-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .benefit-grid { grid-template-columns: repeat(4, 1fr); } }
.benefit-item { text-align: center; }
.benefit-icon {
  width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  background: radial-gradient(circle at 35% 30%, rgba(124,58,237,0.35), rgba(124,58,237,0.06));
  border: 1.5px solid var(--border);
  animation: benefit-float 3.6s ease-in-out infinite;
}
.benefit-item:nth-child(2n) .benefit-icon { animation-delay: 0.6s; }
.benefit-item:nth-child(3n) .benefit-icon { animation-delay: 1.2s; }
.benefit-item:nth-child(4n) .benefit-icon { animation-delay: 1.8s; }
@keyframes benefit-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.benefit-item h3 { font-size: 15px; font-weight: 900; margin-bottom: 8px; line-height: 1.3; }
.benefit-item p { font-size: 13px; color: var(--muted); font-weight: 600; line-height: 1.6; }
@media (prefers-reduced-motion: reduce) { .benefit-icon { animation: none; } }

/* ── Animación "El problema": línea de proceso con pasos ── */
.process-timeline { position: relative; text-align: left; margin-top: 44px; padding-left: 56px; }
.process-line-track {
  position: absolute; left: 27px; top: 6px; bottom: 6px; width: 3px;
  background: rgba(167,139,250,0.15); border-radius: 3px; overflow: hidden;
}
.process-line-fill { width: 100%; height: 0%; background: var(--grad); border-radius: 3px; }
.process-step { position: relative; margin-bottom: 40px; }
.process-step:last-child { margin-bottom: 0; }
.process-dot {
  position: absolute; left: -56px; top: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--night-2); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.process-step.is-active .process-dot { border-color: var(--magenta); box-shadow: 0 0 0 4px rgba(242,31,123,0.15); }
.process-text h3 { font-size: 16px; font-weight: 900; margin-bottom: 6px; line-height: 1.3; }
.process-text p { font-size: 14px; color: var(--muted); font-weight: 600; line-height: 1.6; }

/* ── Estrellas / glows ── */
.stars { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.star { position: absolute; border-radius: 50%; background: #fff; animation: twinkle var(--tw, 3s) ease-in-out var(--td, 0s) infinite; }
@keyframes twinkle { 0%,100% { opacity: 0.12; } 50% { opacity: 0.6; } }
.glow { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; opacity: 0.25; }

/* ── Sticky CTA mobile ── */
.sticky-cta { display: none; }
@media (max-width: 720px) {
  .sticky-cta {
    display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(14,6,40,0.92); backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
  }
  .sticky-cta a { display: block; text-align: center; }
}

footer { background: var(--night-deep); padding: 40px 24px 64px; border-top: 1px solid var(--border); }

/* ════════════════════════════════════════════════════════════
   ── SECCIÓN: EL PROBLEMA (MOCKUP DE CELULAR PREMIUM) ──
   ════════════════════════════════════════════════════════════ */
.problema-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.problema-content {
  width: 100%;
}
.problema-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 860px) {
  .problema-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .phone-mockup-sticky {
    position: sticky;
    top: 100px;
    padding-bottom: 40px;
  }
  .problema-visual {
    max-width: 100%;
    margin: 0;
  }
}

/* Teléfono Bezel Premium — SOLO para el mockup animado (.phone-mockup-sticky).
   Antes era ".phone" a secas y pisaba el mockup del hero, que reusa la misma
   clase para el marco de la screenshot real: el hero heredaba este height:570px
   fijo con fondo negro, dejando un hueco negro debajo de la imagen (más corta). */
.phone-mockup-sticky .phone {
  width: 280px;
  height: 570px;
  border-radius: 44px;
  background: #000;
  border: 12px solid #1c1538;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.9),
              0 0 0 2px rgba(167, 139, 250, 0.2),
              inset 0 0 10px rgba(0,0,0,0.8);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 20px;
  background: #000;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 10;
}
.phone-screen {
  flex: 1;
  background: #09041a;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.phone-app-mockup {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: inherit;
  color: #fff;
}
.app-header-mini {
  background: #110931;
  padding: 26px 14px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1.5px solid rgba(167, 139, 250, 0.15);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.app-logo-mini {
  color: var(--violet-soft);
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 4px;
}
.app-profile-mini {
  background: rgba(242, 31, 123, 0.2);
  color: #ff5f9e;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  border: 1px solid rgba(242,31,123,0.3);
}

.phone-step-visuals, .tablet-step-visuals {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.phone-visual-pane, .tablet-visual {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.4s;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.phone-visual-pane.active, .tablet-visual.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
/* Las escenas del teléfono son más cortas que la pantalla (el reproductor mide ~190px
   en una pantalla de ~500px): centradas se ven equilibradas, ancladas arriba dejaban
   un hueco negro enorme debajo. Las del tablet manejan su propio layout interno. */
.phone-visual-pane {
  justify-content: center;
}

/* Reproductor de Video de Alta Fidelidad */
.fake-player {
  background: #05020f;
  border-radius: 16px;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1.5px solid rgba(167, 139, 250, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  margin-bottom: 12px;
}
.player-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Escena de Caricatura Premium en CSS */
.cartoon-scene {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #7cd1ff 0%, #dcf0ff 70%, #90e28e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.5s ease;
}
.cartoon-sun {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 24px;
  height: 24px;
  background: #ffdb3b;
  border-radius: 50%;
  box-shadow: 0 0 10px #ffdb3b;
}
.cartoon-cloud {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  opacity: 0.9;
}
.cloud-1 { top: 12px; left: 15px; width: 35px; height: 12px; }
.cloud-2 { top: 22px; left: 45px; width: 25px; height: 10px; }

/* Personaje Conejo en CSS */
.bunny-css {
  position: relative;
  width: 44px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bunny-ears {
  display: flex;
  gap: 6px;
  position: absolute;
  top: -12px;
}
.bunny-ear {
  width: 7px;
  height: 18px;
  background: #fff;
  border-radius: 50% 50% 0 0;
  position: relative;
}
.bunny-ear::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 1.5px;
  width: 4px;
  height: 12px;
  background: #ffaec9;
  border-radius: 50% 50% 0 0;
}
.bunny-head {
  width: 32px;
  height: 28px;
  background: #fff;
  border-radius: 20px 20px 16px 16px;
  position: absolute;
  top: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bunny-eyes {
  display: flex;
  gap: 8px;
  position: absolute;
  top: 10px;
}
.bunny-eye {
  width: 3.5px;
  height: 3.5px;
  background: #333;
  border-radius: 50%;
}
.bunny-nose {
  width: 4px;
  height: 2px;
  background: #ff4785;
  border-radius: 50%;
  position: absolute;
  top: 14px;
}
.bunny-body {
  width: 24px;
  height: 16px;
  background: #fff;
  border-radius: 12px 12px 0 0;
  position: absolute;
  bottom: 0;
}

/* Animaciones del Reproductor */
.playing-bars {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 6px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}
.playing-bars span {
  width: 2.5px;
  height: 100%;
  background: var(--blue);
  border-radius: 1px;
  animation: play-bar 1s ease-in-out infinite alternate;
}
.playing-bars span:nth-child(2) { animation-delay: 0.25s; background: var(--violet-soft); }
.playing-bars span:nth-child(3) { animation-delay: 0.5s; background: var(--magenta); }

@keyframes play-bar {
  0% { height: 15%; }
  100% { height: 100%; }
}

.player-controls {
  padding: 6px 10px;
  background: #0f0729;
  border-top: 1px solid rgba(167, 139, 250, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.player-bar-track {
  height: 4px;
  background: rgba(249, 249, 248, 0.15);
  border-radius: 2px;
  position: relative;
}
.player-bar-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 2px;
}
.player-bottom-icons {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--violet-soft);
  font-weight: 800;
  padding-top: 2px;
}

/* Paso 1: Reproductor minimizado + recomendaciones realistas */
.fake-player.minimized {
  aspect-ratio: auto;
  height: 52px;
  flex-direction: row;
  align-items: center;
  padding: 6px;
  border-radius: 12px;
  margin-bottom: 14px;
}
.player-content.minimized {
  width: 70px;
  height: 100%;
  flex: none;
  border-radius: 8px;
  margin-right: 10px;
  border: 1px solid rgba(259,259,259,0.1);
}
.rec-list {
  background: rgba(17, 9, 49, 0.6);
  border-radius: 16px;
  padding: 12px;
  border: 1.5px solid rgba(167, 139, 250, 0.15);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rec-list h5 {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--violet-soft);
  letter-spacing: 0.8px;
  margin-bottom: 4px;
  font-weight: 800;
}
.rec-card-premium {
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  background: rgba(9, 4, 26, 0.7);
  border: 1px solid rgba(167, 139, 250, 0.08);
  transition: all 0.3s ease;
  position: relative;
}
.rec-card-premium.active {
  border-color: var(--blue);
  background: rgba(45, 160, 246, 0.08);
}
.rec-card-premium.next-video {
  border-color: rgba(252, 150, 35, 0.2);
}
.rec-thumb-mock {
  width: 50px;
  height: 32px;
  border-radius: 6px;
  margin-right: 8px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1c0e4c 0%, #30197d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.05);
}
.rec-thumb-mock .duration-tag {
  position: absolute;
  bottom: 2px;
  right: 2px;
  background: rgba(0,0,0,0.8);
  font-size: 6px;
  padding: 1px 3px;
  border-radius: 2px;
  font-weight: 900;
}
.rec-card-info {
  flex: 1;
  min-width: 0;
}
.rec-card-info h6 {
  font-size: 9.5px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rec-card-info p {
  font-size: 7.5px;
  color: var(--muted);
  font-weight: 700;
}
.rec-badge-premium {
  font-size: 6.5px;
  background: var(--gold);
  color: #000;
  font-weight: 900;
  padding: 1px 4px;
  border-radius: 3px;
  text-transform: uppercase;
  margin-left: 4px;
}

/* Indicador de cursor táctil premium */
.touch-pointer {
  position: absolute;
  font-size: 26px;
  z-index: 100;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4));
  display: none;
}

/* Paso 2: Glitch y advertencia de cambio */
.player-content.creepy-glitch {
  background: #110202;
}
.creepy-graphic {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(230, 20, 20, 0.4) 0%, #110202 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.creepy-eye {
  font-size: 38px;
  filter: saturate(1.8) drop-shadow(0 0 10px rgba(255,0,0,0.8));
  animation: jitter 0.2s infinite;
}
.glitch-lines {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.3) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.1), rgba(0, 255, 0, 0.05), rgba(0, 0, 255, 0.1));
  background-size: 100% 4px, 6px 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.8;
}
.fake-video-details {
  margin-top: 10px;
}
.fake-video-details h4 {
  font-size: 12.5px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--white);
  line-height: 1.3;
}
.fake-video-details p {
  font-size: 10px;
  color: var(--muted);
  font-weight: 700;
}
.warning-theme {
  border-left: 3px solid var(--gold);
  padding-left: 8px;
}
.badge-changed {
  color: var(--gold);
  font-size: 7.5px;
  background: rgba(252, 150, 35, 0.15);
  padding: 1px 4px;
  border-radius: 3px;
  font-weight: 800;
  margin-left: 4px;
  border: 1px solid rgba(252,150,35,0.3);
}

/* Paso 3: Advertencia en pantalla completa */
.alert-box {
  background: rgba(252, 150, 35, 0.07);
  border: 1.5px dashed var(--gold);
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 15px rgba(252,150,35,0.1);
}
.alert-icon {
  font-size: 38px;
  margin-bottom: 12px;
  animation: pulse-glow 1.4s ease-in-out infinite alternate;
}
.alert-box h4 {
  font-size: 14px;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.alert-box p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 14px;
}
.alert-note {
  font-size: 9.5px;
  background: rgba(252, 150, 35, 0.15);
  padding: 6px 10px;
  border-radius: 8px;
  color: #ffb766;
  font-weight: 800;
  line-height: 1.4;
  border: 1px solid rgba(252, 150, 35, 0.25);
}

@keyframes jitter {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-2px, 1px); }
  40% { transform: translate(1px, -1px); }
  60% { transform: translate(-1px, -2px); }
  80% { transform: translate(2px, 2px); }
  100% { transform: translate(0, 0); }
}
@keyframes pulse-glow {
  0% { transform: scale(1); filter: drop-shadow(0 0 2px rgba(252,150,35,0.4)); }
  100% { transform: scale(1.1); filter: drop-shadow(0 0 10px rgba(252,150,35,0.8)); }
}

/* ════════════════════════════════════════════════════════════
   ── SECCIÓN: BENEFICIOS (MOCKUP DE TABLET PREMIUM) ──
   ════════════════════════════════════════════════════════════ */
.beneficios-wrapper {
  padding-top: 32px;
}
.beneficios-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 36px;
}
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.benefit-item-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(22, 11, 59, 0.4);
  border: 1px solid var(--border);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.benefit-item-card:hover {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(167, 139, 250, 0.4);
  transform: translateY(-2px);
}
.benefit-item-card.active {
  background: linear-gradient(135deg, rgba(242, 31, 123, 0.15) 0%, rgba(124, 58, 237, 0.2) 100%);
  border-color: var(--magenta);
  box-shadow: 0 8px 30px rgba(242, 31, 123, 0.15), 0 0 0 1px rgba(242, 31, 123, 0.2);
}
.benefit-card-text h3 {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 4px;
}
.benefit-card-text p {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

@media (min-width: 960px) {
  .beneficios-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  .tablet-mockup-sticky {
    position: sticky;
    top: 100px;
    padding-bottom: 40px;
  }
}

/* Tablet Bezel Premium */
.tablet {
  width: 100%;
  max-width: 440px;
  height: 310px;
  border-radius: 36px;
  background: #000;
  border: 10px solid #1c1538;
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.95), 
              0 0 0 2px rgba(167, 139, 250, 0.15);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tablet-screen {
  flex: 1;
  background: #09041a;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.tablet-app-mockup {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #fff;
  font-family: inherit;
}

/* 0: Perfiles por Edad - Sandbox Premium */
.profile-sandbox {
  padding: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}
.profile-sandbox h5 {
  font-size: 11px;
  color: var(--violet-soft);
  font-weight: 800;
  text-transform: uppercase;
}
.profile-buttons {
  display: flex;
  gap: 12px;
}
.profile-btn {
  background: rgba(22, 11, 59, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}
.profile-btn.active {
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}
.profile-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  flex: 1;
}
.feed-card-premium {
  background: rgba(22, 11, 59, 0.7);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.feed-card-thumb-mock {
  aspect-ratio: 4/3;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--night-2) 0%, rgba(124, 58, 237, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.05);
}
.feed-card-premium h6 {
  font-size: 9px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 1: Canales Administrados - Sandbox Premium */
.channels-sandbox {
  padding: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}
.channels-sandbox h5 {
  font-size: 11px;
  color: var(--violet-soft);
  font-weight: 800;
  text-transform: uppercase;
}
.channel-row-premium {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(22, 11, 59, 0.5);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.channel-row-premium.allowed {
  background: rgba(47, 191, 113, 0.04);
  border-color: rgba(47, 191, 113, 0.2);
}
.channel-row-premium.blocked-row {
  background: rgba(242, 31, 123, 0.02);
  border-color: rgba(242, 31, 123, 0.15);
}
.channel-info-mock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
}
.channel-avatar-mock {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--violet) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.channel-row-premium.blocked-row .channel-avatar-mock {
  background: linear-gradient(135deg, #444 0%, #222 100%);
}

/* iOS Toggle Slider */
.toggle-ios {
  position: relative;
  width: 32px;
  height: 18px;
  background: #3a2e63;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}
.toggle-ios.on {
  background: var(--green);
}
.toggle-ball {
  position: absolute;
  top: 1.5px;
  left: 1.5px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.toggle-ios.on .toggle-ball {
  transform: translateX(14px);
}
.channel-status-msg-premium {
  font-size: 9.5px;
  color: var(--muted);
  text-align: center;
  margin-top: auto;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* 2: Videos Analizados - Sandbox Premium (Holograma de escaneo) */
.scanning-sandbox {
  padding: 12px;
  height: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
  align-items: center;
}
.scanning-video-box {
  background: #05020f;
  border-radius: 14px;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(167, 139, 250, 0.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.video-placeholder-mini {
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  color: var(--white);
  padding: 8px;
  z-index: 1;
}
.scan-bar-animation {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to bottom, rgba(45, 160, 246, 0) 0%, rgba(45, 160, 246, 1) 50%, rgba(45, 160, 246, 0) 100%);
  box-shadow: 0 0 15px var(--blue);
  z-index: 3;
  animation: scan-vertical 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.scan-shield {
  position: absolute;
  font-size: 40px;
  opacity: 0.15;
  z-index: 2;
  filter: drop-shadow(0 0 8px var(--blue));
}
.scanning-video-box.approved .scan-shield {
  opacity: 0.9;
  color: var(--green);
  filter: drop-shadow(0 0 12px var(--green));
  animation: shield-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.scan-status-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.scan-status-item {
  font-size: 9.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(22, 11, 59, 0.4);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.scan-status-item.pending {
  color: var(--violet-soft);
  border-color: rgba(167, 139, 250, 0.15);
}
.scan-status-item.success {
  color: var(--green);
  border-color: rgba(47, 191, 113, 0.3);
  background: rgba(47, 191, 113, 0.05);
}
.scan-result-label {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding-top: 4px;
}

@keyframes scan-vertical {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}
@keyframes shield-pop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 0.9; }
}

/* 3: Historial Visible - Sandbox Parent Control Premium */
.history-sandbox {
  padding: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
}
.history-sandbox h5 {
  font-size: 11px;
  color: var(--violet-soft);
  font-weight: 800;
  text-transform: uppercase;
}
.history-item-premium {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(22, 11, 59, 0.5);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.history-thumb-mini {
  width: 44px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #1c0e4c 0%, #30197d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.05);
}
.history-info-mock {
  flex: 1;
  min-width: 0;
}
.history-info-mock h6 {
  font-size: 9.5px;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.history-info-mock p {
  font-size: 7px;
  color: var(--muted);
  font-weight: 700;
}
.history-badge {
  font-size: 7.5px;
  background: rgba(47, 191, 113, 0.15);
  color: var(--green);
  border: 1px solid rgba(47, 191, 113, 0.3);
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 4px;
}

/* 4: Solicitudes de Autorización (Dos paneles) */
.requests-sandbox {
  padding: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.req-screen-child {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.req-child-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--violet-soft);
}
.req-video-card-premium {
  background: rgba(17, 9, 49, 0.8);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 14px 12px;
  font-weight: 850;
  font-size: 10px;
  width: 100%;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.req-action-btn-premium {
  background: var(--grad);
  border: none;
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 800;
  cursor: pointer;
  font-size: 10px;
  box-shadow: 0 4px 12px rgba(242, 31, 123, 0.3);
  transition: all 0.3s;
}

/* Banner de Notificación del Padre Glassmorphism */
.parent-notification-banner {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 10;
  display: none;
}
.notif-banner-premium {
  background: rgba(17, 9, 49, 0.9);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--magenta);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  text-align: center;
}
.notif-banner-premium p {
  font-size: 9.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.notif-actions-premium {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.notif-btn-premium {
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 850;
  font-size: 9px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.notif-btn-premium.approve {
  background: rgba(47, 191, 113, 0.15);
  color: var(--green);
  border-color: rgba(47, 191, 113, 0.3);
}
.notif-btn-premium.approve:hover {
  background: var(--green);
  color: #000;
}
.notif-btn-premium.deny {
  background: rgba(242, 31, 123, 0.15);
  color: var(--magenta);
  border-color: rgba(242, 31, 123, 0.3);
}

/* Pantalla de Desbloqueo Exitoso */
.request-approved-premium {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.confetti-piece {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #ffd700;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
}

/* 5: Control del Tiempo SVG Circular Premium */
.time-sandbox {
  padding: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
}
.timer-radial-box {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timer-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}
.timer-circle-bg {
  fill: none;
  stroke: rgba(167, 139, 250, 0.1);
  stroke-width: 8;
}
.timer-circle-progress {
  fill: none;
  stroke: url(#timerGrad);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 339.29; /* 2 * PI * r */
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.1s linear;
}
.timer-digits-overlay {
  position: absolute;
  font-size: 20px;
  font-weight: 900;
  font-family: monospace;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timer-digits-overlay span {
  font-size: 7px;
  text-transform: uppercase;
  color: var(--violet-soft);
  letter-spacing: 0.5px;
  font-weight: 800;
}

/* Mascota Durmiendo */
.sleep-mascot-graphics {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}
.mascot-head-css {
  width: 46px;
  height: 38px;
  background: #fcb66c;
  border-radius: 20px 20px 14px 14px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.mascot-head-css::before, .mascot-head-css::after {
  content: '';
  position: absolute;
  top: -8px;
  width: 12px;
  height: 14px;
  background: #fcb66c;
  border-radius: 6px 6px 0 0;
}
.mascot-head-css::before { left: 4px; transform: rotate(-15deg); }
.mascot-head-css::after { right: 4px; transform: rotate(15deg); }
.mascot-sleeping-eyes {
  display: flex;
  gap: 12px;
  position: absolute;
  top: 16px;
  left: 9px;
}
.sleeping-eye {
  width: 8px;
  height: 4px;
  border: 1.8px solid #4a341e;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}
.zzz-animations {
  position: absolute;
  font-size: 14px;
  font-weight: 900;
  color: var(--violet-soft);
  pointer-events: none;
}
.z1 { animation: float-z 1.8s ease-in-out infinite; top: -14px; left: 5px; }
.z2 { animation: float-z 1.8s ease-in-out infinite 0.6s; top: -20px; left: 16px; font-size: 11px; }
.z3 { animation: float-z 1.8s ease-in-out infinite 1.2s; top: -26px; left: 28px; font-size: 8px; }

@keyframes float-z {
  0% { transform: translateY(5px) scale(0.6); opacity: 0; }
  50% { opacity: 0.8; }
  100% { transform: translateY(-16px) scale(1.1); opacity: 0; }
}

.time-lock-overlay-premium {
  position: absolute;
  inset: 0;
  background: rgba(9, 4, 26, 0.95);
  backdrop-filter: blur(8px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  z-index: 10;
  animation: fade-in-lock 0.5s ease-out;
}
.time-lock-overlay-premium h5 {
  font-size: 15px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}
.time-lock-overlay-premium p {
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 200px;
}

/* 6: Sin Comentarios */
.comments-sandbox {
  padding: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.comparison-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 360px) {
  .comparison-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.comp-col-premium {
  border-radius: 14px;
  padding: 10px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  background: rgba(17, 9, 49, 0.5);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.comp-col-premium h6 {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--violet-soft);
  margin-bottom: 8px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.fake-video-play-premium {
  height: 48px;
  background: #05020f;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9.5px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}
.fake-comments-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fake-comment-bubble {
  background: rgba(22, 11, 59, 0.8);
  font-size: 7.5px;
  padding: 5px 8px;
  border-radius: 8px;
  color: var(--muted);
  border: 1px solid rgba(167,139,250,0.05);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.comments-disabled-badge-premium {
  background: rgba(47, 191, 113, 0.08);
  color: var(--green);
  border: 1.5px solid rgba(47, 191, 113, 0.25);
  padding: 10px;
  border-radius: 12px;
  font-size: 9px;
  line-height: 1.4;
  text-align: center;
  font-weight: 800;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 15px rgba(47, 191, 113, 0.05);
}

/* 7: Sincronización */
.install-sandbox {
  padding: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.install-sandbox h5 {
  font-size: 11px;
  font-weight: 800;
  color: var(--violet-soft);
  margin-bottom: 14px;
  text-align: center;
}
.device-sync-grid-premium {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.device-sync-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: rgba(22, 11, 59, 0.5);
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 10px;
  font-weight: 800;
  opacity: 0.35;
  transform: scale(0.96);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.device-sync-row.syncing {
  opacity: 0.75;
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(252, 150, 35, 0.15);
}
.device-sync-row.synced {
  opacity: 1;
  border-color: var(--green);
  background: rgba(47, 191, 113, 0.06);
  transform: scale(1);
  box-shadow: 0 0 12px rgba(47, 191, 113, 0.08);
}
.device-icon-mock {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.device-check-mock {
  font-weight: 900;
  font-size: 9.5px;
  color: var(--green);
}

/* Giant padlock overlay on blocked channel card */
.blocked-lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 4, 26, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 5;
}
.blocked-lock-overlay.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.giant-lock {
  font-size: 26px;
  filter: drop-shadow(0 0 10px #f21f7b);
}

/* Scan sensor dots */
.scan-sensor {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: all 0.3s ease;
}
.scan-sensor.active {
  background: rgba(47, 191, 113, 0.2);
  border-color: var(--green);
  box-shadow: 0 0 12px rgba(47, 191, 113, 0.6);
  transform: scale(1.15);
}

/* Exclamation Alert overlay for cellphone Step 3 */
.big-warning-alert {
  position: absolute;
  inset: 0;
  background: rgba(242, 31, 123, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 8;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}
.big-warning-alert.active {
  opacity: 1;
}
.big-warning-alert span {
  font-size: 52px;
  color: #ff3355;
  text-shadow: 0 0 20px rgba(242, 31, 123, 0.9);
  animation: warning-pulse 0.7s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes warning-pulse {
  0% { transform: scale(0.85); }
  100% { transform: scale(1.15); }
}

/* Floating spam emojis */
.spam-icon {
  position: absolute;
  font-size: 18px;
  pointer-events: none;
  user-select: none;
  z-index: 10;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}

/* Sincronización multidispositivos cables */
.sync-lines-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.sync-line-svg {
  width: 100%;
  height: 100%;
}
.sync-path {
  fill: none;
  stroke: rgba(167, 139, 250, 0.1);
  stroke-width: 2.5;
  stroke-dasharray: 6, 6;
  transition: stroke 0.4s;
}
.sync-path.active {
  stroke: var(--green);
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: sync-dash-flow 3s linear infinite;
}
@keyframes sync-dash-flow {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .star { animation: none; opacity: 0.3; }
  html { scroll-behavior: auto; }
  .playing-bars span { animation: none; height: 60%; }
  .scan-bar-animation { animation: none; display: none; }
  .device-sync-row { transition: none; transform: none; opacity: 1; }
  .touch-pointer { display: none !important; }
  .z1, .z2, .z3 { animation: none; opacity: 0.8; }
  .big-warning-alert span { animation: none; }
  .sync-path.active { animation: none; stroke-dashoffset: 0; }
}
