    :root {
      --wrap-pad: 22px;
      --wrap-max: 440px;
      /* Marca Odenix: morado #9c52ff (botones y acento) + lima (submarca PLATAFORM) */
      --brand-purple: #9c52ff;
      --brand-purple-light: #b983ff;
      --brand-purple-deep: #7b38d8;
      --brand-lime: #d4f94e;
      --brand-lime-soft: #d9f99d;
      --brand-navy: #0a0f1c;
      --bg-top: #0a0614;
      --bg-mid: #120b22;
      --bg-bottom: #1a0f32;
      --glass: rgba(255, 255, 255, 0.09);
      --glass-border: rgba(255, 255, 255, 0.14);
      --text: #f9fafb;
      --muted: #a8a3b8;
      --accent-start: #9c52ff;
      --accent-end: #7b38d8;
      --cta-green: #9c52ff;
      --cta-green-dark: #7b38d8;
      --danger: #fb7185;
      --safe-bottom: env(safe-area-inset-bottom, 0px);
      --nav-h: 72px;
      --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
      /* Profundidad tipo Linear/Vercel */
      --edge-hairline: rgba(255, 255, 255, 0.08);
      --shadow-premium: 0 28px 56px -16px rgba(6, 3, 18, 0.72), 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 22px 48px -12px rgba(124, 58, 237, 0.18);
      --shadow-premium-hover: 0 32px 64px -14px rgba(8, 4, 24, 0.78), 0 0 0 1px rgba(255, 255, 255, 0.09),
        0 28px 56px -10px rgba(139, 92, 246, 0.28);
      /* Ritmo y aire (UX): secciones y tarjetas menos apretadas */
      --space-xs: 8px;
      --space-sm: 12px;
      --space-md: 16px;
      --space-lg: 22px;
      --space-xl: 28px;
      --space-2xl: 36px;
      --space-3xl: 48px;
      --space-4xl: 56px;
      --section-y: 52px;
    }

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

    html {
      height: 100%;
      scroll-behavior: smooth;
      width: 100%;
      overflow-x: clip;
      -webkit-text-size-adjust: 100%;
    }

    body {
      margin: 0;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      min-height: 100vh;
      min-height: 100dvh;
      height: 100vh;
      height: 100dvh;
      max-height: 100vh;
      max-height: 100dvh;
      font-family: var(--font);
      color: var(--text);
      background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 45%, var(--bg-bottom) 100%);
      background-attachment: fixed;
      padding-bottom: 0;
      -webkit-font-smoothing: antialiased;
      line-height: 1.55;
      display: flex;
      flex-direction: column;
    }

    /* Splash (una vez por sesión — sessionStorage) */
    #splash-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      height: 100dvh;
      z-index: 9999;
      background-color: #0f172a;
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 1;
      visibility: visible;
      transition: opacity 0.5s ease, visibility 0.5s ease;
      pointer-events: auto;
    }

    #splash-screen img {
      display: block;
      max-width: min(78vw, 300px);
      width: auto;
      height: auto;
      animation: pulse-scale 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    @keyframes pulse-scale {
      from {
        transform: scale(0.8);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    #splash-screen.hide-splash {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    @media (prefers-reduced-motion: reduce) {
      #splash-screen img {
        animation: none;
        opacity: 1;
        transform: scale(1);
      }
    }

    a { color: inherit; text-decoration: none; }

    /* Contenedor raíz: centra el embudo en viewport, iframes y bloques WP */
    .odenix-shell {
      width: 100%;
      max-width: 100%;
      max-height: none;
      margin: 0 auto;
      padding: 0;
      padding-bottom: calc(var(--nav-h) + var(--safe-bottom) + 14px);
      box-sizing: border-box;
      overflow: hidden;
      position: relative;
      z-index: 0;
      display: flex;
      flex-direction: column;
      /* flex-basis 0%: el área principal ocupa el viewport aunque los hijos sean position:absolute */
      flex: 1 1 0%;
      min-height: 0;
    }

    /* Textura grain premium (rompe gradientes “planos”) */
    .odenix-shell::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 256px 256px;
    }

    .odenix-shell > * {
      position: relative;
      z-index: 1;
    }

    .app-shell-main {
      position: relative;
      flex: 1 1 0%;
      min-height: 0;
      width: 100%;
      overflow: hidden;
      /* Respaldo si el flex del tema/padre no asigna altura (hijos .app-screen no aportan al flujo) */
      min-height: calc(100vh - var(--nav-h) - var(--safe-bottom) - 28px);
      min-height: calc(100dvh - var(--nav-h) - var(--safe-bottom) - 28px);
    }

    /* Pantallas SPA: una visible; scroll interno; sin scroll global en body */
    .app-screen {
      display: none;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      box-sizing: border-box;
      overflow-x: hidden;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
      padding-bottom: calc(var(--nav-h) + var(--safe-bottom) + 40px);
      opacity: 0;
      transition: opacity 0.12s ease-out;
      z-index: 0;
    }

    .app-screen.active {
      display: block;
      opacity: 1;
      z-index: 1;
    }

    /* Tu app (#screen-tools): fondo claro a todo el ancho de la pantalla, sin “franjas” oscuras */
    #screen-tools {
      background-color: #f3edfe;
      background-image: linear-gradient(
        180deg,
        #faf8ff 0%,
        #f5f0ff 18%,
        #ede6ff 55%,
        #e8e0f8 100%
      );
      background-repeat: no-repeat;
      background-size: 100% 100%;
      min-height: 100%;
    }

    .tools-hub__intro {
      width: 100%;
      box-sizing: border-box;
      padding: max(8px, env(safe-area-inset-top, 0px)) max(var(--wrap-pad), env(safe-area-inset-right, 0px))
        var(--space-lg) max(var(--wrap-pad), env(safe-area-inset-left, 0px));
      margin: 0;
    }

    .tools-hub__lottie {
      width: min(200px, 72vw);
      max-width: 200px;
      height: min(200px, 72vw);
      max-height: 200px;
      margin: 0 auto clamp(14px, 4vw, 22px);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .tools-hub__lottie-player {
      width: 100%;
      height: 100%;
      display: block;
    }

    #screen-tools .tools-hub__header {
      padding: 0;
      margin: 0 auto;
      max-width: 22rem;
      text-align: center;
    }

    #screen-tools .tools-hub__header .section-title,
    #screen-tools .section-title {
      color: #1a0d2e;
      margin-bottom: clamp(10px, 2.5vw, 14px);
    }

    #screen-tools .tools-hub__lead {
      color: rgba(26, 13, 46, 0.72);
      margin-bottom: 0;
    }

    #screen-tools .tools-hub__kicker {
      color: var(--brand-purple-deep);
    }

    .promo-banners {
      margin: var(--space-md) 0 var(--space-lg);
    }

    /* Bloque promos: separación clara del hero para que el título no quede “cortado” por el scroll/overlay */
    #screen-home > .wrap:first-of-type .promo-banners {
      margin-top: 12px;
    }

    #screen-home > .wrap:first-of-type {
      padding-top: 4px;
    }

    .promo-banners__head {
      position: relative;
      z-index: 3;
      padding: 10px 2px 0;
      margin-bottom: 16px;
      overflow: visible;
    }

    .promo-banners__title {
      margin: 0 0 10px;
      font-size: clamp(1.2rem, 4.2vw, 1.45rem);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.32;
      color: #f8fafc;
      padding-top: 2px;
    }

    .promo-banners__hint {
      margin: 0;
      font-size: 0.88rem;
      line-height: 1.5;
      color: rgba(226, 232, 240, 0.72);
      max-width: 26em;
    }

    .promo-banners__label {
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(196, 181, 253, 0.88);
      margin: 0 0 8px;
    }

    /* Carrusel tipo app delivery: slide centrada, snap suave, sin free scroll */
    .promo-swiper {
      margin: 0 calc(-1 * max(var(--wrap-pad), env(safe-area-inset-left, 0px)));
      padding: 8px 0 6px;
      padding-left: max(var(--wrap-pad), env(safe-area-inset-left, 0px));
      padding-right: max(var(--wrap-pad), env(safe-area-inset-right, 0px));
      overflow: hidden;
    }

    .promo-swiper .swiper-wrapper {
      align-items: stretch;
    }

    .promo-swiper .swiper-slide {
      width: min(312px, 88vw) !important;
      height: auto;
      box-sizing: border-box;
      transition:
        opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
      opacity: 0.52;
      transform: scale(0.94);
    }

    .promo-swiper .swiper-slide-active {
      opacity: 1;
      transform: scale(1);
    }

    .promo-swiper .swiper-scrollbar {
      display: none !important;
    }

    .promo-swiper__dots.swiper-pagination {
      position: relative !important;
      bottom: auto !important;
      left: 0 !important;
      right: 0 !important;
      margin-top: 16px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0;
    }

    .promo-swiper__dots .swiper-pagination-bullet {
      width: 7px;
      height: 7px;
      margin: 0 4px !important;
      opacity: 1;
      background: rgba(248, 250, 252, 0.28);
      transition: transform 0.25s ease, background 0.25s ease;
    }

    .promo-swiper__dots .swiper-pagination-bullet-active {
      background: var(--brand-lime);
      transform: scale(1.35);
      box-shadow: 0 0 12px rgba(212, 249, 78, 0.45);
    }

    .promo-banner-card {
      position: relative;
      height: 100%;
      min-height: 212px;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.12),
        0 22px 48px -12px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(0, 0, 0, 0.2) inset;
      box-sizing: border-box;
    }

    .promo-banner-card__media {
      position: absolute;
      inset: 0;
    }

    .promo-banner-card__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transform: scale(1.02);
    }

    .promo-banner-card__scrim {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(
        165deg,
        rgba(8, 6, 18, 0.15) 0%,
        rgba(8, 6, 18, 0.35) 38%,
        rgba(8, 6, 18, 0.82) 72%,
        rgba(8, 6, 18, 0.94) 100%
      );
    }

    .promo-banner-card__scrim::after {
      content: "";
      position: absolute;
      inset: 0;
      opacity: 0.55;
      background: var(
        --promo-banner-tint,
        linear-gradient(135deg, rgba(124, 58, 237, 0.5) 0%, transparent 55%)
      );
      mix-blend-mode: multiply;
    }

    .promo-banner-card__content {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 16px 16px 17px;
      z-index: 1;
    }

    .promo-banner-card__kicker {
      display: inline-block;
      margin-bottom: 6px;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.88);
      text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
    }

    .promo-banner-card__title {
      margin: 0 0 6px;
      font-size: clamp(1.08rem, 3.8vw, 1.28rem);
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.03em;
      line-height: 1.18;
      text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
    }

    .promo-banner-card__desc {
      margin: 0;
      font-size: 0.82rem;
      line-height: 1.45;
      color: rgba(248, 250, 252, 0.88);
      text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .promo-banner-card__tag {
      display: inline-block;
      margin-top: 11px;
      font-size: 0.65rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      color: var(--brand-navy);
      background: var(--brand-lime);
      padding: 6px 11px;
      border-radius: 999px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    }

    @media (prefers-reduced-motion: reduce) {
      .promo-swiper .swiper-slide {
        transition: none;
        opacity: 1;
        transform: none;
      }
    }

    .install-spotlight {
      margin: var(--space-lg) 0 var(--space-xl);
      padding: clamp(14px, 3.5vw, 20px);
      border-radius: 28px;
      background: linear-gradient(155deg, rgba(18, 10, 36, 0.98), rgba(45, 20, 80, 0.55));
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    }

    .install-spotlight__inner {
      display: grid;
      gap: 16px;
      align-items: center;
      grid-template-columns: 1fr;
    }

    @media (min-width: 400px) {
      .install-spotlight__inner {
        grid-template-columns: minmax(0, 120px) minmax(0, 1fr) auto;
        gap: 18px;
      }
    }

    .install-spotlight__preview {
      border-radius: 22px;
      overflow: hidden;
      aspect-ratio: 9 / 16;
      max-height: 132px;
      margin: 0 auto;
      width: 100%;
      max-width: 110px;
      background: #0a0614;
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    }

    @media (min-width: 400px) {
      .install-spotlight__preview {
        margin: 0;
        max-height: none;
      }
    }

    .install-spotlight__preview video,
    .install-spotlight__preview img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      vertical-align: middle;
    }

    .install-spotlight__copy {
      min-width: 0;
      text-align: center;
    }

    @media (min-width: 400px) {
      .install-spotlight__copy {
        text-align: left;
      }
    }

    .install-spotlight__kicker {
      margin: 0 0 4px;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(196, 181, 253, 0.95);
    }

    .install-spotlight__title {
      margin: 0 0 4px;
      font-size: 1.05rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.03em;
      line-height: 1.2;
    }

    .install-spotlight__text {
      margin: 0;
      font-size: 0.8rem;
      line-height: 1.35;
      color: rgba(226, 232, 240, 0.88);
    }

    .install-spotlight__btn {
      justify-self: center;
      flex-shrink: 0;
      border: 0;
      border-radius: 999px;
      padding: 12px 20px;
      font-weight: 800;
      font-size: 0.78rem;
      letter-spacing: 0.02em;
      color: #fff;
      cursor: pointer;
      font-family: inherit;
      background: linear-gradient(135deg, #a78bfa, #7c3aed 55%, #6d28d9);
      box-shadow: 0 12px 32px rgba(124, 58, 237, 0.42);
      white-space: nowrap;
    }

    @media (min-width: 400px) {
      .install-spotlight__btn {
        justify-self: end;
      }
    }

    /* Si incrustas en WordPress: evita float/márgenes del tema que desplazan el bloque */
    .entry-content .odenix-shell,
    .wp-block-html .odenix-shell,
    .elementor-widget-html .odenix-shell {
      float: none !important;
      width: 100% !important;
      max-width: 100% !important;
      max-height: none !important;
      margin-left: auto !important;
      margin-right: auto !important;
    }

    .wrap {
      width: 100%;
      max-width: var(--wrap-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: max(var(--wrap-pad), env(safe-area-inset-left, 0px));
      padding-right: max(var(--wrap-pad), env(safe-area-inset-right, 0px));
      box-sizing: border-box;
    }

    /* Hero: video en su propia franja + copy en panel (sin superponer texto al vídeo) */
    .hero-cinema {
      position: relative;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      background: var(--bg-top);
    }

    .hero-cinema__stage {
      position: relative;
      width: 100%;
      height: min(56vh, 420px);
      min-height: 260px;
      max-height: 520px;
      flex-shrink: 0;
      overflow: hidden;
      background: #0a0a12;
    }

    .hero-cinema__media {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    .hero-cinema__video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      transform: scale(1.03);
      filter: saturate(1.05) contrast(1.03);
      /* Evitar controles nativos visibles cuando el motor los inyecta */
      pointer-events: none;
    }

    .hero-cinema__video::-webkit-media-controls,
    .hero-cinema__video::-webkit-media-controls-enclosure,
    .hero-cinema__video::-webkit-media-controls-panel,
    .hero-cinema__video::-webkit-media-controls-play-button,
    .hero-cinema__video::-webkit-media-controls-start-playback-button {
      display: none !important;
      -webkit-appearance: none;
      appearance: none;
    }

    .hero-cinema__vignette {
      position: absolute;
      inset: 0;
      background: radial-gradient(
        ellipse 90% 70% at 50% 45%,
        transparent 30%,
        rgba(5, 8, 20, 0.5) 100%
      );
      z-index: 1;
    }

    /* Capa 1: desvanecido inferior del vídeo (transición hacia el panel de texto) */
    .hero-cinema__fade-soft {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 55%;
      z-index: 2;
      background: linear-gradient(
        to top,
        rgba(10, 15, 28, 1) 0%,
        rgba(10, 15, 28, 0.97) 12%,
        rgba(10, 15, 28, 0.75) 35%,
        rgba(18, 16, 42, 0.2) 70%,
        transparent 100%
      );
    }

    /* Capa 2: acento premium */
    .hero-cinema__fade-lux {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 48%;
      z-index: 3;
      background: linear-gradient(
        to top,
        rgba(26, 15, 50, 0.96) 0%,
        rgba(124, 58, 237, 0.2) 40%,
        rgba(163, 230, 53, 0.08) 62%,
        transparent 88%
      );
      mix-blend-mode: normal;
    }

    /* Línea luminosa sobre el fade (detalle UX) */
    @keyframes heroShinePulse {
      0%, 100% { opacity: 0.72; filter: brightness(1); }
      50% { opacity: 1; filter: brightness(1.15); }
    }

    .hero-cinema__shine {
      position: absolute;
      left: 8%;
      right: 8%;
      bottom: 72px;
      height: 1px;
      z-index: 4;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.12) 20%,
        rgba(163, 230, 53, 0.5) 50%,
        rgba(167, 139, 250, 0.35) 72%,
        transparent
      );
      opacity: 0.9;
      box-shadow: 0 0 24px rgba(124, 58, 237, 0.35);
      animation: heroShinePulse 5.5s ease-in-out infinite;
    }

    /* Flecha “baja” — encima del vídeo, abajo del stage */
    @keyframes heroScrollChevron {
      0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.85;
      }
      50% {
        transform: translateX(-50%) translateY(12px);
        opacity: 1;
      }
    }

    .hero-scroll-hint {
      position: absolute;
      bottom: 10px;
      left: 50%;
      z-index: 20;
      width: 52px;
      height: 52px;
      padding: 0;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(8, 6, 18, 0.65);
      border: 1px solid rgba(255, 255, 255, 0.18);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(163, 230, 53, 0.22);
      animation: heroScrollChevron 1.35s ease-in-out infinite;
      color: var(--brand-lime-soft);
    }

    .hero-scroll-hint svg {
      width: 26px;
      height: 26px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .hero-scroll-hint:focus-visible {
      outline: 2px solid var(--brand-lime);
      outline-offset: 3px;
    }

    .hero-cinema__content h1,
    .hero-cinema__content .sub,
    .hero-cinema__content .hero-kicker {
      text-shadow: none;
    }

    .hero-cinema__content .btn {
      box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.35),
        0 12px 32px rgba(124, 58, 237, 0.35);
    }

    .hero-cinema__content .btn-secondary {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    /* Grano sutil (sin imagen externa) */
    .hero-cinema__grain {
      position: absolute;
      inset: 0;
      z-index: 5;
      opacity: 0.04;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    /* Esquinas decorativas tipo visor / app */
    .hero-cinema__corners {
      position: absolute;
      inset: 12px;
      z-index: 6;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      pointer-events: none;
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.03),
        0 0 60px rgba(0, 0, 0, 0.2);
    }

    .hero-cinema__corners::before,
    .hero-cinema__corners::after {
      content: "";
      position: absolute;
      width: 28px;
      height: 28px;
      border-color: rgba(167, 139, 250, 0.45);
      border-style: solid;
      border-width: 0;
    }

    .hero-cinema__corners::before {
      top: -1px;
      left: -1px;
      border-top-width: 2px;
      border-left-width: 2px;
      border-radius: 20px 0 0 0;
    }

    .hero-cinema__corners::after {
      bottom: -1px;
      right: -1px;
      border-bottom-width: 2px;
      border-right-width: 2px;
      border-radius: 0 0 20px 0;
    }

    .hero-cinema__top {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 7;
      padding: calc(12px + env(safe-area-inset-top, 0px)) 18px 10px;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      pointer-events: none;
    }

    .hero-cinema__top .hero-pill {
      pointer-events: auto;
    }

    .hero-cinema > .hero-cinema__content {
      position: relative;
      z-index: 12;
      margin-top: 0;
      width: 100%;
      padding: var(--space-2xl) 0 var(--space-2xl);
      padding-bottom: calc(var(--space-2xl) + env(safe-area-inset-bottom, 0px));
      background:
        radial-gradient(ellipse 120% 80% at 50% 0%, rgba(124, 58, 237, 0.12) 0%, transparent 55%),
        linear-gradient(180deg, #0c0718 0%, #120b24 45%, #160d2e 100%);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 28px 28px 0 0;
      margin-top: -20px;
      box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.35);
    }

    .hero-cinema__orb-layer {
      z-index: 8;
      pointer-events: none;
    }

    .hero-cinema__stage .hero-cinema__orb-layer.o1 {
      top: 8%;
      right: -10%;
    }

    .hero-cinema__stage .hero-cinema__orb-layer.o2 {
      bottom: 18%;
      left: -15%;
    }

    .hero-cinema__content > * {
      position: relative;
      z-index: 1;
    }

    #hero-copy {
      scroll-margin-top: 12px;
    }

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      align-self: flex-start;
      padding: 7px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      font-size: clamp(0.68rem, 2.2vw, 0.78rem);
      font-weight: 700;
      letter-spacing: 0.03em;
      color: #e5e7eb;
      border: 1px solid var(--glass-border);
    }

    /* Hero tipo app: logo, iconos y poco texto */
    .hero-panel {
      position: relative;
      padding-top: 4px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-panel__brand {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: var(--space-md);
      margin-bottom: var(--space-xl);
      width: 100%;
    }

    .hero-panel__logo {
      height: 48px;
      width: auto;
      max-width: min(220px, 62vw);
      object-fit: contain;
      object-position: center;
      filter: drop-shadow(0 6px 22px rgba(156, 82, 255, 0.45));
    }

    .hero-panel__badge {
      flex-shrink: 0;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brand-navy);
      background: linear-gradient(135deg, var(--brand-lime-soft), var(--brand-lime));
      padding: 8px 12px;
      border-radius: 999px;
      box-shadow: 0 4px 16px rgba(163, 230, 53, 0.25);
    }

    .hero-deco-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: var(--space-sm);
      margin-bottom: var(--space-2xl);
    }

    .hero-icon-tile {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      text-align: center;
      padding: var(--space-md) 8px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.07);
    }

    .hero-icon-tile__circle {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(145deg, rgba(124, 58, 237, 0.45), rgba(163, 230, 53, 0.12));
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #fff;
    }

    .hero-icon-tile__circle svg {
      width: 22px;
      height: 22px;
    }

    .hero-icon-tile__circle svg[fill="none"] {
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .hero-icon-tile span {
      font-size: 0.7rem;
      font-weight: 700;
      color: var(--muted);
      line-height: 1.3;
    }

    .hero-kicker-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4em;
      align-self: center;
      padding: 0.55rem 1.1rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
      font-size: clamp(0.62rem, 2vw, 0.72rem);
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(226, 232, 240, 0.82);
      margin: 0 auto var(--space-2xl);
      max-width: 100%;
      text-align: center;
      line-height: 1.35;
      box-sizing: border-box;
    }

    .hero-kicker-pill__ico {
      font-size: 1em;
      letter-spacing: 0;
      opacity: 0.9;
    }

    .hero-h1 {
      font-size: clamp(1.35rem, 5.8vw, 2.12rem);
      line-height: 1.2;
      margin: 0 0 var(--space-2xl);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: rgba(248, 250, 252, 0.96);
    }

    .hero-h1__accent {
      font-weight: 800;
      background: linear-gradient(115deg, var(--brand-lime-soft) 0%, #a3e635 45%, var(--brand-lime) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
    }

    .hero-h1__accent--line {
      background: none;
      -webkit-background-clip: unset;
      background-clip: unset;
      color: var(--brand-lime-soft);
      -webkit-text-fill-color: currentcolor;
    }

    .hero-subline {
      font-size: clamp(0.94rem, 3vw, 1.05rem);
      line-height: 1.45;
      font-weight: 500;
      color: rgba(209, 213, 219, 0.88);
      margin: 0 auto var(--space-lg);
      max-width: 22.5rem;
      text-align: center;
      letter-spacing: -0.015em;
    }

    .hero-benefits {
      list-style: none;
      margin: 0 auto calc(var(--space-2xl) + 6px);
      padding: 0;
      width: 100%;
      max-width: 22.5rem;
      display: flex;
      flex-direction: column;
      gap: 11px;
    }

    .hero-benefit-card {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px 17px;
      border-radius: 20px;
      text-align: left;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
      border: 1px solid rgba(255, 255, 255, 0.11);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 16px 48px rgba(0, 0, 0, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      position: relative;
      overflow: hidden;
    }

    .hero-benefit-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(167, 139, 250, 0.45) 35%,
        rgba(163, 230, 53, 0.25) 65%,
        transparent
      );
      opacity: 0.85;
      pointer-events: none;
    }

    .hero-benefit-card__icon {
      flex-shrink: 0;
      width: 46px;
      height: 46px;
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(148deg, rgba(124, 58, 237, 0.42) 0%, rgba(45, 20, 80, 0.55) 100%);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: 0 8px 24px rgba(124, 58, 237, 0.22);
      color: rgba(237, 233, 254, 0.98);
    }

    .hero-benefit-card__icon svg {
      width: 24px;
      height: 24px;
      display: block;
      color: rgba(245, 240, 255, 0.96);
      overflow: visible;
    }

    .hero-benefit-card__body {
      min-width: 0;
      flex: 1;
    }

    .hero-benefit-card__kicker {
      margin: 0 0 3px;
      font-size: 0.58rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(196, 181, 253, 0.75);
    }

    .hero-benefit-card__title {
      margin: 0 0 3px;
      font-size: clamp(0.86rem, 2.5vw, 0.95rem);
      font-weight: 700;
      letter-spacing: -0.025em;
      line-height: 1.25;
      color: rgba(248, 250, 252, 0.98);
    }

    .hero-benefit-card__hint {
      margin: 0;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      line-height: 1.35;
      color: rgba(203, 213, 225, 0.62);
    }

    .hero-panel .btn-row {
      margin-top: 6px;
      width: 100%;
      justify-content: center;
      align-items: center;
    }

    .hero-footnote {
      margin: var(--space-xl) 0 0;
      font-size: clamp(0.88rem, 2.6vw, 0.98rem);
      color: rgba(217, 249, 157, 0.92);
      letter-spacing: 0.01em;
      line-height: 1.5;
      text-align: center;
      width: 100%;
      font-weight: 700;
    }

    h1 {
      font-size: clamp(1.45rem, 5vw, 1.75rem);
      line-height: 1.22;
      margin: 0 0 var(--space-md);
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .sub {
      font-size: 0.95rem;
      line-height: 1.62;
      color: var(--muted);
      margin: 0 0 var(--space-lg);
    }

    .btn-row {
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
    }

    @media (min-width: 380px) {
      .btn-row { flex-direction: row; flex-wrap: wrap; }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 20px;
      border-radius: 999px;
      font-weight: 700;
      font-size: 0.9rem;
      border: none;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s;
      font-family: inherit;
      text-decoration: none;
      box-sizing: border-box;
    }

    .btn:active { transform: scale(0.98); }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
      color: #fff;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
      box-shadow: 0 12px 36px rgba(156, 82, 255, 0.45);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .btn-whatsapp {
      background: linear-gradient(135deg, #9c52ff, #7b38d8);
      color: #fff;
      box-shadow: 0 10px 32px rgba(156, 82, 255, 0.42);
    }

    section,
    .panel-section {
      padding: var(--section-y) 0;
      scroll-margin-top: 28px;
      scroll-margin-bottom: calc(var(--nav-h) + 24px);
    }

    .section-title {
      font-size: clamp(1.42rem, 4.2vw, 1.72rem);
      font-weight: 800;
      margin: 0 0 var(--space-sm);
      letter-spacing: -0.02em;
      line-height: 1.18;
    }

    .section-lead {
      color: var(--muted);
      font-size: clamp(0.98rem, 2.8vw, 1.08rem);
      line-height: 1.68;
      margin: 0 0 var(--space-xl);
      max-width: 40em;
    }

    .glass-card {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      border-radius: 24px;
      padding: var(--space-lg) var(--space-md);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    }

    /* Beneficios: escenario app + columnas con tarjetas */
    .gadget-stage {
      position: relative;
      margin: var(--space-md) 0 var(--space-xl);
      max-width: 360px;
      margin-left: auto;
      margin-right: auto;
      padding: var(--space-xl) var(--space-md) var(--space-2xl);
      border-radius: 28px;
      background: linear-gradient(145deg, rgba(30, 27, 75, 0.65) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(88, 28, 135, 0.35) 100%);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow:
        0 0 0 1px rgba(124, 58, 237, 0.12),
        0 24px 56px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
      overflow: hidden;
    }

    .gadget-stage::after {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      right: -60px;
      top: -80px;
      background: radial-gradient(circle, rgba(124, 58, 237, 0.35) 0%, transparent 70%);
      pointer-events: none;
      animation: gadgetGlow 5s ease-in-out infinite;
    }

    @keyframes gadgetGlow {
      0%, 100% { opacity: 0.6; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.1); }
    }

    .gadget-phone {
      position: relative;
      z-index: 1;
      max-width: 220px;
      margin: 0 auto;
      border-radius: 32px;
      padding: 10px;
      background: linear-gradient(160deg, #2d2640 0%, #0f0a18 100%);
      box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.55),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
      animation: gadgetPhoneFloat 6s ease-in-out infinite;
    }

    @keyframes gadgetPhoneFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    .gadget-notch {
      width: 56px;
      height: 5px;
      border-radius: 99px;
      background: rgba(255, 255, 255, 0.15);
      margin: 4px auto 10px;
    }

    .gadget-screen {
      border-radius: 22px;
      padding: 12px 10px 14px;
      background: linear-gradient(180deg, #131022 0%, #1a1530 100%);
      border: 1px solid rgba(255, 255, 255, 0.06);
      min-height: 200px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .gadget-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 4px;
    }

    .gadget-pill {
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 8px;
      border-radius: 999px;
      background: rgba(156, 82, 255, 0.22);
      color: #e9d5ff;
      border: 1px solid rgba(185, 131, 255, 0.4);
      animation: pillBlink 2.4s ease-in-out infinite;
    }

    @keyframes pillBlink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.65; }
    }

    .gadget-signal {
      font-size: 8px;
      color: #64748b;
      letter-spacing: 2px;
    }

    .gadget-chat-bubble {
      font-size: 10px;
      line-height: 1.35;
      padding: 8px 10px;
      border-radius: 14px;
      max-width: 92%;
      animation: bubbleIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .gadget-chat-bubble.delay-1 { animation-delay: 0.35s; }

    .gadget-chat-bubble.left {
      align-self: flex-start;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #e2e8f0;
      border-bottom-left-radius: 4px;
    }

    .gadget-chat-bubble.right {
      align-self: flex-end;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(163, 230, 53, 0.25));
      border: 1px solid rgba(124, 58, 237, 0.4);
      color: #fff;
      border-bottom-right-radius: 4px;
    }

    @keyframes bubbleIn {
      from { opacity: 0; transform: translateY(10px) scale(0.96); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .gadget-mini-catalog {
      display: flex;
      gap: 6px;
      margin-top: 4px;
      justify-content: center;
    }

    .gadget-sku {
      width: 36px;
      height: 44px;
      border-radius: 10px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
      border: 1px solid rgba(255, 255, 255, 0.1);
      animation: skuNudge 3s ease-in-out infinite;
    }

    .gadget-sku:nth-child(2) { animation-delay: 0.4s; }
    .gadget-sku:nth-child(3) { animation-delay: 0.8s; }

    @keyframes skuNudge {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-3px); }
    }

    .gadget-wa-bar {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 10px;
      border-radius: 14px;
      font-size: 10px;
      font-weight: 800;
      color: #fff;
      background: linear-gradient(135deg, #9c52ff, #7b38d8);
      box-shadow: 0 8px 26px rgba(156, 82, 255, 0.45);
      animation: waPulse 2.2s ease-in-out infinite;
    }

    .gadget-wa-bar svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      stroke: #fff;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    @keyframes waPulse {
      0%, 100% { box-shadow: 0 8px 26px rgba(156, 82, 255, 0.45); transform: scale(1); }
      50% { box-shadow: 0 12px 36px rgba(156, 82, 255, 0.58); transform: scale(1.02); }
    }

    .gadget-float {
      position: absolute;
      z-index: 2;
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
      animation: floatOrb 5s ease-in-out infinite;
    }

    .gadget-float svg {
      width: 26px;
      height: 26px;
      stroke: #e9d5ff;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .gadget-float-a {
      left: 4px;
      top: 22%;
      animation-delay: 0s;
    }

    .gadget-float-b {
      right: 4px;
      bottom: 18%;
      animation-delay: -2.2s;
    }

    @keyframes floatOrb {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      33% { transform: translate(4px, -8px) rotate(3deg); }
      66% { transform: translate(-3px, 4px) rotate(-2deg); }
    }

    .benefit-columns {
      display: grid;
      gap: var(--space-xl);
    }

    .benefit-stack {
      border-radius: 24px;
      padding: var(--space-lg) var(--space-md) var(--space-xl);
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(0, 0, 0, 0.2);
    }

    .benefit-stack--bad {
      border-color: rgba(251, 113, 133, 0.35);
      box-shadow: inset 0 0 0 1px rgba(251, 113, 133, 0.08);
    }

    .benefit-stack--good {
      border-color: rgba(156, 82, 255, 0.45);
      box-shadow:
        0 0 40px rgba(156, 82, 255, 0.15),
        inset 0 0 0 1px rgba(156, 82, 255, 0.12);
    }

    .benefit-stack__head {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
      margin-bottom: var(--space-md);
      padding: 0 2px;
    }

    .benefit-stack__badge {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .benefit-stack__badge--bad {
      background: linear-gradient(135deg, rgba(251, 113, 133, 0.25), rgba(190, 24, 93, 0.2));
      border: 1px solid rgba(251, 113, 133, 0.4);
    }

    .benefit-stack__badge--good {
      background: linear-gradient(135deg, rgba(156, 82, 255, 0.35), rgba(123, 56, 216, 0.22));
      border: 1px solid rgba(185, 131, 255, 0.5);
    }

    .benefit-stack__badge svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .benefit-stack__badge--bad svg { color: #fda4af; }
    .benefit-stack__badge--good svg { color: #d8b4fe; }

    .benefit-stack__badge svg * {
      fill: none;
      stroke: currentColor;
    }

    .benefit-stack__title {
      font-size: clamp(1rem, 3vw, 1.14rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      margin: 0;
      line-height: 1.28;
    }

    .benefit-stack__cards {
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
    }

    .benefit-card {
      display: flex;
      gap: var(--space-sm);
      align-items: flex-start;
      padding: var(--space-md);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .benefit-card--bad:hover {
      border-color: rgba(251, 113, 133, 0.25);
      box-shadow: 0 8px 24px rgba(251, 113, 133, 0.08);
    }

    .benefit-card--good:hover {
      border-color: rgba(156, 82, 255, 0.35);
      box-shadow: 0 8px 24px rgba(156, 82, 255, 0.15);
    }

    .benefit-card__icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .benefit-card--bad .benefit-card__icon {
      background: rgba(251, 113, 133, 0.12);
      border: 1px solid rgba(251, 113, 133, 0.25);
      color: #fda4af;
    }

    .benefit-card--good .benefit-card__icon {
      background: rgba(156, 82, 255, 0.16);
      border: 1px solid rgba(185, 131, 255, 0.4);
      color: #d8b4fe;
    }

    .benefit-card__icon svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .benefit-card__icon svg * {
      fill: none;
      stroke: currentColor;
    }

    .benefit-card__body { min-width: 0; }

    .benefit-card__label {
      margin: 0 0 var(--space-xs);
      font-size: 0.94rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      color: #f1f5f9;
    }

    .benefit-card__text {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.62;
      color: #cbd5e1;
    }

    /* Problema — bloque Premium Light (Apple / Linear) */
    .pain-premium-zone {
      margin-left: calc(-1 * max(var(--wrap-pad), env(safe-area-inset-left, 0px)));
      margin-right: calc(-1 * max(var(--wrap-pad), env(safe-area-inset-right, 0px)));
      padding: clamp(40px, 10vw, 56px) max(var(--wrap-pad), env(safe-area-inset-left, 0px)) clamp(44px, 11vw, 64px);
      padding-right: max(var(--wrap-pad), env(safe-area-inset-right, 0px));
      background: linear-gradient(180deg, #ffffff 0%, #f7f7f8 48%, #f0f0f2 100%);
      border-radius: 28px;
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 28px 64px -20px rgba(15, 23, 42, 0.12),
        0 12px 32px -12px rgba(15, 23, 42, 0.08);
    }

    .pain-premium__title {
      margin: 0 0 12px;
      font-size: clamp(1.45rem, 4.6vw, 1.85rem);
      font-weight: 800;
      letter-spacing: -0.045em;
      line-height: 1.12;
      color: #0a0a0a;
      max-width: min(100%, 16em);
    }

    .pain-premium__title-accent {
      color: #5b21b6;
      font-weight: 800;
    }

    .pain-premium__lead {
      margin: 0 0 clamp(32px, 8vw, 48px);
      font-size: 0.9rem;
      line-height: 1.55;
      font-weight: 500;
      color: #52525b;
      max-width: 32em;
    }

    .pain-premium__grid {
      display: flex;
      flex-direction: column;
      gap: clamp(28px, 7vw, 40px);
    }

    .pain-card {
      position: relative;
      padding: clamp(24px, 5vw, 32px);
      border-radius: 26px;
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 10px 28px -6px rgba(15, 23, 42, 0.08),
        0 28px 56px -16px rgba(15, 23, 42, 0.1);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .pain-card:hover {
      transform: translateY(-2px);
      box-shadow:
        0 2px 4px rgba(15, 23, 42, 0.05),
        0 16px 36px -8px rgba(15, 23, 42, 0.1),
        0 36px 64px -18px rgba(15, 23, 42, 0.12);
    }

    .pain-card__icon {
      width: 56px;
      height: 56px;
      margin-bottom: 20px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, #f4f4f5 0%, #ececee 100%);
      border: 1px solid rgba(15, 23, 42, 0.06);
      color: #171717;
    }

    .pain-card__icon svg {
      width: 36px;
      height: 36px;
    }

    .pain-card__title {
      margin: 0 0 12px;
      font-size: clamp(1.2rem, 3.8vw, 1.45rem);
      font-weight: 800;
      letter-spacing: -0.038em;
      line-height: 1.15;
      color: #0a0a0a;
    }

    .pain-card__desc {
      margin: 0;
      font-size: 0.875rem;
      font-weight: 400;
      line-height: 1.65;
      letter-spacing: 0.01em;
      color: #3f3f46;
      max-width: 36em;
    }

    @media (prefers-reduced-motion: reduce) {
      .pain-card:hover {
        transform: none;
      }
    }

    .pain-premium-zone + .benefit-columns {
      margin-top: var(--space-3xl);
    }

    .benefit-card--good .benefit-card__text strong {
      color: #fde68a;
      font-weight: 800;
    }

    /* “Tu propia App de Ventas” — jerarquía tipo Apple/Linear: aire, sin repetir copy */
    .benefit-showcase {
      padding: clamp(12px, 3vw, 20px) 0 8px;
      border: none;
      background: none;
      box-shadow: none;
    }

    .benefit-showcase__head {
      margin: 0 0 clamp(26px, 6vw, 40px);
      padding: clamp(8px, 2vw, 14px) max(var(--wrap-pad), 12px) 6px;
      text-align: center;
      overflow: visible;
      max-width: 22rem;
      margin-left: auto;
      margin-right: auto;
    }

    .benefit-showcase__eyebrow {
      margin: 0 0 clamp(14px, 3.5vw, 22px);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.38);
      line-height: 1.5;
    }

    .benefit-showcase__title {
      margin: 0 0 clamp(14px, 3.5vw, 20px);
      font-size: clamp(1.32rem, 4vw, 1.72rem);
      font-weight: 700;
      letter-spacing: -0.045em;
      line-height: 1.22;
      color: #fafafa;
    }

    .benefit-showcase__lead {
      margin: 0 auto;
      max-width: 19rem;
      font-size: clamp(0.94rem, 2.9vw, 1.05rem);
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.55;
      color: rgba(226, 232, 240, 0.58);
    }

    .benefit-showcase__price-wrap {
      margin: clamp(22px, 5vw, 30px) auto 0;
      padding-top: clamp(18px, 4vw, 24px);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      max-width: 18rem;
    }

    .benefit-showcase__price-label {
      margin: 0 0 6px;
      font-size: 0.58rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(196, 181, 253, 0.55);
    }

    .benefit-showcase__price {
      margin: 0;
      font-size: clamp(0.9rem, 2.7vw, 1.02rem);
      font-weight: 600;
      letter-spacing: -0.025em;
      line-height: 1.45;
      color: rgba(217, 249, 157, 0.9);
    }

    .benefit-showcase__list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .benefit-float-card {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 20px 20px 22px;
      border-radius: 22px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: linear-gradient(
        155deg,
        rgba(255, 255, 255, 0.09) 0%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(12, 10, 24, 0.35) 100%
      );
      backdrop-filter: blur(22px) saturate(160%);
      -webkit-backdrop-filter: blur(22px) saturate(160%);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 28px 56px -18px rgba(0, 0, 0, 0.55),
        0 12px 32px -12px rgba(0, 0, 0, 0.35),
        0 0 0 0.5px rgba(255, 255, 255, 0.04);
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
      animation: benefitCardDrift 7s ease-in-out infinite;
    }

    .benefit-float-card:nth-child(1) {
      animation-delay: 0s;
    }

    .benefit-float-card:nth-child(2) {
      animation-delay: -2.3s;
    }

    .benefit-float-card:nth-child(3) {
      animation-delay: -4.6s;
    }

    .benefit-float-card:hover {
      border-color: rgba(255, 255, 255, 0.18);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.16) inset,
        0 40px 72px -14px rgba(0, 0, 0, 0.62),
        0 0 56px rgba(156, 82, 255, 0.14);
    }

    @keyframes benefitCardDrift {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    @media (prefers-reduced-motion: reduce) {
      .benefit-float-card {
        animation: none;
      }

      .benefit-float-card:hover {
        transform: none;
      }
    }

    .benefit-float-card__icon {
      flex-shrink: 0;
      width: 56px;
      height: 56px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 10px 24px rgba(0, 0, 0, 0.25);
    }

    .benefit-float-card__icon svg {
      width: 34px;
      height: 34px;
      display: block;
    }

    .benefit-float-card__body {
      min-width: 0;
      flex: 1;
      padding-top: 2px;
    }

    .benefit-float-card__label {
      margin: 0 0 6px;
      font-size: 1.02rem;
      font-weight: 600;
      letter-spacing: -0.028em;
      line-height: 1.2;
      color: #f5f5f7;
    }

    .benefit-float-card__text {
      margin: 0;
      font-size: 0.9375rem;
      font-weight: 400;
      line-height: 1.55;
      letter-spacing: -0.011em;
      color: rgba(255, 255, 255, 0.58);
    }

    .steps {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .step {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 14px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--glass-border);
    }

    .step-num {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 0.95rem;
      background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
      flex-shrink: 0;
    }

    .step h3 {
      margin: 0 0 6px;
      font-size: 1rem;
      font-weight: 700;
    }

    .step p {
      margin: 0;
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.5;
    }

    /* Catálogo — fondo oscuro: texto claro + Lottie arriba */
    #screen-catalog #catalogo.panel-section {
      padding-top: var(--space-lg);
    }

    .catalog-section-heading {
      text-align: center;
      max-width: 22rem;
      margin: 0 auto var(--space-2xl);
      padding: clamp(6px, 2vw, 12px) var(--space-sm) 0;
    }

    .catalog-section-heading__lottie {
      margin: 0 auto clamp(18px, 4.5vw, 26px);
      width: min(220px, 78vw);
      max-width: 220px;
      height: min(220px, 78vw);
      max-height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .catalog-section-heading__lottie-player {
      width: 100%;
      height: 100%;
      max-width: 220px;
      max-height: 220px;
      display: block;
      margin: 0 auto;
    }

    .catalog-section-heading__title {
      font-size: clamp(1.45rem, 4.8vw, 2rem);
      font-weight: 800;
      margin: 0 0 clamp(14px, 3.5vw, 22px);
      letter-spacing: -0.038em;
      line-height: 1.22;
      color: #f8fafc;
    }

    .catalog-section-heading__title-accent {
      background: linear-gradient(135deg, #ddd6fe 0%, #a78bfa 38%, #c4b5fd 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      -webkit-text-fill-color: transparent;
    }

    @supports not (background-clip: text) {
      .catalog-section-heading__title-accent {
        color: #c4b5fd;
        -webkit-text-fill-color: inherit;
      }
    }

    .catalog-section-heading__subtitle {
      margin: 0 auto;
      font-size: clamp(0.92rem, 2.8vw, 1.05rem);
      line-height: 1.72;
      color: rgba(203, 213, 225, 0.9);
      font-weight: 500;
      max-width: 22em;
      display: flex;
      flex-direction: column;
      gap: 0.55em;
    }

    .catalog-section-heading__subtitle-line {
      display: block;
    }

    .catalog-app {
      position: relative;
      border-radius: 26px;
      overflow: hidden;
      padding: 0;
      background: #e8eaef;
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow:
        0 20px 50px -18px rgba(15, 23, 42, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.65) inset;
    }

    .catalog-app__toolbar {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 12px 14px 14px;
      background: #fff;
      border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    }

    .catalog-category-strip {
      flex: 1;
      min-width: 0;
      display: flex;
      align-items: center;
      gap: 8px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      mask-image: linear-gradient(90deg, #000 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent 100%);
    }

    .catalog-category-strip::-webkit-scrollbar {
      display: none;
    }

    .catalog-cat-chip {
      flex-shrink: 0;
      padding: 9px 16px;
      border-radius: 999px;
      border: 1px solid rgba(15, 23, 42, 0.1);
      background: #f8fafc;
      font-family: inherit;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #475569;
      cursor: pointer;
      transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
      white-space: nowrap;
    }

    .catalog-cat-chip:hover {
      border-color: rgba(109, 40, 217, 0.35);
      color: #334155;
    }

    .catalog-cat-chip.is-active {
      background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
      border-color: transparent;
      color: #fff;
      box-shadow: 0 4px 14px rgba(109, 40, 217, 0.35);
    }

    .catalog-app__toolbar .cart-badge {
      flex-shrink: 0;
    }

    .catalog-app__feed {
      padding: 20px 14px 28px;
      background: linear-gradient(180deg, #ebeef2 0%, #e4e7ec 100%);
    }

    @media (min-width: 380px) {
      .catalog-app__toolbar {
        padding: 16px 14px 16px 18px;
      }
      .catalog-app__feed {
        padding: 22px 16px 32px;
      }
    }

    .cart-badge {
      position: relative;
      flex-shrink: 0;
      min-width: 58px;
      min-height: 54px;
      padding: 7px 9px 5px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.1);
      box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .cart-badge:hover {
      border-color: rgba(15, 23, 42, 0.14);
      box-shadow: 0 8px 22px rgba(15, 23, 42, 0.1);
    }

    .cart-badge:active {
      transform: scale(0.97);
    }

    .cart-badge svg {
      width: 22px;
      height: 22px;
      stroke: #0f172a;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .cart-badge__label {
      font-size: 0.56rem;
      font-weight: 800;
      letter-spacing: 0.09em;
      text-transform: uppercase;
      color: #64748b;
    }

    .cart-badge span#cartCount {
      position: absolute;
      top: -5px;
      right: -5px;
      min-width: 22px;
      height: 22px;
      padding: 0 6px;
      border-radius: 999px;
      background: linear-gradient(135deg, #e11d48, #fb7185);
      font-size: 11px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      border: 2px solid #fff;
      box-shadow: 0 3px 10px rgba(225, 29, 72, 0.4);
    }

    .cart-badge span#cartCount.cart-pulse {
      animation: cartBadgePop 0.45s ease;
    }

    @keyframes cartBadgePop {
      0% { transform: scale(1); }
      45% { transform: scale(1.2); }
      100% { transform: scale(1); }
    }

    /* Lista de productos: más aire tipo marketplace */
    #screen-catalog .catalog-app__feed .products {
      gap: 20px;
    }

    .products {
      display: flex;
      flex-direction: column;
      gap: var(--space-xl);
    }

    .product {
      position: relative;
      border-radius: 22px;
      overflow: visible;
      background: rgba(255, 255, 255, 0.035);
      border: 1px solid var(--edge-hairline);
      box-shadow: var(--shadow-premium);
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
      transform-style: preserve-3d;
    }

    .product:hover {
      border-color: rgba(255, 255, 255, 0.11);
      box-shadow: var(--shadow-premium-hover);
    }

    .product__media {
      position: relative;
      aspect-ratio: 16 / 10;
      background: linear-gradient(145deg, #312e81, #4c1d95);
      border-radius: 22px 22px 0 0;
      overflow: hidden;
    }

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

    .product__chips {
      position: absolute;
      top: 10px;
      left: 10px;
      right: 10px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      align-items: flex-start;
      justify-content: space-between;
      pointer-events: none;
    }

    .product__chip {
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .product__chip--cat {
      background: rgba(15, 10, 24, 0.72);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: #e5e7eb;
    }

    .product__chip--meta {
      margin-left: auto;
      background: rgba(156, 82, 255, 0.92);
      border: 1px solid rgba(255, 255, 255, 0.28);
      color: #fff;
    }

    .product__body {
      padding: var(--space-md) var(--space-md) var(--space-lg);
      display: grid;
      gap: var(--space-sm);
      border-radius: 0 0 22px 22px;
      background: inherit;
    }

    .product__title {
      margin: 0;
      font-size: 1.02rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.25;
      color: #f9fafb;
    }

    .product__desc {
      margin: 0;
      font-size: 0.86rem;
      line-height: 1.58;
      color: var(--muted);
      display: -webkit-box;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .product__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 2px;
    }

    .product .price {
      font-size: 1.15rem;
      font-weight: 900;
      letter-spacing: -0.02em;
      color: #fef3c7;
      text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
    }

    .product__rating {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 0.72rem;
      font-weight: 700;
      color: #fcd34d;
    }

    .add-btn {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, #b983ff 0%, #9c52ff 45%, #7b38d8 100%);
      color: #fff;
      box-shadow: 0 6px 22px rgba(156, 82, 255, 0.5);
      transition: transform 0.12s ease, box-shadow 0.2s ease;
    }

    .add-btn:active {
      transform: scale(0.94);
    }

    .add-btn svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.5;
      stroke-linecap: round;
    }

    .product__actions {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      min-height: 44px;
    }

    .product-stepper {
      display: inline-flex;
      align-items: stretch;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid rgba(167, 139, 250, 0.45);
      background: linear-gradient(135deg, rgba(109, 40, 217, 0.45), rgba(163, 230, 53, 0.28));
      box-shadow: 0 6px 22px rgba(139, 92, 246, 0.35);
    }

    .product-stepper__btn {
      width: 40px;
      min-height: 44px;
      padding: 0;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.2);
      color: #f5d0fe;
      transition: background 0.15s ease, color 0.15s ease;
      font-family: inherit;
    }

    .product-stepper__btn:hover {
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
    }

    .product-stepper__btn:active {
      background: rgba(0, 0, 0, 0.35);
    }

    .product-stepper__btn--more {
      background: rgba(255, 255, 255, 0.18);
      color: #fff;
    }

    .product-stepper__btn--more:hover {
      background: rgba(255, 255, 255, 0.28);
    }

    .product-stepper__btn svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .product-stepper__qty {
      min-width: 36px;
      padding: 0 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.05rem;
      font-weight: 900;
      letter-spacing: -0.03em;
      color: #fff;
      background: rgba(15, 10, 24, 0.35);
    }

    .product.is-in-cart {
      border-color: rgba(163, 230, 53, 0.58);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 0 0 8px rgba(163, 230, 53, 0.08),
        0 0 28px rgba(163, 230, 53, 0.2),
        0 20px 42px rgba(109, 40, 217, 0.2);
    }

    /* Catálogo: tarjetas estilo shop premium (~70% imagen, título y precio protagonistas) */
    #screen-catalog .product {
      display: flex;
      flex-direction: column;
      min-height: clamp(268px, 72vw, 360px);
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.06);
      border-radius: 22px;
      overflow: hidden;
      box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 16px 40px -12px rgba(15, 23, 42, 0.14);
    }

    #screen-catalog .product:hover {
      border-color: rgba(15, 23, 42, 0.09);
      box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.06),
        0 22px 48px -14px rgba(15, 23, 42, 0.18);
    }

    #screen-catalog .product {
      cursor: pointer;
    }

    #screen-catalog .product .add-btn,
    #screen-catalog .product .product-stepper,
    #screen-catalog .product .product-stepper button {
      cursor: pointer;
    }

    /* —— Vista rápida producto (modal premium) —— */
    #product-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 11600;
      align-items: flex-end;
      justify-content: center;
      padding: 0;
      padding-bottom: env(safe-area-inset-bottom, 0);
    }

    @media (min-width: 640px) {
      #product-modal {
        align-items: center;
        padding: 24px;
      }
    }

    #product-modal.active {
      display: flex;
    }

    #product-modal .product-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(15, 23, 42, 0.52);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      opacity: 0;
      transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    }

    #product-modal.active .product-modal__backdrop {
      opacity: 1;
    }

    #product-modal .product-modal__card {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 920px;
      max-height: min(92vh, 720px);
      display: flex;
      flex-direction: column;
      margin: 0;
      border-radius: 24px 24px 0 0;
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.08);
      box-shadow:
        0 -8px 40px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
      overflow: hidden;
      transform: translateY(100%) scale(0.96);
      opacity: 0;
      transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.32s ease;
    }

    @media (min-width: 640px) {
      #product-modal .product-modal__card {
        border-radius: 28px;
        max-height: min(88vh, 640px);
        transform: translateY(24px) scale(0.96);
      }
    }

    #product-modal.active .product-modal__card {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    @media (prefers-reduced-motion: reduce) {
      #product-modal .product-modal__backdrop,
      #product-modal .product-modal__card {
        transition: none;
      }

      #product-modal .product-modal__card {
        transform: none;
      }

      #product-modal.active .product-modal__card {
        transform: none;
      }
    }

    .product-modal__close {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 4;
      width: 40px;
      height: 40px;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: rgba(15, 23, 42, 0.06);
      color: #334155;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, transform 0.15s ease;
    }

    .product-modal__close:hover {
      background: rgba(15, 23, 42, 0.1);
    }

    .product-modal__close:active {
      transform: scale(0.94);
    }

    .product-modal__close svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2.25;
      stroke-linecap: round;
    }

    .product-modal__layout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      min-height: 0;
      flex: 1;
      overflow: auto;
      -webkit-overflow-scrolling: touch;
    }

    @media (min-width: 720px) {
      .product-modal__layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        overflow: hidden;
      }
    }

    .product-modal__media {
      position: relative;
      background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
      min-height: 220px;
      max-height: 42vh;
    }

    @media (min-width: 720px) {
      .product-modal__media {
        max-height: none;
        min-height: 0;
      }
    }

    .product-modal__zoom-wrap {
      width: 100%;
      height: 100%;
      min-height: 220px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media (min-width: 720px) {
      .product-modal__zoom-wrap {
        min-height: 100%;
      }
    }

    .product-modal__zoom-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1);
      transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: transform;
    }

    .product-modal__zoom-wrap:hover img,
    .product-modal__zoom-wrap.is-zoomed img {
      transform: scale(1.08);
    }

    @media (prefers-reduced-motion: reduce) {
      .product-modal__zoom-wrap img {
        transition: none;
      }

      .product-modal__zoom-wrap:hover img,
      .product-modal__zoom-wrap.is-zoomed img {
        transform: none;
      }
    }

    .product-modal__detail {
      padding: 22px 22px 26px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      min-width: 0;
    }

    @media (min-width: 720px) {
      .product-modal__detail {
        padding: 28px 28px 32px;
        justify-content: center;
      }
    }

    .product-modal__title {
      margin: 36px 0 0;
      font-size: clamp(1.35rem, 4vw, 1.65rem);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.2;
      color: #0f172a;
    }

    @media (min-width: 720px) {
      .product-modal__title {
        margin-top: 8px;
      }
    }

    .product-modal__price {
      margin: 0;
      font-size: 1.45rem;
      font-weight: 800;
      font-variant-numeric: tabular-nums;
      letter-spacing: -0.03em;
      color: #7c3aed;
    }

    .product-modal__long {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.6;
      color: #64748b;
      max-height: min(28vh, 200px);
      overflow-y: auto;
      padding-right: 4px;
    }

    @media (min-width: 720px) {
      .product-modal__long {
        max-height: 200px;
      }
    }

    .product-modal__stepper {
      display: inline-flex;
      align-items: center;
      align-self: flex-start;
      gap: 0;
      border-radius: 14px;
      border: 1px solid rgba(15, 23, 42, 0.1);
      background: #f8fafc;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    }

    .product-modal__stepper button {
      width: 48px;
      height: 48px;
      border: none;
      background: transparent;
      font-size: 1.35rem;
      font-weight: 600;
      color: #0f172a;
      cursor: pointer;
      transition: background 0.15s ease;
    }

    .product-modal__stepper button:hover {
      background: rgba(124, 58, 237, 0.08);
    }

    .product-modal__stepper button:active {
      background: rgba(124, 58, 237, 0.14);
    }

    .product-modal__stepper span {
      min-width: 44px;
      text-align: center;
      font-size: 1.1rem;
      font-weight: 800;
      font-variant-numeric: tabular-nums;
      color: #0f172a;
    }

    .product-modal__add {
      margin-top: 6px;
      width: 100%;
      padding: 16px 20px;
      border: none;
      border-radius: 16px;
      font-family: inherit;
      font-size: 0.95rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      color: #fff;
      cursor: pointer;
      background: linear-gradient(145deg, #8b5cf6 0%, #7c3aed 45%, #6d28d9 100%);
      box-shadow:
        0 4px 20px rgba(124, 58, 237, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
      transition: transform 0.12s ease, box-shadow 0.2s ease;
    }

    .product-modal__add:hover {
      box-shadow:
        0 6px 28px rgba(124, 58, 237, 0.48),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    }

    .product-modal__add:active {
      transform: scale(0.98);
    }

    .product-snackbar {
      position: fixed;
      left: 50%;
      bottom: calc(var(--nav-h, 56px) + 20px + env(safe-area-inset-bottom, 0px));
      z-index: 11700;
      padding: 12px 22px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.92);
      color: #fff;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.02em;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
      opacity: 0;
      transform: translate(-50%, 16px);
      pointer-events: none;
      transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .product-snackbar.is-visible {
      opacity: 1;
      transform: translate(-50%, 0);
    }

    /* —— Vista extra CRO (planes — modal compacto; no afecta catálogo) —— */
    #cro-extra-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 11650;
      align-items: center;
      justify-content: center;
      padding: 18px;
      padding-bottom: max(18px, env(safe-area-inset-bottom, 0));
    }

    #cro-extra-modal.active {
      display: flex;
    }

    #cro-extra-modal .cro-extra-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(8, 6, 18, 0.62);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      opacity: 0;
      transition: opacity 0.28s ease;
    }

    #cro-extra-modal.active .cro-extra-modal__backdrop {
      opacity: 1;
    }

    #cro-extra-modal .cro-extra-modal__card {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 372px;
      max-height: min(92vh, 720px);
      display: flex;
      flex-direction: column;
      margin: 0;
      border-radius: 22px;
      overflow: hidden;
      background:
        radial-gradient(ellipse 100% 80% at 50% -20%, rgba(167, 139, 250, 0.35) 0%, transparent 55%),
        linear-gradient(185deg, #1e1830 0%, #12101c 52%, #0a0812 100%);
      border: 1px solid rgba(196, 181, 253, 0.38);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 24px 56px rgba(0, 0, 0, 0.55),
        0 0 48px rgba(124, 58, 237, 0.22);
      transform: translateY(12px) scale(0.94);
      opacity: 0;
      transition:
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.28s ease;
    }

    #cro-extra-modal.active .cro-extra-modal__card {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    @media (prefers-reduced-motion: reduce) {
      #cro-extra-modal .cro-extra-modal__backdrop,
      #cro-extra-modal .cro-extra-modal__card {
        transition: none;
      }

      #cro-extra-modal .cro-extra-modal__card {
        transform: none;
      }

      #cro-extra-modal.active .cro-extra-modal__card {
        transform: none;
      }
    }

    .cro-extra-modal__close {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 6;
      width: 36px;
      height: 36px;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: rgba(15, 23, 42, 0.55);
      color: #e2e8f0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, transform 0.15s ease;
    }

    .cro-extra-modal__close:hover {
      background: rgba(15, 23, 42, 0.75);
    }

    .cro-extra-modal__close:active {
      transform: scale(0.94);
    }

    .cro-extra-modal__close svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      stroke-width: 2.25;
      stroke-linecap: round;
    }

    .cro-extra-modal__media {
      flex-shrink: 0;
      height: 118px;
      background: rgba(15, 23, 42, 0.5);
      border-bottom: 1px solid rgba(196, 181, 253, 0.2);
    }

    .cro-extra-modal__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .cro-extra-modal__body {
      padding: 16px 18px 18px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-height: 0;
      overflow: visible;
    }

    .cro-extra-modal__chip {
      align-self: flex-start;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(196, 181, 253, 0.95);
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(124, 58, 237, 0.28);
      border: 1px solid rgba(196, 181, 253, 0.35);
    }

    .cro-extra-modal__title {
      margin: 0;
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.3;
      color: #faf5ff;
    }

    .cro-extra-modal__price {
      margin: 0;
      font-size: 1.12rem;
      font-weight: 800;
      color: #fde68a;
      letter-spacing: -0.02em;
    }

    .cro-extra-modal__desc {
      margin: 0;
      font-size: 0.8rem;
      line-height: 1.55;
      color: rgba(203, 213, 225, 0.95);
    }

    .cro-extra-modal__cta {
      margin-top: 4px;
      width: 100%;
      padding: 13px 16px;
      border: none;
      border-radius: 14px;
      font-size: 0.88rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      cursor: pointer;
      color: #fff;
      background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 55%, #4c1d95 100%);
      box-shadow:
        0 4px 20px rgba(124, 58, 237, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
      transition: transform 0.12s ease, box-shadow 0.2s ease;
    }

    .cro-extra-modal__cta:hover {
      box-shadow:
        0 6px 28px rgba(124, 58, 237, 0.52),
        0 0 0 1px rgba(255, 255, 255, 0.14) inset;
    }

    .cro-extra-modal__cta:active {
      transform: scale(0.98);
    }

    .cro-extra-modal__cta.is-included,
    .cro-extra-modal__cta:disabled {
      cursor: default;
      background: linear-gradient(135deg, rgba(71, 85, 105, 0.95) 0%, rgba(51, 65, 85, 0.98) 100%);
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
      color: #e2e8f0;
      transform: none;
    }

    .cro-extra-modal__cta.is-included:hover,
    .cro-extra-modal__cta:disabled:hover {
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    }

    .cro-extra-modal__scroll {
      flex: 1 1 auto;
      min-height: 0;
      overflow-x: hidden;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .cro-extra-modal__viewport {
      position: relative;
      width: 100%;
      overflow: visible;
    }

    .cro-extra-modal__track {
      display: flex;
      flex-direction: row;
      align-items: stretch;
      width: 100%;
      min-height: auto;
      height: auto;
      overflow-x: auto;
      overflow-y: visible;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior-x: contain;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      scrollbar-width: none;
    }

    .cro-extra-modal__track::-webkit-scrollbar {
      display: none;
    }

    .cro-extra-modal__panel {
      flex: 0 0 100%;
      width: 100%;
      min-width: 100%;
      max-width: 100%;
      scroll-snap-align: start;
      scroll-snap-stop: always;
      display: flex;
      flex-direction: column;
      align-self: stretch;
      min-height: min-content;
      overflow: visible;
    }

    .cro-extra-modal__panel .cro-extra-modal__body {
      flex: 0 0 auto;
    }

    .cro-extra-modal__footer {
      flex-shrink: 0;
      padding: 0 18px 16px;
      border-top: 1px solid rgba(196, 181, 253, 0.15);
      background: linear-gradient(180deg, transparent 0%, rgba(15, 10, 28, 0.65) 28%);
    }

    .cro-extra-modal__footer .cro-extra-modal__cta {
      margin-top: 0;
    }

    .cro-extra-modal__swipe-hint-wrap {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;
      padding: 6px 18px 12px;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .cro-extra-modal__swipe-hint-wrap.is-visible {
      opacity: 1;
    }

    .cro-extra-modal__swipe-hint__text {
      margin: 0;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      line-height: 1.35;
      color: rgba(203, 213, 225, 0.96);
    }

    .cro-extra-modal__swipe-hint__arrow {
      display: block;
      font-size: 1.45rem;
      line-height: 1;
      letter-spacing: -0.2em;
      margin-right: -0.15em;
      color: rgba(196, 181, 253, 0.98);
    }

    .cro-extra-modal__swipe-hint-wrap.is-nudge .cro-extra-modal__swipe-hint__arrow {
      animation: cro-extra-hint-arrow-wiggle 1.05s ease-in-out 2;
    }

    @keyframes cro-extra-hint-arrow-wiggle {
      0%,
      100% {
        transform: translateX(0);
        opacity: 0.55;
      }
      50% {
        transform: translateX(12px);
        opacity: 1;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .cro-extra-modal__swipe-hint-wrap.is-nudge .cro-extra-modal__swipe-hint__arrow {
        animation: none;
        opacity: 1;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .cro-extra-modal__track {
        scroll-behavior: auto;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .product-snackbar {
        transition: opacity 0.15s ease;
      }
    }

    /* Modal respaldo: abrir WhatsApp sin reemplazar la ventana de la PWA */
    #waHandoffModal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 12200;
      align-items: center;
      justify-content: center;
      padding: 20px;
      padding-bottom: max(20px, env(safe-area-inset-bottom));
    }

    #waHandoffModal.is-open {
      display: flex;
    }

    .wa-handoff-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(15, 23, 42, 0.65);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .wa-handoff-modal__card {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 380px;
      padding: 22px 20px 20px;
      border-radius: 22px;
      background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
      border: 1px solid rgba(148, 163, 184, 0.35);
      box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
      color: #1e293b;
    }

    .wa-handoff-modal__card h3 {
      margin: 0 0 10px;
      font-size: 1.1rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #0f172a;
    }

    .wa-handoff-modal__card p {
      margin: 0 0 18px;
      font-size: 0.88rem;
      line-height: 1.55;
      color: #64748b;
    }

    .wa-handoff-modal__actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .wa-handoff-modal__actions .btn-whatsapp {
      width: 100%;
      justify-content: center;
      text-align: center;
      text-decoration: none;
    }

    .wa-handoff-modal__actions .btn-close {
      width: 100%;
    }

    #screen-catalog .product__media {
      flex: 7 1 0;
      min-height: 0;
      aspect-ratio: unset;
      border-radius: 0;
    }

    #screen-catalog .product__chips {
      top: auto;
      bottom: 10px;
      left: 10px;
      right: 10px;
      justify-content: space-between;
      align-items: flex-end;
      gap: 6px;
    }

    #screen-catalog .product__chip {
      font-size: 0.6rem;
      padding: 4px 9px;
      letter-spacing: 0.06em;
    }

    #screen-catalog .product__chip--meta {
      margin-left: auto;
    }

    #screen-catalog .product__body {
      flex: 3 1 0;
      min-height: 0;
      background: #fff;
      padding: 12px 16px 16px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 8px;
      border-radius: 0;
    }

    #screen-catalog .product__title {
      color: #0f172a;
      font-size: clamp(1.05rem, 3.8vw, 1.32rem);
      font-weight: 750;
      line-height: 1.22;
      letter-spacing: -0.034em;
    }

    #screen-catalog .product__desc,
    #screen-catalog .product__rating {
      display: none;
    }

    #screen-catalog .product .price {
      color: #0f172a;
      text-shadow: none;
      font-size: clamp(1.14rem, 3.5vw, 1.3rem);
      font-weight: 800;
      font-variant-numeric: tabular-nums;
      letter-spacing: -0.03em;
    }

    #screen-catalog .product__row {
      margin-top: 0;
      align-items: center;
    }

    #screen-catalog .add-btn {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #0f172a;
      box-shadow: 0 4px 16px rgba(15, 23, 42, 0.22);
    }

    #screen-catalog .add-btn:hover {
      box-shadow: 0 6px 20px rgba(15, 23, 42, 0.28);
    }

    #screen-catalog .add-btn svg {
      stroke: #fff;
    }

    #screen-catalog .product.is-in-cart {
      border-color: rgba(22, 163, 74, 0.45);
      box-shadow:
        0 0 0 3px rgba(22, 163, 74, 0.12),
        0 14px 36px -10px rgba(22, 163, 74, 0.18),
        0 8px 28px rgba(109, 40, 217, 0.08);
    }

    #screen-catalog .product-stepper {
      border-radius: 999px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      background: #fff;
      box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
      overflow: hidden;
    }

    #screen-catalog .product-stepper__btn {
      background: #f8fafc;
      color: #334155;
    }

    #screen-catalog .product-stepper__btn:hover {
      background: #f1f5f9;
      color: #0f172a;
    }

    #screen-catalog .product-stepper__btn:active {
      background: #e2e8f0;
    }

    #screen-catalog .product-stepper__btn--more {
      background: linear-gradient(180deg, #a78bfa 0%, #7c3aed 50%, #6d28d9 100%);
      color: #fff;
    }

    #screen-catalog .product-stepper__btn--more:hover {
      background: linear-gradient(180deg, #b59cf9 0%, #8b5cf6 50%, #7c3aed 100%);
      color: #fff;
    }

    #screen-catalog .product-stepper__qty {
      color: #0f172a;
      background: #fff;
      border-left: 1px solid rgba(15, 23, 42, 0.08);
      border-right: 1px solid rgba(15, 23, 42, 0.08);
    }

    /* Barra flotante tipo “Ver pedido” */
    .cart-summary-bar {
      position: fixed;
      left: 50%;
      transform: translateX(-50%) translateY(120%);
      bottom: calc(var(--nav-h) + 14px + var(--safe-bottom));
      width: calc(100% - 28px);
      max-width: 400px;
      z-index: 1050;
      overflow: visible;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 20px;
      background: rgba(12, 10, 22, 0.92);
      border: 1px solid rgba(156, 82, 255, 0.4);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
      opacity: 0;
      pointer-events: none;
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
    }

    .cart-summary-bar.is-visible {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .cart-summary-bar__text {
      min-width: 0;
      flex: 1;
    }

    .cart-summary-bar__text strong {
      display: block;
      font-size: 0.88rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -0.02em;
    }

    .cart-summary-bar__text span {
      font-size: 0.72rem;
      color: #d8b4fe;
      font-weight: 600;
    }

    .cart-summary-bar__btn {
      flex-shrink: 0;
      padding: 12px 18px;
      border-radius: 14px;
      border: none;
      font-family: inherit;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      cursor: pointer;
      color: #fff;
      background: linear-gradient(180deg, #b983ff 0%, #9c52ff 50%, #7b38d8 100%);
      box-shadow: 0 4px 20px rgba(156, 82, 255, 0.45);
    }

    .cart-summary-bar__btn:active {
      transform: scale(0.97);
    }

    .cart-summary-bar__dismiss {
      position: absolute;
      top: -15px;
      right: -15px;
      z-index: 3;
      width: 32px;
      height: 32px;
      padding: 0;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #fff;
      background: #dc2626;
      box-shadow: 0 4px 16px rgba(220, 38, 38, 0.55), 0 0 0 2px rgba(12, 10, 22, 0.35);
      transition: background 0.15s ease, transform 0.12s ease;
    }

    .cart-summary-bar__dismiss:hover {
      background: #b91c1c;
    }

    .cart-summary-bar__dismiss:active {
      transform: scale(0.94);
    }

    .cart-summary-bar__dismiss svg {
      width: 15px;
      height: 15px;
      display: block;
    }

    .btn-sm {
      padding: 10px 14px;
      font-size: 0.8rem;
      border-radius: 14px;
    }

    /* Infraestructura — estilo producto (claro, gráficos en movimiento) */
    .infra-section {
      position: relative;
      padding-bottom: 8px;
    }

    .infra-section::before {
      content: "";
      position: absolute;
      width: min(100%, 320px);
      height: 280px;
      left: 50%;
      top: 40%;
      transform: translate(-50%, -30%);
      background: radial-gradient(ellipse, rgba(99, 102, 241, 0.06) 0%, transparent 65%);
      pointer-events: none;
      animation: infraGlowShift 16s ease-in-out infinite;
    }

    @keyframes infraGlowShift {
      0%, 100% { opacity: 1; transform: translate(-50%, -30%) scale(1); }
      50% { opacity: 0.7; transform: translate(-48%, -34%) scale(1.05); }
    }

    .infra-head {
      text-align: center;
      max-width: 360px;
      margin: 0 auto var(--space-xl);
      position: relative;
      z-index: 1;
    }

    .infra-eyebrow {
      margin: 0 0 8px;
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #94a3b8;
    }

    .infra-head .section-title {
      font-size: clamp(1.45rem, 5.5vw, 1.75rem);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.2;
      margin: 0 0 10px;
      color: #0f172a;
    }

    .infra-head .section-title em {
      font-style: normal;
      background: linear-gradient(120deg, #5b21b6, #7c3aed, #a3e635);
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: textGradient 7s ease infinite;
    }

    .infra-head .section-lead {
      margin: 0;
      color: #64748b;
      font-size: 0.92rem;
      line-height: 1.55;
    }

    .infra-grid {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
      position: relative;
      z-index: 1;
    }

    .infra-card {
      border-radius: 28px;
      overflow: hidden;
      background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
      border: 1px solid rgba(15, 23, 42, 0.07);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 20px 50px -20px rgba(15, 23, 42, 0.12);
      animation: infraCardFloat 8s ease-in-out infinite;
    }

    .infra-card:nth-child(2) {
      animation-delay: -4s;
    }

    @keyframes infraCardFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    .infra-card__viz {
      position: relative;
      height: 168px;
      background: linear-gradient(165deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
      border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      overflow: hidden;
    }

    .infra-card__viz::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
      background-size: 100% 24px, 28px 100%;
      opacity: 0.5;
      pointer-events: none;
    }

    .infra-card__svg {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 200px;
      height: 120px;
      z-index: 1;
    }

    .infra-ring {
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-dasharray: 32 88;
      animation: infraRingDash 12s linear infinite;
    }

    @keyframes infraRingDash {
      to { stroke-dashoffset: -120; }
    }

    .infra-dash {
      stroke-dasharray: 8 6;
      animation: infraDashMove 2s linear infinite;
    }

    @keyframes infraDashMove {
      to { stroke-dashoffset: -14; }
    }

    .infra-srv-ping {
      animation: infraSrvPing 2s ease-in-out infinite;
    }

    @keyframes infraSrvPing {
      0%, 100% { opacity: 0.45; }
      50% { opacity: 1; }
    }

    .infra-pulse-dot {
      transform-origin: center;
      transform-box: fill-box;
      animation: infraDotPulse 2.2s ease-in-out infinite;
    }

    .infra-pulse-dot.d2 { animation-delay: 0.4s; }
    .infra-pulse-dot.d3 { animation-delay: 0.8s; }

    @keyframes infraDotPulse {
      0%, 100% { opacity: 0.35; transform: scale(0.75); }
      50% { opacity: 1; transform: scale(1.2); }
    }

    .infra-card__body {
      padding: var(--space-lg) var(--space-lg) var(--space-xl);
    }

    .infra-card__badge {
      display: inline-block;
      font-size: 0.62rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #64748b;
      margin-bottom: 8px;
    }

    .infra-card__body strong {
      display: block;
      font-size: 1.02rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #0f172a;
      margin-bottom: 8px;
      line-height: 1.25;
    }

    .infra-card__body p {
      margin: 0;
      font-size: 0.86rem;
      line-height: 1.55;
      color: #64748b;
    }

    .infra-card__body p strong {
      display: inline;
      font-size: inherit;
      color: #334155;
    }

    /* Plataformas — embudo omnicanal */
    .plat-section {
      position: relative;
      padding-top: var(--space-2xl);
      margin-top: var(--space-xl);
      border-top: 1px solid rgba(15, 23, 42, 0.06);
    }

    .plat-section::before {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -40px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
      pointer-events: none;
      animation: platOrb 18s ease-in-out infinite;
    }

    @keyframes platOrb {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(-16px, -12px); }
    }

    .plat-head {
      text-align: center;
      max-width: 380px;
      margin: 0 auto var(--space-xl);
      position: relative;
      z-index: 1;
    }

    .plat-head .section-title {
      font-size: clamp(1.4rem, 5.2vw, 1.7rem);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.2;
      margin: 0 0 10px;
      color: #0f172a;
    }

    .plat-head .section-lead {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.55;
      color: #64748b;
    }

    .plat-hub {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: center;
      margin-bottom: 20px;
    }

    .plat-hub__core {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: linear-gradient(145deg, #0f172a 0%, #334155 100%);
      box-shadow:
        0 12px 32px rgba(15, 23, 42, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: platHubPulse 3s ease-in-out infinite;
    }

    .plat-hub__inner {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .plat-hub__core svg {
      width: 26px;
      height: 26px;
      stroke: #e2e8f0;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    @keyframes platHubPulse {
      0%, 100% { transform: scale(1); box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1) inset; }
      50% { transform: scale(1.04); box-shadow: 0 16px 40px rgba(79, 70, 229, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.15) inset; }
    }

    .plat-hub__label {
      margin-top: 10px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #94a3b8;
      text-align: center;
    }

    .plat-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-md);
      position: relative;
      z-index: 1;
    }

    @media (min-width: 380px) {
      .plat-grid {
        grid-template-columns: 1fr 1fr;
      }
      .plat-card--wide {
        grid-column: 1 / -1;
      }
    }

    .plat-card {
      border-radius: 22px;
      padding: var(--space-lg) var(--space-md) var(--space-lg);
      background: #fff;
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
      transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
      animation: platCardIn 6s ease-in-out infinite;
    }

    .plat-card:nth-child(1) { animation-delay: 0s; }
    .plat-card:nth-child(2) { animation-delay: 0.4s; }
    .plat-card:nth-child(3) { animation-delay: 0.8s; }
    .plat-card:nth-child(4) { animation-delay: 1.2s; }
    .plat-card:nth-child(5) { animation-delay: 1.6s; }

    @keyframes platCardIn {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }

    .plat-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
    }

    .plat-card__viz {
      height: 88px;
      border-radius: 16px;
      margin-bottom: 12px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .plat-card__name {
      margin: 0 0 4px;
      font-size: 0.95rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #0f172a;
    }

    .plat-card__hint {
      margin: 0;
      font-size: 0.8rem;
      line-height: 1.58;
      color: #94a3b8;
      font-weight: 500;
    }

    /* Fondos suaves + iconos de marca animados */
    .plat-viz--ig {
      background: linear-gradient(145deg, #fff7ed 0%, #fce7f3 45%, #fae8ff 100%);
    }

    .plat-viz--fb {
      background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
    }

    .plat-viz--li {
      background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%);
    }

    .plat-viz--tt {
      background: linear-gradient(145deg, #ecfeff 0%, #f5f3ff 50%, #fce7f3 100%);
    }

    .plat-viz--wa {
      background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
    }

    .plat-icon-aura {
      position: absolute;
      width: 70px;
      height: 70px;
      border-radius: 22px;
      z-index: 0;
      opacity: 0.42;
      filter: blur(22px);
      animation: platAuraPulse 2.8s ease-in-out infinite;
      pointer-events: none;
    }

    .plat-viz--ig .plat-icon-aura {
      background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #bc1888);
    }

    .plat-viz--fb .plat-icon-aura {
      background: #1877f2;
    }

    .plat-viz--li .plat-icon-aura {
      background: #0a66c2;
    }

    .plat-viz--tt .plat-icon-aura {
      background: linear-gradient(120deg, #25f4ee, #fe2c55);
    }

    .plat-viz--wa .plat-icon-aura {
      background: #25d366;
    }

    @keyframes platAuraPulse {
      0%, 100% { transform: scale(0.88); opacity: 0.32; }
      50% { transform: scale(1.05); opacity: 0.5; }
    }

    .plat-icon-stack {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: platIconBob 3.2s ease-in-out infinite;
    }

    .plat-card:nth-child(1) .plat-icon-stack { animation-delay: 0s; }
    .plat-card:nth-child(2) .plat-icon-stack { animation-delay: 0.15s; }
    .plat-card:nth-child(3) .plat-icon-stack { animation-delay: 0.3s; }
    .plat-card:nth-child(4) .plat-icon-stack { animation-delay: 0.45s; }
    .plat-card:nth-child(5) .plat-icon-stack { animation-delay: 0.6s; }

    @keyframes platIconBob {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-6px) scale(1.06); }
    }

    .plat-brand-svg {
      width: 48px;
      height: 48px;
      display: block;
      filter: drop-shadow(0 10px 22px rgba(15, 23, 42, 0.14));
    }

    .plat-brand-svg--tt {
      animation: platTikTilt 2.4s ease-in-out infinite;
    }

    @keyframes platTikTilt {
      0%, 100% { transform: rotate(0deg); }
      30% { transform: rotate(-4deg); }
      70% { transform: rotate(4deg); }
    }

    .plat-wa-ripples {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      z-index: 1;
    }

    .plat-wa-ripples span {
      position: absolute;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid rgba(37, 211, 102, 0.5);
      animation: platWaRingOut 2.5s ease-out infinite;
    }

    .plat-wa-ripples span:nth-child(2) { animation-delay: 0.65s; }
    .plat-wa-ripples span:nth-child(3) { animation-delay: 1.3s; }

    @keyframes platWaRingOut {
      0% { transform: scale(0.7); opacity: 0.65; }
      100% { transform: scale(2.1); opacity: 0; }
    }

    .pricing-compare {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-md);
      margin-top: var(--space-lg);
    }

    .pricing-card {
      position: relative;
      border-radius: 24px;
      padding: clamp(16px, 3.8vw, 24px);
      background: linear-gradient(160deg, rgba(22, 16, 44, 0.96), rgba(8, 12, 26, 0.92));
      border: 1px solid var(--edge-hairline);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: var(--shadow-premium);
      overflow: visible;
      isolation: isolate;
      transform-style: preserve-3d;
      text-align: center;
    }

    .pricing-card:hover {
      border-color: rgba(255, 255, 255, 0.1);
      box-shadow: var(--shadow-premium-hover);
    }

    .pricing-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1.4px;
      background: linear-gradient(145deg, rgba(139, 92, 246, 0.9), rgba(20, 184, 166, 0.3), rgba(139, 92, 246, 0.18));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask-composite: exclude;
      pointer-events: none;
      z-index: -1;
    }

    .pricing-card--pro::before {
      background: linear-gradient(130deg, #22c55e, #8b5cf6, #06b6d4, #8b5cf6, #22c55e);
      background-size: 260% 260%;
      animation: priceStrokeShift 4.2s linear infinite;
    }

    @keyframes priceStrokeShift {
      0% { background-position: 0% 50%; }
      100% { background-position: 100% 50%; }
    }

    .pricing-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #e2e8f0;
      background: rgba(148, 163, 184, 0.18);
      border: 1px solid rgba(148, 163, 184, 0.35);
      margin: 0 auto 12px;
    }

    .pricing-card--pro .pricing-badge {
      color: #ecfccb;
      background: rgba(132, 204, 22, 0.16);
      border-color: rgba(163, 230, 53, 0.42);
      box-shadow: 0 0 0 1px rgba(163, 230, 53, 0.1) inset;
    }

    .pricing-title {
      margin: 0;
      font-size: clamp(1.02rem, 3vw, 1.12rem);
      font-weight: 800;
      color: #f8fafc;
      line-height: 1.25;
    }

    .pricing-price {
      margin: 10px 0 8px;
      font-size: clamp(2rem, 8vw, 2.7rem);
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.04em;
      color: #f8fafc;
    }

    .pricing-sub {
      margin: 0;
      font-size: 0.93rem;
      line-height: 1.55;
      color: #e2e8f0;
      font-weight: 600;
    }

    .pricing-list {
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 8px;
      text-align: left;
    }

    .pricing-list li {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 9px;
      align-items: start;
      font-size: 0.9rem;
      color: #e5e7eb;
      line-height: 1.45;
    }

    .pricing-list .check {
      color: #22c55e;
      font-weight: 900;
      font-size: 0.95rem;
      line-height: 1.1;
    }

    .pricing-list .check-x {
      color: #f87171;
      font-weight: 900;
      font-size: 0.95rem;
      line-height: 1.1;
    }

    .pricing-list li.pricing-li--out {
      opacity: 0.4;
    }

    .pricing-actions {
      margin-top: var(--space-lg);
      display: grid;
      gap: var(--space-sm);
    }

    .pricing-main-btn {
      background: #8b5cf6 !important;
      border-color: transparent !important;
      border-radius: 14px !important;
      box-shadow: 0 14px 30px rgba(139, 92, 246, 0.45);
    }

    @media (min-width: 920px) {
      .pricing-compare {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
      }
    }

    /* Contenedor neutro: solo aire y centrado; la animación flota sobre el fondo del hero */
    .hero-float-slot {
      margin: 1.75rem 0;
      padding: 0;
      width: 100%;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-lottie-float {
      width: min(100%, 280px);
      max-width: 280px;
      max-height: 280px;
      aspect-ratio: 1;
      height: auto;
      margin: 0;
      display: block;
      position: relative;
      filter: drop-shadow(0 20px 40px rgba(124, 58, 237, 0.35)) drop-shadow(0 8px 24px rgba(8, 4, 20, 0.5));
      animation: heroMockFloat 4s ease-in-out infinite;
      will-change: transform;
    }

    @keyframes heroMockFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .faq .faq-item {
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--glass-border);
      margin-bottom: 14px;
      padding: 22px 24px;
    }

    .faq .faq-item:last-of-type {
      margin-bottom: 0;
    }

    .proof-section {
      margin-top: var(--space-2xl);
      margin-bottom: var(--space-2xl);
    }

    .proof-head {
      text-align: center;
      margin: 0 0 var(--space-lg);
    }

    .proof-head .section-title {
      margin-bottom: 8px;
    }

    .proof-head .section-lead {
      margin: 0 auto;
      max-width: 34ch;
      font-size: 0.9rem;
    }

    .proof-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .proof-card {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 10px;
      align-items: start;
      padding: 12px;
      border-radius: 16px;
      background: #fff;
      border: 1px solid rgba(148, 163, 184, 0.22);
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
      animation: proofCardLift 4.5s ease-in-out infinite;
    }

    .proof-card:nth-child(2) { animation-delay: 0.7s; }
    .proof-card:nth-child(3) { animation-delay: 1.4s; }

    @keyframes proofCardLift {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-3px); }
    }

    .proof-avatar {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      object-fit: cover;
      border: 1px solid rgba(255, 255, 255, 0.65);
      box-shadow: 0 6px 14px rgba(15, 23, 42, 0.14);
    }

    .proof-avatar--initial {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      color: #fff;
      background: linear-gradient(135deg, #7c3aed, #a855f7);
      object-fit: unset;
    }

    .proof-card:nth-child(2) .proof-avatar--initial {
      background: linear-gradient(135deg, #0ea5e9, #6366f1);
    }

    .proof-card:nth-child(3) .proof-avatar--initial {
      background: linear-gradient(135deg, #059669, #14b8a6);
    }

    .proof-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 6px;
    }

    .proof-name {
      margin: 0;
      font-size: 0.85rem;
      font-weight: 800;
      color: #0f172a;
      letter-spacing: -0.01em;
    }

    .proof-role {
      margin: 2px 0 0;
      font-size: 0.72rem;
      color: #64748b;
      font-weight: 600;
    }

    .proof-stars {
      flex-shrink: 0;
      font-size: 0.72rem;
      font-weight: 800;
      color: #f59e0b;
      letter-spacing: 0.03em;
    }

    .proof-text {
      margin: 0;
      font-size: 0.82rem;
      line-height: 1.6;
      color: #334155;
    }

    .faq .faq-item summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      list-style: none;
      font-weight: 700;
      cursor: pointer;
      font-size: 0.94rem;
      line-height: 1.45;
      color: #f8fafc;
    }

    .faq .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item__question {
      flex: 1;
      min-width: 0;
    }

    .faq-item__toggle {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: rgba(124, 58, 237, 0.22);
      color: #e9d5ff;
      transition: background 0.2s ease, color 0.2s ease;
    }

    .faq .faq-item[open] .faq-item__toggle {
      background: rgba(124, 58, 237, 0.35);
      color: #fff;
    }

    .faq-item__toggle svg {
      width: 18px;
      height: 18px;
      display: block;
      transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .faq .faq-item[open] .faq-item__toggle svg {
      transform: rotate(45deg);
    }

    .faq-item__body {
      padding-top: 16px;
    }

    .faq-item__body p {
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.6;
      color: #cbd5e1;
    }

    .urgency {
      margin-top: var(--space-xl);
      padding: 20px 24px;
      border-radius: 18px;
      background: rgba(251, 191, 36, 0.12);
      border: 1px solid rgba(251, 191, 36, 0.35);
      font-size: 0.9rem;
      line-height: 1.6;
      color: #fde68a;
    }

    /* Regalo final: mejoras visuales en fotos del cliente */
    .bonus-gift-section {
      padding: var(--space-2xl) 0 var(--space-3xl);
      scroll-margin-top: 24px;
      scroll-margin-bottom: calc(var(--nav-h) + 20px);
    }

    .bonus-gift {
      position: relative;
      border-radius: 28px;
      padding: var(--space-xl) var(--space-lg);
      background: linear-gradient(
        165deg,
        rgba(124, 58, 237, 0.14) 0%,
        rgba(15, 23, 42, 0.82) 42%,
        rgba(124, 58, 237, 0.12) 100%
      );
      border: 1px solid rgba(124, 58, 237, 0.38);
      box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
      overflow: hidden;
    }

    .bonus-gift::before {
      content: "";
      position: absolute;
      inset: -40% -20% auto auto;
      width: 180px;
      height: 180px;
      background: radial-gradient(circle, rgba(163, 230, 53, 0.25) 0%, transparent 72%);
      pointer-events: none;
      animation: bonusGlow 6s ease-in-out infinite;
    }

    @keyframes bonusGlow {
      0%, 100% { opacity: 0.5; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.08); }
    }

    .bonus-gift > * {
      position: relative;
      z-index: 1;
    }

    .bonus-gift__tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #fce7f3;
      background: rgba(124, 58, 237, 0.35);
      border: 1px solid rgba(251, 207, 232, 0.35);
      margin-bottom: var(--space-md);
    }

    .bonus-gift__title {
      margin: 0 0 var(--space-sm);
      font-size: clamp(1.2rem, 4.5vw, 1.45rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.2;
      color: #fff;
    }

    .bonus-gift__lead {
      margin: 0 0 var(--space-lg);
      font-size: 0.9rem;
      line-height: 1.62;
      color: #cbd5e1;
    }

    .bonus-gift__list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }

    .bonus-gift__item {
      display: flex;
      gap: var(--space-md);
      align-items: flex-start;
      padding: var(--space-md);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .bonus-gift__icon {
      width: 46px;
      height: 46px;
      flex-shrink: 0;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(145deg, rgba(124, 58, 237, 0.25), rgba(163, 230, 53, 0.15));
      border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .bonus-gift__icon svg {
      width: 24px;
      height: 24px;
      color: #fde68a;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .bonus-gift__icon svg * {
      fill: none;
      stroke: currentColor;
    }

    .bonus-gift__item-body { min-width: 0; }

    .bonus-gift__item-title {
      margin: 0 0 6px;
      font-size: 0.88rem;
      font-weight: 800;
      color: #f1f5f9;
      letter-spacing: -0.01em;
    }

    .bonus-gift__item-text {
      margin: 0;
      font-size: 0.82rem;
      line-height: 1.55;
      color: var(--muted);
    }

    .bonus-gift__footer {
      margin: var(--space-lg) 0 0;
      padding: var(--space-md) var(--space-md);
      border-radius: 18px;
      background: rgba(156, 82, 255, 0.12);
      border: 1px solid rgba(185, 131, 255, 0.35);
      font-size: 0.88rem;
      line-height: 1.55;
      color: #e9d5ff;
      font-weight: 600;
    }

    .bonus-gift__fineprint {
      margin: var(--space-md) 0 0;
      font-size: 0.74rem;
      line-height: 1.5;
      color: #94a3b8;
    }

    .bonus-gift__media {
      margin: 0 0 var(--space-lg);
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.04);
    }

    .bonus-gift__media img {
      width: 100%;
      display: block;
      aspect-ratio: 16 / 10;
      object-fit: cover;
    }

    .bonus-gift__lead-mini {
      margin: 0 0 var(--space-md);
      font-size: 0.88rem;
      line-height: 1.5;
      color: #d8b4fe;
      text-align: center;
      font-weight: 600;
    }

    .bonus-gift__cta-note {
      margin: var(--space-sm) 0 0;
      font-size: 0.78rem;
      color: #d8b4fe;
      text-align: center;
      line-height: 1.45;
    }

    .bonus-gift-cta-shell {
      position: relative;
      margin-top: var(--space-xl);
      padding: 2px;
      border-radius: 24px;
      background: linear-gradient(
        125deg,
        #9c52ff 0%,
        #b983ff 22%,
        #c4a3ff 40%,
        #9c52ff 58%,
        #7b38d8 78%,
        #9c52ff 100%
      );
      background-size: 280% 280%;
      animation: bonusCtaBorder 5s ease infinite;
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.14),
        0 24px 56px rgba(156, 82, 255, 0.35),
        0 8px 24px rgba(0, 0, 0, 0.35);
    }

    @keyframes bonusCtaBorder {
      0%, 100% { background-position: 0% 40%; }
      50% { background-position: 100% 60%; }
    }

    .bonus-gift-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: var(--space-sm);
      width: 100%;
      margin: 0;
      padding: var(--space-lg) var(--space-md) var(--space-xl);
      border: none;
      border-radius: 22px;
      cursor: pointer;
      font-family: inherit;
      color: #faf5ff;
      background: linear-gradient(168deg, #1a0a2e 0%, #2d1b4e 42%, #15081f 100%);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      -webkit-tap-highlight-color: transparent;
    }

    .bonus-gift-cta:hover {
      transform: translateY(-2px);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 44px rgba(156, 82, 255, 0.28);
    }

    .bonus-gift-cta:active {
      transform: translateY(0);
    }

    .bonus-gift-cta__glow {
      position: absolute;
      inset: auto 50% -30px 50%;
      width: 70%;
      height: 48px;
      transform: translateX(-50%);
      background: radial-gradient(ellipse, rgba(185, 131, 255, 0.5) 0%, transparent 72%);
      pointer-events: none;
      filter: blur(8px);
      opacity: 0.85;
      animation: bonusCtaGlow 3s ease-in-out infinite;
    }

    @keyframes bonusCtaGlow {
      0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(0.95); }
      50% { opacity: 0.95; transform: translateX(-50%) scale(1.05); }
    }

    .bonus-gift-cta__row {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      width: 100%;
    }

    .bonus-gift-cta__copy {
      text-align: center;
      max-width: 100%;
    }

    .bonus-gift-cta__wa {
      width: 52px;
      height: 52px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
      border: 1px solid rgba(255, 255, 255, 0.22);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
      flex-shrink: 0;
    }

    .bonus-gift-cta__wa svg {
      width: 28px;
      height: 28px;
      fill: #fff;
    }

    .bonus-gift-cta__kicker {
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #d8b4fe;
      margin: 0;
    }

    .bonus-gift-cta__title {
      margin: 0;
      font-size: clamp(1.05rem, 4.2vw, 1.28rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.25;
      color: #fff;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
    }

    .bonus-gift-cta__sub {
      margin: 0;
      max-width: 26ch;
      font-size: 0.82rem;
      line-height: 1.5;
      color: #e9d5ff;
      font-weight: 500;
    }

    .bonus-gift-cta__phone {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 4px;
      padding: 8px 16px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.35);
      border: 1px solid rgba(255, 255, 255, 0.12);
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: 0.06em;
      font-variant-numeric: tabular-nums;
      color: #faf5ff;
    }

    .bonus-gift-cta__hint {
      margin: 0;
      font-size: 0.72rem;
      color: #c4b5fd;
      opacity: 0.95;
      letter-spacing: 0.02em;
    }

    .bonus-gift-cta-shell--boreal {
      margin-top: var(--space-md);
      padding-top: 8px;
      animation: borealFloat 4.2s ease-in-out infinite;
    }

    .bonus-gift-cta-shell--boreal .bonus-gift-cta__glow {
      background: radial-gradient(ellipse, rgba(163, 230, 53, 0.45) 0%, rgba(124, 58, 237, 0.3) 45%, transparent 72%);
      filter: blur(10px);
    }

    .bonus-gift-cta-shell--boreal .bonus-gift-cta {
      background: linear-gradient(130deg, #0f172a 0%, #3b0764 45%, #065f46 100%);
      border-color: rgba(163, 230, 53, 0.35);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        0 14px 40px rgba(6, 182, 212, 0.18),
        0 0 34px rgba(124, 58, 237, 0.2);
    }

    @keyframes borealFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    footer {
      padding: var(--space-3xl) 0 var(--space-lg);
      text-align: center;
      font-size: 0.78rem;
      color: var(--muted);
    }

    /* Modal */
    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(5, 8, 20, 0.72);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 1100;
      display: none;
      align-items: flex-end;
      justify-content: center;
      padding: 16px;
      padding-bottom: calc(16px + var(--safe-bottom));
    }

    .modal-backdrop.open { display: flex; }

    .modal {
      width: 100%;
      max-width: 420px;
      max-height: 92dvh;
      overflow: auto;
      background: linear-gradient(180deg, #1a1628 0%, #0c0a14 55%, #080610 100%);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 28px 28px 18px 18px;
      padding: var(--space-sm) var(--space-lg) var(--space-xl);
      box-shadow: 0 -16px 60px rgba(0, 0, 0, 0.65);
    }

    .modal__handle {
      width: 40px;
      height: 4px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.2);
      margin: 4px auto 14px;
    }

    .modal h2 {
      margin: 0 0 6px;
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .modal .hint {
      font-size: 0.88rem;
      color: var(--muted);
      margin: 0 0 var(--space-md);
      line-height: 1.6;
    }

    label {
      display: block;
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--muted);
      margin-bottom: var(--space-xs);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    input, select, textarea {
      width: 100%;
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px solid var(--glass-border);
      background: rgba(255, 255, 255, 0.06);
      color: var(--text);
      font-family: inherit;
      font-size: 0.95rem;
      margin-bottom: var(--space-md);
    }

    input:focus, select:focus, textarea:focus {
      outline: none;
      border-color: rgba(156, 82, 255, 0.65);
      box-shadow: 0 0 0 3px rgba(156, 82, 255, 0.2);
    }

    .cart-lines {
      margin-bottom: 12px;
      max-height: min(42dvh, 280px);
      overflow-y: auto;
      padding-right: 4px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .cart-lines::-webkit-scrollbar {
      width: 4px;
    }

    .cart-lines::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, 0.15);
      border-radius: 999px;
    }

    .cart-line {
      display: grid;
      grid-template-columns: 52px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 10px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .cart-line__thumb {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      object-fit: cover;
      background: linear-gradient(145deg, #312e81, #701a75);
    }

    .cart-line__info {
      min-width: 0;
    }

    .cart-line__name {
      font-size: 0.82rem;
      font-weight: 700;
      color: #f3f4f6;
      line-height: 1.3;
      margin: 0 0 2px;
    }

    .cart-line__sub {
      font-size: 0.7rem;
      color: #9ca3af;
      margin: 0;
    }

    .cart-line__side {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 8px;
    }

    .cart-line__price {
      font-size: 0.8rem;
      font-weight: 800;
      color: #fde68a;
    }

    .cart-qty {
      display: inline-flex;
      align-items: center;
      gap: 0;
      border-radius: 12px;
      background: rgba(0, 0, 0, 0.35);
      border: 1px solid rgba(255, 255, 255, 0.1);
      overflow: hidden;
    }

    .cart-qty button {
      width: 32px;
      height: 32px;
      border: none;
      background: transparent;
      color: #e5e7eb;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: inherit;
      line-height: 1;
      transition: background 0.15s ease;
    }

    .cart-qty button:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .cart-qty span {
      min-width: 24px;
      text-align: center;
      font-size: 0.8rem;
      font-weight: 800;
      color: #fff;
    }

    .cart-empty-msg {
      color: #9ca3af;
      margin: 0;
      font-size: 0.85rem;
      text-align: center;
      padding: 20px 12px;
      line-height: 1.5;
    }

    .cart-fees {
      font-size: 0.78rem;
      color: var(--muted);
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      border-top: 1px dashed rgba(255, 255, 255, 0.1);
      margin-top: 4px;
    }

    .cart-fees span:last-child {
      color: #d8b4fe;
      font-weight: 700;
    }

    .cart-total {
      font-weight: 800;
      font-size: 1.05rem;
      margin-bottom: 14px;
      padding-top: 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cart-total span:last-child {
      font-size: 1.2rem;
      color: #fef3c7;
      letter-spacing: -0.02em;
    }

    .modal-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 8px;
    }

    .btn-close {
      background: transparent;
      color: var(--muted);
      border: 1px solid var(--glass-border);
    }

    /* Gift modal premium */
    .gift-modal {
      background:
        radial-gradient(ellipse 120% 70% at 50% -20%, rgba(163, 230, 53, 0.12) 0%, transparent 55%),
        linear-gradient(180deg, #1a1628 0%, #0c0a14 55%, #080610 100%);
      border: 1px solid rgba(163, 230, 53, 0.24);
    }

    .gift-modal__hero {
      margin: 2px 0 var(--space-md);
      padding: 12px;
      border-radius: 16px;
      background: linear-gradient(130deg, rgba(124, 58, 237, 0.26), rgba(6, 182, 212, 0.16));
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    .gift-modal__hero p {
      margin: 0;
      font-size: 0.83rem;
      line-height: 1.5;
      color: #e2e8f0;
    }

    .gift-modal__grid {
      display: grid;
      gap: 10px;
      margin: 0 0 var(--space-sm);
    }

    .gift-field {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 8px;
      align-items: center;
      padding: 8px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.09);
    }

    .gift-field__icon {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(140deg, rgba(163, 230, 53, 0.24), rgba(124, 58, 237, 0.22));
      color: #e2e8f0;
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .gift-field__icon svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .gift-field label {
      margin-bottom: 6px;
      font-size: 0.72rem;
      letter-spacing: 0.06em;
    }

    .gift-field input,
    .gift-field select {
      margin-bottom: 0;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(163, 230, 53, 0.22);
    }

    .gift-field input:focus,
    .gift-field select:focus {
      border-color: rgba(163, 230, 53, 0.58);
      box-shadow: 0 0 0 3px rgba(163, 230, 53, 0.16);
    }

    /* Modal Cierre rápido (CRO — planes) */
    .cro-modal-backdrop.open {
      align-items: center;
      justify-content: center;
      padding: 22px 16px;
      padding-bottom: calc(22px + var(--safe-bottom));
    }

    .modal.cro-modal {
      border-radius: 26px;
      background:
        radial-gradient(ellipse 110% 90% at 50% -35%, rgba(192, 132, 252, 0.28) 0%, transparent 52%),
        radial-gradient(ellipse 80% 50% at 100% 100%, rgba(34, 211, 238, 0.08) 0%, transparent 45%),
        linear-gradient(185deg, #1c1630 0%, #0f0a1a 55%, #080510 100%);
      border: 1px solid rgba(167, 139, 250, 0.42);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.07) inset,
        0 0 56px rgba(124, 58, 237, 0.28),
        0 28px 70px rgba(0, 0, 0, 0.55);
      animation: croModalEnter 0.44s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    @keyframes croModalEnter {
      from {
        opacity: 0;
        transform: translateY(22px) scale(0.94);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .cro-modal__selected {
      margin: 0 0 14px;
      padding: 13px 16px;
      border-radius: 16px;
      font-size: 0.98rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.35;
      color: #faf5ff;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(45, 212, 191, 0.12));
      border: 1px solid rgba(196, 181, 253, 0.45);
      box-shadow: 0 0 32px rgba(124, 58, 237, 0.2);
    }

    .cro-modal__hint {
      margin-bottom: var(--space-md);
    }

    .cro-upsell-block {
      margin: 6px 0 14px;
    }

    .cro-upsell-block__kicker {
      margin: 0 0 24px;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(196, 181, 253, 0.88);
    }

    .cro-upsell-carousel {
      --cro-card-w: min(76vw, 218px);
      display: flex;
      gap: 14px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior-x: contain;
      scroll-snap-type: x mandatory;
      scroll-snap-stop: always;
      scroll-behavior: smooth;
      /* Centra cada tarjeta en el viewport del carrusel */
      padding: 8px max(12px, calc(50% - min(38vw, 109px))) 18px;
      margin: 0;
      scrollbar-width: thin;
      scrollbar-color: rgba(167, 139, 250, 0.45) transparent;
    }

    @media (prefers-reduced-motion: reduce) {
      .cro-upsell-carousel {
        scroll-behavior: auto;
      }

      .cro-upsell-card:hover,
      .cro-upsell-card.is-selected:hover {
        transform: none;
      }
    }

    .cro-upsell-carousel::-webkit-scrollbar {
      height: 5px;
    }

    .cro-upsell-carousel::-webkit-scrollbar-thumb {
      background: rgba(167, 139, 250, 0.4);
      border-radius: 999px;
    }

    .cro-upsell-card {
      flex: 0 0 var(--cro-card-w);
      width: var(--cro-card-w);
      max-width: var(--cro-card-w);
      scroll-snap-align: center;
      scroll-snap-stop: always;
      padding: 11px 11px 12px;
      border-radius: 16px;
      cursor: pointer;
      text-align: left;
      font: inherit;
      color: inherit;
      background: linear-gradient(145deg, rgba(254, 252, 232, 0.14) 0%, rgba(253, 230, 138, 0.08) 100%);
      border: 2px dashed rgba(251, 191, 36, 0.45);
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
      transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.22s ease,
        box-shadow 0.28s ease,
        background 0.22s ease,
        filter 0.25s ease;
    }

    .cro-upsell-card:hover {
      border-color: rgba(253, 224, 71, 0.62);
      transform: translateY(-3px) scale(1.02);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 14px 36px rgba(245, 158, 11, 0.22);
    }

    .cro-upsell-card:focus {
      outline: none;
    }

    .cro-upsell-card:focus-visible {
      outline: 2px solid rgba(167, 139, 250, 0.85);
      outline-offset: 2px;
    }

    .cro-upsell-card__strip {
      height: 44px;
      border-radius: 9px;
      overflow: hidden;
      margin-bottom: 8px;
      background: rgba(15, 23, 42, 0.45);
      border: 1px solid rgba(251, 191, 36, 0.28);
    }

    .cro-upsell-card__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .cro-upsell-card__title {
      display: block;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.28;
      color: #fefce8;
    }

    .cro-upsell-card__price {
      display: block;
      margin-top: 5px;
      font-size: 0.76rem;
      font-weight: 800;
      color: #fde68a;
    }

    .cro-upsell-card__tagline {
      display: block;
      margin-top: 4px;
      font-size: 0.65rem;
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: 0.02em;
      color: rgba(254, 243, 199, 0.82);
    }

    .cro-upsell-card.is-selected .cro-upsell-card__tagline {
      color: rgba(233, 213, 255, 0.92);
    }

    .cro-upsell-card.is-selected {
      border-style: solid;
      border-color: rgba(167, 139, 250, 0.95);
      background: linear-gradient(145deg, rgba(124, 58, 237, 0.38) 0%, rgba(76, 29, 149, 0.32) 100%);
      box-shadow:
        0 0 0 1px rgba(196, 181, 253, 0.45) inset,
        0 10px 32px rgba(124, 58, 237, 0.35);
    }

    .cro-upsell-card.is-selected .cro-upsell-card__strip {
      border-color: rgba(196, 181, 253, 0.55);
    }

    .cro-upsell-card.is-selected .cro-upsell-card__title {
      color: #faf5ff;
    }

    .cro-upsell-card.is-selected .cro-upsell-card__price {
      color: #e9d5ff;
    }

    .cro-upsell-card.is-selected:hover {
      border-color: rgba(196, 181, 253, 1);
      transform: translateY(-2px) scale(1.02);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 12px 36px rgba(124, 58, 237, 0.42);
    }

    .cro-order-summary {
      margin: 14px 0 4px;
      padding: 14px 14px 16px;
      border-radius: 18px;
      background: rgba(15, 10, 28, 0.55);
      border: 1px solid rgba(167, 139, 250, 0.35);
      box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    }

    .cro-order-summary__heading {
      margin: 0 0 12px;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(196, 181, 253, 0.95);
    }

    .cro-order-summary__list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .cro-order-summary__row {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      font-size: 0.84rem;
      line-height: 1.35;
      color: #e2e8f0;
    }

    .cro-order-summary__row--extra {
      padding-left: 8px;
      border-left: 2px solid rgba(124, 58, 237, 0.65);
      color: #cbd5e1;
      font-size: 0.8rem;
    }

    .cro-order-summary__name {
      font-weight: 600;
      flex: 1;
      min-width: 0;
    }

    .cro-order-summary__row:not(.cro-order-summary__row--extra) .cro-order-summary__name {
      font-weight: 800;
      color: #faf5ff;
    }

    .cro-order-summary__price {
      font-weight: 800;
      color: #fde68a;
      white-space: nowrap;
    }

    .cro-order-summary__total-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid rgba(167, 139, 250, 0.28);
    }

    .cro-order-summary__total-label {
      font-size: 0.82rem;
      font-weight: 700;
      color: #94a3b8;
    }

    .cro-order-summary__total {
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #fef08a;
    }

    .cro-modal label {
      text-transform: none;
      letter-spacing: 0.02em;
      font-size: 0.8rem;
      font-weight: 700;
      color: #cbd5e1;
    }

    .cro-optional {
      font-weight: 600;
      letter-spacing: 0;
      font-size: 0.75rem;
      color: #94a3b8;
    }

    label .cro-optional {
      display: inline;
    }

    .cro-modal__error {
      margin: -4px 0 12px;
      font-size: 0.82rem;
      font-weight: 700;
      color: #fda4af;
    }

    .cro-legal-row {
      margin: 4px 0 18px;
    }

    .cro-checkbox-apple {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      cursor: pointer;
      margin: 0;
      font-size: 0.82rem;
      line-height: 1.5;
      color: #e2e8f0;
    }

    .cro-checkbox-apple input {
      position: absolute;
      opacity: 0;
      width: 1px;
      height: 1px;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
    }

    .cro-checkbox-apple__ui {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      margin-top: 1px;
      border-radius: 6px;
      border: 2px solid rgba(148, 163, 184, 0.5);
      background: rgba(255, 255, 255, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .cro-checkbox-apple__ui::after {
      content: "";
      width: 5px;
      height: 9px;
      border: solid #fff;
      border-width: 0 2.5px 2.5px 0;
      transform: rotate(45deg) translate(-0.5px, -1px);
      opacity: 0;
      transition: opacity 0.15s ease;
    }

    .cro-checkbox-apple input:checked + .cro-checkbox-apple__ui {
      background: linear-gradient(145deg, #8b5cf6, #7c3aed);
      border-color: #a78bfa;
      box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.35);
    }

    .cro-checkbox-apple input:checked + .cro-checkbox-apple__ui::after {
      opacity: 1;
    }

    .cro-checkbox-apple input:focus-visible + .cro-checkbox-apple__ui {
      box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.45);
    }

    .cro-checkbox-apple__text {
      flex: 1;
      min-width: 0;
      font-weight: 600;
      color: #cbd5e1;
    }

    .cro-terms-link {
      color: #c4b5fd;
      text-decoration: underline;
      text-underline-offset: 3px;
      font-weight: 800;
    }

    .cro-terms-link:hover {
      color: #e9d5ff;
    }

    /* Modal términos legales (CRO) */
    .terms-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 12050;
      align-items: center;
      justify-content: center;
      padding: max(20px, env(safe-area-inset-top)) 20px max(20px, env(safe-area-inset-bottom));
    }

    .terms-modal.is-open {
      display: flex;
    }

    .terms-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(15, 23, 42, 0.72);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      cursor: pointer;
    }

    .terms-modal__card {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 440px;
      max-height: min(86vh, 620px);
      overflow: auto;
      border-radius: 22px;
      padding: 22px 22px 20px;
      background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
      border: 1px solid rgba(148, 163, 184, 0.35);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.8) inset,
        0 24px 60px rgba(15, 23, 42, 0.35);
      color: #1e293b;
      -webkit-overflow-scrolling: touch;
    }

    .terms-modal__close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 36px;
      height: 36px;
      padding: 0;
      border: none;
      border-radius: 10px;
      background: rgba(15, 23, 42, 0.06);
      color: #475569;
      font-size: 1.35rem;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .terms-modal__close:hover {
      background: rgba(124, 58, 237, 0.12);
      color: #7c3aed;
    }

    .terms-modal__title {
      margin: 0 40px 14px 0;
      font-size: 1.05rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #0f172a;
    }

    .terms-modal__body {
      font-size: 0.86rem;
      line-height: 1.6;
      color: #475569;
    }

    .terms-modal__body h3 {
      margin: 16px 0 6px;
      font-size: 0.78rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #7c3aed;
    }

    .terms-modal__body h3:first-child {
      margin-top: 0;
    }

    .terms-modal__body p {
      margin: 0 0 10px;
    }

    .btn-cro-wa {
      width: 100%;
      justify-content: center;
      padding: 16px 22px;
      font-size: 0.95rem;
      font-weight: 800;
      letter-spacing: 0.01em;
      border-radius: 16px;
      border: none;
      cursor: pointer;
      color: #fff;
      background: linear-gradient(135deg, #c084fc 0%, #a855f7 28%, #7c3aed 62%, #6d28d9 100%);
      box-shadow:
        0 0 28px rgba(168, 85, 247, 0.55),
        0 0 48px rgba(124, 58, 237, 0.35),
        0 12px 32px rgba(91, 33, 182, 0.45);
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
      transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
    }

    .btn-cro-wa:hover {
      filter: brightness(1.06);
      box-shadow:
        0 0 36px rgba(192, 132, 252, 0.55),
        0 0 56px rgba(124, 58, 237, 0.4),
        0 16px 40px rgba(91, 33, 182, 0.5);
    }

    .btn-cro-wa:active {
      transform: scale(0.98);
    }

    .pricing-actions .pricing-main-btn {
      width: 100%;
    }

    /* Puente comercial: título fuera + contenedor con acordeón + cuadro plan */
    .plan-growth-stack {
      width: 100%;
      max-width: 40rem;
      margin-left: auto;
      margin-right: auto;
      margin-top: clamp(2.5rem, 6vw, 3.75rem);
      margin-bottom: clamp(1.35rem, 3.5vw, 2rem);
      text-align: center;
    }

    .plan-growth-hero__title {
      margin: 0 0 10px;
      font-size: clamp(1.2rem, 3.2vw, 1.65rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.22;
      color: #f8fafc;
    }

    .plan-growth-hero__sub {
      margin: 0 auto 18px;
      max-width: 36rem;
      font-size: clamp(0.86rem, 2.1vw, 0.95rem);
      line-height: 1.55;
      font-weight: 500;
      color: rgba(203, 213, 225, 0.92);
    }

    .plan-growth-shell {
      margin-top: 4px;
      text-align: left;
      border-radius: 18px;
      border: 1px solid rgba(148, 163, 184, 0.22);
      background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(15, 23, 42, 0.35) 100%);
      box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.08) inset;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .plan-growth-shell > .plan-growth-deferred:first-child .plan-growth-wrap__summary {
      border-radius: 17px 17px 0 0;
    }

    .plan-growth-deferred:not([open]) > .plan-growth-wrap__summary {
      border-radius: 17px;
    }

    .plan-growth-deferred {
      width: 100%;
    }

    .plan-growth-deferred__body {
      border-top: 1px solid rgba(148, 163, 184, 0.14);
    }

    .plan-growth-deferred__body .plan-growth-wrap__lead {
      padding: 14px 16px 16px;
      margin: 0;
    }

    .plan-growth-wrap {
      width: 100%;
    }

    .plan-growth-wrap__summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 16px;
      list-style: none;
      cursor: pointer;
      font: inherit;
      color: inherit;
      border-radius: 17px;
    }

    .plan-growth-wrap__summary::-webkit-details-marker {
      display: none;
    }

    .plan-growth-wrap__summary:focus {
      outline: none;
    }

    .plan-growth-wrap__summary:focus-visible {
      outline: 2px solid rgba(167, 139, 250, 0.75);
      outline-offset: 2px;
    }

    .plan-growth-wrap__title {
      margin: 0;
      font-size: clamp(0.92rem, 2.3vw, 1.08rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      line-height: 1.35;
      color: #f8fafc;
    }

    .plan-growth-wrap__icon {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: rgba(124, 58, 237, 0.2);
      color: #e9d5ff;
    }

    .plan-growth-wrap__chev {
      width: 18px;
      height: 18px;
      display: block;
      transition: transform 0.25s ease;
    }

    .plan-growth-deferred[open] .plan-growth-wrap__chev {
      transform: rotate(180deg);
    }

    .plan-growth-wrap__lead {
      margin: 0;
      font-size: clamp(0.82rem, 2vw, 0.9rem);
      line-height: 1.58;
      color: rgba(203, 213, 225, 0.9);
      font-weight: 500;
      max-width: 52ch;
    }

    .plan-growth-shell .plan-growth-deferred__body .plan-growth-upsell {
      margin: 0;
      border-radius: 0 0 16px 16px;
      border-top: 1px solid rgba(163, 230, 53, 0.22);
    }

    /* Upsell Plan Growth (add-on) */
    .plan-growth-upsell {
      width: 100%;
      margin-top: 0;
      padding: 18px 18px 20px;
      border-radius: 20px;
      background: linear-gradient(165deg, rgba(12, 10, 22, 0.96) 0%, rgba(8, 6, 16, 0.99) 100%);
      border: 1px solid rgba(163, 230, 53, 0.35);
      box-shadow:
        0 0 0 1px rgba(124, 58, 237, 0.18) inset,
        0 12px 40px rgba(0, 0, 0, 0.35),
        0 0 28px rgba(163, 230, 53, 0.08);
    }

    .plan-growth-upsell__kicker {
      margin: 0 0 10px;
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(190, 242, 100, 0.88);
    }

    .plan-growth-upsell__body {
      display: flex;
      flex-direction: column;
      gap: 14px;
      align-items: stretch;
    }

    @media (min-width: 520px) {
      .plan-growth-upsell__body {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
      }
    }

    .plan-growth-upsell__title {
      margin: 0 0 8px;
      font-size: 1.15rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #f8fafc;
    }

    .plan-growth-upsell__desc {
      margin: 0;
      font-size: 0.82rem;
      line-height: 1.55;
      color: rgba(203, 213, 225, 0.92);
      max-width: 52ch;
    }

    .plan-growth-upsell__btn {
      flex-shrink: 0;
      align-self: flex-start;
      padding: 10px 16px;
      border-radius: 12px;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      border: 1px solid rgba(167, 139, 250, 0.45);
      color: #f5f3ff;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(88, 28, 135, 0.5));
      cursor: pointer;
      font-family: inherit;
      transition: filter 0.2s ease, transform 0.15s ease;
    }

    .plan-growth-upsell__btn:hover {
      filter: brightness(1.08);
    }

    .plan-growth-upsell__btn:active {
      transform: scale(0.98);
    }

    @media (min-width: 520px) {
      .plan-growth-upsell__btn {
        align-self: center;
      }
    }

    /* Instalación minimal (solo placeholder + PWA) */
    .install-min {
      margin-top: 28px;
      text-align: center;
    }

    .install-min__title {
      margin: 0 0 8px;
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: -0.03em;
      color: #f1f5f9;
    }

    .install-min__lead {
      margin: 0 auto 20px;
      max-width: 28rem;
      font-size: 0.9rem;
      line-height: 1.5;
      color: rgba(148, 163, 184, 0.95);
    }

    .install-min__video-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: 18px;
    }

    .install-min__video {
      position: relative;
      width: 100%;
      max-width: 280px;
      aspect-ratio: 9 / 16;
      border-radius: 18px;
      background: #0a0a0c;
      background-image: linear-gradient(180deg, #141418 0%, #050506 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .install-min__play {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.22);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(248, 250, 252, 0.95);
      pointer-events: none;
    }

    .install-min__play svg {
      width: 26px;
      height: 26px;
      margin-left: 3px;
      fill: currentColor;
    }

    .install-min__platforms {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 8px;
    }

    .install-min__plat {
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.85;
      color: rgba(226, 232, 240, 0.88);
    }

    .install-min__plat svg {
      width: 22px;
      height: 22px;
      display: block;
    }

    .install-min__compat {
      margin: 0 0 20px;
      font-size: 0.65rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(148, 163, 184, 0.75);
    }

    .install-min__pwa {
      max-width: 320px;
      margin: 0 auto;
    }

    .install-min .install-cta {
      width: 100%;
      justify-content: center;
    }

    .install-min-ios {
      margin-top: 12px;
      padding: 12px 14px;
      border-radius: 14px;
      text-align: left;
      background: rgba(15, 23, 42, 0.55);
      border: 1px solid rgba(148, 163, 184, 0.2);
    }

    .install-min-ios.is-hidden {
      display: none !important;
    }

    .install-min-ios__text {
      margin: 0 0 8px;
      font-size: 0.8rem;
      line-height: 1.45;
      color: #e2e8f0;
    }

    .install-min-ios__dismiss {
      padding: 4px 0;
      border: none;
      background: none;
      font-size: 0.72rem;
      font-weight: 700;
      color: #a78bfa;
      cursor: pointer;
      font-family: inherit;
      text-decoration: underline;
    }

    /* Bottom nav — glass ligero, legible, acento premium */
    .bottom-nav {
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      bottom: calc(10px + var(--safe-bottom));
      width: calc(100% - 24px);
      max-width: 420px;
      height: var(--nav-h);
      padding: 7px 8px;
      border-radius: 999px;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2px;
      isolation: isolate;
      background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.16) 0%,
        rgba(22, 18, 38, 0.52) 38%,
        rgba(8, 6, 18, 0.78) 100%
      );
      border: 1px solid rgba(255, 255, 255, 0.22);
      backdrop-filter: blur(22px) saturate(1.35);
      -webkit-backdrop-filter: blur(22px) saturate(1.35);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.14) inset,
        0 -1px 0 rgba(0, 0, 0, 0.2) inset,
        0 10px 36px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(124, 58, 237, 0.12);
    }

    .bottom-nav::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      background: linear-gradient(
        105deg,
        rgba(124, 58, 237, 0.14) 0%,
        transparent 42%,
        rgba(34, 211, 238, 0.08) 100%
      );
      opacity: 0.75;
      pointer-events: none;
      z-index: 0;
    }

    .bottom-nav > .nav-item {
      position: relative;
      z-index: 1;
    }

    .nav-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px;
      padding: 5px 2px;
      min-width: 0;
      border-radius: 14px;
      color: rgba(226, 232, 240, 0.92);
      font-size: 0.54rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      line-height: 1.1;
      transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
      cursor: pointer;
      border: none;
      background: transparent;
      font-family: inherit;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
      -webkit-tap-highlight-color: transparent;
    }

    .nav-item svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
      flex-shrink: 0;
    }

    .nav-item.active {
      color: #fff;
      background: linear-gradient(145deg, rgba(167, 139, 250, 0.42), rgba(109, 40, 217, 0.38));
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12) inset,
        0 2px 12px rgba(124, 58, 237, 0.35);
      text-shadow: 0 0 14px rgba(196, 181, 253, 0.45), 0 1px 2px rgba(0, 0, 0, 0.5);
    }

    .nav-item:active {
      transform: scale(0.96);
    }

    /* Hub de herramientas dentro de la app (módulos verticales ancho completo) */
    #screen-tools .panel-section.tools-hub--tight {
      padding-top: var(--space-sm);
      padding-bottom: var(--space-md);
    }

    .tools-hub__header .section-title {
      max-width: 22em;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.22;
    }

    .tools-hub__lead {
      margin: 0 0 var(--space-lg);
      font-size: clamp(0.92rem, 2.7vw, 1.02rem);
      line-height: 1.55;
      color: var(--muted);
      max-width: 22em;
      margin-left: auto;
      margin-right: auto;
    }

    .tools-hub__kicker {
      margin: 0 0 14px;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #a78bfa;
    }

    .tools-hub__stack {
      display: flex;
      flex-direction: column;
      gap: 20px;
      width: 100%;
      padding: 4px 0 22px;
    }

    /* Tarjetas módulo — estética clara tipo Apple (vidrio + sombras suaves) */
    .tools-card {
      width: 100%;
      max-width: 100%;
      border-radius: 22px;
      overflow: visible;
      position: relative;
      background: rgba(255, 255, 255, 0.72);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.95);
      box-shadow:
        0 0 0 1px rgba(15, 23, 42, 0.04),
        0 2px 8px rgba(15, 23, 42, 0.04),
        0 12px 40px rgba(91, 33, 182, 0.08),
        0 24px 64px -20px rgba(15, 23, 42, 0.12);
      transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .tools-card:hover {
        transform: translateY(-3px);
        box-shadow:
          0 0 0 1px rgba(15, 23, 42, 0.05),
          0 8px 24px rgba(15, 23, 42, 0.07),
          0 20px 50px rgba(91, 33, 182, 0.1),
          0 32px 72px -24px rgba(15, 23, 42, 0.14);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .tools-card {
        transition: none;
      }
      .tools-card:hover {
        transform: none;
      }
    }

    .tools-card--module {
      display: flex;
      flex-direction: column;
      align-items: stretch;
    }

    .tools-card__module-head {
      padding: 20px 20px 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-width: 0;
    }

    .tools-card__module-body {
      margin: 16px 16px 18px;
      border-radius: 18px;
      overflow: hidden;
      background: rgba(245, 245, 247, 0.92);
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 1px 2px rgba(0, 0, 0, 0.04);
      min-width: 0;
    }

    .tools-card__module-body--carousel {
      overflow: visible;
      background: transparent;
      border: none;
      box-shadow: none;
      margin-bottom: 8px;
    }

    .tools-card__eyebrow {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #636366;
    }

    .tools-card__title {
      margin: 0;
      font-size: 1.14rem;
      font-weight: 700;
      letter-spacing: -0.035em;
      line-height: 1.2;
      color: #1d1d1f;
    }

    .tools-card__desc {
      margin: 0;
      font-size: 0.84rem;
      line-height: 1.48;
      color: #636366;
    }

    .tools-card__link {
      margin-top: 4px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #5b21b6;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      width: fit-content;
    }

    .tools-card__link:hover {
      color: #7c3aed;
    }

    /* —— Mock personalización (colores + fotos, sin video) —— */
    .tools-brand-mock {
      padding: 16px 14px 18px;
    }

    .tools-brand-mock__palette {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }

    .tools-brand-mock__swatch {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.95);
      box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    }

    .tools-brand-mock__media {
      display: flex;
      gap: 10px;
    }

    .tools-brand-mock__thumb {
      flex: 1;
      min-width: 0;
      height: 80px;
      border-radius: 14px;
      border: 1px solid rgba(0, 0, 0, 0.06);
      overflow: hidden;
      position: relative;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    }

    .tools-brand-mock__thumb--photo {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        url("https://images.unsplash.com/photo-1546069901-ba9599a7e63c?w=320&q=75") center / cover;
    }

    .tools-brand-mock__thumb--photo2 {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        url("https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=320&q=75") center / cover;
    }

    .tools-brand-mock__caption {
      margin: 14px 0 0;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-align: center;
      color: #636366;
    }

    /* —— Tarjeta mapa —— */
    .tools-mini-map {
      position: relative;
      height: 200px;
      border-radius: inherit;
      overflow: hidden;
    }

    .tools-map-frame {
      position: absolute;
      inset: 0;
      border-radius: inherit;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.06);
      background: #e8e8ed;
    }

    .tools-map-frame::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      border-radius: inherit;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
      z-index: 1;
    }

    .tools-map-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      filter: saturate(1.05) contrast(1.02);
      transform: scale(1.02);
      transform-origin: center;
    }

    .tools-pin-neon {
      position: absolute;
      left: 50%;
      top: 46%;
      z-index: 3;
      width: 36px;
      height: 36px;
      margin: -36px 0 0 -18px;
      pointer-events: none;
      filter: drop-shadow(0 0 10px rgba(212, 249, 78, 0.95)) drop-shadow(0 0 18px rgba(156, 82, 255, 0.8));
      animation: toolsPinFloat 2.6s ease-in-out infinite;
    }

    .tools-pin-neon svg {
      display: block;
      width: 100%;
      height: 100%;
    }

    @keyframes toolsPinFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    @media (prefers-reduced-motion: reduce) {
      .tools-pin-neon {
        animation: none;
      }
    }

    /* —— Checkout WhatsApp simulado —— */
    .tools-wa-mock {
      padding: 14px 14px 16px;
    }

    .tools-wa-mock__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 11px 13px;
      margin-bottom: 8px;
      border-radius: 14px;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .tools-wa-mock__row:last-of-type {
      margin-bottom: 12px;
    }

    .tools-wa-mock__name {
      font-size: 0.84rem;
      font-weight: 600;
      color: #1d1d1f;
    }

    .tools-wa-mock__meta {
      font-size: 0.74rem;
      color: #86868b;
      margin-top: 2px;
    }

    .tools-wa-mock__qty {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      font-weight: 700;
      color: #5b21b6;
      font-variant-numeric: tabular-nums;
    }

    .tools-wa-mock__badge {
      min-width: 28px;
      height: 28px;
      padding: 0 7px;
      border-radius: 10px;
      background: linear-gradient(145deg, #f5f3ff 0%, #ede9fe 100%);
      border: 1px solid rgba(91, 33, 182, 0.15);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.78rem;
      font-weight: 700;
      color: #5b21b6;
      box-shadow: 0 2px 8px rgba(91, 33, 182, 0.1);
    }

    .tools-wa-mock__total {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 4px 12px;
      font-size: 0.86rem;
      font-weight: 700;
      color: #1d1d1f;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      margin-bottom: 4px;
    }

    .tools-wa-mock__total span:last-child {
      color: #047857;
      font-variant-numeric: tabular-nums;
    }

    .tools-wa-mock__btn {
      width: 100%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 14px;
      border: 1px solid rgba(212, 249, 78, 0.45);
      background: linear-gradient(145deg, #25d366, #128c7e);
      color: #fff;
      font-size: 0.88rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      cursor: default;
      box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.2) inset,
        0 8px 28px rgba(37, 211, 102, 0.35),
        0 0 24px rgba(212, 249, 78, 0.2);
      animation: toolsWaGlow 1.8s ease-in-out infinite;
    }

    .tools-wa-mock__btn svg {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
    }

    @keyframes toolsWaGlow {
      0%, 100% {
        transform: scale(1) translateX(0) translateZ(0);
        box-shadow:
          0 0 0 1px rgba(0, 0, 0, 0.2) inset,
          0 8px 28px rgba(37, 211, 102, 0.35),
          0 0 24px rgba(212, 249, 78, 0.22);
      }
      25% {
        transform: scale(1.015) translateX(-2px) translateZ(0);
        box-shadow:
          0 0 0 1px rgba(0, 0, 0, 0.2) inset,
          0 9px 32px rgba(37, 211, 102, 0.42),
          0 0 28px rgba(156, 82, 255, 0.28);
      }
      50% {
        transform: scale(1.02) translateX(0) translateZ(0);
        box-shadow:
          0 0 0 1px rgba(0, 0, 0, 0.2) inset,
          0 10px 36px rgba(37, 211, 102, 0.5),
          0 0 32px rgba(156, 82, 255, 0.35);
      }
      75% {
        transform: scale(1.015) translateX(2px) translateZ(0);
        box-shadow:
          0 0 0 1px rgba(0, 0, 0, 0.2) inset,
          0 9px 32px rgba(37, 211, 102, 0.42),
          0 0 28px rgba(212, 249, 78, 0.3);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .tools-wa-mock__btn {
        animation: none;
      }
    }

    /* —— Carrusel ofertas (Swiper) —— */
    .tools-offers-swiper {
      width: 100%;
      padding-bottom: 36px !important;
    }

    .tools-offers-swiper .swiper-slide {
      width: 88%;
      max-width: 360px;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    }

    .tools-offers-swiper .swiper-slide img {
      display: block;
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .tools-offers-swiper .swiper-pagination-bullet {
      background: rgba(0, 0, 0, 0.15);
      opacity: 1;
    }

    .tools-offers-swiper .swiper-pagination-bullet-active {
      background: #5b21b6;
      box-shadow: 0 2px 8px rgba(91, 33, 182, 0.35);
    }

    /* —— Push / retención —— */
    .tools-push-mock {
      padding: 20px 18px 22px;
      text-align: center;
    }

    .tools-push-mock__icon {
      width: 54px;
      height: 54px;
      margin: 0 auto 14px;
      border-radius: 16px;
      background: linear-gradient(180deg, #fff 0%, #f5f5f7 100%);
      border: 1px solid rgba(0, 0, 0, 0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #5b21b6;
      box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    }

    .tools-push-mock__icon svg {
      width: 26px;
      height: 26px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
    }

    .tools-push-mock__count {
      font-size: clamp(2rem, 8vw, 2.6rem);
      font-weight: 700;
      letter-spacing: -0.04em;
      line-height: 1;
      background: linear-gradient(90deg, #5b21b6, #059669);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      font-variant-numeric: tabular-nums;
      margin-bottom: 10px;
    }

    .tools-push-mock__label {
      font-size: 0.84rem;
      line-height: 1.45;
      color: #636366;
      max-width: 22em;
      margin: 0 auto;
    }

    .tools-push-mock__pulse {
      margin-top: 14px;
      height: 4px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.06);
      overflow: hidden;
    }

    .tools-push-mock__pulse::after {
      content: "";
      display: block;
      height: 100%;
      width: 40%;
      border-radius: inherit;
      background: linear-gradient(90deg, #7c3aed, #34d399);
      animation: toolsPushBar 2.2s ease-in-out infinite;
    }

    @keyframes toolsPushBar {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(280%); }
    }

    @media (prefers-reduced-motion: reduce) {
      .tools-push-mock__pulse::after {
        animation: none;
        width: 72%;
        margin: 0 auto;
        transform: none;
      }
    }

    /* —— Kit reseñas Google —— */
    .tools-google-mock {
      padding: 4px 2px 2px;
    }

    .tools-google-mock__panel {
      border-radius: 16px;
      padding: 14px 14px 16px;
      background: #fff;
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }

    .tools-google-mock__row {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }

    .tools-google-mock__g {
      flex-shrink: 0;
      width: 42px;
      height: 42px;
      border-radius: 11px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.15rem;
      color: #4285f4;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .tools-google-mock__headlines {
      flex: 1;
      min-width: 0;
    }

    .tools-google-mock__biz {
      margin: 0 0 5px;
      font-size: 0.84rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #1d1d1f;
    }

    .tools-google-mock__stars {
      display: flex;
      gap: 1px;
      font-size: 0.95rem;
      line-height: 1;
      letter-spacing: -0.08em;
    }

    .tools-google-mock__stars span {
      color: #eab308;
    }

    .tools-google-mock__meta {
      margin: 5px 0 0;
      font-size: 0.72rem;
      font-weight: 600;
      color: #86868b;
    }

    .tools-google-mock__quote {
      margin: 0;
      padding: 11px 13px;
      border-radius: 12px;
      background: #f5f5f7;
      border-left: 3px solid #7c3aed;
      font-size: 0.8rem;
      line-height: 1.5;
      color: #424245;
      font-style: italic;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }

    /* —— Ritmo visual: franjas claras y separadores con imagen —— */
    .skin-light {
      background: #ffffff;
      color: #111827;
      width: 100vw;
      max-width: 100vw;
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      box-sizing: border-box;
      padding: var(--space-4xl) 0 calc(var(--space-4xl) + var(--space-sm));
      box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06), 0 40px 80px rgba(15, 23, 42, 0.08);
    }

    .skin-light > .panel-section {
      max-width: var(--wrap-max);
      margin-left: auto;
      margin-right: auto;
      padding-left: max(var(--wrap-pad), env(safe-area-inset-left, 0px));
      padding-right: max(var(--wrap-pad), env(safe-area-inset-right, 0px));
    }

    .skin-light::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--accent-start), var(--brand-purple-light), var(--accent-end));
      background-size: 200% 100%;
      animation: barShift 5s ease-in-out infinite;
    }

    @keyframes barShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    .skin-light .section-title { color: #0f172a; }
    .skin-light .section-lead { color: #475569; }
    .skin-light .glass-card {
      background: #f8fafc;
      border-color: #e2e8f0;
      box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    }
    .skin-light .step {
      background: #fff;
      border-color: #e2e8f0;
    }
    .skin-light .step p { color: #64748b; }
    .skin-light .step h3 { color: #0f172a; }

    /* —— Cómo funciona: escenario app + gráfico (estilo sobrio / Apple-like) —— */
    .flow-section {
      position: relative;
      overflow: hidden;
    }

    .flow-section::after {
      content: "";
      position: absolute;
      width: 420px;
      height: 420px;
      top: -120px;
      right: -140px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 70%);
      pointer-events: none;
      animation: flowOrbDrift 20s ease-in-out infinite;
    }

    @keyframes flowOrbDrift {
      0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
      50% { transform: translate(-24px, 20px) scale(1.08); opacity: 0.85; }
    }

    .flow-header {
      text-align: center;
      max-width: 340px;
      margin: 0 auto var(--space-xl);
      position: relative;
      z-index: 1;
    }

    .flow-eyebrow {
      margin: 0 0 var(--space-sm);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #94a3b8;
    }

    .flow-title.section-title {
      font-size: clamp(1.5rem, 6vw, 1.85rem);
      font-weight: 800;
      letter-spacing: -0.035em;
      line-height: 1.15;
      margin: 0 0 var(--space-md);
    }

    .flow-header .section-lead {
      margin: 0;
      font-size: 0.94rem;
      line-height: 1.65;
    }

    .flow-stage {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      gap: var(--space-xl);
      margin-bottom: var(--space-xl);
    }

    .flow-viz {
      position: relative;
      border-radius: 32px;
      background: linear-gradient(180deg, #fafbfc 0%, #ffffff 45%, #f8fafc 100%);
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 24px 48px -12px rgba(15, 23, 42, 0.1),
        0 0 0 1px rgba(15, 23, 42, 0.03);
      padding: var(--space-lg) var(--space-md) var(--space-md);
      overflow: hidden;
      animation: flowVizFloat 7s ease-in-out infinite;
    }

    @keyframes flowVizFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    .flow-viz__mesh {
      position: absolute;
      inset: -40%;
      background:
        radial-gradient(ellipse 55% 45% at 15% 35%, rgba(99, 102, 241, 0.14), transparent 55%),
        radial-gradient(ellipse 50% 40% at 85% 25%, rgba(124, 58, 237, 0.1), transparent 50%),
        radial-gradient(ellipse 60% 50% at 50% 90%, rgba(14, 165, 233, 0.08), transparent 55%);
      animation: flowMeshMove 22s ease-in-out infinite alternate;
      pointer-events: none;
    }

    @keyframes flowMeshMove {
      0% { transform: translate(0, 0) rotate(0deg); }
      100% { transform: translate(6%, -4%) rotate(4deg); }
    }

    .flow-viz__grid {
      position: absolute;
      inset: 0;
      opacity: 0.35;
      background-image:
        linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
      background-size: 100% 28px, 36px 100%;
      pointer-events: none;
    }

    .flow-viz__svg {
      position: relative;
      z-index: 1;
      width: 100%;
      height: auto;
      display: block;
      max-height: 240px;
    }

    .flow-viz__label {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid rgba(15, 23, 42, 0.06);
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #94a3b8;
    }

    .flow-viz__live {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: #64748b;
    }

    .flow-viz__live::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #9c52ff;
      box-shadow: 0 0 0 3px rgba(156, 82, 255, 0.35);
      animation: flowLivePulse 2s ease-in-out infinite;
    }

    @keyframes flowLivePulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.65; transform: scale(0.92); }
    }

    .flow-line-anim {
      stroke-dasharray: 480;
      stroke-dashoffset: 480;
      animation: flowDrawLine 3.2s cubic-bezier(0.45, 0, 0.2, 1) forwards, flowLineShimmer 5s ease-in-out 3.2s infinite;
    }

    @keyframes flowDrawLine {
      to { stroke-dashoffset: 0; }
    }

    @keyframes flowLineShimmer {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.82; }
    }

    .flow-area-anim {
      opacity: 0;
      animation: flowAreaIn 1.4s ease 0.8s forwards;
    }

    @keyframes flowAreaIn {
      to { opacity: 1; }
    }

    .flow-node {
      transform-origin: center;
      transform-box: fill-box;
      animation: flowNodePulse 2.8s ease-in-out infinite;
    }

    .flow-node--2 { animation-delay: 0.5s; }
    .flow-node--3 { animation-delay: 1s; }

    @keyframes flowNodePulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.12); opacity: 0.9; }
    }

    .flow-bar rect {
      transform-box: fill-box;
      transform-origin: center bottom;
      animation: flowBarGrow 2.4s cubic-bezier(0.34, 1.2, 0.64, 1) infinite alternate;
    }

    .flow-bar rect:nth-child(1) { animation-delay: 0s; }
    .flow-bar rect:nth-child(2) { animation-delay: 0.2s; }
    .flow-bar rect:nth-child(3) { animation-delay: 0.4s; }
    .flow-bar rect:nth-child(4) { animation-delay: 0.6s; }
    .flow-bar rect:nth-child(5) { animation-delay: 0.8s; }

    @keyframes flowBarGrow {
      0% { transform: scaleY(0.35); }
      100% { transform: scaleY(1); }
    }

    .flow-phone {
      margin: 0 auto;
      max-width: 300px;
      position: relative;
      z-index: 1;
    }

    .flow-phone__shell {
      border-radius: 36px;
      padding: 10px;
      background: linear-gradient(160deg, #e2e8f0 0%, #f1f5f9 40%, #cbd5e1 100%);
      box-shadow:
        0 32px 64px -16px rgba(15, 23, 42, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.75) inset;
      animation: flowPhoneTilt 10s ease-in-out infinite;
    }

    @keyframes flowPhoneTilt {
      0%, 100% { transform: perspective(800px) rotateY(0deg) rotateX(0deg); }
      50% { transform: perspective(800px) rotateY(-4deg) rotateX(2deg); }
    }

    .flow-phone__screen {
      border-radius: 28px;
      overflow: hidden;
      background: #0f172a;
      position: relative;
      min-height: 200px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    .flow-phone__notch {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 88px;
      height: 24px;
      background: #020617;
      border-radius: 0 0 14px 14px;
      z-index: 2;
    }

    .flow-phone__content {
      padding: 36px 18px 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .flow-phone__row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 0.78rem;
      font-weight: 600;
      color: #e2e8f0;
      letter-spacing: -0.01em;
      opacity: 0.45;
      transform: scale(0.98);
      transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
    }

    .flow-phone__row.is-on {
      opacity: 1;
      transform: scale(1);
      border-color: rgba(156, 82, 255, 0.4);
      box-shadow: 0 8px 24px rgba(156, 82, 255, 0.22);
      background: rgba(255, 255, 255, 0.1);
    }

    .flow-phone__step {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      font-weight: 800;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
    }

    .flow-phone__row.is-on .flow-phone__step {
      background: linear-gradient(135deg, #9c52ff, #7b38d8);
      color: #ffffff;
    }

    .flow-phone__row:nth-child(1) {
      animation: flowPhoneRow1 9s ease-in-out infinite;
    }

    .flow-phone__row:nth-child(2) {
      animation: flowPhoneRow2 9s ease-in-out infinite;
    }

    .flow-phone__row:nth-child(3) {
      animation: flowPhoneRow3 9s ease-in-out infinite;
    }

    .flow-phone__row:nth-child(1) .flow-phone__step {
      animation: flowPhoneBadge1 9s ease-in-out infinite;
    }

    .flow-phone__row:nth-child(2) .flow-phone__step {
      animation: flowPhoneBadge2 9s ease-in-out infinite;
    }

    .flow-phone__row:nth-child(3) .flow-phone__step {
      animation: flowPhoneBadge3 9s ease-in-out infinite;
    }

    @keyframes flowPhoneRow1 {
      0%, 28% {
        opacity: 1;
        transform: scale(1);
        border-color: rgba(156, 82, 255, 0.4);
        box-shadow: 0 8px 24px rgba(156, 82, 255, 0.22);
        background: rgba(255, 255, 255, 0.1);
      }
      33%, 100% {
        opacity: 0.42;
        transform: scale(0.98);
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: none;
        background: rgba(255, 255, 255, 0.06);
      }
    }

    @keyframes flowPhoneRow2 {
      0%, 28% {
        opacity: 0.42;
        transform: scale(0.98);
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: none;
        background: rgba(255, 255, 255, 0.06);
      }
      33%, 61% {
        opacity: 1;
        transform: scale(1);
        border-color: rgba(156, 82, 255, 0.4);
        box-shadow: 0 8px 24px rgba(156, 82, 255, 0.22);
        background: rgba(255, 255, 255, 0.1);
      }
      66%, 100% {
        opacity: 0.42;
        transform: scale(0.98);
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: none;
        background: rgba(255, 255, 255, 0.06);
      }
    }

    @keyframes flowPhoneRow3 {
      0%, 61% {
        opacity: 0.42;
        transform: scale(0.98);
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: none;
        background: rgba(255, 255, 255, 0.06);
      }
      66%, 94% {
        opacity: 1;
        transform: scale(1);
        border-color: rgba(156, 82, 255, 0.4);
        box-shadow: 0 8px 24px rgba(156, 82, 255, 0.22);
        background: rgba(255, 255, 255, 0.1);
      }
      100% {
        opacity: 0.42;
        transform: scale(0.98);
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: none;
        background: rgba(255, 255, 255, 0.06);
      }
    }

    @keyframes flowPhoneBadge1 {
      0%, 28% { background: linear-gradient(135deg, #9c52ff, #7b38d8); color: #ffffff; }
      33%, 100% { background: rgba(255, 255, 255, 0.12); color: #fff; }
    }

    @keyframes flowPhoneBadge2 {
      0%, 28% { background: rgba(255, 255, 255, 0.12); color: #fff; }
      33%, 61% { background: linear-gradient(135deg, #9c52ff, #7b38d8); color: #ffffff; }
      66%, 100% { background: rgba(255, 255, 255, 0.12); color: #fff; }
    }

    @keyframes flowPhoneBadge3 {
      0%, 61% { background: rgba(255, 255, 255, 0.12); color: #fff; }
      66%, 94% { background: linear-gradient(135deg, #9c52ff, #7b38d8); color: #ffffff; }
      94.01%, 100% { background: rgba(255, 255, 255, 0.12); color: #fff; }
    }

    .flow-phone__track {
      margin-top: 4px;
      height: 3px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      overflow: hidden;
    }

    .flow-phone__track span {
      display: block;
      height: 100%;
      width: 0%;
      border-radius: inherit;
      background: linear-gradient(90deg, #9c52ff, #c4a3ff);
      animation: flowTrackFill 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }

    @keyframes flowTrackFill {
      0% { width: 0%; }
      12% { width: 33%; }
      40% { width: 33%; }
      52% { width: 66%; }
      78% { width: 66%; }
      90% { width: 100%; }
      100% { width: 100%; }
    }

    .flow-steps-min {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      z-index: 1;
    }

    .flow-steps-min li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: var(--space-md);
      align-items: flex-start;
      padding: var(--space-md) var(--space-lg);
      border-radius: 20px;
      background: #ffffff;
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
      animation: flowCardLift 5s ease-in-out infinite;
    }

    .flow-step-copy {
      min-width: 0;
    }

    .flow-steps-min li:nth-child(2) { animation-delay: 1.6s; }
    .flow-steps-min li:nth-child(3) { animation-delay: 3.2s; }

    @keyframes flowCardLift {
      0%, 100% { transform: translateY(0); box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04); }
      50% { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07); }
    }

    .flow-steps-min__num {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
      color: #0f172a;
      font-size: 0.95rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      letter-spacing: -0.02em;
    }

    .flow-steps-min h3 {
      margin: 0 0 4px;
      font-size: 0.95rem;
      font-weight: 700;
      color: #0f172a;
      letter-spacing: -0.02em;
    }

    .flow-steps-min p {
      margin: 0;
      font-size: 0.88rem;
      line-height: 1.62;
      color: #64748b;
    }

    .flow-step-card__mockup {
      margin-top: 12px;
      width: 100%;
      border-radius: 16px;
      border: 1px solid rgba(148, 163, 184, 0.28);
      background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
      overflow: hidden;
      grid-column: 1 / -1;
    }

    .flow-step-card__mockup--map {
      background: linear-gradient(170deg, #0b1120 0%, #111827 55%, #1f2937 100%);
      border-color: rgba(99, 102, 241, 0.45);
      position: relative;
      min-height: 190px;
    }

    .flow-step-card__mockup--map::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 30%, rgba(148, 163, 184, 0.2) 1px, transparent 1.5px),
        radial-gradient(circle at 75% 65%, rgba(99, 102, 241, 0.2) 1px, transparent 1.5px);
      background-size: 36px 36px, 44px 44px;
      opacity: 0.7;
      pointer-events: none;
    }

    .map-dark-card {
      position: relative;
      z-index: 1;
      height: 190px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .map-dark-card iframe {
      width: 100%;
      height: 100%;
      display: block;
      border: 0;
      /* Mapa real de Google con look nocturno */
      filter: grayscale(0.22) invert(0.9) hue-rotate(185deg) saturate(0.85) contrast(1.02) brightness(0.9);
    }

    .schedule-card {
      padding: 14px 12px;
      display: grid;
      gap: 10px;
      background: linear-gradient(160deg, #ffffff 0%, #f5f3ff 100%);
    }

    .schedule-card__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 4px 4px 6px;
    }

    .schedule-card__head span {
      font-size: 0.74rem;
      color: #64748b;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .schedule-pill {
      font-size: 0.66rem;
      font-weight: 800;
      color: #1f2937;
      background: linear-gradient(135deg, #d9f99d, #a3e635);
      border-radius: 999px;
      padding: 5px 10px;
      box-shadow: 0 6px 16px rgba(132, 204, 22, 0.25);
    }

    .schedule-card__row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 11px 12px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(167, 139, 250, 0.24);
      font-size: 0.82rem;
      color: #334155;
      box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
    }

    .schedule-card__row.is-active {
      border-color: rgba(109, 40, 217, 0.45);
      box-shadow:
        inset 0 0 0 1px rgba(109, 40, 217, 0.12),
        0 6px 18px rgba(109, 40, 217, 0.14);
    }

    .schedule-card__row strong {
      color: #6d28d9;
      font-weight: 700;
      letter-spacing: -0.01em;
    }

    .social-card {
      padding: 14px 12px;
      display: grid;
      gap: 10px;
      background: linear-gradient(160deg, #ffffff 0%, #f8f5ff 100%);
    }

    .social-card__label {
      font-size: 0.77rem;
      color: #64748b;
      font-weight: 600;
      letter-spacing: 0.01em;
    }

    .social-card__icons {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .social-icon {
      width: 36px;
      height: 36px;
      border-radius: 11px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(145deg, #ede9fe 0%, #ddd6fe 100%);
      border: 1px solid rgba(139, 92, 246, 0.3);
      color: #7c3aed;
      box-shadow: 0 8px 14px rgba(124, 58, 237, 0.14);
    }

    .social-icon svg {
      width: 17px;
      height: 17px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    @media (prefers-reduced-motion: reduce) {
      .flow-section::after,
      .flow-viz,
      .flow-viz__mesh,
      .flow-line-anim,
      .flow-area-anim,
      .flow-node,
      .flow-bar rect,
      .flow-phone__shell,
      .flow-phone__track span,
      .flow-steps-min li,
      .flow-viz__live::before,
      .flow-phone__row:nth-child(1),
      .flow-phone__row:nth-child(2),
      .flow-phone__row:nth-child(3),
      .flow-phone__row:nth-child(1) .flow-phone__step,
      .flow-phone__row:nth-child(2) .flow-phone__step,
      .flow-phone__row:nth-child(3) .flow-phone__step {
        animation: none !important;
      }
      .flow-line-anim { stroke-dashoffset: 0 !important; }
      .flow-area-anim { opacity: 1 !important; }
      .flow-phone__track span { width: 100% !important; }
      .flow-phone__row {
        opacity: 1 !important;
        transform: none !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
        background: rgba(255, 255, 255, 0.08) !important;
        box-shadow: none !important;
      }
      .flow-phone__row .flow-phone__step {
        background: rgba(255, 255, 255, 0.12) !important;
        color: #fff !important;
      }
    }

    /* Planes: cañón + canvas confeti (incrustado) */
    .plans-celebration-wrap {
      margin: var(--space-lg) auto var(--space-xl);
      width: 100%;
      max-width: 250px;
      box-sizing: border-box;
    }

    #screen-buy .plans-celebration-wrap {
      opacity: 1 !important;
      visibility: visible !important;
    }

    .plans-popper-container {
      position: relative;
      width: 100%;
      max-width: 250px;
      aspect-ratio: 1;
      margin: 0 auto;
      background-color: transparent;
      overflow: visible;
    }

    .plans-confetti-canvas {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 2;
    }

    .plans-cone-wrapper {
      position: absolute;
      bottom: 6%;
      left: 6%;
      width: 30%;
      height: 40%;
      z-index: 1;
      transform-origin: center bottom;
      transform: rotate(35deg);
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      filter: drop-shadow(2px 6px 8px rgba(0, 0, 0, 0.15));
    }

    @keyframes plansCanonRecoil {
      0% { transform: rotate(35deg) scale(1); }
      20% { transform: rotate(42deg) scale(0.85) translate(-5px, 8px); }
      50% { transform: rotate(30deg) scale(1.05) translate(3px, -3px); }
      80% { transform: rotate(37deg) scale(0.95); }
      100% { transform: rotate(35deg) scale(1); }
    }

    .plans-cone-wrapper.plans-cone-fire-anim {
      animation: plansCanonRecoil 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }

    .plans-cone-svg {
      width: 100%;
      height: 100%;
    }

    @media (prefers-reduced-motion: reduce) {
      .plans-cone-wrapper {
        cursor: default;
        filter: none;
      }
      .plans-cone-wrapper.plans-cone-fire-anim {
        animation: none;
      }
    }

    .type-display {
      font-size: clamp(1.25rem, 5vw, 1.55rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      line-height: 1.25;
      margin: 16px 0 0;
      background: linear-gradient(120deg, #f5f3ff 0%, #a78bfa 38%, var(--brand-lime) 95%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: textGradient 6s ease infinite;
    }

    @keyframes textGradient {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    .hero-kicker {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.2em;
      color: var(--brand-lime-soft);
      margin-bottom: var(--space-md);
      animation: kickerGlow 2.8s ease-in-out infinite;
    }

    @keyframes kickerGlow {
      0%, 100% { opacity: 0.85; text-shadow: 0 0 0 transparent; }
      50% { opacity: 1; text-shadow: 0 0 22px rgba(156, 82, 255, 0.5); }
    }

    .gradient-accent {
      background: linear-gradient(135deg, #f5d0fe 0%, #c084fc 35%, #9c52ff 65%, var(--brand-lime-soft) 100%);
      background-size: 160% 160%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: textGradient 5s ease infinite;
    }

    .float-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      opacity: 0.35;
      pointer-events: none;
      animation: orbFloat 8s ease-in-out infinite;
    }

    .float-orb.o1 {
      width: 120px;
      height: 120px;
      background: #7c3aed;
      top: -20px;
      right: -30px;
      animation-delay: 0s;
    }

    .float-orb.o2 {
      width: 90px;
      height: 90px;
      background: #a3e635;
      bottom: 10%;
      left: -20px;
      animation-delay: -3s;
    }

    @keyframes orbFloat {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(8px, -12px) scale(1.08); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.08s; }
    .reveal-delay-2 { transition-delay: 0.16s; }
    .reveal-delay-3 { transition-delay: 0.24s; }

    .skin-light .faq .faq-item {
      background: #fff;
      border-color: #e2e8f0;
      box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    }

    .skin-light .faq .faq-item summary {
      color: #0f172a;
    }

    .skin-light .faq-item__toggle {
      background: rgba(124, 58, 237, 0.1);
      color: #7c3aed;
    }

    .skin-light .faq .faq-item[open] .faq-item__toggle {
      background: rgba(124, 58, 237, 0.16);
      color: #6d28d9;
    }

    .skin-light .faq-item__body p {
      color: #475569;
    }

    .skin-light .urgency {
      background: linear-gradient(135deg, #fffbeb 0%, #fef9c3 55%, #fef3c7 100%);
      border: 1px solid rgba(250, 204, 21, 0.55);
      box-shadow:
        0 0 0 1px rgba(253, 224, 71, 0.45),
        0 10px 36px rgba(234, 179, 8, 0.14);
      color: #92400e;
    }

    .hero-block { position: relative; overflow: hidden; }
    .hero-block .float-orb { z-index: 0; }
    .hero-block > *:not(.float-orb):not(.hero-cinema__media):not(.hero-cinema__content):not(.hero-cinema__stage) {
      position: relative;
      z-index: 1;
    }

    h2 .type-display {
      display: inline;
      font-size: inherit;
      line-height: inherit;
      margin: 0;
      vertical-align: baseline;
    }

    .install-lab {
      margin: var(--space-2xl) 0 var(--space-3xl);
      padding: clamp(20px, 5vw, 28px);
      border-radius: 32px;
      background: linear-gradient(165deg, #050308 0%, #12081f 42%, #1a0d2e 100%);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
      position: relative;
      overflow: hidden;
    }

    .install-lab::before {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(124, 58, 237, 0.22), transparent 65%);
      right: -80px;
      top: -100px;
      pointer-events: none;
    }

    .install-lab__head {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 22rem;
      margin-left: auto;
      margin-right: auto;
    }

    .install-lab__head h2 {
      margin: 0 0 6px;
      font-size: clamp(1.05rem, 3.8vw, 1.25rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      color: #fafafa;
    }

    .install-lab__head p {
      margin: 0;
      color: rgba(209, 213, 219, 0.85);
      font-size: 0.8rem;
      line-height: 1.35;
    }

    .install-lab__grid {
      margin-top: var(--space-lg);
      display: grid;
      gap: 14px;
      position: relative;
      z-index: 1;
    }

    @media (min-width: 720px) {
      .install-lab__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }
    }

    .install-card {
      border-radius: 26px;
      padding: 0;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      overflow: hidden;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    }

    .install-card__body {
      padding: 14px 14px 16px;
    }

    .install-visual__badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin: 0 0 10px;
      padding: 5px 11px;
      border-radius: 999px;
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #e9d5ff;
      background: rgba(124, 58, 237, 0.28);
      border: 1px solid rgba(167, 139, 250, 0.35);
    }

    .install-visual__frame {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      background: #0c0618;
      aspect-ratio: 9 / 16;
      max-height: min(52vh, 320px);
      margin: 0 auto 12px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
    }

    .install-visual__media {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .install-visual__caption {
      margin: 0 0 12px;
      font-size: 0.78rem;
      font-weight: 600;
      color: rgba(248, 250, 252, 0.92);
      text-align: center;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }

    .install-ios-micro {
      margin: 0;
      padding: 10px 12px;
      border-radius: 18px;
      background: rgba(0, 0, 0, 0.35);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .install-ios-micro__row {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      gap: 6px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .install-ios-micro__item {
      flex: 1;
      text-align: center;
      min-width: 0;
    }

    .install-ios-micro__icon {
      width: 36px;
      height: 36px;
      margin: 0 auto 6px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(124, 58, 237, 0.2);
      color: #ddd6fe;
    }

    .install-ios-micro__icon svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .install-ios-micro__label {
      font-size: 0.65rem;
      font-weight: 700;
      color: rgba(226, 232, 240, 0.88);
      line-height: 1.2;
      letter-spacing: 0.02em;
    }

    .install-actions {
      margin-top: 4px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
    }

    .install-cta {
      border: 0;
      border-radius: 999px;
      padding: 12px 18px;
      color: #fff;
      font-weight: 700;
      font-size: 0.78rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      width: 100%;
      box-sizing: border-box;
      background: linear-gradient(135deg, #a78bfa, #7c3aed 50%, #6d28d9);
      box-shadow: 0 14px 32px rgba(109, 40, 217, 0.38);
    }
    .install-cta[disabled] { opacity: 0.58; cursor: not-allowed; box-shadow: none; }
    .install-cta--ghost {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: none;
      width: auto;
      flex: 1;
      min-width: 0;
    }
    .install-cta svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .install-ios-guide.is-hidden { display: none; }
    .install-note {
      margin: 10px 0 0;
      color: rgba(165, 180, 252, 0.9);
      font-size: 0.7rem;
      line-height: 1.35;
      text-align: center;
    }

    @media (prefers-reduced-motion: reduce) {
      .install-visual__media {
        animation: none;
      }
    }

    /* Navegadores in-app (FB / IG / TikTok): salida a navegador nativo */
    body.iap-ios-lock {
      overflow: hidden;
      touch-action: none;
    }

    .iap-android-bar {
      display: none;
      position: fixed;
      left: 14px;
      right: 14px;
      bottom: calc(var(--nav-h) + var(--safe-bottom) + 14px);
      z-index: 1150;
      padding: 12px 14px;
      border-radius: 18px;
      background: linear-gradient(145deg, rgba(18, 12, 40, 0.96), rgba(30, 14, 58, 0.94));
      border: 1px solid rgba(139, 92, 246, 0.45);
      box-shadow:
        0 0 0 1px rgba(163, 230, 53, 0.12) inset,
        0 20px 48px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(139, 92, 246, 0.2);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      max-width: 440px;
      margin: 0 auto;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .iap-android-bar.is-visible {
      display: flex;
      animation: pwaRiseIn 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .iap-android-bar__text {
      flex: 1;
      min-width: 140px;
      font-size: 0.78rem;
      line-height: 1.45;
      color: #e2e8f0;
      font-weight: 600;
    }

    .iap-android-bar__btn {
      flex-shrink: 0;
      border: 0;
      border-radius: 14px;
      padding: 12px 18px;
      font-weight: 800;
      font-size: 0.82rem;
      letter-spacing: 0.02em;
      color: #fff;
      cursor: pointer;
      font-family: inherit;
      background: linear-gradient(135deg, #a855f7, #8b5cf6 45%, #7c3aed);
      box-shadow: 0 10px 28px rgba(139, 92, 246, 0.45);
    }

    .iap-ios-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 1200;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      padding: max(20px, env(safe-area-inset-top, 0px)) 22px calc(24px + var(--safe-bottom));
      background: linear-gradient(180deg, rgba(6, 4, 16, 0.94) 0%, rgba(18, 10, 42, 0.97) 45%, rgba(8, 6, 20, 0.98) 100%);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      text-align: center;
    }

    .iap-ios-overlay.is-visible {
      display: flex;
      animation: iapOverlayIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }

    @keyframes iapOverlayIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .iap-ios-overlay__title {
      margin: 0 0 12px;
      max-width: 22ch;
      font-size: clamp(1.15rem, 4.5vw, 1.35rem);
      font-weight: 900;
      letter-spacing: -0.02em;
      line-height: 1.25;
      color: #f8fafc;
      text-shadow: 0 2px 24px rgba(139, 92, 246, 0.35);
    }

    .iap-ios-overlay__arrow-wrap {
      position: absolute;
      top: max(8px, env(safe-area-inset-top, 0px));
      right: max(12px, env(safe-area-inset-right, 0px));
      width: 120px;
      height: 100px;
      pointer-events: none;
    }

    .iap-ios-overlay__arrow {
      position: absolute;
      top: 18px;
      right: 8px;
      width: 72px;
      height: 72px;
      color: #c4b5fd;
      filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.65));
      animation: iapArrowNudge 1.35s ease-in-out infinite;
    }

    .iap-ios-overlay__dots {
      position: absolute;
      top: 6px;
      right: 4px;
      display: flex;
      gap: 4px;
      padding: 6px 8px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .iap-ios-overlay__dots span {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #f1f5f9;
      opacity: 0.9;
    }

    @keyframes iapArrowNudge {
      0%, 100% { transform: translate(0, 0) rotate(-12deg); opacity: 0.95; }
      50% { transform: translate(-10px, 14px) rotate(-18deg); opacity: 1; }
    }

    .iap-ios-overlay__copy {
      margin: 100px auto 0;
      max-width: 32ch;
      font-size: 0.95rem;
      line-height: 1.55;
      color: #cbd5e1;
      font-weight: 500;
    }

    .iap-ios-overlay__hint {
      margin-top: auto;
      padding-top: 20px;
      font-size: 0.75rem;
      color: #94a3b8;
      max-width: 36ch;
    }

    @keyframes pwaRiseIn {
      0% { opacity: 0; transform: translateY(20px) scale(0.97); }
      100% { opacity: 1; transform: translateY(0) scale(1); }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .hero-scroll-hint {
        animation: none;
        transform: translateX(-50%);
        opacity: 0.95;
      }
      .hero-cinema__shine {
        animation: none;
        opacity: 0.65;
      }
      .hero-cinema__video {
        opacity: 0.35;
      }
      .type-display,
      .gradient-accent,
      .hero-kicker,
      .skin-light::before,
      .float-orb,
      .gadget-stage::after,
      .gadget-phone,
      .gadget-pill,
      .gadget-chat-bubble,
      .gadget-sku,
      .gadget-wa-bar,
      .gadget-float,
      .bonus-gift::before,
      .bonus-gift-cta-shell,
      .bonus-gift-cta__glow {
        animation: none !important;
      }
      .bonus-gift-cta-shell {
        background: linear-gradient(125deg, #9c52ff, #7b38d8);
        background-size: 100% 100%;
      }
      .gadget-chat-bubble {
        opacity: 1;
        transform: none;
      }
      .reveal {
        opacity: 1;
        transform: none;
        transition: none;
      }
      .infra-section::before,
      .infra-card,
      .infra-ring,
      .infra-dash,
      .infra-pulse-dot,
      .infra-srv-ping,
      .plat-section::before,
      .plat-hub__core,
      .plat-card,
      .plat-icon-aura,
      .plat-icon-stack,
      .plat-brand-svg--tt,
      .plat-wa-ripples span {
        animation: none !important;
      }
      .infra-ring {
        stroke-dashoffset: 0 !important;
      }
      .plat-icon-stack,
      .plat-brand-svg--tt {
        transform: none !important;
      }
      .plat-icon-aura {
        opacity: 0.28 !important;
        transform: none !important;
      }
      .plat-card:hover {
        transform: none !important;
      }
      .install-lab { animation: none !important; }
      .iap-ios-overlay__arrow { animation: none !important; }
      .iap-android-bar.is-visible { animation: none !important; }
      .app-screen { transition: none !important; }
    }

    /* Refuerzo visibilidad SPA (evita pantalla en blanco por .reveal u otros) */
    .app-screen.active .reveal {
      opacity: 1;
      transform: none;
    }
