*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --red: #E05C4B;
      --red-dim: rgba(224,92,75,0.15);
      --red-glow: rgba(224,92,75,0.35);
      --dark: #0a0a0a;
      --dark2: #141414;
      --dark3: #1c1c1c;
      --border: #252525;
      --text: #c8c8c8;
      --text-muted: #777;
      --white: #f2f2ee;
    }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    .page-wrapper {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      position: relative;
      overflow-x: hidden;
    }

    body {
      font-family: 'DM Sans', -apple-system, sans-serif;
      background: var(--dark);
      color: var(--text);
      line-height: 1.6;
    }

    /* ── TIPOGRAFÍA DISPLAY ── */
    h1 { letter-spacing: -0.04em; line-height: 1.05; font-weight: 800; }
    h2 { letter-spacing: -0.02em; line-height: 1.2; font-weight: 800; }
    h3, h4, h5, h6 { 
      font-family: 'Inter', sans-serif; 
      font-weight: 700; 
      letter-spacing: -0.02em; 
      line-height: 1.2; 
      color: var(--white); 
    }
    h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

    /* Los números grandes del Hero y de la barra de stats */
    .stat-num, .num, .step-num {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.05em; /* Bastante apretados para look premium */
    line-height: 1;
    }
    .step-num {
   font-size: 1.1rem;
    /* Asegúrate de que no tengan padding extra que los haga ver anchos */
    }
    /* ── CTA FLOTANTE ── */
    .cta-float {
      position: fixed;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 100;
      background: var(--red);
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      padding: 14px 36px;
      border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 8px 32px var(--red-glow);
      white-space: nowrap;
      letter-spacing: 0.2px;
      transition: transform 0.15s, box-shadow 0.15s;
      font-family: 'DM Sans', sans-serif;
    }
    .cta-float:hover {
      transform: translateX(-50%) translateY(-2px);
      box-shadow: 0 14px 40px rgba(224,92,75,0.55);
    }

    /* ── NAV ── */
    nav {
      padding: 18px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      background: rgba(10,10,10,0.92);
      backdrop-filter: blur(16px);
      z-index: 50;
    }
    nav img { height: 30px; }
    nav a.nav-btn {
      background: var(--red);
      color: #fff;
      padding: 9px 20px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.2px;
    }

    /* ── HERO SPLIT ── */
    .hero {
      min-height: 92vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 80px 32px 60px;
      background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(140,30,20,0.22) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 30%, rgba(100,20,10,0.15) 0%, transparent 70%);
      position: relative;
    }
    .hero-inner {
      display: flex;
      align-items: center;
      gap: 72px;
      max-width: 1020px;
      width: 100%;
      margin-bottom: 72px;
    }
    .hero-text { flex: 1; text-align: left; }
    .hero-logo {
      height: 150px;
      width: auto;
      display: block;
      margin-bottom: 20px;
      object-fit: contain;
    }
    .hero-text .eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 20px;
      display: block;
    }
    .hero-text h1 {
      font-size: clamp(38px, 5.5vw, 62px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.08;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }
    .hero-text h1 span { color: var(--red); }
    .hero-text .hero-sub {
      font-size: 17px;
      color: var(--text-muted);
      max-width: 440px;
      margin-bottom: 36px;
      line-height: 1.65;
    }
    .hero-cta-btn {
      display: inline-block;
      background: var(--red);
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      padding: 14px 32px;
      border-radius: 10px;
      text-decoration: none;
      box-shadow: 0 6px 24px var(--red-glow);
      transition: transform 0.15s, box-shadow 0.15s;
      font-family: 'DM Sans', sans-serif;
    }
    .hero-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 32px rgba(224,92,75,0.5);
    }
    /* ── BOTONES DEL CARRUSEL REDISEÑADOS ── */
    .carousel-btn {
      position: absolute;
      top: 45%; /* Centrado vertical respecto al celular */
      transform: translateY(-50%);
      background: var(--red); /* Usamos el rojo Peckit */
      color: white;
      border: none;
      width: 50px; /* Más grandes */
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      z-index: 20; /* Por encima de todo */
      font-size: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(224, 92, 75, 0.4); /* Sombra con el color de la marca */
      transition: all 0.2s ease;
    }

    .carousel-btn:hover {
      transform: translateY(-50%) scale(1.1);
      background: #ff7664; /* Un rojo un poco más brillante al pasar el mouse */
    }

    /* Posicionamiento a los lados (fuera del área central) */
    .carousel-btn.prev {
      left: -70px; /* Se alejan del celular hacia la izquierda */
    }

    .carousel-btn.next {
      right: -70px; /* Se alejan del celular hacia la derecha */
    }

    /* ── LAYERED IMAGES (IMÁGENES APILADAS) ── */
    .layered-images {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      /* Damos un pequeño margen para que la foto de atrás no choque con el texto */
      margin-right: 20px; 
    }

    .layered-images .img-front {
      position: relative;
      z-index: 2; /* Arriba */
      box-shadow: -10px 20px 40px rgba(0,0,0,0.6); /* Sombra para separar de la de atrás */
      transition: transform 0.3s ease;
    }

    .layered-images .img-back {
      position: absolute;
      top: 5%; /* Un poco más abajo */
      right: -30%; /* La asomamos por la derecha */
      z-index: 1; /* Atrás */
      opacity: 0.65; /* Medio difuminada */
      transform: scale(0.9) rotate(6deg); /* La ladeamos un poco para darle estilo */
      transition: all 0.4s ease;
      filter: blur(1px); /* Opcional: difuminado de profundidad de campo */
    }

    /* Efecto al pasar el mouse (Micro-interacción premium) */
    .layered-images:hover .img-front {
      transform: translateY(-5px);
    }
    .layered-images:hover .img-back {
      right: -45%; /* Se asoma más */
      opacity: 0.9;
      filter: blur(0);
      transform: scale(0.95) rotate(10deg);
    }

    /* ── SOPORTE PARA FILAS INVERTIDAS (.reverse) ── */
    .feature-row.reverse .layered-images {
      margin-right: 0;
      margin-left: 20px;
    }
    .feature-row.reverse .img-back {
      right: auto;
      left: -30%; /* La asomamos por la izquierda */
      transform: scale(0.9) rotate(-6deg);
    }
    .feature-row.reverse .layered-images:hover .img-back {
      left: -45%;
      transform: scale(0.95) rotate(-10deg);
    }

        /* ── TELÉFONOS APILADOS EN "CÓMO TE ENCUENTRAN" ── */
    .discover-layered-phones {
      position: relative;
      width: 220px;  /* Ancho del lienzo para que quepan ambos */
      height: 340px; /* Alto fijo para que las flechas se alineen bien */
      margin: 0 auto;
    }

    /* Forzamos el ancho exacto para matar el "marco gigante" */
    .discover-step .discover-layered-phones .front-phone {
      width: 170px !important;
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: 2;
      box-shadow: -10px 15px 25px rgba(0,0,0,0.6);
    }

        /* ── TELÉFONOS APILADOS (Base por defecto: asoma a la derecha) ── */
    .discover-step .discover-layered-phones .back-phone {
      width: 150px !important;
      position: absolute;
      top: 10px;
      right: 0;
      left: auto;
      z-index: 1;
      opacity: 0.8;
      transform: rotate(5deg);
      filter: blur(0.5px);
      transition: all 0.3s ease;
    }

    .discover-layered-phones:hover .back-phone {
      right: -15px;
      transform: rotate(50deg);
      opacity: 1;
      filter: blur(0);
    }

    /* ── MODIFICADOR ESPECÍFICO (Solo asoma a la izquierda) ── */
    .discover-step .discover-layered-phones .back-phone.peek-left {
      right: auto; /* Anula la regla base de la derecha */
      left: 0;     /* Lo ancla a la izquierda */
      transform: rotate(-5deg); /* Inclinación negativa */
    }

    .discover-layered-phones:hover .back-phone.peek-left {
      left: -50px; /* Sale hacia la izquierda al pasar el mouse */
      right: auto;
      transform: rotate(-8deg); /* Aumenta la inclinación izquierda */
    }

    /* ── FLECHAS PREMIUM ANIMADAS ── */
    .discover-arrow {
      font-size: 20px !important;
      color: var(--red) !important;
      background: var(--red-dim);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 140px !important; /* Baja la flecha para centrarla con los teléfonos */
      border: 1px solid rgba(224,92,75,0.3);
      box-shadow: 0 4px 16px var(--red-glow);
      opacity: 1 !important;
      animation: float-arrow 1.5s infinite ease-in-out;
    }

    /* Animación de palpitación hacia la derecha */
    @keyframes float-arrow {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(6px); }
    }

    /* En celulares, ocultamos la flecha porque los pasos quedan uno debajo del otro */
    @media (max-width: 950px) {
      .discover-arrow { display: none !important; }
      .discover-layered-phones { height: 320px; }
    }

    /* ── AJUSTE PARA MÓVILES ── */
    @media (max-width: 700px) {
      .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        background: rgba(224, 92, 75, 0.85); /* Un poco más discretas en móvil */
      }
      .carousel-btn.prev {
        left: 10px; /* En móvil las metemos un poco para que no se corten */
      }
      .carousel-btn.next {
        right: 10px;
      }
    }

    .carousel-section { text-align: center; padding: 50px 20px 100px; }

    .carousel-container {
    position: relative;
    max-width: 500px; /* Aumentamos el ancho total visible */
    margin: 0 auto;
    }

    .carousel-track {
      display: flex; /* Pone las imágenes en fila */
      will-change: transform;
      width: 100%;
      transform-style: preserve-3d;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }

    .carousel-viewport {
        overflow: visible; /* Permitimos que las fotos se "salgan" a los lados */
        mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); /* Opcional: difumina los bordes del carrusel */
    }

    .carousel-slide {
        min-width: 70%; /* Cada foto ocupa el 70% del ancho */
        transition: transform 0.5s, opacity 0.5s, filter 0.5s;
        opacity: 0.3; /* Difuminado por defecto */
        filter: blur(4px); 
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: scale(0.9); /* Las fotos laterales se ven un poco más pequeñas */
    }

    /* LA FOTO ACTIVA: Se ve clara y grande */
    .carousel-slide.active {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
        z-index: 2;
    }

    /* Phone mockup */
    .hero-phone { flex: 0 0 280px; }
    .phone-frame {
      background: #181818;
      border: 1.5px solid #303030;
      border-radius: 34px;
      padding: 8px;
      position: relative;
      width: 100%;
      margin: 0 auto;
      height: auto; /* El marco se adapta al alto de la foto */
      display: block;
    }

    .phone-frame img {
      width: 100%;
      height: auto; /* La foto mantiene su proporción original */
      border-radius: 26px;
      display: block;
    }
    .phone-lg { max-width: 300px; } /* Para el Hero o fotos principales */
    .phone-md { max-width: 240px; } /* Tamaño intermedio */
    .phone-sm { max-width: 160px; } /* Para el Pasaporte o comparativas */
    .phone-frame::before {
      content: '';
      position: absolute;
      top: 12px;
      left: 50%;
      transform: translateX(-50%);
      width: 40px; /* Reducimos un poco */
      height: 4px;
      background: rgba(42, 42, 42, 0.8); /* Lo hacemos más discreto */
      border-radius: 10px;
      z-index: 2;
    }
  

    /* Stats row */
    .hero-stats {
      display: flex;
      gap: 48px;
      flex-wrap: wrap;
      justify-content: center;
      padding-top: 48px;
      border-top: 1px solid var(--border);
      width: 100%;
      max-width: 960px;
    }
    .hero-stat { text-align: center; }
    .stat-num {
      font-size: 34px;
      font-weight: 800;
      color: var(--red);
      display: block;
      letter-spacing: -1px;
    }
    .stat-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 2px;
      display: block;
    }

    /* ── SECTION BASE ── */
    .section {
      max-width: 960px;
      margin: 0 auto;
      padding: 72px 32px;
    }
    .section-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 14px;
      display: block;
    }
    h2 {
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 800;
      color: var(--white);
      line-height: 1.12;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }
    h2 span { color: var(--red); }
    .intro-text {
      font-size: 17px;
      line-height: 1.8;
      color: var(--text);
      border-left: 3px solid var(--red);
      padding-left: 20px;
      margin-bottom: 64px;
      max-width: 680px;
    }

    /* ── DISCOVER FLOW — 3 pantallas en fila ── */
    .discover-flow { margin-bottom: 80px; overflow: hidden; }
    .discover-steps {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 36px;
    }
    .discover-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      flex: 0 0 200px;
    }
    .discover-step .phone-frame { width: 170px; }
    .discover-label {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      text-align: center;
      line-height: 1.4;
    }
    .discover-arrow {
      font-size: 20px;
      color: var(--red);
      font-weight: 700;
      margin-top: 70px;
      opacity: 0.7;
    }

    /* ── FEATURE ROWS alternadas ── */
    .features-header {
    text-align: center;
    padding: 80px 32px 40px; /* Mucho aire arriba para separar del Discover Flow */
    max-width: 800px;
    margin: 0 auto;
    }

    .features-header h2 {
        margin-bottom: 20px;
        /* Ya heredará el estilo 'Inter' y letter-spacing que configuramos */
    }

    .features-intro-sub {
        font-size: 17px;
        color: var(--text-muted);
        line-height: 1.7;
        max-width: 580px;
        margin: 0 auto;
    }

    /* Ajuste opcional para las filas que vienen después */
    .feature-rows {
        padding-top: 20px; /* Reducimos el padding superior de las filas porque ya lo tiene el header */
    }
    .feature-rows {
      display: flex;
      flex-direction: column;
      gap: 88px;
      margin-bottom: 72px;
    }
    .feature-row {
      display: flex;
      align-items: center;
      gap: 64px;
    }
    .feature-row.reverse { flex-direction: row-reverse; }
    .feature-row-text { flex: 1; }
    .feature-row-text .feature-icon {
      width: 44px;
      height: 44px;
      background: var(--red-dim);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 16px;
      border: 1px solid rgba(224,92,75,0.2);
    }
    .feature-row-text h3 {
      font-size: 24px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 12px;
      letter-spacing: -0.3px;
    }
    .feature-row-text p {
      font-size: 15.5px;
      color: var(--text);
      line-height: 1.7;
      max-width: 420px;
    }
    .step-body p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .feature-row-img { flex: 0 0 210px; }
    .feature-row-img .phone-frame { width: 210px; }

    /* ── STATS BAR ── */
    .stats-bar {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 0;
    }
    .stats-bar .item {
      background: var(--dark2);
      padding: 28px 16px;
      text-align: center;
    }
    .stats-bar .num {
      font-size: 26px;
      font-weight: 800;
      color: var(--red);
      display: block;
      margin-bottom: 4px;
      letter-spacing: -0.5px;
    }
    .stats-bar .lbl {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* ── PASAPORTE SECTION ── */
    .passport-section {
      background: linear-gradient(160deg, #0d0d0d 0%, #140806 50%, #0d0d0d 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 96px 32px;
      position: relative;
      overflow: hidden;
    }
    .passport-section::before {
      content: '';
      position: absolute;
      top: -100px; left: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(224,92,75,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .passport-inner {
      max-width: 960px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 72px;
    }
    .passport-phones {
      flex: 0 0 auto;
      display: flex;
      position: relative;
    }
    .passport-phone-1 { width: 160px; position: relative; z-index: 2; }
    .passport-phone-2 {
      width: 150px;
      margin-left: -28px;
      margin-top: 36px;
      opacity: 0.8;
      z-index: 1;
    }
    .passport-text { flex: 1; }
    .passport-text p.body-text {
      font-size: 16px;
      color: var(--text);
      line-height: 1.8;
      margin-top: 20px;
    }
    .passport-text strong { color: var(--white); }

    /* ── GRUPO SECTION ── */
    .group-section {
      padding: 80px 32px;
      max-width: 960px;
      margin: 0 auto;
    }
    .group-inner {
      display: flex;
      align-items: center;
      gap: 72px;
    }
    .group-text { flex: 1; }
    .group-text p.body-text {
      font-size: 16px;
      color: var(--text);
      line-height: 1.8;
      margin-top: 20px;
    }
    .group-phones {
      flex: 0 0 auto;
      display: flex;
    }
    .group-phone-1 { width: 160px; position: relative; z-index: 2; }
    .group-phone-2 {
      width: 150px;
      margin-left: -28px;
      margin-top: 36px;
      opacity: 0.8;
    }

    /* ── DIVIDER ── */
    hr { border: none; border-top: 1px solid var(--border); }

    /* ── FOUNDERS BANNER ── */
    .founders-banner {
      background: var(--dark2);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
      margin-bottom: 64px;
      position: relative;
      overflow: hidden;
    }
    .founders-banner::after {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 260px; height: 260px;
      background: radial-gradient(circle, rgba(224,92,75,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .founders-banner .tag {
      display: inline-block;
      background: var(--red-dim);
      color: var(--red);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 20px;
      border: 1px solid rgba(224,92,75,0.25);
      margin-bottom: 18px;
    }
    .founders-banner h3 {
      font-size: 22px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 12px;
      letter-spacing: -0.3px;
    }
    .founders-banner h3 span { color: var(--red); }
    .founders-banner p {
      font-size: 15px;
      color: var(--text);
      line-height: 1.75;
      max-width: 600px;
    }

    /* ── STEPS ── */
    .steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-bottom: 48px;
    }
    .step {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      position: relative;
    }
    .step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 19px;
      top: 48px;
      width: 2px;
      height: calc(100% - 8px);
      background: var(--border);
    }
    .step-num {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      font-weight: 800;
      color: #fff;
      position: relative;
      z-index: 1;
      font-family: 'Syne', sans-serif;
    }
    .step-body { padding: 8px 0 40px; }
    .step-body h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 6px;
    }
    .step-body p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* ── CHECKLIST ── */
    .checklist {
      background: var(--dark2);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 24px;
      margin-bottom: 48px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .check-item { display: flex; gap: 14px; align-items: flex-start; }
    .check-icon {
      width: 22px; height: 22px; min-width: 22px;
      background: var(--red-dim);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; margin-top: 1px;
    }
    .check-item p { font-size: 14px; color: var(--text); line-height: 1.65; }
    .check-item strong { color: var(--white); }

    /* ── URGENCY ── */
    .urgency {
      background: var(--dark3);
      border: 1px solid rgba(224,92,75,0.22);
      border-radius: 16px;
      padding: 28px 32px;
      margin-bottom: 56px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .urgency-icon { font-size: 22px; margin-top: 2px; }
    .urgency h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
    .urgency p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

    /* ── CTA SECTION ── */
    .cta-section {
      text-align: center;
      padding: 0 32px 0;
      position: relative;
      overflow: hidden;
    }

    /* Bloque superior con imagen de fondo */
    .cta-visual {
      position: relative;
      padding: 100px 32px 80px;
      overflow: hidden;
      border-top: 1px solid var(--border);
    }
    .cta-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url('assets/Portada-local.jpeg');
      background-size: cover;
      background-position: center 30%;
      opacity: 0.12;
      z-index: 0;
      filter: blur(2px);
    }
    .cta-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
        rgba(10,10,10,0.3) 0%,
        rgba(10,10,10,0.1) 40%,
        rgba(10,10,10,0.85) 100%);
      z-index: 0;
    }
    .cta-visual > * { position: relative; z-index: 1; }

    /* Mockups flotantes en el CTA */
    .cta-phones {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 48px;
      align-items: flex-end;
    }
    .cta-phone-side {
      width: 120px;
      opacity: 0.6;
      margin-bottom: 24px;
      transition: opacity 0.3s;
    }
    .cta-phone-center {
      width: 180px;
      filter: drop-shadow(0 24px 48px rgba(224,92,75,0.3));
    }
    .cta-phones:hover .cta-phone-side { opacity: 0.85; }

    .cta-section h2 { margin-bottom: 14px; font-size: clamp(32px, 5vw, 52px); }
    .cta-section > .cta-visual > p {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 40px;
    }

    /* Bloque inferior con contacto */
    .cta-bottom {
      padding: 48px 32px 120px;
      background: var(--dark);
    }

    .cta-btn {
      display: inline-block;
      background: var(--red);
      color: #fff;
      font-size: 17px;
      font-weight: 600;
      padding: 18px 52px;
      border-radius: 12px;
      text-decoration: none;
      box-shadow: 0 8px 32px var(--red-glow);
      transition: transform 0.15s, box-shadow 0.15s;
      margin-bottom: 16px;
      font-family: 'DM Sans', sans-serif;
    }
    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(224,92,75,0.55);
    }
    .cta-note { font-size: 13px; color: var(--text-muted); display: block; margin-bottom: 0; }

    /* ── CONTACT CHIPS ── */
    .contact-chips {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .contact-chips a {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #161616;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 13px 22px;
      color: var(--text);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: border-color 0.15s, color 0.15s;
    }
    .contact-chips a:hover { border-color: var(--red); color: var(--white); }

    /* ── FOOTER ── */
    .footer {
      border-top: 1px solid var(--border);
      padding: 32px 24px;
      text-align: center;
    }
    .footer a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 14px;
    }
    .footer a:hover { color: var(--white); }

    /* ── RESPONSIVE TABLET (950px) ── */
    @media (max-width: 950px) {
      /* Hero */
      .hero { min-height: auto; padding: 48px 20px 40px; }
      .hero-inner { flex-direction: column; gap: 24px; margin-bottom: 32px; }
      .hero-text { text-align: center; }
      .hero-text .hero-sub { max-width: 100%; }
      .hero-phone { flex: 0 0 auto; width: 180px; }

      /* Stats 2x2 compactas */
      .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 24px 0;
        max-width: 100%;
        border-top: 1px solid var(--border);
      }
      .hero-stat {
        background: var(--dark2);
        padding: 12px;
        border-radius: 10px;
        border: 1px solid var(--border);
      }
      .stat-num { font-size: 22px; }
      .stat-label { font-size: 9px; letter-spacing: 1px; }

      /* Discover */
      .discover-arrow { display: none !important; }
      .discover-steps { gap: 24px; }
      .discover-step { flex: 0 0 100%; }
      .discover-step .phone-frame { width: 180px; }

      /* Feature rows */
      .feature-row,
      .feature-row.reverse { flex-direction: column; gap: 32px; text-align: center; }
      .feature-row-text p { max-width: 100%; }
      .feature-row-img { width: 220px; margin: 0 auto; }
      .feature-rows { gap: 56px; }

      /* Layered images mobile */
      .layered-images { margin-right: 0 !important; margin-left: 0 !important; }
      .layered-images .img-back { right: -18% !important; left: auto !important; }
      .feature-row.reverse .img-back { left: -18% !important; right: auto !important; }

      /* Pasaporte y grupo */
      .passport-inner { flex-direction: column; text-align: center; gap: 36px; }
      .passport-phones { justify-content: center; }
      .passport-phone-1 { width: 130px; }
      .passport-phone-2 { width: 120px; }
      .passport-section { padding: 64px 20px; }

      .group-inner { flex-direction: column; text-align: center; gap: 36px; }
      .group-phones { justify-content: center; }
      .group-phone-1 { width: 130px; }
      .group-phone-2 { width: 120px; }
      .group-section { padding: 56px 20px; }

      /* Misc */
      .urgency { padding: 20px; }
      .founders-banner { padding: 24px 20px; }
      nav { padding: 14px 16px; }

      /* CTA final */
      .cta-phones { gap: 8px; }
      .cta-phone-side { width: 80px; }
      .cta-phone-center { width: 130px; }
      .cta-visual { padding: 56px 20px 48px; }
      .cta-bottom { padding: 36px 20px 100px; }

      /* Pricing */
      .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

      /* Section padding */
      .section { padding: 48px 20px; }
      .features-header { padding: 40px 20px 24px; }
    }

    /* ── RESPONSIVE MÓVIL (480px) ── */
    @media (max-width: 480px) {
      /* Hero más compacto */
      .hero { padding: 36px 16px 32px; }
      .hero-inner { gap: 20px; margin-bottom: 24px; }
      .hero-phone { width: 160px; }
      .hero-text h1 { font-size: clamp(30px, 9vw, 42px); }
      .hero-text .hero-sub { font-size: 15px; margin-bottom: 24px; }
      .hero-cta-btn { font-size: 14px; padding: 12px 24px; }

      /* Stats aún más compactas */
      .hero-stats { gap: 8px; padding: 20px 0; }
      .hero-stat { padding: 10px 8px; }
      .stat-num { font-size: 19px; }
      .stat-label { font-size: 8px; }

      /* Carrusel */
      .carousel-btn { width: 36px; height: 36px; font-size: 16px; }
      .carousel-btn.prev { left: 8px; }
      .carousel-btn.next { right: 8px; }

      /* CTA flotante */
      .cta-float { font-size: 13px; padding: 12px 20px; bottom: 14px; }

      /* Sections */
      .section { padding: 40px 16px; }

      /* Discover */
      .discover-layered-phones { height: 260px; }

      /* CTA final simplificada */
      .cta-phone-side { display: none; }
      .cta-phone-center { width: 150px; }
      .cta-phones { margin-bottom: 32px; }
      .cta-btn { font-size: 15px; padding: 15px 32px; }

      /* Pricing */
      .pricing-card { padding: 28px 20px; }

      /* Nav */
      nav { padding: 12px 16px; }
      nav img { height: 26px; }
      nav a.nav-btn { padding: 8px 16px; font-size: 12px; }
    }

    /* ── PRICING SECTION (SUSCRIPCIONES) ── */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      max-width: 960px;
      margin: 0 auto;
    }

    .pricing-card {
      background: var(--dark2);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px 32px;
      position: relative;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease, border-color 0.2s ease;
    }

    .pricing-card:hover {
      transform: translateY(-5px);
      border-color: rgba(224,92,75,0.4);
    }

    .pricing-card.popular {
      background: linear-gradient(180deg, #181110 0%, var(--dark2) 100%);
      border: 1px solid var(--red);
      box-shadow: 0 8px 32px var(--red-dim);
    }

    .popular-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--red);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 20px;
    }

    .pricing-card h3 {
      font-size: 20px;
      margin-bottom: 16px;
    }

    .pricing-card .price {
      font-size: 42px;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      font-family: 'Inter', sans-serif;
      letter-spacing: -1px;
      margin-bottom: 12px;
    }

    .pricing-card .price span {
      font-size: 16px;
      color: var(--text-muted);
      font-weight: 500;
      letter-spacing: 0;
    }

    .pricing-card .plan-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .plan-divider {
      border: none;
      border-top: 1px solid var(--border);
      margin-bottom: 24px;
    }

    .plan-features {
      list-style: none;
      margin-bottom: 32px;
      flex-grow: 1; /* Empuja el botón hacia abajo si las listas tienen distinto tamaño */
    }

    .plan-features li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14.5px;
      color: var(--text);
      margin-bottom: 16px;
      line-height: 1.5;
    }

    .plan-features li.disabled {
      color: var(--text-muted);
      opacity: 0.5;
    }

    .check-icon {
      color: var(--red);
      font-weight: 800;
      font-size: 14px;
    }

    .disabled .check-icon {
      color: var(--text-muted);
    }

    .plan-btn {
      display: block;
      text-align: center;
      background: var(--red);
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      padding: 14px 24px;
      border-radius: 10px;
      text-decoration: none;
      transition: all 0.2s ease;
      font-family: 'DM Sans', sans-serif;
    }

    .plan-btn:hover {
      background: #ff7664;
    }

    .plan-btn.outline {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--white);
    }

    .plan-btn.outline:hover {
      border-color: var(--text);
      background: rgba(255,255,255,0.05);
    }
    /* ── ANIMACIONES DE SCROLL (UI/UX) ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 950px) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
img { max-width: 100%; height: auto; object-fit: cover; }