/* ==========================================================================
   Busqueda360 GPS — Estilos del sitio
   JP Informatica · "Innovar es cambiar"
   Mobile-first · sin librerías · animaciones solo con transform/opacity
   ========================================================================== */

:root {
  /* Paleta oficial */
  --orange: #FF6400;
  --orange-hi: #FF8A3D;
  --petrol: #1478A0;
  --sky: #4A90B4;
  --sky-hi: #7CC4E8;
  --bg: #0A1420;
  --bg-1: #0C1A29;
  --bg-2: #0F2236;
  --surface: rgba(18, 40, 62, .55);
  --surface-solid: #11263B;
  --line: rgba(74, 144, 180, .2);
  --line-strong: rgba(74, 144, 180, .38);
  --text: #E8F2F9;
  --muted: #A3B9C9;
  --wa: #25D366;
  --ok: #3DDC97;
  --danger: #FF6B6B;

  --font-display: 'Exo 2', 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, .6);
  --glow-orange: 0 0 0 1px rgba(255, 100, 0, .35), 0 12px 40px -10px rgba(255, 100, 0, .55);
  --header-h: 64px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  background: var(--bg);
  background-image:
    radial-gradient(1200px 600px at 85% -10%, rgba(20, 120, 160, .22), transparent 60%),
    radial-gradient(900px 500px at -10% 30%, rgba(74, 144, 180, .10), transparent 60%);
  background-repeat: no-repeat;
  color: var(--text);
  font: 400 1rem/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
img { height: auto; display: block; }
a { color: var(--sky-hi); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #fff; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 7.6vw, 3.9rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 5.4vw, 2.7rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--orange); color: var(--bg); }

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 16px; }
.wrap.narrow { max-width: 820px; }
.center { text-align: center; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--orange); color: var(--bg); padding: 10px 16px; border-radius: 10px; font-weight: 700; }
.skip:focus { top: 12px; }
.muted { color: var(--muted); }
.accent { color: var(--orange); }
.ic { flex: none; vertical-align: middle; }

/* ---------- Botones ---------- */
.btn {
  --b-bg: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 48px; padding: .75em 1.35em;
  border-radius: 999px; border: 1.5px solid transparent;
  background: var(--b-bg); color: var(--text);
  font: 700 1rem/1.1 var(--font-body); text-decoration: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s, border-color .25s, color .25s;
  -webkit-tap-highlight-color: transparent;
  position: relative; isolation: isolate; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn .ic-arrow-right { transition: transform .25s var(--ease); }
.btn:hover .ic-arrow-right { transform: translateX(4px); }
.btn-primary { background: var(--orange); color: #0A1420; box-shadow: 0 10px 30px -10px rgba(255, 100, 0, .7); }
.btn-primary::after { /* brillo que recorre el botón */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, .45) 50%, transparent 70%);
  transform: translateX(-120%); animation: shine 4.5s var(--ease) infinite 1.5s;
}
.btn-primary:hover { color: #0A1420; background: var(--orange-hi); box-shadow: var(--glow-orange); }
.btn-wa { background: rgba(37, 211, 102, .12); border-color: rgba(37, 211, 102, .7); color: #fff; }
.btn-wa .ic { color: var(--wa); }
.btn-wa:hover { background: rgba(37, 211, 102, .22); color: #fff; box-shadow: 0 10px 30px -12px rgba(37, 211, 102, .6); }
.btn-outline { border-color: var(--orange); color: #fff; }
.btn-outline:hover { background: rgba(255, 100, 0, .14); color: #fff; }
.btn-ghost { border-color: var(--line-strong); color: var(--text); background: rgba(74, 144, 180, .08); }
.btn-ghost:hover { border-color: var(--sky); color: #fff; background: rgba(74, 144, 180, .16); }
.btn-disabled { border-color: var(--line); color: var(--muted); cursor: default; opacity: .7; }
.btn-disabled:hover { transform: none; }
.btn-lg { min-height: 54px; padding: .9em 1.6em; font-size: 1.05rem; }
.btn-sm { min-height: 42px; padding: .55em 1.05em; font-size: .92rem; }
.btn-block { width: 100%; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-row.center { justify-content: center; }
.center-cta { text-align: center; margin-top: 32px; }
.link-like { color: var(--sky-hi); text-decoration: underline; cursor: pointer; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 20, 32, .72);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background-color .3s;
}
/* Efecto cristal en un pseudo-elemento: un backdrop-filter en .site-header lo convertiría en
   el bloque contenedor del menú móvil (position: fixed) y lo recortaría a la altura del header.
   (Arreglo FIX-MENU-MOVIL aplicado en el servidor el 26-09-2026, integrado aquí.) */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  -webkit-backdrop-filter: saturate(160%) blur(14px); backdrop-filter: saturate(160%) blur(14px);
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(10, 20, 32, .9); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 16px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand .b360-logo { height: 42px; width: auto; }
.nav-toggle {
  width: 48px; height: 48px; display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  background: rgba(74, 144, 180, .1); border: 1px solid var(--line); border-radius: 14px; cursor: pointer; padding: 0;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-nav {
  position: fixed; inset: var(--header-h) 0 0 0; overflow-y: auto; overscroll-behavior: contain;
  background: rgba(10, 20, 32, .97); border-bottom: 1px solid var(--line);
  padding: 12px 16px 24px;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: opacity .25s, transform .3s var(--ease), visibility 0s .3s;
}
.site-nav.is-open { opacity: 1; transform: none; visibility: visible; transition: opacity .25s, transform .3s var(--ease); }
.site-nav ul { list-style: none; margin: 0 0 16px; padding: 0; }
.site-nav li a { display: block; padding: 14px 6px; color: var(--text); text-decoration: none; font-weight: 600; font-size: 1.08rem; border-bottom: 1px solid var(--line); }
.site-nav li a:hover { color: var(--orange); }
.nav-clients { width: 100%; }
.no-js .site-nav { position: static; opacity: 1; visibility: visible; transform: none; }
.no-js .nav-toggle { display: none; }
.no-js .header-inner { height: auto; flex-wrap: wrap; padding-top: 8px; }

/* ---------- Secciones ---------- */
.section { padding: 72px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head.left { text-align: left; margin-left: 0; }
.section-sub { color: var(--muted); font-size: 1.08rem; margin: 0; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 12px;
  font: 700 .78rem/1 var(--font-body); letter-spacing: .18em; text-transform: uppercase; color: var(--sky-hi);
}
.kicker::before { content: ""; width: 22px; height: 2px; background: linear-gradient(90deg, var(--orange), transparent); }
.section-head h2, .section-head h1 { background: linear-gradient(180deg, #fff 30%, #B9D9EC); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-top { height: 8px; }
.empty-note { text-align: center; color: var(--muted); }

/* Aparición al hacer scroll (solo con JS) */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: calc(var(--d, 0) * 110ms); }
.js .reveal.is-in { opacity: 1; transform: none; }
/* Animaciones pausadas fuera de pantalla (ahorra batería) */
.js .section:not(.in-view) *, .js .hero:not(.in-view) * { animation-play-state: paused !important; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 28px 0 40px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(74, 144, 180, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 144, 180, .07) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse at 60% 40%, #000 20%, transparent 75%);
}
.hero-grid { display: grid; gap: 28px; align-items: center; }
.hero-copy > * { animation: rise .9s var(--ease) both; animation-delay: calc(var(--d, 0) * 120ms); }
.hero .reveal { opacity: 1; transform: none; } /* el hero se anima con CSS, no espera al JS (mejor LCP) */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; padding: 8px 14px;
  border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(20, 120, 160, .14);
  font-size: .88rem; font-weight: 600; color: #CFE6F3;
}
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(61, 220, 151, .7); animation: live 2s infinite; flex: none; display: inline-block; }
.hero h1 { margin-bottom: .35em; }
.hero h1 { background: linear-gradient(100deg, #fff 0%, #fff 55%, var(--sky-hi) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 1.12rem; color: #C4D6E2; max-width: 36em; }
.hero-points { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 8px; }
.hero-points li { display: flex; align-items: center; gap: 10px; color: #D5E5EF; font-weight: 500; }
.hero-points .ic { color: var(--orange); }

.hero-visual { position: relative; width: min(100%, 460px); margin: 0 auto; aspect-ratio: 1; animation: rise 1s var(--ease) both .2s; }
.radar { position: absolute; inset: 6%; border-radius: 50%; box-shadow: 0 0 0 1px var(--line), 0 0 80px -10px rgba(20, 120, 160, .55), inset 0 0 60px rgba(0, 0, 0, .5); }
.radar-svg { width: 100%; height: 100%; display: block; }
.radar-svg .sweep { transform-origin: 200px 200px; animation: spin 4s linear infinite; }
.radar-svg .blips circle { opacity: 0; animation: blip 4s linear infinite; animation-delay: var(--b); }
.radar-svg .route { stroke-dasharray: 1; stroke-dashoffset: 0; animation: draw 7s linear infinite; }
.radar-svg .route-glow { animation: glow 3.5s ease-in-out infinite; }
.pulse { transform-box: fill-box; transform-origin: center; opacity: 0; animation: pulse 2.2s var(--ease) infinite; }
.pulse.p2 { animation-delay: 1.1s; }
.pin-dest > path, .pin-dest > circle:not(.pulse) { animation: bob 2.4s ease-in-out infinite; }

.hud {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 14px; font-size: .85rem; font-weight: 600;
  background: rgba(12, 28, 44, .78); border: 1px solid var(--line-strong);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: var(--shadow); animation: float 6s ease-in-out infinite;
}
.hud small { display: block; color: var(--muted); font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.hud-status { top: 2%; left: 0; }
.hud-speed { right: 0; top: 38%; flex-direction: column; align-items: flex-start; gap: 2px; animation-delay: -2s; min-width: 124px; }
.hud-speed strong { font: 800 1.35rem/1.1 var(--font-display); }
.speed-bar { width: 100%; height: 4px; background: rgba(74, 144, 180, .25); border-radius: 4px; overflow: hidden; margin-top: 6px; }
.speed-bar i { display: block; height: 100%; width: var(--speed, 55%); background: linear-gradient(90deg, var(--sky), var(--orange)); border-radius: 4px; transition: width 1s var(--ease); }
.hud-engine { left: 4%; bottom: 4%; animation-delay: -4s; }
.hud-engine .ic { color: var(--orange); }
.eng { display: block; font-weight: 800; }
.eng-on { color: var(--ok); animation: engOn 8s infinite; }
.eng-off { color: var(--orange); position: absolute; opacity: 0; animation: engOff 8s infinite; }
.hud-engine > span { position: relative; }

.stats { list-style: none; margin: 36px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.stats li { padding: 18px 16px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--line); text-align: center; }
.stats strong { display: block; font: 800 1.8rem/1.1 var(--font-display); color: #fff; }
.stats li:nth-child(odd) strong { color: var(--orange); }
.stats li > span { color: var(--muted); font-size: .88rem; }

/* ---------- Logo animado (header) ---------- */
.b360-logo.is-animated .b360-waves path { animation: wave 2.6s ease-in-out infinite; }
.b360-logo.is-animated .b360-waves .w2 { animation-delay: .25s; }
.b360-logo.is-animated .b360-waves .w3 { animation-delay: .5s; }

/* ---------- Cómo funciona ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; position: relative; }
.steps-line { display: none; }
.step {
  position: relative; padding: 26px 22px; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20, 50, 78, .55), rgba(12, 28, 44, .55)); border: 1px solid var(--line);
  text-align: center;
}
.step p { color: var(--muted); margin: 0; }
.step-icon { width: 92px; height: 92px; margin: 0 auto 16px; position: relative; display: grid; place-items: center; border-radius: 26px; background: radial-gradient(circle at 50% 30%, rgba(74, 144, 180, .28), rgba(10, 20, 32, .2)); border: 1px solid var(--line-strong); }
.step-icon svg { width: 64px; height: 64px; }
.step-num { position: absolute; top: -10px; right: -10px; width: 30px; height: 30px; border-radius: 50%; background: var(--orange); color: var(--bg); font: 800 .95rem/30px var(--font-display); text-align: center; box-shadow: 0 0 0 4px var(--bg); }
.step-num.static { position: static; display: inline-block; margin-bottom: 12px; box-shadow: none; }
.ai-device .led { animation: blink 1.4s steps(1) infinite; }
.ai-device .sig path { opacity: .2; animation: sig 1.8s ease-in-out infinite; }
.ai-device .sig .s2 { animation-delay: .3s; }
.ai-phone .dl { animation: drop 1.8s var(--ease) infinite; }
.ai-car .lock-pulse { transform-box: fill-box; transform-origin: center; animation: pop 2.4s var(--ease) infinite; }

/* ---------- Funciones ---------- */
.feature-grid { display: grid; gap: 16px; }
.feature-card {
  --mx: 50%; --my: 0%;
  position: relative; padding: 26px 22px 24px; border-radius: var(--radius);
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(74, 144, 180, .16), transparent 45%), var(--surface);
  border: 1px solid var(--line); overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.feature-card p { color: var(--muted); margin: 0; }
.feature-icon { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 16px; background: rgba(20, 120, 160, .16); border: 1px solid var(--line); }
.feature-icon svg { width: 44px; height: 44px; overflow: visible; }
.tag { display: inline-block; margin-top: 14px; padding: 4px 10px; border-radius: 999px; font-size: .75rem; font-weight: 700; color: var(--orange-hi); background: rgba(255, 100, 0, .1); border: 1px solid rgba(255, 100, 0, .35); }
.fi-pulse { transform-box: fill-box; transform-origin: center; animation: ground 2s ease-in-out infinite; }
.fi-bob { animation: bob 2s ease-in-out infinite; }
.fi-route { stroke-dasharray: 1; animation: draw 3.2s var(--ease) infinite; }
.fi-needle { transform-origin: 24px 34px; animation: needle 3s var(--ease) infinite; }
.fi-ring { stroke-dasharray: 1; animation: ring 3s var(--ease) infinite; }
.fi-power { transform-box: fill-box; transform-origin: center; animation: pop 3s var(--ease) infinite; }
.fi-bell { transform-origin: 24px 10px; animation: swing 2.6s ease-in-out infinite; }
.fi-badge { transform-box: fill-box; transform-origin: center; animation: pop 2.6s var(--ease) infinite; }
.fi-bar { transform-box: fill-box; transform-origin: bottom; transform: scaleY(var(--h)); animation: bars 3s var(--ease) infinite; animation-delay: var(--bd, 0s); }

/* ---------- Planes ---------- */
.plans-section { background: linear-gradient(180deg, transparent, rgba(20, 120, 160, .07) 30%, transparent); }
.period-switch {
  position: relative; display: grid; grid-template-columns: repeat(3, 1fr);
  width: min(100%, 440px); margin: 0 auto 32px; padding: 5px; border: 1px solid var(--line-strong); border-radius: 999px;
  background: rgba(12, 28, 44, .8);
}
.period-switch input { position: absolute; opacity: 0; pointer-events: none; }
.period-switch label {
  position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 46px; padding: 0 8px; border-radius: 999px; cursor: pointer; font-weight: 700; font-size: .95rem; color: var(--muted);
  transition: color .3s;
}
.save-pill { font-size: .68rem; padding: 2px 6px; border-radius: 999px; background: rgba(61, 220, 151, .16); color: var(--ok); }
.switch-glider { position: absolute; z-index: 0; top: 5px; bottom: 5px; left: 5px; width: calc((100% - 10px) / 3); border-radius: 999px; background: var(--orange); box-shadow: 0 6px 22px -6px rgba(255, 100, 0, .8); transition: transform .45s var(--ease); }
.period-switch input:checked + label { color: var(--bg); }
.period-switch input:checked + label .save-pill { background: rgba(10, 20, 32, .2); color: var(--bg); }
.period-switch input:focus-visible + label { outline: 3px solid #fff; outline-offset: -3px; }
.period-switch:has(#per-semiannual:checked) .switch-glider, .plans[data-period="semiannual"] .switch-glider { transform: translateX(100%); }
.period-switch:has(#per-annual:checked) .switch-glider, .plans[data-period="annual"] .switch-glider { transform: translateX(200%); }

.plan-grid { display: grid; gap: 20px; align-items: stretch; }
.plan-card {
  position: relative; display: flex; flex-direction: column; padding: 30px 24px 26px; border-radius: 22px;
  background: linear-gradient(180deg, rgba(20, 50, 78, .6), rgba(12, 28, 44, .7)); border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan-card.is-recommended { border-color: transparent; background: linear-gradient(180deg, #14314D, #0E2034) padding-box, conic-gradient(from var(--angle, 0deg), var(--orange), var(--sky), var(--petrol), var(--orange)) border-box; border: 2px solid transparent; box-shadow: 0 30px 70px -30px rgba(255, 100, 0, .55); animation: borderSpin 6s linear infinite; }
@property --angle { syntax: '<angle>'; inherits: false; initial-value: 0deg; }
.ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; background: var(--orange); color: var(--bg); font-weight: 800; font-size: .8rem; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; box-shadow: 0 8px 24px -8px rgba(255, 100, 0, .9); }
.plan-name { font-size: 1.6rem; margin: 0; color: #fff; }
.is-recommended .plan-name { color: var(--orange-hi); }
.plan-tagline { color: var(--muted); margin: 4px 0 18px; min-height: 1.6em; }
.price-block { display: none; animation: priceIn .45s var(--ease); }
.plans:has(#per-monthly:checked) [data-p="monthly"],
.plans:has(#per-semiannual:checked) [data-p="semiannual"],
.plans:has(#per-annual:checked) [data-p="annual"],
.plans[data-period="monthly"] [data-p="monthly"],
.plans[data-period="semiannual"] [data-p="semiannual"],
.plans[data-period="annual"] [data-p="annual"] { display: block; }
.price { margin: 0; display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; }
.price .amount { font: 800 2.6rem/1 var(--font-display); color: #fff; letter-spacing: -.02em; }
.price .per { color: var(--muted); font-weight: 600; }
.price-na { font: 700 1.4rem/1.2 var(--font-display); color: var(--muted); }
.price-meta { color: var(--muted); font-size: .92rem; min-height: 3em; margin: 8px 0 16px; display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: center; }
.price-meta strong { color: #fff; }
.saving { display: inline-block; padding: 3px 9px; border-radius: 999px; background: rgba(61, 220, 151, .14); color: var(--ok); font-weight: 700; font-size: .82rem; }
.plan-features { list-style: none; margin: 22px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.plan-features li { display: flex; gap: 10px; align-items: flex-start; color: #D5E5EF; }
.plan-features .ic { color: var(--orange); margin-top: 2px; }

.install-note {
  display: grid; gap: 14px; margin-top: 28px; padding: 22px; border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(255, 100, 0, .12), rgba(20, 120, 160, .12)); border: 1px dashed rgba(255, 100, 0, .5);
}
.install-note h3 { margin: 0 0 4px; }
.install-note p { margin: 0; color: #CFE0EA; }
.install-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(255, 100, 0, .15); color: var(--orange); }
.install-icon .ic { animation: swing 3s ease-in-out infinite; }
.install-pill { justify-self: start; padding: 6px 12px; border-radius: 999px; background: var(--bg); border: 1px solid rgba(255, 100, 0, .5); color: var(--orange-hi); font-weight: 700; font-size: .85rem; }
.fine-print { text-align: center; color: var(--muted); font-size: .88rem; margin-top: 18px; }

/* ---------- App ---------- */
.app-grid { display: grid; gap: 40px; align-items: center; }
.phone {
  position: relative; width: 250px; height: 500px; margin: 0 auto; padding: 12px; border-radius: 42px;
  background: linear-gradient(160deg, #1B3550, #0B1726); border: 1px solid var(--line-strong);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .8), 0 0 80px -20px rgba(20, 120, 160, .6);
  animation: float 7s ease-in-out infinite;
}
.phone-notch { position: absolute; top: 18px; left: 50%; width: 80px; height: 20px; transform: translateX(-50%); border-radius: 20px; background: #050B12; z-index: 2; }
.phone-screen { height: 100%; border-radius: 32px; overflow: hidden; background: #0E2236; display: flex; flex-direction: column; }
.ph-top { display: flex; justify-content: space-between; align-items: center; padding: 42px 16px 10px; font-weight: 700; font-size: .9rem; }
.ph-map { flex: 1; width: 100%; height: auto; display: block; }
.ph-route { stroke-dasharray: 1; animation: draw 5s var(--ease) infinite; }
.ph-card { display: flex; justify-content: space-between; gap: 8px; margin: -30px 12px 10px; position: relative; padding: 12px; border-radius: 14px; background: rgba(10, 20, 32, .9); border: 1px solid var(--line); font-size: .8rem; }
.ph-card small { display: block; color: var(--muted); font-size: .68rem; }
.ph-ok { color: var(--ok); }
.ph-btn { margin: 0 12px 16px; padding: 12px; border-radius: 12px; background: var(--orange); color: var(--bg); font-weight: 800; font-size: .85rem; display: flex; align-items: center; justify-content: center; gap: 6px; animation: glowBtn 2.4s ease-in-out infinite; }
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px; min-height: 58px; padding: 8px 20px 8px 16px; border-radius: 14px;
  background: #000; border: 1px solid rgba(255, 255, 255, .28); color: #fff; text-decoration: none; transition: transform .25s var(--ease), border-color .25s;
}
.store-badge:hover { transform: translateY(-3px); border-color: var(--sky-hi); color: #fff; }
.store-badge span { display: flex; flex-direction: column; font: 700 1.15rem/1.1 var(--font-body); }
.store-badge small { font-size: .68rem; font-weight: 500; opacity: .85; }
.clients-box { display: grid; gap: 14px; padding: 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line-strong); }
.clients-box h3 { margin: 0 0 4px; }
.clients-box p { margin: 0; color: var(--muted); }
.clients-icon { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: rgba(74, 144, 180, .18); color: var(--sky-hi); }

/* ---------- Accesorios ---------- */
.acc-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); }
.acc-card { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--line); transition: transform .35s var(--ease), border-color .35s; }
.acc-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.acc-media { position: relative; aspect-ratio: 4 / 3; background: radial-gradient(circle at 50% 40%, rgba(74, 144, 180, .25), rgba(10, 20, 32, .6)); overflow: hidden; }
.acc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.acc-card:hover .acc-media img { transform: scale(1.05); }
.acc-placeholder { height: 100%; display: grid; place-items: center; color: var(--sky-hi); }
.acc-placeholder .ic { animation: bob 3s ease-in-out infinite; }
.acc-cat { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 999px; background: rgba(10, 20, 32, .8); border: 1px solid var(--line-strong); font-size: .75rem; font-weight: 700; }
.acc-body { display: flex; flex-direction: column; flex: 1; padding: 18px; }
.acc-body h3 { margin-bottom: 4px; }
.acc-price { font: 800 1.25rem/1.2 var(--font-display); color: var(--orange-hi); margin: 0 0 8px; }
.acc-desc { color: var(--muted); font-size: .94rem; flex: 1; }

/* ---------- Cobertura y soporte ---------- */
.coverage-grid { display: grid; gap: 32px; align-items: center; }
.prose p { color: #CFE0EA; }
.check-list { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: center; }
.check-list .ic { color: var(--orange); }
.coverage-map svg { width: 100%; max-width: 480px; margin: 0 auto; display: block; }
.cv-shape { stroke-dasharray: none; }
.cv-ring { transform-box: fill-box; transform-origin: center; animation: radarRing 3.5s ease-out infinite; }
.cv-pin .pulse { animation-delay: calc(var(--i) * .35s); }
.support { background: linear-gradient(180deg, transparent, rgba(20, 120, 160, .08), transparent); }
.support-grid { display: grid; gap: 14px; }
.support-card {
  display: grid; justify-items: center; gap: 4px; padding: 26px 18px; border-radius: var(--radius); text-align: center; text-decoration: none; color: var(--text);
  background: var(--surface); border: 1px solid var(--line); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.support-card:hover { transform: translateY(-4px); border-color: var(--orange); color: var(--text); box-shadow: var(--glow-orange); }
.support-card strong { font: 700 1.15rem/1.2 var(--font-display); }
.support-card span:last-child { color: var(--muted); word-break: break-word; }
.support-icon { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 8px; background: rgba(255, 100, 0, .14); color: var(--orange); }
.support-icon.is-wa { background: rgba(37, 211, 102, .14); color: var(--wa); }
.ring-anim .ic { animation: ring 2.8s ease-in-out infinite; transform-origin: center; }
.support-card:hover .ic { animation: shake .5s ease-in-out; }
.cut-box { display: grid; gap: 14px; margin-top: 20px; padding: 22px; border-radius: var(--radius); border: 1px solid rgba(255, 100, 0, .45); background: rgba(255, 100, 0, .07); }
.cut-box h3 { margin: 0 0 4px; }
.cut-box p { margin: 0; color: #D5E5EF; }
.cut-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--orange); color: var(--bg); }

/* ---------- Testimonios ---------- */
.t-track { display: grid; grid-auto-flow: column; grid-auto-columns: min(86%, 380px); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 18px; scrollbar-width: thin; scrollbar-color: var(--petrol) transparent; }
.t-card { scroll-snap-align: start; margin: 0; padding: 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; }
.stars { display: flex; gap: 2px; margin-bottom: 12px; color: rgba(255, 255, 255, .2); }
.stars .on { color: var(--orange); }
.t-card blockquote { margin: 0 0 18px; flex: 1; }
.t-card blockquote p { margin: 0; color: #DCEAF3; font-size: 1.02rem; }
.t-card figcaption { display: flex; align-items: center; gap: 12px; }
.t-card figcaption strong { display: block; }
.t-card figcaption small { color: var(--muted); }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--petrol), var(--sky)); font: 800 1.1rem/1 var(--font-display); flex: none; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item { border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--line); transition: border-color .3s; }
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 20px; cursor: pointer; font-weight: 700; font-size: 1.02rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev { color: var(--orange); transition: transform .35s var(--ease); }
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-answer { padding: 0 20px 16px; color: #C9DAE5; animation: priceIn .4s var(--ease); }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; gap: 32px; }
.contact-direct { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.contact-direct a { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--line); color: var(--text); text-decoration: none; transition: border-color .3s, transform .3s var(--ease); word-break: break-word; }
.contact-direct a:hover { border-color: var(--orange); transform: translateX(4px); }
.contact-direct small { display: block; color: var(--muted); font-size: .78rem; }
.cd-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(255, 100, 0, .14); color: var(--orange); flex: none; }
.cd-icon.is-wa { background: rgba(37, 211, 102, .14); color: var(--wa); }
.contact-form { padding: 24px 18px; border-radius: 22px; background: linear-gradient(180deg, rgba(20, 50, 78, .6), rgba(12, 28, 44, .75)); border: 1px solid var(--line-strong); box-shadow: var(--shadow); }
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field-row { display: grid; gap: 0 14px; }
.field label { font-weight: 600; font-size: .92rem; color: #CFE0EA; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--line-strong); background: rgba(6, 14, 24, .7); color: var(--text);
  font: 400 16px/1.4 var(--font-body); transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--orange) 50%), linear-gradient(135deg, var(--orange) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.field select option { background: var(--bg-1); }
.field input::placeholder, .field textarea::placeholder { color: #6F8799; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255, 100, 0, .18); }
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-legal { font-size: .82rem; color: var(--muted); }
.alert { display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px; border-radius: 12px; margin-bottom: 18px; font-weight: 600; animation: priceIn .5s var(--ease); }
.alert-ok { background: rgba(61, 220, 151, .12); border: 1px solid rgba(61, 220, 151, .5); color: #BFF5DC; }
.alert-error { background: rgba(255, 107, 107, .12); border: 1px solid rgba(255, 107, 107, .55); color: #FFD0D0; }

/* ---------- Banda CTA ---------- */
.cta-band { padding: 24px 0 72px; }
.cta-band-inner { display: grid; gap: 20px; padding: 32px 24px; border-radius: 26px; background: radial-gradient(600px 200px at 10% 0%, rgba(255, 100, 0, .25), transparent), linear-gradient(120deg, #123452, #0C1F33); border: 1px solid var(--line-strong); }
.cta-band h2 { margin-bottom: .25em; font-size: clamp(1.5rem, 4.6vw, 2.2rem); }
.cta-band p { margin: 0; color: #CFE0EA; }

/* ---------- Corte de motor (landing) ---------- */
.engine-grid { display: grid; gap: 36px; align-items: center; }
.engine-visual { display: grid; place-items: center; }
.engine-btn { position: relative; width: min(78vw, 300px); display: grid; justify-items: center; gap: 16px; }
.engine-btn svg { width: 100%; filter: drop-shadow(0 0 40px rgba(255, 100, 0, .35)); }
.eng-ring { stroke-dasharray: 1; animation: ring 4s var(--ease) infinite; }
.eng-label { position: relative; font: 800 1.2rem/1 var(--font-display); }
.eng-label .eng-off { left: 0; right: 0; text-align: center; top: 0; }
.eng-label .eng-on { text-align: center; }
.steps-plain .step { text-align: left; }
.prose-block h2 { font-size: clamp(1.4rem, 4vw, 1.9rem); margin-top: 1.4em; }
.prose-block p, .prose-block li { color: #CFE0EA; }
.prose-block ul { padding-left: 1.2em; }
.prose-block li { margin-bottom: .5em; }
.legal h1 { font-size: clamp(1.9rem, 6vw, 2.8rem); }
.legal h2 { font-size: 1.25rem; color: var(--sky-hi); }

/* ---------- Error ---------- */
.error-page { padding: 60px 0 90px; }
.error-radar { position: relative; width: 170px; height: 170px; margin: 0 auto 26px; display: grid; place-items: center; }
.error-radar span { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--sky); opacity: 0; animation: radarRing 3s ease-out infinite; }
.error-radar span:nth-child(2) { animation-delay: 1s; }
.error-radar span:nth-child(3) { animation-delay: 2s; }
.error-radar b { font: 800 3rem/1 var(--font-display); color: var(--orange); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: linear-gradient(180deg, var(--bg-1), #070E17); padding: 56px 0 96px; font-size: .95rem; }
.footer-grid { display: grid; gap: 32px; }
.footer-brand .b360-logo { height: 46px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); max-width: 30em; }
.footer-title { font: 700 .8rem/1 var(--font-body); letter-spacing: .16em; text-transform: uppercase; color: var(--sky-hi); margin-bottom: 16px; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-list a, .footer-list span { display: inline-flex; align-items: center; gap: 10px; color: #CFE0EA; text-decoration: none; word-break: break-word; }
.footer-list a:hover { color: var(--orange); }
.footer-list .ic { color: var(--sky); }
.footer-bottom { display: flex; flex-direction: column; gap: 8px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .86rem; }
.footer-bottom a { color: var(--orange-hi); font-weight: 700; text-decoration: none; }

/* ---------- Redes sociales (iconos animados) ---------- */
.socials { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.social {
  position: relative; display: inline-flex; align-items: center; gap: 10px; min-width: 46px; height: 46px; padding: 0 12px;
  justify-content: center; border-radius: 14px; text-decoration: none; color: var(--text);
  background: rgba(74, 144, 180, .12); border: 1px solid var(--line); isolation: isolate; overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s, color .3s, box-shadow .3s;
}
.social::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .35s; }
.social-facebook::before { background: #1877F2; }
.social-instagram::before { background: radial-gradient(circle at 30% 110%, #FFD600 0%, #FF7A00 25%, #FF0069 50%, #D300C5 75%, #7638FA 100%); }
.social-tiktok::before { background: #111; }
.social-youtube::before { background: #FF0000; }
.social .social-ic { transition: transform .45s var(--ease); animation: socialBob 4s ease-in-out infinite; animation-delay: calc(var(--i, 0) * .6s); }
.socials li { --i: 0; }
.socials li .social-ic { animation-delay: calc(var(--i) * .6s); }
.social-ring { position: absolute; inset: 0; border-radius: inherit; border: 2px solid var(--orange); opacity: 0; animation: socialRing 4s ease-out infinite; animation-delay: calc(var(--i, 0) * .6s); pointer-events: none; }
.socials li .social-ring { animation-delay: calc(var(--i) * .6s + .2s); }
.social:hover, .social:focus-visible { color: #fff; transform: translateY(-3px); border-color: transparent; box-shadow: 0 12px 26px -12px rgba(0, 0, 0, .8); }
.social:hover::before, .social:focus-visible::before { opacity: 1; }
.social:hover .social-ic { transform: rotate(-10deg) scale(1.15); animation: none; }
.social-name { font-weight: 700; font-size: .95rem; }
.socials-footer .social { width: 46px; padding: 0; }
.nav-socials { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.nav-socials-title, .contact-socials-title { margin: 0 0 10px; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sky-hi); }
.contact-socials { margin-top: 22px; }
.socials-menu .social, .socials-contact .social { padding: 0 16px 0 12px; }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 60;
  display: flex; align-items: center; gap: 10px; height: 60px; min-width: 60px; padding: 0 15px; border-radius: 999px;
  background: var(--wa); color: #fff; text-decoration: none; box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .7);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.wa-float:hover { color: #fff; transform: translateY(-3px) scale(1.04); }
.wa-ring { position: absolute; inset: 0; border-radius: 999px; border: 2px solid var(--wa); opacity: 0; animation: waRing 2.6s ease-out infinite; }
.wa-label { display: none; font-weight: 800; color: #073B1C; }

/* ==========================================================================
   Tablet / escritorio
   ========================================================================== */
@media (min-width: 640px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: repeat(3, 1fr); }
  .install-note { grid-template-columns: auto 1fr auto; align-items: center; }
  .clients-box { grid-template-columns: auto 1fr; align-items: center; }
  .clients-box .btn { grid-column: 1 / -1; justify-self: start; }
  .cut-box { grid-template-columns: auto 1fr; align-items: center; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form { padding: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .wa-label { display: inline; }
}
@media (min-width: 960px) {
  :root { --header-h: 76px; }
  .section { padding: 104px 0; }
  .brand .b360-logo { height: 48px; }
  .nav-toggle { display: none; }
  .site-nav { position: static; display: flex; align-items: center; gap: 22px; padding: 0; background: none; border: 0; opacity: 1; visibility: visible; transform: none; max-height: none; overflow: visible; }
  .site-nav ul { display: flex; gap: 4px; margin: 0; }
  .site-nav li a { position: relative; padding: 10px 12px; border: 0; font-size: .95rem; color: #CFE0EA; }
  .site-nav li a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px; border-radius: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
  .site-nav li a:hover::after { transform: scaleX(1); }
  .nav-clients { width: auto; }
  .nav-socials { display: none; }
  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 48px; }
  .hero-visual { width: 100%; max-width: 520px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .steps-line { display: block; position: absolute; top: 72px; left: 8%; width: 84%; height: 20px; z-index: -1; }
  .steps-line .draw { stroke-dashoffset: 1; transition: stroke-dashoffset 2s var(--ease) .3s; }
  .in-view .steps-line .draw, .no-js .steps-line .draw { stroke-dashoffset: 0; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .plan-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .plan-card.is-recommended { transform: scale(1.04); z-index: 1; }
  .plan-card.is-recommended:hover { transform: scale(1.04) translateY(-4px); }
  .app-grid { grid-template-columns: .9fr 1.1fr; gap: 64px; }
  .phone { width: 280px; height: 560px; }
  .coverage-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .contact-grid { grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
  .t-track { grid-auto-columns: calc((100% - 32px) / 3); }
  .cta-band-inner { grid-template-columns: 1fr auto; align-items: center; padding: 44px 48px; }
  .engine-grid { grid-template-columns: 1.1fr .9fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr .8fr; }
}

/* ==========================================================================
   Animaciones
   ========================================================================== */
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0% { transform: scale(.6); opacity: .75; } 100% { transform: scale(2.8); opacity: 0; } }
@keyframes live { 0% { box-shadow: 0 0 0 0 rgba(61, 220, 151, .7); } 70% { box-shadow: 0 0 0 9px rgba(61, 220, 151, 0); } 100% { box-shadow: 0 0 0 0 rgba(61, 220, 151, 0); } }
@keyframes blip { 0%, 8% { opacity: 0; } 12% { opacity: 1; } 60%, 100% { opacity: 0; } }
@keyframes draw { 0% { stroke-dashoffset: 1; } 70%, 100% { stroke-dashoffset: 0; } }
@keyframes glow { 0%, 100% { stroke-opacity: .12; } 50% { stroke-opacity: .35; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes ground { 0%, 100% { transform: scale(1); opacity: .5; } 50% { transform: scale(.7); opacity: .25; } }
@keyframes wave { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: .15; } }
@keyframes sig { 0%, 100% { opacity: .15; } 50% { opacity: 1; } }
@keyframes drop { 0% { transform: translateY(-4px); opacity: 0; } 30% { opacity: 1; } 70% { transform: translateY(3px); opacity: 1; } 100% { transform: translateY(6px); opacity: 0; } }
@keyframes pop { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.14); } }
@keyframes needle { 0% { transform: rotate(-70deg); } 45% { transform: rotate(55deg); } 60% { transform: rotate(40deg); } 100% { transform: rotate(-70deg); } }
@keyframes ring { 0% { stroke-dashoffset: 1; } 60%, 80% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -1; } }
@keyframes swing { 0%, 60%, 100% { transform: rotate(0); } 10% { transform: rotate(14deg); } 20% { transform: rotate(-12deg); } 30% { transform: rotate(8deg); } 40% { transform: rotate(-5deg); } }
@keyframes bars { 0%, 100% { transform: scaleY(calc(var(--h) * .35)); } 50% { transform: scaleY(var(--h)); } }
@keyframes shine { 0% { transform: translateX(-120%); } 25%, 100% { transform: translateX(120%); } }
@keyframes borderSpin { to { --angle: 360deg; } }
@keyframes priceIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes glowBtn { 0%, 100% { box-shadow: 0 0 0 0 rgba(255, 100, 0, .5); } 50% { box-shadow: 0 0 0 8px rgba(255, 100, 0, 0); } }
@keyframes radarRing { 0% { transform: scale(.4); opacity: .9; } 100% { transform: scale(1.3); opacity: 0; } }
@keyframes shake { 0%, 100% { transform: rotate(0); } 25% { transform: rotate(-12deg); } 75% { transform: rotate(12deg); } }
@keyframes socialBob { 0%, 80%, 100% { transform: translateY(0); } 85% { transform: translateY(-3px) rotate(-8deg); } 90% { transform: translateY(0) rotate(6deg); } }
@keyframes socialRing { 0%, 70% { opacity: 0; transform: scale(1); } 75% { opacity: .9; } 100% { opacity: 0; transform: scale(1.25); } }
@keyframes waRing { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.35); opacity: 0; } }
@keyframes engOn { 0%, 45% { opacity: 1; } 50%, 95% { opacity: 0; } 100% { opacity: 1; } }
@keyframes engOff { 0%, 45% { opacity: 0; } 50%, 95% { opacity: 1; } 100% { opacity: 0; } }

/* Accesibilidad: sin movimiento si el usuario lo pide */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; animation-delay: 0s !important; transition-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .eng-off { opacity: 0 !important; }
  .eng-on { opacity: 1 !important; }
  .fi-bar { transform: scaleY(var(--h)); }
}

/* Accesorios sin foto: tarjeta más compacta */
.acc-media.no-img { aspect-ratio: 16 / 7; }
@media (min-width: 640px) { .acc-media.no-img { aspect-ratio: 4 / 3; } }

/* Etiqueta: soporte solo en planes Pro y Empresa */
.support-badge { display: inline-block; margin: 16px 0 0; padding: 6px 14px; border-radius: 999px; font-size: .88rem; font-weight: 600; color: #FFD2B3; background: rgba(255, 100, 0, .1); border: 1px solid rgba(255, 100, 0, .4); }
.support-badge a { color: var(--orange-hi); font-weight: 700; }
