/* ============================================================
   Local Pages — styles.css
   ============================================================ */

:root {
  --bg: #fafbfc;
  --surface: #ffffff;
  --ink: #0e1726;
  --ink-soft: #2c3648;
  --muted: #69728a;
  --line: #e4e7ee;
  --line-strong: #d2d6e0;

  --brand: #2453d6;
  --brand-deep: #1c3fa8;
  --brand-soft: #eaf0fd;
  --brand-tint: #f3f6fe;

  --warm: #e07a3b;
  --warm-soft: #fdeede;

  --ok: #1f8a5b;
  --wa: #25d366;
  --wa-deep: #1ebe5a;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(14,23,38,.04), 0 6px 24px -10px rgba(14,23,38,.10);
  --shadow-lg: 0 1px 2px rgba(14,23,38,.04), 0 24px 48px -20px rgba(28,63,168,.22);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(2rem, 4.8vw, 3.4rem); line-height: 1.05; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.1; }
h3 { font-size: 1.15rem; line-height: 1.3; }
p  { margin: 0; text-wrap: pretty; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(64px, 9vw, 110px) 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 500; color: var(--muted);
  padding: 6px 12px; border: 1px solid var(--line);
  border-radius: 999px; background: var(--surface);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--brand);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 500; font-size: 1rem; text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
  cursor: pointer; white-space: nowrap;
  min-height: 48px;
  font-family: inherit;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 10px 22px -12px rgba(36,83,214,.6); }
.btn-primary:hover { background: var(--brand-deep); transform: translateY(-1px); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 10px 22px -12px rgba(37,211,102,.5); }
.btn-wa:hover { background: var(--wa-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn svg { width: 18px; height: 18px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: rgba(250,251,252,.85);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: var(--max); margin: 0 auto;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; letter-spacing: -0.02em; font-size: 1.05rem; text-decoration: none;
}
.logo img { height: 40px; width: auto; display: block; }
footer .logo img { height: 48px; }
.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-size: 0.95rem; color: var(--ink-soft);
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: inline-flex; gap: 10px; align-items: center; }
.nav-cta .btn { padding: 10px 16px; font-size: 0.92rem; min-height: 0; }
@media (max-width: 820px) { .nav-links { display: none; } }

/* Hero */
.hero { padding-top: clamp(40px, 6vw, 70px); padding-bottom: clamp(60px, 8vw, 100px); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 999px;
  background: radial-gradient(circle, var(--brand-soft) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; position: relative;
}
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 span.hl {
  background: linear-gradient(transparent 62%, var(--brand-soft) 62%);
  padding: 0 6px; margin: 0 -2px;
}
.hero p.lead { margin-top: 20px; font-size: 1.12rem; color: var(--ink-soft); max-width: 540px; }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; gap: 16px; margin-top: 32px; color: var(--muted); font-size: 0.92rem; }
.avatars { display: flex; }
.avatars span {
  width: 32px; height: 32px; border-radius: 999px; border: 2px solid var(--bg);
  margin-left: -10px; display: grid; place-items: center;
  font-size: 0.75rem; font-weight: 600; color: #fff;
}
.avatars span:first-child { margin-left: 0; }
.stars { color: #e9a23b; letter-spacing: 2px; font-size: 0.9rem; }

/* Niche tabs */
.niche-tabs { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; justify-content: center; }
.niche-tab {
  font-size: 0.78rem; font-weight: 500; color: var(--muted);
  padding: 6px 12px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  cursor: pointer; transition: all .15s ease; font-family: inherit;
}
.niche-tab:hover { color: var(--ink); border-color: var(--line-strong); }
.niche-tab.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Browser mockup */
.browser {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  overflow: hidden; position: relative;
}
.browser-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; border-bottom: 1px solid var(--line);
  background: #f8f9fb;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots i { width: 11px; height: 11px; border-radius: 999px; background: #e1e3ea; display: inline-block; }
.browser-url {
  flex: 1; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 5px 12px; font-size: 0.78rem; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
  transition: opacity .25s ease;
}
.browser-url::before { content: ""; width: 10px; height: 10px; border-radius: 2px; background: var(--brand); opacity: .8; }
.lp-mock { padding: 28px; transition: opacity .25s ease; }
.lp-mock .lp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.lp-logo { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; }
.lp-logo i { width: 22px; height: 22px; border-radius: 6px; background: var(--ink); display: block; }
.lp-nav { display: flex; gap: 14px; font-size: 0.72rem; color: var(--muted); }
.lp-hero-title { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 8px; }
.lp-hero-sub { color: var(--muted); font-size: 0.82rem; margin-bottom: 18px; }
.lp-cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-size: 0.8rem; font-weight: 500;
  padding: 9px 16px; border-radius: 999px;
}
.lp-cta svg { width: 12px; height: 12px; }
.lp-img {
  margin-top: 22px; height: 130px; border-radius: 12px;
  background: repeating-linear-gradient(135deg, #eef0f5, #eef0f5 6px, #f5f7fa 6px, #f5f7fa 12px);
  border: 1px dashed var(--line-strong);
  display: grid; place-items: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem; color: var(--muted);
}
.lp-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 14px; }
.lp-chip { padding: 8px 10px; background: #f3f5f9; border-radius: 8px; font-size: 0.68rem; color: var(--ink-soft); text-align: center; }

.wa-float {
  position: absolute; bottom: 18px; right: 18px;
  background: var(--wa); color: #fff;
  width: 52px; height: 52px; border-radius: 999px;
  display: grid; place-items: center;
  box-shadow: 0 12px 24px -10px rgba(37,211,102,.5);
}
.hero-mockup-wrap { position: relative; }
.ping {
  position: absolute; top: 60px; right: -16px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 10px 14px;
  box-shadow: var(--shadow); display: flex; gap: 10px; align-items: center;
  font-size: 0.85rem;
}
.ping b { font-weight: 600; }
.ping i.dot {
  width: 28px; height: 28px; border-radius: 999px; background: #e8f7ef;
  display: grid; place-items: center; color: var(--ok);
  font-style: normal; font-weight: 700; font-size: 0.85rem;
}
@media (max-width: 920px) { .ping { display: none; } }

/* Strip */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 24px; flex-wrap: wrap;
  max-width: var(--max); margin: 0 auto;
}
.strip-label { font-size: 0.88rem; color: var(--muted); }
.strip-logos { display: flex; gap: 28px; flex-wrap: wrap; opacity: .85; }
.strip-logos span { font-weight: 500; letter-spacing: -0.01em; color: var(--ink-soft); font-size: 0.95rem; }

/* Section header */
.sec-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.sec-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* Problemas */
.problems { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 920px) { .problems { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .problems { grid-template-columns: 1fr; } }
.problem { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.problem .x {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--warm-soft); color: var(--warm);
  display: grid; place-items: center; font-weight: 700;
  margin-bottom: 14px;
}
.problem h3 { font-size: 1rem; margin-bottom: 6px; }
.problem p { color: var(--muted); font-size: 0.95rem; }

/* Mechanism */
.mechanism { background: var(--ink); color: #f5f7fb; position: relative; overflow: hidden; }
.mechanism::before {
  content: ""; position: absolute; top: -300px; left: -200px;
  width: 700px; height: 700px; border-radius: 999px;
  background: radial-gradient(circle, rgba(36,83,214,.22) 0%, transparent 60%);
  pointer-events: none;
}
.mechanism .sec-head h2 { color: #fff; }
.mechanism .sec-head p { color: rgba(255,255,255,.65); }
.mechanism .eyebrow {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}
.mechanism .eyebrow::before { background: var(--warm); }
.mech-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr) 1.25fr;
  gap: 14px; align-items: stretch;
}
@media (max-width: 1020px) {
  .mech-flow { grid-template-columns: repeat(2, 1fr); }
  .mech-flow .mech-out { grid-column: 1 / -1; }
}
@media (max-width: 560px) { .mech-flow { grid-template-columns: 1fr; } }
.mech-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 22px 18px;
  position: relative;
  display: flex; flex-direction: column; gap: 10px;
}
.mech-step .mn {
  width: 28px; height: 28px; border-radius: 999px;
  background: rgba(255,255,255,.1); color: #fff;
  display: grid; place-items: center; font-weight: 600;
  font-size: 0.85rem;
}
.mech-step h3 { font-size: 0.98rem; color: #fff; }
.mech-step p { color: rgba(255,255,255,.65); font-size: 0.88rem; line-height: 1.45; }
.mech-step .mech-ic {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(36,83,214,.18); color: #93b4ff;
  display: grid; place-items: center; margin-bottom: 4px;
}
.mech-step .mech-ic svg { width: 18px; height: 18px; }
.mech-out {
  background: linear-gradient(135deg, #2453d6 0%, #1c3fa8 100%);
  border-color: transparent; color: #fff;
}
.mech-out .mech-ic { background: rgba(255,255,255,.18); color: #fff; }
.mech-out h3 { color: #fff; font-size: 1.05rem; }
.mech-out p { color: rgba(255,255,255,.9); font-size: 0.92rem; }
.mech-out .mech-num {
  font-size: 2rem; font-weight: 600; letter-spacing: -0.03em;
  margin-top: auto; line-height: 1.05;
}
.mech-out .mech-num small { font-size: 0.78rem; font-weight: 400; opacity: .85; display: block; margin-top: 4px; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
@media (max-width: 820px) { .compare { grid-template-columns: 1fr; } }
.compare-col { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 26px; }
.compare-col.good { background: rgba(36,83,214,.12); border-color: rgba(147,180,255,.25); }
.compare-col h4 { font-size: 1rem; color: #fff; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.compare-col h4::before { content: ""; width: 24px; height: 24px; border-radius: 999px; display: inline-block; }
.compare-col.bad h4::before { background: rgba(224,122,59,.25); }
.compare-col.good h4::before { background: rgba(147,180,255,.3); }
.compare-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.compare-col li { color: rgba(255,255,255,.75); font-size: 0.95rem; padding-left: 30px; position: relative; line-height: 1.45; }
.compare-col li::before {
  position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 999px;
  display: grid; place-items: center;
  font-size: 0.7rem; font-weight: 700;
}
.compare-col.bad li::before { content: "\2715"; background: rgba(224,122,59,.2); color: var(--warm); }
.compare-col.good li::before { content: "\2713"; background: rgba(147,180,255,.18); color: #93b4ff; }

/* Benefícios */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 920px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .benefits { grid-template-columns: 1fr; } }
.benefit { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.benefit .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--brand-soft); color: var(--brand-deep); display: grid; place-items: center; margin-bottom: 16px; }
.benefit .ic svg { width: 20px; height: 20px; }
.benefit h3 { margin-bottom: 6px; }
.benefit p { color: var(--muted); font-size: 0.95rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 920px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: relative; }
.step .n {
  width: 32px; height: 32px; border-radius: 999px; background: var(--brand); color: #fff;
  display: grid; place-items: center; font-weight: 600; font-size: 0.92rem;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 6px; font-size: 1.02rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* Examples */
.examples { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 920px) { .examples { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .examples { grid-template-columns: 1fr; } }
.example { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.example .preview { height: 180px; display: flex; flex-direction: column; padding: 18px; gap: 8px; border-bottom: 1px solid var(--line); position: relative; }
.example .pv-bar { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.example .pv-bar i { width: 8px; height: 8px; border-radius: 999px; background: rgba(0,0,0,.12); }
.example .pv-title { font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.example .pv-sub { font-size: 0.76rem; color: var(--ink-soft); }
.example .pv-cta { margin-top: auto; align-self: flex-start; color: #fff; font-size: 0.7rem; font-weight: 500; padding: 6px 12px; border-radius: 999px; }
.example .meta { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; }
.example .meta h3 { font-size: 0.98rem; }
.example .meta span { font-size: 0.82rem; color: var(--muted); }

.e-piscineiro .preview { background: #e3f0f8; } .e-piscineiro .pv-cta { background: #2c7eb5; }
.e-mecanica .preview   { background: #f1ecdf; } .e-mecanica .pv-cta   { background: #8a6a2a; }
.e-marceneiro .preview { background: #f0e5d8; } .e-marceneiro .pv-cta { background: #8a5a2a; }
.e-eletricista .preview{ background: #fff3d6; } .e-eletricista .pv-cta{ background: #b8842a; }
.e-encanador .preview  { background: #e0eaf5; } .e-encanador .pv-cta  { background: #2453d6; }
.e-instalador .preview { background: #ece8e0; } .e-instalador .pv-cta { background: #5a4a3a; }
.e-clinica .preview    { background: #eaf0fd; } .e-clinica .pv-cta    { background: var(--brand); }
.e-restaurante .preview{ background: #fce7d9; } .e-restaurante .pv-cta{ background: var(--warm); }
.e-salao .preview      { background: #f5e3e8; } .e-salao .pv-cta      { background: #a65a7a; }

/* Quotes */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 920px) { .quotes { grid-template-columns: 1fr; } }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; gap: 20px; }
.quote .stars { font-size: 0.95rem; }
.quote p { color: var(--ink-soft); font-size: 1rem; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote .who i { width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; color: #fff; font-weight: 600; font-size: 0.95rem; font-style: normal; }
.quote .who b { font-weight: 600; font-size: 0.95rem; display: block; }
.quote .who span { font-size: 0.82rem; color: var(--muted); }

/* Offer */
.offer-wrap {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 56px);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
@media (max-width: 920px) { .offer-wrap { grid-template-columns: 1fr; } }
.offer h2 { margin-bottom: 14px; }
.offer p.lead { color: var(--muted); font-size: 1.05rem; margin-bottom: 26px; }
.offer-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.offer-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; color: var(--ink-soft); }
.offer-list li::before {
  content: ""; width: 22px; height: 22px; border-radius: 999px; flex: none;
  background: var(--brand-soft) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232453d6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
  margin-top: 2px;
}
.price-card { background: var(--brand-tint); border: 1px solid var(--brand-soft); border-radius: var(--radius); padding: 28px; text-align: left; }
.price-card .pc-eyebrow { font-size: 0.82rem; color: var(--brand-deep); margin-bottom: 8px; font-weight: 500; }
.price-card .pc-price { font-size: 2.4rem; font-weight: 600; letter-spacing: -0.03em; display: flex; align-items: baseline; gap: 6px; color: var(--ink); }
.price-card .pc-price small { font-size: 0.92rem; color: var(--muted); font-weight: 400; }
.price-card .pc-note { color: var(--muted); font-size: 0.9rem; margin-top: 6px; margin-bottom: 22px; }
.price-card .btn { width: 100%; }
.price-card .pc-foot { font-size: 0.82rem; color: var(--muted); margin-top: 14px; text-align: center; }

/* FAQ */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 0; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; font-weight: 500; font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--muted); line-height: 1; font-weight: 300; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { color: var(--muted); padding: 0 0 22px; max-width: 640px; font-size: 0.98rem; }

/* Final CTA */
.final {
  background: var(--brand); color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center; position: relative; overflow: hidden;
}
.final::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 999px;
  background: rgba(255,255,255,.06); pointer-events: none;
}
.final::after {
  content: ""; position: absolute; bottom: -150px; left: -100px;
  width: 400px; height: 400px; border-radius: 999px;
  background: rgba(255,255,255,.06); pointer-events: none;
}
.final > * { position: relative; z-index: 1; }
.final h2 { color: #fff; max-width: 600px; margin: 0 auto 14px; }
.final p { color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 28px; }
.final .cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.final .btn-primary { background: #fff; color: var(--brand-deep); }
.final .btn-primary:hover { background: #f0f3fb; }
.final .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.final .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }

/* Footer */
footer { padding: 40px 0 80px; color: var(--muted); font-size: 0.9rem; }
.foot-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center; }
.foot-links { display: flex; gap: 20px; }
.foot-links a { text-decoration: none; }
.foot-links a:hover { color: var(--ink); }

/* Floating WhatsApp */
.wa-fixed {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  background: var(--wa); color: #fff;
  width: 56px; height: 56px; border-radius: 999px;
  display: grid; place-items: center; text-decoration: none;
  box-shadow: 0 12px 24px -8px rgba(37,211,102,.55), 0 0 0 4px rgba(255,255,255,.6);
  transition: transform .15s ease, background .15s ease;
}
.wa-fixed:hover { background: var(--wa-deep); transform: translateY(-2px); }
.wa-fixed svg { width: 26px; height: 26px; }

/* Mobile sticky CTA bar */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: none;
}
.mobile-cta .btn { width: 100%; min-height: 52px; font-size: 1rem; }
@media (max-width: 760px) {
  .mobile-cta { display: block; }
  .wa-fixed { bottom: 88px; }
  body { padding-bottom: 88px; }
}
