/* ===== KivoTrack landing v2 — mesma linguagem visual do app ===== */
:root {
  --navy: #0f172a;
  --navy-2: #16306e;
  --blue: #0b5ac6;
  --cyan: #00a2f2;
  --bg: #eef1f6;
  --ink: #0f172a;
  --muted: #64748b;
  --brand-gradient: linear-gradient(115deg, #00a2f2 0%, #0b5ac6 52%, #16306e 100%);
  --shadow-card: 0 8px 26px rgba(15, 23, 42, 0.07);
  --font-display: 'Sora', 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

::selection { background: rgba(0, 162, 242, 0.25); }

svg { display: inline-block; }

h1, h2, h3 { font-family: var(--font-display); }

/* ===== reveal no scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.3, 1);
}

.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ===== botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: none;
  border-radius: 14px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s, filter 0.15s, box-shadow 0.15s;
}

.btn svg { width: 16px; height: 16px; }

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

.btn.primary {
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 12px 26px rgba(11, 90, 198, 0.38);
}

.btn.primary:hover { filter: brightness(1.07); box-shadow: 0 16px 34px rgba(11, 90, 198, 0.48); }

.btn.dark {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.3);
}

.btn.light {
  background: #fff;
  color: var(--navy-2);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.btn.glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(6px);
}

.btn.glass:hover { background: rgba(255, 255, 255, 0.14); }

.btn.lg { padding: 17px 32px; font-size: 16px; border-radius: 16px; }
.btn.sm { padding: 10px 20px; font-size: 14px; }
.btn.full { width: 100%; }

/* brilho que atravessa o CTA principal */
.btn.shine { position: relative; overflow: hidden; }

.btn.shine::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -80%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: shine 3.4s ease infinite;
}

/* ===== navegação ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 6vw, 72px);
  background: transparent;
  transition: background 0.25s, box-shadow 0.25s;
}

.nav.scrolled {
  background: rgba(11, 17, 32, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.nav-brand img {
  height: 42px;
  display: block;
  filter: brightness(0) invert(1);
}

.nav-links { flex: 1; display: flex; gap: 26px; }

.nav-links a {
  color: #b9c6e2;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s;
}

.nav-links a:hover { color: #fff; }

/* ===== herói ===== */
.hero {
  position: relative;
  margin-top: -71px;
  background:
    radial-gradient(120% 70% at 100% 0%, rgba(0, 162, 242, 0.22), transparent 55%),
    radial-gradient(80% 50% at 0% 100%, rgba(11, 90, 198, 0.28), transparent 60%),
    linear-gradient(160deg, #0b1120 0%, #0f172a 45%, #16306e 100%);
  color: #fff;
  padding: clamp(130px, 15vw, 190px) clamp(18px, 6vw, 72px) clamp(40px, 5vw, 60px);
  overflow: hidden;
}

/* grade sutil de mapa */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(80% 70% at 50% 30%, #000, transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  animation: drift 14s ease-in-out infinite alternate;
}

.hero-orb.o1 { width: 380px; height: 380px; background: rgba(0, 162, 242, 0.35); top: -120px; right: 8%; }
.hero-orb.o2 { width: 300px; height: 300px; background: rgba(11, 90, 198, 0.4); bottom: -80px; left: -60px; animation-delay: 3s; }

.hero-inner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #7dd3fc;
  background: rgba(125, 211, 252, 0.09);
  border: 1px solid rgba(125, 211, 252, 0.26);
  padding: 9px 16px;
  border-radius: 99px;
}

.hero-chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
  animation: pulse 2s ease infinite;
}

.hero h1 {
  margin: 24px 0 0;
  font-size: clamp(36px, 5.2vw, 60px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(115deg, #7dd3fc 0%, #00a2f2 60%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  margin: 20px 0 0;
  font-size: clamp(15px, 1.6vw, 17.5px);
  color: #b9c6e2;
  max-width: 470px;
  line-height: 1.65;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; }

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: #dbe4f5;
}

.hero-badges svg { width: 13px; height: 13px; color: #4ade80; }

/* régua de valor */
.hero-stats {
  position: relative;
  max-width: 1120px;
  margin: clamp(44px, 6vw, 72px) auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px clamp(18px, 3vw, 36px);
  backdrop-filter: blur(8px);
}

.hero-stats > div { text-align: center; flex: 1; }

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.hero-stats span { font-size: 12px; color: #93a5c8; }

.hero-stats > i { width: 1px; height: 38px; background: rgba(255, 255, 255, 0.12); }

/* ===== mockup do celular ===== */
.hero-phone { position: relative; display: grid; place-items: center; }

.phone-glow {
  position: absolute;
  inset: 8% 2%;
  background: radial-gradient(closest-side, rgba(0, 162, 242, 0.4), transparent);
  filter: blur(36px);
}

.phone {
  position: relative;
  z-index: 1;
  width: min(288px, 74vw);
  background: #eef1f6;
  border-radius: 40px;
  border: 9px solid #0b1120;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform: rotate(2deg);
  animation: phfloat 7s ease-in-out infinite;
}

.ph-notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 20px;
  border-radius: 12px;
  background: #0b1120;
  z-index: 5;
}

.ph-hdr {
  display: flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(150deg, #0f172a 0%, #1e3a8a 130%);
  color: #fff;
  padding: 38px 14px 8px;
}

.ph-avatar {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 800;
}

.ph-hello { flex: 1; line-height: 1.15; }
.ph-hello small { display: block; font-size: 8.5px; color: #93a5c8; }
.ph-hello strong { font-size: 13px; letter-spacing: -0.2px; }

.ph-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
  animation: pulse 2s ease infinite;
}

.ph-addr {
  background: linear-gradient(150deg, #0f172a 0%, #1e3a8a 160%);
  color: #dbe4f5;
  font-size: 9px;
  font-weight: 600;
  padding: 6px 14px 12px;
}

.ph-addr small {
  display: block;
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #93a5c8;
}

.ph-map { position: relative; height: 172px; background: #e6ebf2; overflow: hidden; }

.ph-street { position: absolute; background: #fff; }
.ph-street.s1 { height: 10px; left: -10%; right: -10%; top: 34%; transform: rotate(-7deg); }
.ph-street.s2 { height: 7px; left: -10%; right: -10%; top: 64%; transform: rotate(-7deg); }
.ph-street.s3 { height: 5px; left: -10%; right: -10%; top: 86%; transform: rotate(-7deg); }
.ph-street.v1 { width: 8px; top: -10%; bottom: -10%; left: 30%; transform: rotate(8deg); }
.ph-street.v2 { width: 6px; top: -10%; bottom: -10%; left: 68%; transform: rotate(8deg); }

.ph-route { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.85; }

.ph-pin {
  position: absolute;
  top: 40%;
  left: 42%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #d03b3b;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.3);
  animation: pinride 9s ease-in-out infinite;
}

.ph-pin svg { width: 22px; height: 22px; color: #16306e; }

.ph-ping {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(208, 59, 59, 0.5);
  animation: ping 2s ease-out infinite;
}

.ph-card {
  background: #fff;
  border-radius: 18px 18px 0 0;
  margin-top: -14px;
  position: relative;
  padding: 13px 14px 16px;
}

.ph-row { display: flex; align-items: center; justify-content: space-between; }
.ph-row strong { font-size: 13px; letter-spacing: -0.2px; }

.ph-locked {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #0f172a;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 99px;
}

.ph-locked svg { width: 9px; height: 9px; }

.ph-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-top: 11px;
}

.ph-act {
  background: #f1f4f9;
  border-radius: 10px;
  padding: 12px 2px;
  text-align: center;
  font-size: 8px;
  font-weight: 700;
  color: #334155;
}

.ph-act.hero-act {
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 6px 14px rgba(11, 90, 198, 0.4);
}

/* cards flutuantes ao redor do celular */
.float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 15px;
  padding: 11px 15px 11px 11px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.4);
  color: var(--ink);
}

.float strong { display: block; font-size: 12px; letter-spacing: -0.2px; }
.float small { font-size: 10px; color: var(--muted); display: inline-flex; align-items: center; gap: 4px; }

.fl-ic {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.fl-ic svg { width: 17px; height: 17px; }
.fl-ic.red { background: #fde8e8; color: #d03b3b; }
.fl-ic.violet { background: #ede9fe; color: #6d28d9; }
.fl-ic.navy { background: #dbeafe; color: #16306e; }

.float .rec {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse 1.4s ease infinite;
}

.fl-alert { top: 7%; left: -12%; animation: float 6s ease-in-out infinite; }
.fl-ai { bottom: 20%; left: -20%; animation: float 7s ease-in-out 1.2s infinite; }
.fl-cam { top: 36%; right: -10%; animation: float 6.5s ease-in-out 0.6s infinite; }

/* ===== seções ===== */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) clamp(18px, 6vw, 72px) 0;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}

.section-head { text-align: center; max-width: 600px; margin: 0 auto 44px; }

.section-head h2 {
  margin: 0;
  font-size: clamp(27px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -1.2px;
}

.section-head p { margin: 12px 0 0; color: var(--muted); font-size: 15.5px; }

.section-head.light h2 { color: #fff; }
.section-head.light p { color: #93a5c8; }

/* ===== bento de recursos ===== */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.bcard {
  background: #fff;
  border-radius: 24px;
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bcard:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12); }

.bcard h3 { margin: 0; font-size: 18.5px; font-weight: 700; letter-spacing: -0.4px; }
.bcard p { margin: 8px 0 0; font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* tempo real (grande) */
.b-map { grid-column: span 7; display: flex; flex-direction: column; gap: 20px; }

.bmap {
  position: relative;
  flex: 1;
  min-height: 210px;
  border-radius: 16px;
  background: #e6ebf2;
  overflow: hidden;
}

.bm-street { position: absolute; background: #fff; }
.bm-street.h1 { height: 12px; left: -5%; right: -5%; top: 30%; transform: rotate(-5deg); }
.bm-street.h2 { height: 8px; left: -5%; right: -5%; top: 62%; transform: rotate(-5deg); }
.bm-street.h3 { height: 6px; left: -5%; right: -5%; top: 85%; transform: rotate(-5deg); }
.bm-street.w1 { width: 10px; top: -5%; bottom: -5%; left: 26%; transform: rotate(6deg); }
.bm-street.w2 { width: 7px; top: -5%; bottom: -5%; left: 64%; transform: rotate(6deg); }

.bm-route { position: absolute; inset: 0; width: 100%; height: 100%; }

.bm-pin {
  position: absolute;
  top: 38%;
  left: 44%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 3.5px solid #d03b3b;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.28);
}

.bm-pin svg { width: 26px; height: 26px; color: #16306e; }

.bm-ping {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2.5px solid rgba(208, 59, 59, 0.45);
  animation: ping 2.2s ease-out infinite;
}

.bm-tag {
  position: absolute;
  left: 14px;
  bottom: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 9px;
  backdrop-filter: blur(4px);
}

/* travamento */
.b-lock { grid-column: span 5; }

.blk-track {
  position: relative;
  height: 54px;
  border-radius: 999px;
  background: #eef1f6;
  margin-top: 20px;
  overflow: hidden;
}

.blk-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 40%;
  border-radius: 999px;
  background: var(--brand-gradient);
  opacity: 0.92;
  animation: lockfill 4.5s ease-in-out infinite;
}

.blk-knob {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.3);
  display: grid;
  place-items: center;
  animation: lockknob 4.5s ease-in-out infinite;
}

.blk-knob svg { width: 19px; height: 19px; color: var(--navy-2); }

.blk-track em {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
}

.blk-auto {
  display: inline-block;
  margin-top: 14px;
  background: #0f172a;
  color: #7dd3fc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 6px 12px;
  border-radius: 99px;
}

/* IA */
.b-ai { grid-column: span 4; }

.bai { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }

.bai-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #f6f8fc;
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.bai-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7c3aed;
  flex-shrink: 0;
}

/* câmera */
.b-cam { grid-column: span 4; }

.bcam {
  position: relative;
  height: 110px;
  border-radius: 16px;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(0, 162, 242, 0.25), transparent 55%),
    linear-gradient(150deg, #0f172a, #1e293b);
  margin-bottom: 18px;
  overflow: hidden;
}

.bcam-live {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  padding: 5px 9px;
  border-radius: 99px;
}

.bcam-live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
  animation: pulse 1.4s ease infinite;
}

.bcam-view {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #7dd3fc;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  background: rgba(0, 0, 0, 0.4);
  padding: 5px 9px;
  border-radius: 8px;
}

/* avisos */
.b-alerts { grid-column: span 4; }

.bal { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }

.bal span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f6f8fc;
  border-radius: 12px;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

.bal b {
  margin-left: auto;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #15803d;
  background: #dcfce7;
  padding: 4px 9px;
  border-radius: 99px;
}

.bal .ch {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.bal .ch svg { width: 14px; height: 14px; }
.bal .ch.push { background: #dbeafe; color: #1d4ed8; }
.bal .ch.whats { background: #dcfce7; color: #16a34a; }
.bal .ch.call { background: #fef3c7; color: #b45309; }

/* car finder: card horizontal de fechamento */
.b-finder {
  grid-column: span 12;
  display: flex;
  align-items: center;
  gap: 26px;
  text-align: left;
}

.b-finder h3 { flex-shrink: 0; }

.b-finder p { margin: 0; flex: 1; }

.bfd {
  position: relative;
  width: 84px;
  height: 84px;
  margin: 0;
  flex-shrink: 0;
}

.bfd-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed #cbd5e1;
  animation: spin 22s linear infinite;
}

.bfd-arrow {
  position: absolute;
  inset: 24px;
  color: var(--blue);
  animation: compass 5s ease-in-out infinite;
}

/* ===== como funciona ===== */
.steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.step {
  flex: 1;
  background: #fff;
  border-radius: 22px;
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.step-link {
  width: clamp(16px, 3vw, 44px);
  align-self: center;
  height: 2px;
  background: repeating-linear-gradient(90deg, #cbd5e1 0 6px, transparent 6px 12px);
  flex-shrink: 0;
}

.step-n {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--brand-gradient);
  color: #fff;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(11, 90, 198, 0.35);
}

.step h3 { margin: 16px 0 0; font-size: 17px; letter-spacing: -0.4px; }
.step p { margin: 7px 0 0; font-size: 13.5px; color: var(--muted); }

/* ===== planos (faixa navy) ===== */
.plans-band {
  margin-top: clamp(64px, 8vw, 104px);
  background:
    radial-gradient(100% 60% at 100% 0%, rgba(0, 162, 242, 0.16), transparent 55%),
    linear-gradient(165deg, #0b1120 0%, #0f172a 50%, #16306e 130%);
  padding-bottom: clamp(64px, 8vw, 96px);
}

.plans-band .section { padding-top: clamp(64px, 8vw, 96px); }

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}

.plan {
  position: relative;
  background: #fff;
  border-radius: 26px;
  padding: 32px 28px 28px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.3);
}

.plan.star {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(0, 162, 242, 0.26), transparent 55%),
    linear-gradient(150deg, #101a33 0%, #1a3a80 140%);
  color: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), 0 0 0 1.5px rgba(0, 162, 242, 0.35);
}

.plan-flag {
  position: absolute;
  top: -14px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 99px;
  box-shadow: 0 8px 18px rgba(0, 162, 242, 0.5);
}

.plan-flag svg { width: 12px; height: 12px; }

.plan h3 { margin: 0; font-size: 21px; font-weight: 800; letter-spacing: -0.5px; }
.plan-tag { margin: 5px 0 0; font-size: 13px; color: var(--muted); }
.plan.star .plan-tag { color: #93a5c8; }

.plan-price {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -2px;
  font-variant-numeric: tabular-nums;
}

.plan-price span { font-size: 17px; font-weight: 700; vertical-align: super; margin-right: 3px; }
.plan-price small {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--muted);
  margin-left: 7px;
}
.plan.star .plan-price small { color: #93a5c8; }

.plan ul {
  list-style: none;
  margin: 22px 0 26px;
  padding: 22px 0 0;
  border-top: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.plan.star ul { border-top-color: rgba(255, 255, 255, 0.12); }

.plan li { position: relative; padding-left: 27px; font-size: 14px; color: #334155; }
.plan.star li { color: #dbe4f5; }

.plan li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #dcfce7 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M448 128L192 384l-128-96" fill="none" stroke="%2315803d" stroke-width="60" stroke-linecap="round" stroke-linejoin="round"/></svg>') center/9px no-repeat;
}

.plan.star li::before {
  background-color: rgba(74, 222, 128, 0.18);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M448 128L192 384l-128-96" fill="none" stroke="%234ade80" stroke-width="60" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.plans-note {
  max-width: 640px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 12.5px;
  color: #93a5c8;
}

/* ===== depoimentos ===== */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.quote {
  margin: 0;
  background: #fff;
  border-radius: 22px;
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
}

.stars { display: flex; gap: 3px; color: #fab219; }
.stars svg { width: 15px; height: 15px; }

.quote blockquote {
  margin: 14px 0 18px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #334155;
}

.quote figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.qa {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

/* ===== faq ===== */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

.faq-list details {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 0 24px;
  border: 1.5px solid transparent;
  transition: border-color 0.2s;
}

.faq-list details[open] { border-color: rgba(0, 162, 242, 0.3); }

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  position: relative;
  padding-right: 34px;
}

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

.faq-list summary::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid #94a3b8;
  border-bottom: 2.5px solid #94a3b8;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s;
}

.faq-list details[open] summary::after { transform: translateY(-30%) rotate(225deg); }

.faq-list details p { margin: 0; padding: 0 0 22px; font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ===== cta final ===== */
.cta-final { padding: clamp(72px, 9vw, 110px) clamp(18px, 6vw, 72px); }

.cta-box {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(125, 211, 252, 0.28), transparent 55%),
    var(--brand-gradient);
  border-radius: 32px;
  padding: clamp(48px, 6vw, 72px) 28px;
  box-shadow: 0 32px 70px rgba(11, 90, 198, 0.45);
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(90% 90% at 50% 0%, #000, transparent);
}

.cta-box h2 {
  position: relative;
  margin: 0;
  font-size: clamp(27px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -1.2px;
}

.cta-box p { position: relative; margin: 14px 0 28px; font-size: 15.5px; color: rgba(255, 255, 255, 0.88); }
.cta-box .btn { position: relative; }

/* ===== rodapé ===== */
.footer { background: #0b1120; color: #93a5c8; padding: clamp(48px, 6vw, 72px) clamp(18px, 6vw, 72px) 36px; }

.foot-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}

.foot-brand img { height: 46px; filter: brightness(0) invert(1); opacity: 0.92; }
.foot-brand p { margin: 14px 0 0; font-size: 13px; line-height: 1.6; max-width: 280px; }

.foot-badges { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }

.foot-badges span { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; }
.foot-badges svg { width: 13px; height: 13px; color: #4ade80; }

.foot-col { display: flex; flex-direction: column; gap: 10px; }
.foot-col strong { color: #e2e8f0; font-size: 13.5px; margin-bottom: 4px; }
.foot-col a { color: #93a5c8; text-decoration: none; font-size: 13.5px; }
.foot-col a:hover { color: #fff; }

.foot-copy {
  max-width: 1120px;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  text-align: center;
}

/* ===== animações ===== */
@keyframes ping { 0% { transform: scale(0.6); opacity: 0.9; } 100% { transform: scale(1.5); opacity: 0; } }
@keyframes pulse { 50% { opacity: 0.4; } }
@keyframes drift { to { transform: translate(30px, 24px) scale(1.08); } }
@keyframes phfloat { 50% { transform: rotate(2deg) translateY(-12px); } }
@keyframes float { 50% { transform: translateY(-10px); } }
@keyframes shine { 0%, 55% { left: -80%; } 100% { left: 130%; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes compass { 0%, 100% { transform: rotate(-14deg); } 50% { transform: rotate(16deg); } }

@keyframes pinride {
  0%, 100% { top: 40%; left: 42%; }
  50% { top: 26%; left: 58%; }
}

@keyframes lockfill { 0%, 15% { width: 18%; } 55%, 80% { width: 100%; } 100% { width: 18%; } }

@keyframes lockknob {
  0%, 15% { left: 5px; }
  55%, 80% { left: calc(100% - 49px); }
  100% { left: 5px; }
}

/* ===== responsivo ===== */
@media (max-width: 960px) {
  .nav-links { display: none; }

  .hero { margin-top: -70px; }

  .hero-inner { grid-template-columns: 1fr; }

  .hero-phone { margin-top: 36px; }

  .phone { transform: none; }

  .fl-alert { left: 0; top: -4%; }
  .fl-ai { left: -2%; bottom: 8%; }
  .fl-cam { right: -2%; }

  .hero-stats { flex-wrap: wrap; }
  .hero-stats > div { flex: 1 1 40%; padding: 6px 0; }
  .hero-stats > i { display: none; }

  .bento { grid-template-columns: 1fr; }
  .b-map, .b-lock, .b-ai, .b-cam, .b-alerts, .b-finder { grid-column: auto; }

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

  .foot-grid { grid-template-columns: 1fr 1fr; }
}
