/*
  ════════════════════════════════════════════════════════════════════════
  BLINDA — INDEX.CSS
  Landing page principal · www.blinda.com.co
  ────────────────────────────────────────────────────────────────────────
  Diseño: industrial-premium oscuro, acento ámbar/dorado
  Tipografía: Bebas Neue (display) + Barlow (cuerpo)
  Paleta: #0d0e10 raíz · #e8b84b oro · #ffffff blanco
  ────────────────────────────────────────────────────────────────────────
  Índice:
  1.  Variables y tokens
  2.  Reset y base
  3.  Utilidades globales
  4.  Navbar
  5.  Menú móvil
  6.  Hero
  7.  Sección: Cómo funciona
  8.  Sección: Equipos
  9.  Sección: Por qué Blinda
  10. Sección: Precio
  11. Sección: Testimonios
  12. Sección: FAQ
  13. Sección: CTA final
  14. Footer
  15. Botón flotante WhatsApp
  16. Animaciones de entrada (scroll)
  17. Media queries — responsive completo
  ════════════════════════════════════════════════════════════════════════
*/


/* ════════════════════════════════════════════════════════════════════════
   1. VARIABLES Y TOKENS
   ════════════════════════════════════════════════════════════════════════ */

:root {
  /* ─── Paleta base ─── */
  --c-root:        #0d0e10;   /* fondo raíz absoluto */
  --c-surface:     #13151a;   /* superficies oscuras (cards, panels) */
  --c-surface-2:   #1a1d24;   /* superficie secundaria */
  --c-surface-3:   #21252f;   /* superficie terciaria */
  --c-border:      #ffffff0d; /* borde muy sutil */
  --c-border-mid:  #ffffff1a; /* borde medio */
  --c-border-hi:   #ffffff2e; /* borde destacado */

  /* ─── Paleta clara (secciones blancas) ─── */
  --c-light:       #f5f4f0;   /* fondo claro ligeramente cálido */
  --c-light-2:     #eceae4;   /* superficie clara */
  --c-light-border:#e0ddd5;   /* borde claro */

  /* ─── Acento dorado — identidad visual Blinda ─── */
  --gold:          #e8b84b;
  --gold-light:    #f0ca72;
  --gold-dark:     #c99a30;
  --gold-glow:     rgba(232, 184, 75, 0.08);
  --gold-glow-md:  rgba(232, 184, 75, 0.14);
  --gold-border:   rgba(232, 184, 75, 0.22);

  /* ─── Texto ─── */
  --t-primary:     #f2f0ea;   /* texto principal (cálido, no blanco puro) */
  --t-secondary:   #9a9690;   /* texto secundario */
  --t-muted:       #5c5a56;   /* texto muy tenue */
  --t-on-light:    #1a1a16;   /* texto sobre fondos claros */
  --t-on-light-2:  #4a4840;   /* texto secundario sobre fondos claros */

  /* ─── Semánticos ─── */
  --green:         #3dba76;
  --green-bg:      rgba(61, 186, 118, 0.10);
  --red:           #e05252;

  /* ─── Tipografía ─── */
  --font-display:  'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body:     'Barlow', 'Helvetica Neue', sans-serif;

  /* ─── Espaciado y layout ─── */
  --max-w:         1200px;
  --section-px:    clamp(20px, 5vw, 80px);
  --section-py:    clamp(72px, 10vw, 120px);
  --navbar-h:      68px;

  /* ─── Radios ─── */
  --r-sm:          6px;
  --r-md:          12px;
  --r-lg:          20px;
  --r-xl:          32px;

  /* ─── Sombras ─── */
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.25);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.45);
  --shadow-gold:   0 0 32px rgba(232, 184, 75, 0.18);

  /* ─── Transiciones ─── */
  --t-fast:        150ms ease;
  --t-base:        220ms ease;
  --t-slow:        380ms ease;
}


/* ════════════════════════════════════════════════════════════════════════
   2. RESET Y BASE
   ════════════════════════════════════════════════════════════════════════ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--t-primary);
  background: var(--c-root);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Scroll personalizado ─── */
::-webkit-scrollbar        { width: 6px; }
::-webkit-scrollbar-track  { background: var(--c-root); }
::-webkit-scrollbar-thumb  { background: var(--c-surface-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ─── Selección de texto ─── */
::selection {
  background: var(--gold);
  color: #000;
}

/* ─── Focus visible — accesibilidad ─── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

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

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

ul, ol { list-style: none; }

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

address { font-style: normal; }


/* ════════════════════════════════════════════════════════════════════════
   3. UTILIDADES GLOBALES
   ════════════════════════════════════════════════════════════════════════ */

/* ─── Accesibilidad: solo para lectores de pantalla ─── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Contenedor de sección ─── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-py) var(--section-px);
}

/* ─── Header de sección ─── */
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--t-on-light);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--t-on-light-2);
  max-width: 560px;
  margin: 0 auto;
}

.section-header.light h2 { color: var(--t-primary); }
.section-header.light p  { color: var(--t-secondary); }

/* ─── Etiqueta de sección (pill encima del título) ─── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

/* ─── Sección oscura (fondo surface) ─── */
.section-dark {
  background: var(--c-surface);
  position: relative;
}

/* ─── CTA row (botón centrado al final de sección) ─── */
.section-cta-row {
  text-align: center;
  margin-top: clamp(40px, 6vw, 64px);
}

/* ─── Botones ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: background var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
  white-space: nowrap;
  letter-spacing: 0.2px;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-block { width: 100%; justify-content: center; }
.btn-primary.btn-xl {
  font-size: 17px;
  padding: 18px 42px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--t-primary);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border-hi);
  cursor: pointer;
  transition: border-color var(--t-base), color var(--t-base), transform var(--t-fast);
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ─── Punto de pulso (indicador "en vivo") ─── */
.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.pulse-ring {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  position: absolute;
  background: var(--green);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}


/* ════════════════════════════════════════════════════════════════════════
   4. NAVBAR
   ════════════════════════════════════════════════════════════════════════ */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: transparent;
  transition: background var(--t-slow), border-color var(--t-slow), backdrop-filter var(--t-slow);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(13, 14, 16, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--c-border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--section-px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 4px;
  color: var(--t-primary);
  flex-shrink: 0;
  transition: color var(--t-base);
}
.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: var(--gold); }

/* Links de escritorio */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--t-secondary);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t-base), background var(--t-base);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--t-primary);
  background: var(--c-border);
}

/* CTAs de escritorio */
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-btn-ghost {
  font-size: 14px;
  font-weight: 600;
  color: var(--t-secondary);
  padding: 8px 16px;
  border: 1px solid var(--c-border-mid);
  border-radius: var(--r-sm);
  transition: all var(--t-base);
  white-space: nowrap;
}
.nav-btn-ghost:hover {
  color: var(--t-primary);
  border-color: var(--c-border-hi);
}

.nav-btn-cta {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  background: var(--gold);
  padding: 9px 20px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: background var(--t-base), transform var(--t-fast);
}
.nav-btn-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Hamburguesa */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--t-primary);
  border-radius: 2px;
  transition: all var(--t-base);
}


/* ════════════════════════════════════════════════════════════════════════
   5. MENÚ MÓVIL
   ════════════════════════════════════════════════════════════════════════ */

.mobile-menu {
  position: fixed;
  top: var(--navbar-h);
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  background: var(--c-root);
  display: flex;
  flex-direction: column;
  padding: 24px var(--section-px) 40px;
  gap: 4px;
  overflow-y: auto;
  border-top: 1px solid var(--c-border);
}
.mobile-menu.hidden { display: none; }

.mobile-link {
  font-size: 20px;
  font-weight: 600;
  color: var(--t-secondary);
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
  transition: color var(--t-base);
}
.mobile-link:hover { color: var(--gold); }

.mobile-cta {
  display: block;
  margin-top: 20px;
  background: var(--gold);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 24px;
  border-radius: var(--r-sm);
  text-align: center;
  transition: background var(--t-base);
}
.mobile-cta:hover { background: var(--gold-light); }


/* ════════════════════════════════════════════════════════════════════════
   6. HERO
   ════════════════════════════════════════════════════════════════════════ */

#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--navbar-h);
}

/* ─── Fondo del hero ─── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--c-root);
}

/* Grilla de puntos como textura de fondo */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Ruido de textura CSS */
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* Resplandor dorado en la esquina superior derecha */
#hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(232,184,75,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* ─── Contenido del hero ─── */
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) var(--section-px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

/* ─── Copy del hero ─── */
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Eyebrow: "Sistema activo · 24h · 7 días" */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-bg);
  border: 1px solid rgba(61, 186, 118, 0.22);
  padding: 7px 16px;
  border-radius: 20px;
  width: fit-content;
  position: relative;
}

/* Título principal hero */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 9vw, 110px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--t-primary);
  text-transform: uppercase;
}
.hero-em {
  font-style: normal;
  color: var(--gold);
  /* Efecto de trazo: texto outlined en el fondo */
  text-shadow:
    0 0 40px rgba(232, 184, 75, 0.30),
    0 0 80px rgba(232, 184, 75, 0.12);
}

/* Subtítulo */
.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--t-secondary);
  line-height: 1.6;
  max-width: 480px;
}
.hero-sub strong { color: var(--t-primary); }

/* Pill de precio en el hero */
.hero-precio-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  width: fit-content;
}
.hpp-monto {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--gold);
}
.hpp-sep {
  font-size: 14px;
  font-weight: 600;
  color: var(--t-secondary);
}
.hpp-hint {
  font-size: 13px;
  color: var(--t-secondary);
}

/* CTAs del hero */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Trust badges del hero */
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.ht-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--t-muted);
}
.ht-icon { color: var(--gold); font-size: 14px; }

/* ─── Mockup del portal ─── */
.hero-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.mockup-screen {
  background: var(--c-surface);
  border: 1px solid var(--c-border-mid);
  border-radius: var(--r-lg);
  overflow: hidden;
  width: 100%;
  max-width: 440px;
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Barra superior del mockup */
.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-root);
}
.mockup-logo {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--t-primary);
}
.mockup-logo span { color: var(--gold); }

.mockup-status-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--green);
  background: var(--green-bg);
  padding: 5px 12px;
  border-radius: 20px;
}

/* Imagen de cámara */
.mockup-cam {
  position: relative;
  aspect-ratio: 16/9;
  background: #080a0c;
  overflow: hidden;
}
.mockup-cam img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.mockup-cam-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 12px 14px;
}
.mockup-cam-time {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
  letter-spacing: 1px;
}
.mockup-cam-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.5);
  padding: 3px 9px;
  border-radius: 20px;
}

/* Fila de dispositivos */
.mockup-devices {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--c-border);
}
.mockup-dev {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  border-right: 1px solid var(--c-border);
  text-align: center;
}
.mockup-dev:last-child { border-right: none; }

.dev-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.dev-dot.green { background: var(--green); box-shadow: 0 0 6px rgba(61,186,118,0.5); }
.dev-dot.amber { background: var(--gold); box-shadow: 0 0 6px rgba(232,184,75,0.5); }

.dev-name   { font-size: 10px; color: var(--t-muted); font-weight: 500; }
.dev-status { font-size: 11px; color: var(--t-secondary); font-weight: 600; }

/* Fila de sirena y link */
.mockup-siren-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  gap: 12px;
}
.mockup-siren-btn {
  background: rgba(232,184,75,0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: var(--r-sm);
  cursor: not-allowed;
  letter-spacing: 0.5px;
  opacity: 0.8;
}
.mockup-portal-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--t-secondary);
  border: 1px solid var(--c-border-mid);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: color var(--t-base), border-color var(--t-base);
  white-space: nowrap;
}
.mockup-portal-link:hover {
  color: var(--gold);
  border-color: var(--gold-border);
}

.mockup-caption {
  font-size: 12px;
  color: var(--t-muted);
  text-align: center;
  max-width: 320px;
}

/* ─── Indicador de scroll ─── */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--t-muted);
  font-size: 20px;
  animation: bounce 2.2s ease-in-out infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%       { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

/* ─── Puntos de pulso del eyebrow ─── */
.rec-dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}


/* ════════════════════════════════════════════════════════════════════════
   7. SECCIÓN: CÓMO FUNCIONA
   ════════════════════════════════════════════════════════════════════════ */

#como-funciona {
  background: var(--c-light);
}

#como-funciona .section-header h2 { color: var(--t-on-light); }
#como-funciona .section-header p  { color: var(--t-on-light-2); }
#como-funciona .section-label     { color: var(--gold-dark); background: rgba(232,184,75,0.08); border-color: rgba(232,184,75,0.2); }

.pasos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--c-light-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.paso {
  background: var(--c-light);
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: background var(--t-base);
}
.paso:hover { background: #fff; }

/* Paso destacado (el del medio) */
.paso-highlight {
  background: var(--c-root);
  color: var(--t-primary);
}
.paso-highlight:hover { background: var(--c-surface); }
.paso-highlight h3 { color: var(--t-primary); }
.paso-highlight p  { color: var(--t-secondary); }

/* Número de paso */
.paso-num {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--c-light-border);
  position: absolute;
  top: 20px; right: 24px;
  user-select: none;
}
.paso-highlight .paso-num { color: var(--c-surface-3); }

.paso-icon {
  font-size: 32px;
  line-height: 1;
}

.paso h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--t-on-light);
  line-height: 1.3;
}

.paso p {
  font-size: 15px;
  color: var(--t-on-light-2);
  line-height: 1.6;
  flex: 1;
}

.paso-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-dark);
  transition: color var(--t-base);
  width: fit-content;
}
.paso-cta:hover { color: var(--gold); }
.paso-highlight .paso-cta { color: var(--gold); }

.paso-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-bg);
  border: 1px solid rgba(61,186,118,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
}


/* ════════════════════════════════════════════════════════════════════════
   8. SECCIÓN: EQUIPOS
   ════════════════════════════════════════════════════════════════════════ */

.equipos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.equipo-card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.equipo-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* Card destacada (la del medio) */
.equipo-featured {
  border-color: var(--gold-border);
  background: var(--c-surface-3);
  box-shadow: var(--shadow-gold);
}

.equipo-img-wrap {
  position: relative;
  background: #0a0b0d;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.equipo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--t-slow);
}
.equipo-card:hover .equipo-img-wrap img { transform: scale(1.04); }

.equipo-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 20px;
}
.equipo-badge.included {
  background: var(--gold-glow-md);
  color: var(--gold);
  border: 1px solid var(--gold-border);
}

.equipo-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.equipo-content h3 {
  font-size: 20px;
  color: var(--t-primary);
}
.equipo-content p {
  font-size: 14px;
  color: var(--t-secondary);
  line-height: 1.6;
}

.equipo-features {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.equipo-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--t-secondary);
}
.equipo-features li::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════════════════════════════
   9. SECCIÓN: POR QUÉ BLINDA
   ════════════════════════════════════════════════════════════════════════ */

#por-que-blinda { background: var(--c-light); }
#por-que-blinda .section-header h2 { color: var(--t-on-light); }
#por-que-blinda .section-header p  { color: var(--t-on-light-2); }
#por-que-blinda .section-label     { color: var(--gold-dark); background: rgba(232,184,75,0.08); border-color: rgba(232,184,75,0.2); }

/* ─── Tabla comparativa ─── */
.comparativa-wrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-light-border);
  margin-bottom: clamp(48px, 7vw, 72px);
  -webkit-overflow-scrolling: touch;
}

.comparativa-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 14px;
}

.comparativa-table thead tr {
  background: var(--c-root);
}
.comparativa-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--t-muted);
  white-space: nowrap;
}

.comparativa-table td {
  padding: 14px 20px;
  border-top: 1px solid var(--c-light-border);
  color: var(--t-on-light-2);
}

.row-competitor { background: #fff; }
.row-competitor:hover { background: #fafaf8; }

/* Fila de Blinda — destacada */
.row-blinda {
  background: var(--c-root);
}
.row-blinda td {
  color: var(--t-primary);
  border-top-color: var(--c-border-mid);
  border-bottom-color: var(--c-border-mid);
}
.row-blinda td:first-child {
  border-left: 3px solid var(--gold);
}

.cell-yes { color: var(--green) !important; font-weight: 700; }
.cell-no  { color: var(--t-muted) !important; }

/* ─── Cards de ventajas ─── */
.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ventaja-card {
  background: #fff;
  border: 1px solid var(--c-light-border);
  border-radius: var(--r-md);
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.ventaja-card:hover {
  border-color: rgba(232,184,75,0.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}

.vc-icon {
  font-size: 28px;
  line-height: 1;
}
.ventaja-card h3 {
  font-size: 17px;
  color: var(--t-on-light);
}
.ventaja-card p {
  font-size: 14px;
  color: var(--t-on-light-2);
  line-height: 1.6;
}


/* ════════════════════════════════════════════════════════════════════════
   10. SECCIÓN: PRECIO
   ════════════════════════════════════════════════════════════════════════ */

.precio-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

/* ─── Card principal de precio ─── */
.precio-card {
  background: var(--c-surface-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}
/* Resplandor dorado en la esquina */
.precio-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(232,184,75,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.precio-card-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.precio-plan-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.precio-monto {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 80px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--t-primary);
}
.precio-currency {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--t-secondary);
}

.precio-periodo {
  font-size: 14px;
  color: var(--t-secondary);
}

.precio-diario {
  display: inline-block;
  font-size: 14px;
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  padding: 7px 16px;
  border-radius: var(--r-sm);
  width: fit-content;
  margin-top: 4px;
}

/* Lista de lo que incluye */
.precio-lista {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.precio-lista li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--t-primary);
}
.precio-lista li span {
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.precio-nota {
  font-size: 12px;
  color: var(--t-muted);
  text-align: center;
  line-height: 1.5;
}
.precio-nota strong { color: var(--t-secondary); }

/* ─── Stats laterales ─── */
.precio-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pstat {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 20px 24px;
  transition: border-color var(--t-base);
}
.pstat:hover { border-color: var(--gold-border); }

.pstat-num {
  font-family: var(--font-display);
  font-size: 40px;
  letter-spacing: 1px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.pstat-lbl {
  font-size: 13px;
  color: var(--t-muted);
}

/* Card de objeción principal */
.pstat-objecion {
  background: var(--gold-glow);
  border-color: var(--gold-border);
}
.pstat-objecion p {
  font-size: 14px;
  color: var(--t-secondary);
  line-height: 1.6;
}
.pstat-objecion strong { color: var(--gold); }


/* ════════════════════════════════════════════════════════════════════════
   11. SECCIÓN: TESTIMONIOS
   ════════════════════════════════════════════════════════════════════════ */

#testimonios { background: var(--c-light); }
#testimonios .section-header h2 { color: var(--t-on-light); }
#testimonios .section-header p  { color: var(--t-on-light-2); }
#testimonios .section-label     { color: var(--gold-dark); background: rgba(232,184,75,0.08); border-color: rgba(232,184,75,0.2); }

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonio {
  background: #fff;
  border: 1px solid var(--c-light-border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.testimonio:hover {
  border-color: rgba(232,184,75,0.3);
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
  transform: translateY(-4px);
}

/* Testimonio destacado */
.testimonio-highlight {
  background: var(--c-root);
  border-color: var(--gold-border);
  color: var(--t-primary);
  box-shadow: var(--shadow-gold);
}
.testimonio-highlight p      { color: var(--t-primary); }
.testimonio-highlight footer { border-top-color: var(--c-border); }
.testimonio-highlight .test-name   { color: var(--t-primary); }
.testimonio-highlight .test-barrio { color: var(--t-secondary); }

.test-stars {
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 2px;
}

.testimonio p {
  font-size: 15px;
  color: var(--t-on-light-2);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonio p::before { content: '"'; color: var(--gold); font-size: 20px; font-style: normal; }
.testimonio p::after  { content: '"'; color: var(--gold); font-size: 20px; font-style: normal; }

.testimonio footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--c-light-border);
}

.test-avatar {
  width: 40px; height: 40px;
  background: var(--gold-glow-md);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.test-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--t-on-light);
  font-style: normal;
}
.test-barrio {
  font-size: 12px;
  color: var(--t-on-light-2);
}


/* ════════════════════════════════════════════════════════════════════════
   12. SECCIÓN: FAQ
   ════════════════════════════════════════════════════════════════════════ */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.faq-item {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-base);
}
.faq-item:hover { border-color: var(--c-border-mid); }
.faq-item[open] { border-color: var(--gold-border); }

.faq-pregunta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--t-primary);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  user-select: none;
}
.faq-pregunta::-webkit-details-marker { display: none; }

/* Ícono de + / - */
.faq-pregunta::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--t-base);
}
.faq-item[open] .faq-pregunta::after {
  content: '−';
}

.faq-respuesta {
  padding: 0 24px 20px;
  border-top: 1px solid var(--c-border);
}
.faq-respuesta p {
  font-size: 15px;
  color: var(--t-secondary);
  line-height: 1.7;
  padding-top: 16px;
}
.faq-respuesta strong { color: var(--t-primary); }

.faq-cta-texto {
  font-size: 16px;
  color: var(--t-secondary);
  margin-bottom: 16px;
}


/* ════════════════════════════════════════════════════════════════════════
   13. SECCIÓN: CTA FINAL
   ════════════════════════════════════════════════════════════════════════ */

#cta-final {
  background: var(--c-root);
  position: relative;
  overflow: hidden;
}

/* Resplandor dorado centrado de fondo */
#cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(232,184,75,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.ctaf-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--section-py) var(--section-px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.ctaf-shield {
  font-size: 56px;
  line-height: 1;
  filter: drop-shadow(0 0 20px rgba(232,184,75,0.3));
}

#cta-final h2 {
  font-size: clamp(28px, 5vw, 48px);
  color: var(--t-primary);
  letter-spacing: -0.5px;
}

#cta-final p {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--t-secondary);
  line-height: 1.65;
}
#cta-final p strong { color: var(--t-primary); }

.ctaf-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: var(--t-muted);
  margin-top: 4px;
}
.ctaf-trust span { display: flex; align-items: center; gap: 6px; }


/* ════════════════════════════════════════════════════════════════════════
   14. FOOTER
   ════════════════════════════════════════════════════════════════════════ */

#footer {
  background: var(--c-root);
  border-top: 1px solid var(--c-border);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) var(--section-px) clamp(48px, 6vw, 72px);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

/* ─── Columna brand ─── */
.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--t-primary);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }

.footer-desc {
  font-size: 14px;
  color: var(--t-secondary);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.social-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--t-muted);
  border: 1px solid var(--c-border-mid);
  padding: 6px 14px;
  border-radius: 20px;
  transition: color var(--t-base), border-color var(--t-base);
}
.social-link:hover {
  color: var(--gold);
  border-color: var(--gold-border);
}

/* ─── Columnas de navegación ─── */
.footer-nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--t-muted);
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-contacto ul,
.footer-legal-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a,
.footer-contacto a,
.footer-legal-col a {
  font-size: 14px;
  color: var(--t-secondary);
  transition: color var(--t-base);
  line-height: 1.4;
}
.footer-nav a:hover,
.footer-contacto a:hover,
.footer-legal-col a:hover {
  color: var(--gold);
}

.footer-contacto address {
  font-size: 14px;
  color: var(--t-secondary);
}

.footer-horario {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--t-muted);
  margin-top: 20px;
}
.horario-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(61,186,118,0.5);
}

/* ─── Barra inferior del footer ─── */
.footer-bottom {
  border-top: 1px solid var(--c-border);
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 12px;
  color: var(--t-muted);
  line-height: 1.5;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--t-muted);
  transition: color var(--t-base);
}
.footer-bottom-links a:hover { color: var(--gold); }


/* ════════════════════════════════════════════════════════════════════════
   15. BOTÓN FLOTANTE DE WHATSAPP
   ════════════════════════════════════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 13px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.40);
  font-size: 14px;
  font-weight: 700;
  transition: background var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
  white-space: nowrap;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.50);
}
.whatsapp-float:active { transform: translateY(-1px); }

/* En móvil: solo ícono, sin label */
@media (max-width: 480px) {
  .wf-label { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}


/* ════════════════════════════════════════════════════════════════════════
   16. ANIMACIONES DE ENTRADA (IntersectionObserver)
   Las clases .visible las añade el JS del index.html
   ════════════════════════════════════════════════════════════════════════ */

.paso,
.equipo-card,
.ventaja-card,
.testimonio,
.faq-item,
.pstat {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    border-color var(--t-base),
    box-shadow var(--t-base);
}

.paso.visible,
.equipo-card.visible,
.ventaja-card.visible,
.testimonio.visible,
.faq-item.visible,
.pstat.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delays escalonados para grids */
.pasos-grid      .paso:nth-child(1)     { transition-delay: 0ms; }
.pasos-grid      .paso:nth-child(2)     { transition-delay: 80ms; }
.pasos-grid      .paso:nth-child(3)     { transition-delay: 160ms; }

.equipos-grid    .equipo-card:nth-child(1) { transition-delay: 0ms; }
.equipos-grid    .equipo-card:nth-child(2) { transition-delay: 80ms; }
.equipos-grid    .equipo-card:nth-child(3) { transition-delay: 160ms; }

.ventajas-grid   .ventaja-card:nth-child(1) { transition-delay: 0ms; }
.ventajas-grid   .ventaja-card:nth-child(2) { transition-delay: 60ms; }
.ventajas-grid   .ventaja-card:nth-child(3) { transition-delay: 120ms; }
.ventajas-grid   .ventaja-card:nth-child(4) { transition-delay: 180ms; }

.testimonios-grid .testimonio:nth-child(1) { transition-delay: 0ms; }
.testimonios-grid .testimonio:nth-child(2) { transition-delay: 80ms; }
.testimonios-grid .testimonio:nth-child(3) { transition-delay: 160ms; }

.precio-stats    .pstat:nth-child(1) { transition-delay: 0ms; }
.precio-stats    .pstat:nth-child(2) { transition-delay: 60ms; }
.precio-stats    .pstat:nth-child(3) { transition-delay: 120ms; }
.precio-stats    .pstat:nth-child(4) { transition-delay: 180ms; }

/* Respeta preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  .paso, .equipo-card, .ventaja-card,
  .testimonio, .faq-item, .pstat {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ════════════════════════════════════════════════════════════════════════
   17. MEDIA QUERIES — RESPONSIVE COMPLETO
   Breakpoints:
   · 1024px → tablet landscape / desktop pequeño
   · 768px  → tablet portrait
   · 600px  → móvil grande
   · 480px  → móvil estándar
   · 360px  → móvil pequeño
   ════════════════════════════════════════════════════════════════════════ */

/* ── 1024px: tablet landscape ── */
@media (max-width: 1024px) {

  /* Navbar: ocultar links y ctas, mostrar hamburguesa */
  .nav-links,
  .nav-ctas    { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero: una columna */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .hero-copy { align-items: center; }
  .hero-sub  { max-width: 100%; }
  .hero-trust { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-precio-pill { margin: 0 auto; }
  .hero-scroll-hint { display: none; }
  .hero-mockup { width: 100%; max-width: 480px; }

  /* Precio: una columna */
  .precio-layout { grid-template-columns: 1fr; }
  .precio-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer: 2 columnas */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }

  /* Ventajas: 2 columnas */
  .ventajas-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ── 768px: tablet portrait ── */
@media (max-width: 768px) {

  /* Pasos: apilados */
  .pasos-grid {
    grid-template-columns: 1fr;
    gap: 2px;
    border-radius: var(--r-md);
  }
  .paso-num { font-size: 56px; }

  /* Equipos: 1 columna */
  .equipos-grid { grid-template-columns: 1fr; }
  .equipo-featured { order: -1; }

  /* Testimonios: 1 columna */
  .testimonios-grid { grid-template-columns: 1fr; }
  .testimonio-highlight { order: -1; }

  /* Precio stats: 2 columnas */
  .precio-stats { grid-template-columns: repeat(2, 1fr); }

  /* Tabla comparativa: scroll horizontal visible */
  .comparativa-wrap {
    border-radius: var(--r-md);
  }

  /* Hero: ajustes menores */
  .hero-title { font-size: clamp(52px, 12vw, 80px); }
  .mockup-screen { max-width: 100%; }
}


/* ── 600px: móvil grande ── */
@media (max-width: 600px) {

  /* Sección pasos: padding más compacto */
  .paso { padding: 24px 20px; }
  .paso-num { display: none; }

  /* Ventajas: 1 columna */
  .ventajas-grid { grid-template-columns: 1fr; }

  /* Footer: 1 columna */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: auto; }

  /* Footer bottom: centrado */
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Hero trust: columna */
  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Precio stats: 1 columna */
  .precio-stats { grid-template-columns: 1fr; }

  /* Hero ctas: columna en pantallas muy pequeñas */
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .btn-outline,
  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  /* Mockup: ocultar en móviles muy pequeños para dar protagonismo al copy */
  .mockup-devices { display: none; }

  /* FAQ */
  .faq-pregunta { font-size: 15px; padding: 18px 20px; }
  .faq-respuesta { padding: 0 20px 18px; }
}


/* ── 480px: móvil estándar ── */
@media (max-width: 480px) {

  .hero-title { font-size: clamp(44px, 14vw, 68px); }

  /* Navbar más compacta */
  .nav-inner { padding: 0 16px; }

  /* Precio: padding reducido */
  .precio-card { padding: 24px 20px; }

  /* CTA final trust: columna */
  .ctaf-trust {
    flex-direction: column;
    gap: 10px;
  }

  /* Testimonio: sin transformación al hover en touch */
  .testimonio:hover,
  .ventaja-card:hover,
  .equipo-card:hover {
    transform: none;
  }

  /* Precio monto más pequeño */
  .precio-monto { font-size: 52px; }
}


/* ── 360px: móvil pequeño ── */
@media (max-width: 360px) {

  :root { --section-px: 16px; }

  .hero-title { font-size: 44px; }
  .hpp-hint   { display: none; }

  .nav-logo { font-size: 22px; }

  .mockup-siren-row {
    flex-direction: column;
    align-items: stretch;
  }
  .mockup-siren-btn,
  .mockup-portal-link {
    text-align: center;
  }
}