/* =========================================================
   Landing Ads — Presença digital completa
   Design system + layout
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Marca */
  --blue: #0047b3;
  --blue-600: #0052cc;
  --blue-500: #1e6bff;
  --blue-400: #4d8dff;
  --blue-300: #85b1ff;
  --blue-ghost: rgba(30, 107, 255, 0.12);

  /* Superfícies */
  --ink: #04070f;
  --ink-2: #070c18;
  --ink-3: #0b1222;
  --surface: rgba(255, 255, 255, 0.028);
  --surface-2: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* Texto */
  --text: #eaf0fa;
  --text-2: #b9c5d9;
  --muted: #8593ab;

  /* Semânticos */
  --green: #23d18b;
  --red: #ff5a6a;
  --amber: #ffb340;

  /* Tipografia */
  --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Métrica */
  --container: 1200px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --header-h: 76px;

  /* Efeitos */
  --shadow: 0 24px 70px -30px rgba(0, 0, 0, 0.85);
  --shadow-blue: 0 26px 70px -28px rgba(0, 71, 179, 0.75);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--blue-500); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--blue), var(--blue-600));
  border-radius: 20px;
  border: 3px solid var(--ink);
}
::-webkit-scrollbar-thumb:hover { background: var(--blue-500); }

/* ---------- Fundo global animado ---------- */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-fx::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 90% 65% at 50% 0%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 65% at 50% 0%, #000 20%, transparent 78%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  will-change: transform;
}
.orb-1 {
  width: 620px; height: 620px;
  top: -240px; left: -140px;
  background: radial-gradient(circle, rgba(0, 71, 179, 0.8), transparent 68%);
  animation: drift 26s var(--ease) infinite alternate;
}
.orb-2 {
  width: 520px; height: 520px;
  top: 12%; right: -180px;
  background: radial-gradient(circle, rgba(30, 107, 255, 0.5), transparent 68%);
  animation: drift 32s var(--ease) infinite alternate-reverse;
}
.orb-3 {
  width: 700px; height: 700px;
  bottom: -280px; left: 40%;
  background: radial-gradient(circle, rgba(0, 71, 179, 0.42), transparent 70%);
  animation: drift 38s var(--ease) infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(90px, 70px, 0) scale(1.16); }
}

/* Glow que segue o cursor */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 520px; height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 107, 255, 0.13), transparent 62%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  body:hover .cursor-glow { opacity: 1; }
}

/* ---------- Layout ---------- */
.container {
  width: min(100% - 44px, var(--container));
  margin-inline: auto;
}
main, header, footer { position: relative; z-index: 2; }

section { position: relative; padding: clamp(72px, 9vw, 128px) 0; }

/* itens de grid podem encolher abaixo do min-content do conteúdo */
.hero-grid > *,
.problems-grid > *,
.about-grid > *,
.video-grid > *,
.packages > *,
.compare > *,
.services-grid > *,
.form-grid > * { min-width: 0; }

.section-line {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(100% - 44px, var(--container));
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.032em;
}

h1 { font-size: clamp(2.35rem, 5.6vw, 4.15rem); }
h2 { font-size: clamp(1.95rem, 3.9vw, 3.1rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); letter-spacing: -0.02em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.755rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "//";
  color: var(--blue);
  font-weight: 700;
}

.grad {
  background: linear-gradient(105deg, var(--blue-400) 0%, var(--blue-300) 40%, #fff 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  color: var(--text-2);
  max-width: 66ch;
}

.section-head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 66px); }
.section-head h2 { margin-bottom: 20px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead { margin-inline: auto; }

/* ---------- Botões ---------- */
.btn {
  --btn-bg: var(--blue);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 27px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.945rem;
  letter-spacing: -0.012em;
  white-space: nowrap;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s ease, background 0.3s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-600), var(--blue));
  color: #fff;
  box-shadow: 0 14px 34px -14px rgba(0, 71, 179, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.32) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.75s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 48px -16px rgba(0, 82, 204, 1); }
.btn-primary:hover::after { transform: translateX(130%); }

.btn-wa {
  background: linear-gradient(135deg, #26d367, #14a84e);
  color: #04210f;
  box-shadow: 0 14px 34px -16px rgba(38, 211, 103, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 22px 46px -16px rgba(38, 211, 103, 0.95); }

.btn-ghost {
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--blue-400);
  background: var(--blue-ghost);
}

.btn-sm { padding: 11px 20px; font-size: 0.86rem; }
.btn-lg { padding: 18px 34px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- Cabeçalho ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, box-shadow 0.4s ease, height 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  height: 66px;
  background: rgba(4, 7, 15, 0.82);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--line);
  box-shadow: 0 18px 40px -30px rgba(0, 0, 0, 0.95);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 8px 22px -10px rgba(0, 71, 179, 0.9);
  transition: transform 0.5s var(--ease), box-shadow 0.4s ease;
}
.brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.07);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22), 0 12px 30px -10px rgba(30, 107, 255, 1);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-name { font-weight: 800; font-size: 1.02rem; letter-spacing: -0.03em; }
.brand-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 9px 14px;
  font-size: 0.895rem;
  font-weight: 600;
  color: var(--text-2);
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }
.nav a.active { color: #fff; }

.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }

.burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  position: relative;
}
.burger span {
  position: absolute;
  left: 12px;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.4s var(--ease), opacity 0.25s ease, width 0.3s ease;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; width: 14px; }
.burger span:nth-child(3) { top: 27px; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 20px; }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: rgba(4, 7, 15, 0.97);
  backdrop-filter: blur(22px);
  padding: calc(var(--header-h) + 26px) 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s var(--ease), visibility 0.35s;
  overflow-y: auto;
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: none; }
.mobile-nav a:not(.btn) {
  padding: 17px 6px;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav a:not(.btn) span { font-family: var(--mono); font-size: 0.72rem; color: var(--blue-400); }
.mobile-nav .btn { margin-top: 22px; }

/* ---------- Hero ---------- */
.hero {
  padding-top: calc(var(--header-h) + clamp(46px, 7vw, 90px));
  padding-bottom: clamp(56px, 7vw, 90px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(36px, 5vw, 66px);
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero-sub {
  font-size: clamp(1.06rem, 1.55vw, 1.3rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 18px;
  max-width: 30ch;
  line-height: 1.4;
}
.hero-sub em {
  font-style: normal;
  color: var(--blue-400);
  position: relative;
  white-space: nowrap;
}
.hero-sub em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-400));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline 0.9s var(--ease) 0.9s forwards;
}
@keyframes underline { to { transform: scaleX(1); } }

.hero .lead { margin-bottom: 30px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--muted);
  font-weight: 600;
}
.trust-item svg { width: 16px; height: 16px; color: var(--blue-400); flex: none; }

/* Painel visual do hero */
.hero-visual { position: relative; }
.hero-panel {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(160deg, rgba(30, 107, 255, 0.14), rgba(7, 12, 24, 0.9) 46%),
    var(--ink-2);
  padding: 22px;
  box-shadow: var(--shadow-blue);
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(150deg, rgba(77, 141, 255, 0.65), transparent 45%, rgba(0, 71, 179, 0.5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.panel-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.panel-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.panel-dot:nth-child(1) { background: #ff5f57; }
.panel-dot:nth-child(2) { background: #febc2e; }
.panel-dot:nth-child(3) { background: #28c840; }
.panel-url {
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 12px;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Gráfico animado */
.chart {
  position: relative;
  height: 168px;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 33.33%,
    rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
.chart svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.chart .line {
  fill: none;
  stroke: url(#lineGrad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  filter: drop-shadow(0 0 10px rgba(77, 141, 255, 0.75));
}
.chart.go .line { animation: draw 2.1s var(--ease) forwards; }
.chart .area { fill: url(#areaGrad); opacity: 0; }
.chart.go .area { animation: fadeArea 1s ease 1.2s forwards; }
.chart .pulse { fill: #fff; opacity: 0; }
.chart.go .pulse { animation: popIn 0.5s var(--ease) 1.9s forwards, ping 2.4s ease-in-out 2.4s infinite; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadeArea { to { opacity: 1; } }
@keyframes popIn { to { opacity: 1; } }
@keyframes ping {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0.9)); }
  50% { filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.95)); }
}
.chart-label {
  position: absolute;
  top: 12px; left: 14px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.chart-value {
  position: absolute;
  top: 28px; left: 14px;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}
.chart-delta {
  position: absolute;
  top: 36px; left: 108px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green);
}

/* Cards de notificação */
.notif-stack { display: grid; gap: 10px; }
.notif {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  opacity: 0;
  transform: translateY(14px);
  animation: notifIn 0.65s var(--ease) forwards;
}
.notif:nth-child(1) { animation-delay: 0.5s; }
.notif:nth-child(2) { animation-delay: 0.95s; }
.notif:nth-child(3) { animation-delay: 1.4s; }
.notif:nth-child(4) { animation-delay: 1.85s; }
@keyframes notifIn { to { opacity: 1; transform: none; } }
.notif-ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none;
  background: var(--blue-ghost);
  color: var(--blue-400);
  border: 1px solid rgba(77, 141, 255, 0.28);
}
.notif-ico svg { width: 17px; height: 17px; }
.notif-ico.green { background: rgba(35, 209, 139, 0.14); color: var(--green); border-color: rgba(35, 209, 139, 0.3); }
.notif-txt { flex: 1; min-width: 0; }
.notif-title { font-size: 0.86rem; font-weight: 700; letter-spacing: -0.015em; }
.notif-sub { font-size: 0.74rem; color: var(--muted); }
.notif-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(35, 209, 139, 0.6);
  animation: blip 2s ease-out infinite;
  flex: none;
}
@keyframes blip {
  0% { box-shadow: 0 0 0 0 rgba(35, 209, 139, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(35, 209, 139, 0); }
  100% { box-shadow: 0 0 0 0 rgba(35, 209, 139, 0); }
}

/* Selo flutuante */
.float-badge {
  position: absolute;
  right: -18px;
  bottom: -86px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 17px;
  border-radius: 16px;
  background: rgba(9, 15, 28, 0.94);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  animation: bob 5s ease-in-out infinite;
  z-index: 3;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}
.float-badge b { display: block; font-size: 1.06rem; letter-spacing: -0.03em; }
.float-badge small { color: var(--muted); font-size: 0.72rem; }
.float-badge .ico {
  width: 36px; height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue-600), var(--blue));
  color: #fff;
}
.float-badge .ico svg { width: 18px; height: 18px; }

/* ---------- Marquee ---------- */
.marquee-wrap {
  position: relative;
  padding: 20px 0;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(0, 71, 179, 0.1), rgba(30, 107, 255, 0.05), rgba(0, 71, 179, 0.1));
  overflow: hidden;
  z-index: 2;
}
.marquee-wrap::before,
.marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 130px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }
.marquee { display: flex; width: max-content; animation: scroll 38s linear infinite; }
.marquee-wrap:hover .marquee { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-2);
  white-space: nowrap;
}
.marquee-item::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
  box-shadow: 0 0 12px var(--blue-500);
}

/* ---------- Cartões genéricos ---------- */
.card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.4s var(--ease), border-color 0.35s ease, background 0.35s ease, box-shadow 0.4s ease;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(30, 107, 255, 0.14), transparent 62%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(77, 141, 255, 0.42);
  background: var(--surface-2);
  box-shadow: 0 26px 56px -32px rgba(0, 71, 179, 0.9);
}
.card:hover::before { opacity: 1; }

.card-ico {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(140deg, rgba(30, 107, 255, 0.22), rgba(0, 71, 179, 0.1));
  border: 1px solid rgba(77, 141, 255, 0.26);
  color: var(--blue-400);
  transition: transform 0.4s var(--ease), color 0.3s ease;
}
.card:hover .card-ico { transform: scale(1.08) rotate(-5deg); color: #fff; }
.card-ico svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 9px; }
.card p { font-size: 0.93rem; color: var(--text-2); }

/* ---------- Problemas ---------- */
.problems-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}
.pain-list { display: grid; gap: 12px; }
.pain {
  display: flex;
  gap: 14px;
  padding: 17px 19px;
  border-radius: 15px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.35s var(--ease), border-color 0.3s ease, background 0.3s ease;
}
.pain:hover {
  transform: translateX(7px);
  border-color: rgba(255, 90, 106, 0.4);
  background: rgba(255, 90, 106, 0.05);
}
.pain-x {
  width: 26px; height: 26px;
  border-radius: 8px;
  flex: none;
  display: grid;
  place-items: center;
  background: rgba(255, 90, 106, 0.14);
  color: var(--red);
  border: 1px solid rgba(255, 90, 106, 0.28);
}
.pain-x svg { width: 13px; height: 13px; }
.pain p { font-size: 0.945rem; color: var(--text-2); }
.pain strong { color: #fff; font-weight: 700; }

/* Mockup de busca do Google */
.serp {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: #0e1524;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.serp-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}
.serp-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.86rem;
  color: var(--text-2);
}
.serp-input svg { width: 15px; height: 15px; color: var(--muted); flex: none; }
.serp-caret {
  display: inline-block;
  width: 1.5px; height: 15px;
  background: var(--blue-400);
  animation: caret 1.05s steps(2) infinite;
  vertical-align: -2px;
}
@keyframes caret { 50% { opacity: 0; } }
.serp-body { padding: 18px; display: grid; gap: 12px; }
.serp-result {
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.032);
}
.serp-result .url { font-size: 0.74rem; color: var(--green); font-family: var(--mono); }
.serp-result .title { font-size: 1rem; font-weight: 700; color: var(--blue-300); margin: 3px 0 5px; }
.serp-result .meta { font-size: 0.78rem; color: var(--muted); display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.serp-result .stars { color: var(--amber); letter-spacing: 1px; }
.serp-empty {
  padding: 26px 18px;
  border-radius: 14px;
  border: 1.5px dashed rgba(255, 90, 106, 0.45);
  background: rgba(255, 90, 106, 0.055);
  text-align: center;
}
.serp-empty .q {
  width: 40px; height: 40px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
  border: 2px solid rgba(255, 90, 106, 0.4);
}
.serp-empty b { display: block; font-size: 1.02rem; letter-spacing: -0.025em; }
.serp-empty span { font-size: 0.83rem; color: var(--muted); }

.pain-close {
  margin-top: 30px;
  padding: 26px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(77, 141, 255, 0.3);
  background: linear-gradient(135deg, rgba(0, 71, 179, 0.18), rgba(255, 255, 255, 0.02));
}
.pain-close p { color: var(--text-2); }
.pain-close p + p { margin-top: 10px; }
.pain-close strong { color: #fff; }

/* ---------- Comparação ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.compare-col {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
}
.compare-col.win {
  border-color: rgba(77, 141, 255, 0.45);
  background: linear-gradient(165deg, rgba(0, 71, 179, 0.2), rgba(7, 12, 24, 0.6));
  box-shadow: var(--shadow-blue);
  position: relative;
}
.compare-col.win::after {
  content: "Recomendado";
  position: absolute;
  top: 22px; right: 22px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
}
.compare-col h3 {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 1.12rem;
}
.compare-col h3 .badge {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex: none;
}
.compare-col:not(.win) h3 .badge { background: rgba(255, 90, 106, 0.14); color: var(--red); }
.compare-col.win h3 .badge { background: rgba(35, 209, 139, 0.15); color: var(--green); }
.compare-col h3 .badge svg { width: 16px; height: 16px; }
.compare-list { display: grid; gap: 15px; }
.compare-list li {
  display: flex;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--text-2);
  line-height: 1.55;
}
.compare-list li svg { width: 19px; height: 19px; flex: none; margin-top: 2px; }
.compare-col:not(.win) .compare-list svg { color: var(--red); opacity: 0.8; }
.compare-col.win .compare-list svg { color: var(--green); }
.compare-col.win .compare-list li { color: var(--text); }

/* ---------- Sobre / pilares ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
.about-copy p { color: var(--text-2); margin-bottom: 16px; }
.about-copy strong { color: #fff; }
.pillars { display: grid; gap: 14px; }
.pillar {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.4s var(--ease), border-color 0.3s ease;
}
.pillar:hover { transform: translateY(-4px); border-color: rgba(77, 141, 255, 0.42); }
.pillar-ico {
  width: 44px; height: 44px;
  border-radius: 13px;
  flex: none;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(30, 107, 255, 0.24), rgba(0, 71, 179, 0.1));
  border: 1px solid rgba(77, 141, 255, 0.26);
  color: var(--blue-400);
}
.pillar-ico svg { width: 21px; height: 21px; }
.pillar h4 { font-size: 1.02rem; margin-bottom: 5px; }
.pillar p { font-size: 0.9rem; color: var(--muted); }

/* ---------- Passos ---------- */
.steps { position: relative; display: grid; gap: 16px; }
.steps::before {
  content: "";
  position: absolute;
  left: 33px; top: 40px; bottom: 40px;
  width: 2px;
  background: linear-gradient(var(--blue), rgba(77, 141, 255, 0.15));
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  align-items: start;
  padding: 24px 26px 24px 0;
  border-radius: var(--radius);
  transition: background 0.35s ease, transform 0.4s var(--ease);
}
.step:hover { background: var(--surface); transform: translateX(6px); }
.step-num {
  position: relative;
  z-index: 2;
  width: 68px; height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 1.06rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(140deg, var(--blue-600), var(--blue));
  border: 4px solid var(--ink);
  box-shadow: 0 0 0 1px rgba(77, 141, 255, 0.4), 0 14px 30px -14px rgba(0, 71, 179, 1);
  transition: transform 0.45s var(--ease);
}
.step:hover .step-num { transform: scale(1.09); }
.step-body { padding-top: 9px; }
.step-body h3 { margin-bottom: 8px; }
.step-body p { color: var(--text-2); font-size: 0.95rem; max-width: 62ch; }

/* ---------- Serviços ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service {
  position: relative;
  padding: 26px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.35s ease, box-shadow 0.4s ease;
}
.service::after {
  content: "";
  position: absolute;
  inset: auto auto -60% -20%;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 107, 255, 0.3), transparent 65%);
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.6s var(--ease);
}
.service:hover {
  transform: translateY(-8px);
  border-color: rgba(77, 141, 255, 0.5);
  box-shadow: 0 30px 60px -34px rgba(0, 71, 179, 1);
}
.service:hover::after { opacity: 1; transform: translate(20px, -20px); }
.service-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(140deg, rgba(30, 107, 255, 0.24), rgba(0, 71, 179, 0.08));
  border: 1px solid rgba(77, 141, 255, 0.26);
  color: var(--blue-400);
  transition: transform 0.45s var(--ease), background 0.4s ease, color 0.3s ease;
}
.service:hover .service-ico {
  transform: rotate(-8deg) scale(1.1);
  background: linear-gradient(140deg, var(--blue-600), var(--blue));
  color: #fff;
}
.service-ico svg { width: 21px; height: 21px; }
.service h3 { font-size: 1.04rem; margin-bottom: 7px; }
.service p { font-size: 0.885rem; color: var(--muted); }

/* Bloco de pacotes */
.packages {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(28px, 4vw, 50px);
  align-items: center;
  padding: clamp(30px, 4vw, 46px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(77, 141, 255, 0.32);
  background:
    radial-gradient(700px circle at 12% 0%, rgba(0, 71, 179, 0.3), transparent 62%),
    var(--ink-3);
}
.packages h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin-bottom: 12px; }
.packages > div > p { color: var(--text-2); }
.pkg-list { display: grid; gap: 13px; }
.pkg-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.93rem;
  color: var(--text-2);
}
.pkg-list svg { width: 20px; height: 20px; color: var(--green); flex: none; margin-top: 1px; }

/* ---------- Depoimentos ---------- */
.slider { position: relative; }
.slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.testimonial {
  flex: 0 0 min(420px, 84%);
  scroll-snap-align: start;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(30, 107, 255, 0.09), var(--surface));
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.35s ease, transform 0.4s var(--ease);
}
.testimonial:hover { border-color: rgba(77, 141, 255, 0.45); transform: translateY(-5px); }
.quote-mark {
  display: block;
  font-size: 4.4rem;
  line-height: 0.55;
  height: 0.5em;
  color: var(--blue-400);
  opacity: 0.38;
  font-family: Georgia, "Times New Roman", serif;
}
.testimonial p { font-size: 1rem; color: var(--text); line-height: 1.62; flex: 1; }
.testimonial .stars { color: var(--amber); letter-spacing: 2px; font-size: 0.9rem; }
.t-author { display: flex; align-items: center; gap: 13px; padding-top: 16px; border-top: 1px solid var(--line); }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.98rem;
  color: #fff;
  background: linear-gradient(140deg, var(--blue-600), var(--blue));
  flex: none;
}
.t-author b { display: block; font-size: 0.94rem; letter-spacing: -0.02em; }
.t-author span { font-size: 0.79rem; color: var(--muted); }

.slider-nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 22px; }
.slider-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: var(--surface-2);
  display: grid;
  place-items: center;
  color: var(--text);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}
.slider-btn:hover { background: var(--blue); border-color: var(--blue); transform: scale(1.07); }
.slider-btn svg { width: 18px; height: 18px; }

/* ---------- Vídeo ---------- */
.video-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 4.5vw, 60px);
  align-items: center;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 71, 179, 0.4), transparent 65%),
    var(--ink-3);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-blue);
  cursor: pointer;
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.play {
  position: relative;
  width: 86px; height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: #fff;
  transition: transform 0.4s var(--ease), background 0.3s ease;
}
.play::before,
.play::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(77, 141, 255, 0.5);
  animation: ripple 2.6s ease-out infinite;
}
.play::after { animation-delay: 1.3s; }
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.9); opacity: 0; }
}
.video-frame:hover .play { transform: scale(1.1); background: var(--blue); }
.play svg { width: 30px; height: 30px; margin-left: 4px; }
.video-caption {
  position: absolute;
  left: 20px; bottom: 20px; right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.video-caption .rec { display: inline-flex; align-items: center; gap: 7px; color: var(--red); }
.video-caption .rec i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: caret 1.4s ease-in-out infinite;
}

/* ---------- Formulários ---------- */
.form-card {
  padding: clamp(26px, 3.4vw, 38px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: linear-gradient(170deg, rgba(30, 107, 255, 0.1), var(--ink-2));
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field select,
.field textarea {
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-size: 0.94rem;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  width: 100%;
}
.field input::placeholder { color: #55627a; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-400);
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 0 4px rgba(30, 107, 255, 0.14);
}
.field select { appearance: none; cursor: pointer; background-image: none; }
.field select option { background: #0b1222; color: var(--text); }

/* Toggle sim/não */
.toggle-q { display: flex; flex-direction: column; gap: 9px; }
.toggle-q > span { font-size: 0.88rem; color: var(--text-2); font-weight: 600; }
.toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.35);
  gap: 4px;
  width: fit-content;
}
/* radio acessível, mas invisível — sem esticar o layout */
.toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
}
.toggle input:focus-visible + label {
  outline: 2px solid var(--blue-400);
  outline-offset: 2px;
}
.toggle label {
  padding: 8px 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s ease;
  user-select: none;
}
.toggle input:checked + label { background: linear-gradient(135deg, var(--blue-600), var(--blue)); color: #fff; }

.form-note { font-size: 0.76rem; color: var(--muted); margin-top: 14px; text-align: center; }
.form-note a { color: var(--blue-400); text-decoration: underline; text-underline-offset: 3px; }

.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.form-success.show { display: block; animation: notifIn 0.5s var(--ease) forwards; }
.form-success .tick {
  width: 62px; height: 62px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(35, 209, 139, 0.14);
  border: 1px solid rgba(35, 209, 139, 0.4);
  color: var(--green);
}
.form-success .tick svg { width: 28px; height: 28px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--text-2); font-size: 0.92rem; margin-bottom: 20px; }

/* ---------- FAQ ---------- */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}
.faq-tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--text-2);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}
.faq-tab:hover { transform: translateY(-2px); color: #fff; }
.faq-tab.active {
  background: linear-gradient(135deg, var(--blue-600), var(--blue));
  border-color: var(--blue);
  color: #fff;
}
.faq-panel { display: none; }
.faq-panel.active { display: grid; gap: 12px; animation: notifIn 0.45s var(--ease) forwards; }

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.faq-item.open { border-color: rgba(77, 141, 255, 0.45); background: var(--surface-2); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}
.faq-q:hover { color: var(--blue-300); }
.faq-ico {
  width: 30px; height: 30px;
  border-radius: 9px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.3);
  position: relative;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.4s var(--ease);
}
.faq-ico::before,
.faq-ico::after {
  content: "";
  position: absolute;
  background: var(--blue-400);
  border-radius: 2px;
  transition: transform 0.4s var(--ease), background 0.3s ease;
}
.faq-ico::before { width: 12px; height: 2px; }
.faq-ico::after { width: 2px; height: 12px; }
.faq-item.open .faq-ico { background: var(--blue); border-color: var(--blue); transform: rotate(180deg); }
.faq-item.open .faq-ico::before { background: #fff; }
.faq-item.open .faq-ico::after { transform: scaleY(0); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding: 0 24px 23px;
  font-size: 0.94rem;
  color: var(--text-2);
  max-width: 82ch;
}

/* ---------- CTA final ---------- */
.final-cta {
  position: relative;
  padding: clamp(44px, 6vw, 76px) clamp(26px, 4vw, 60px);
  border-radius: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(77, 141, 255, 0.35);
  background:
    radial-gradient(900px circle at 20% 0%, rgba(0, 71, 179, 0.42), transparent 60%),
    radial-gradient(700px circle at 90% 100%, rgba(30, 107, 255, 0.22), transparent 60%),
    var(--ink-3);
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent 75%);
}
.final-cta > * { position: relative; }
.final-cta h2 { margin-bottom: 18px; }
.final-cta .lead { margin: 0 auto 32px; }
.final-cta .btn-row { justify-content: center; }

/* ---------- Rodapé ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(52px, 6vw, 74px) 0 30px;
  background: linear-gradient(180deg, transparent, rgba(0, 71, 179, 0.07));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  margin-bottom: 46px;
}
.footer-about p { font-size: 0.9rem; color: var(--muted); margin: 18px 0 20px; max-width: 42ch; }
.footer h4 {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-400);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-links { display: grid; gap: 11px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-2);
  transition: color 0.25s ease, transform 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}
.footer-links a:hover { color: var(--blue-300); transform: translateX(4px); }
.footer-links a svg { width: 15px; height: 15px; flex: none; opacity: 0.7; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  color: var(--text-2);
  transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.socials a:hover {
  transform: translateY(-4px);
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.socials svg { width: 19px; height: 19px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: 0.81rem;
  color: var(--muted);
}
.footer-bottom a:hover { color: var(--blue-300); }

/* ---------- Botão flutuante WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 14px 20px 14px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, #26d367, #14a84e);
  color: #04210f;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 18px 40px -14px rgba(20, 168, 78, 0.9);
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.55s var(--ease), opacity 0.4s ease, box-shadow 0.35s ease;
}
.wa-float.show { transform: none; opacity: 1; }
.wa-float:hover { box-shadow: 0 24px 52px -14px rgba(38, 211, 103, 1); transform: translateY(-3px); }
.wa-float svg { width: 24px; height: 24px; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(38, 211, 103, 0.6);
  animation: ripple 2.8s ease-out infinite;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(2, 4, 9, 0.82);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  overflow-y: auto;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-box {
  width: min(540px, 100%);
  padding: clamp(26px, 4vw, 38px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: linear-gradient(170deg, rgba(30, 107, 255, 0.14), var(--ink-2) 55%);
  box-shadow: var(--shadow);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.45s var(--ease);
  position: relative;
  margin: auto;
}
.modal.open .modal-box { transform: none; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text-2);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
}
.modal-close:hover { background: var(--red); color: #fff; transform: rotate(90deg); }
.modal-close svg { width: 16px; height: 16px; }
.modal-box .eyebrow { margin-bottom: 12px; }
.modal-box h3 { font-size: 1.55rem; margin-bottom: 10px; }
.modal-box > p { color: var(--text-2); font-size: 0.93rem; margin-bottom: 22px; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(0.94); }

/* Barra de progresso do scroll */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  z-index: 95;
  background: linear-gradient(90deg, var(--blue), var(--blue-400));
  box-shadow: 0 0 14px rgba(77, 141, 255, 0.85);
  transition: width 0.1s linear;
}

/* ---------- Responsivo ---------- */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .header-cta .btn { display: none; }
  .burger { display: block; }
  .hero-grid,
  .problems-grid,
  .about-grid,
  .video-grid,
  .packages { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 12px; }
  .hero-sub { max-width: none; }
  .compare { grid-template-columns: 1fr; }
  .serp { position: static; }
  .float-badge { right: 10px; bottom: -18px; }
}

@media (max-width: 640px) {
  body { font-size: 15.8px; }
  .container { width: calc(100% - 32px); }
  /* botões longos podem quebrar em vez de esticar a página */
  .btn { white-space: normal; text-align: center; line-height: 1.35; }
  .form-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps::before { left: 25px; }
  .step { grid-template-columns: 52px 1fr; gap: 16px; padding: 18px 0; }
  .step-num { width: 52px; height: 52px; font-size: 0.92rem; border-width: 3px; }
  .step-body { padding-top: 2px; }
  .wa-float { right: 14px; bottom: 14px; padding: 12px 17px 12px 13px; font-size: 0.86rem; }
  .float-badge { position: static; margin-top: 14px; animation: none; }
  .compare-col.win::after { display: none; }
  .slider-nav { justify-content: center; }
  .testimonial { flex-basis: 88%; padding: 24px; }
  .marquee-wrap::before, .marquee-wrap::after { width: 60px; }
}

/* ---------- Acessibilidade ---------- */
:focus-visible {
  outline: 2px solid var(--blue-400);
  outline-offset: 3px;
  border-radius: 6px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
