/* ============================================================
   AQUAPRONTA — Landing Page CSS
   Design tokens, components, responsive
   ============================================================ */

:root {
  /* Brand palette — confiável + urgente */
  --c-bg: #f7f5f0;
  --c-bg-alt: #ffffff;
  --c-ink: #0a1628;
  --c-ink-2: #2a3a4f;
  --c-muted: #5e6b7a;
  --c-line: rgba(10, 22, 40, 0.08);

  --c-primary: #0d6b3d;        /* verde da marca Desentupidora Goianão */
  --c-primary-d: #094f2c;
  --c-primary-l: #14a05a;

  --c-accent: #ff5722;         /* laranja urgência */
  --c-accent-d: #d63f0d;
  --c-wa: #25d366;
  --c-wa-d: #128c7e;
  --c-yellow: #ffc107;

  /* Type */
  --ff-display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ff-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(10,22,40,.06), 0 1px 3px rgba(10,22,40,.08);
  --sh-md: 0 4px 12px rgba(10,22,40,.08), 0 2px 4px rgba(10,22,40,.06);
  --sh-lg: 0 12px 32px rgba(10,22,40,.12), 0 4px 12px rgba(10,22,40,.08);
  --sh-xl: 0 24px 60px rgba(10,22,40,.16), 0 8px 24px rgba(10,22,40,.08);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; color: var(--c-ink); }
h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); text-wrap: balance; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); text-wrap: balance; }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
.hl { color: var(--c-accent); }
.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: rgba(11,79,138,.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.eyebrow--light { color: #fff; background: rgba(255,255,255,.14); }

.section { padding: 80px 0; }
.section--alt { background: var(--c-bg-alt); }
.section--dark { background: linear-gradient(135deg, #051628 0%, #0b3158 100%); color: #e8eef5; }
.section--accent { background: linear-gradient(135deg, #061a31 0%, #0b3158 55%, #0d4076 100%); color: #fff; }
.section--accent::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(255,87,34,.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(13,107,61,.25) 0%, transparent 50%);
  pointer-events: none;
}
.section--accent { position: relative; overflow: hidden; }
.section--accent > * { position: relative; z-index: 1; }
.section--accent .hl { color: var(--c-yellow); }
.section--accent h2, .section--dark h2 { color: #fff; }
.section--accent .hl, .section--dark .hl { color: var(--c-yellow); }
.section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__head p { color: var(--c-muted); margin-top: 14px; font-size: 1.05rem; text-wrap: pretty; }
.section--dark .section__head p { color: rgba(255,255,255,.78); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.005em;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn--wa { background: var(--c-wa); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.btn--wa:hover { background: var(--c-wa-d); box-shadow: 0 12px 28px rgba(37,211,102,.45); }
.btn--call { background: var(--c-accent); color: #fff; box-shadow: 0 8px 20px rgba(255,87,34,.35); }
.btn--call:hover { background: var(--c-accent-d); color: #fff; box-shadow: 0 12px 28px rgba(255,87,34,.45); }

/* When call + wa appear together, match their size */
.cta-pair { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-pair > .btn { flex: 1 1 240px; justify-content: center; min-width: 0; }
@media (max-width: 480px) {
  .cta-pair > .btn { flex: 1 1 100%; }
}
.btn--cta {
  background: var(--c-accent); color: #fff;
  font-size: 1.05rem; padding: 18px 24px;
  box-shadow: 0 10px 24px rgba(255,87,34,.4);
  width: 100%;
}
.btn--cta:hover { background: var(--c-accent-d); transform: translateY(-1px); box-shadow: 0 14px 32px rgba(255,87,34,.5); }
.btn--ghost { background: transparent; color: var(--c-ink); border-color: var(--c-line); }
.btn--ghost:hover { border-color: var(--c-ink); }
.section--accent .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.section--accent .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn--xl { padding: 20px 32px; font-size: 1.1rem; }
.btn--sm { padding: 10px 16px; font-size: 0.9rem; }

/* ============================================================
   TOPBAR — clean, responsive, single CTA
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--c-line);
}
.topbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
  min-width: 0;
}
.logo { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.logo__mark { width: 38px; height: 38px; object-fit: contain; display: block; flex-shrink: 0; }
.logo__name {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar__nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.topbar__nav a {
  color: var(--c-ink-2);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.topbar__nav a:hover { color: var(--c-primary); border-bottom-color: var(--c-primary); }

.topbar__cta { display: flex; align-items: center; gap: 8px; }
.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  background: var(--c-accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,87,34,.3);
  transition: background .15s, transform .12s;
}
.topbar__phone:hover { background: var(--c-accent-d); transform: translateY(-1px); }
.topbar__phone svg { color: #fff; flex-shrink: 0; }
.topbar__phone-num { font-size: 0.95rem; font-family: var(--ff-display); white-space: nowrap; }

@keyframes pulse-dot { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.3); } }

@media (max-width: 1100px) {
  .topbar__nav { gap: 18px; }
  .topbar__nav a { font-size: 0.88rem; }
}
@media (max-width: 920px) {
  .topbar__nav { display: none; }
  .topbar__inner { grid-template-columns: 1fr auto; gap: 12px; }
}
@media (max-width: 640px) {
  .topbar__inner { gap: 8px; padding: 10px 0; }
  .logo__mark { display: none; }
  .logo__name { font-size: 1.05rem; max-width: none; }
  .topbar__phone, .btn--wa.btn--sm {
    padding: 0;
    width: 42px; height: 42px;
    border-radius: 50%;
    justify-content: center;
  }
  .topbar__phone svg, .btn--wa.btn--sm svg { margin: 0; }
  .topbar__phone-num { display: none; }
  .topbar__wa-label { display: none; }
}
@media (max-width: 360px) {
  .logo__name { font-size: 0.95rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(160deg, #061a31 0%, #0b3158 55%, #0d4076 100%);
  color: #e8eef5;
  padding: 60px 0 80px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: -50%;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: rotate(-2deg);
  mask-image: radial-gradient(ellipse at 30% 40%, #000 30%, transparent 70%);
}
.hero::before {
  content: "";
  position: absolute; right: -200px; top: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,87,34,.25) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.hero__copy { padding-top: 12px; max-width: 600px; }

.hero__urgency {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,87,34,.12);
  border: 1px solid rgba(255,87,34,.4);
  color: #ffd0bd;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.pulse-dot { width: 8px; height: 8px; background: var(--c-accent); border-radius: 50%; animation: pulse-dot 1.4s infinite; box-shadow: 0 0 0 4px rgba(255,87,34,.2); }

.hero__title { color: #fff; margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.4rem); }
.hero__title .hl { color: var(--c-yellow); }
.hero__sub { font-size: 1.05rem; color: rgba(255,255,255,.85); max-width: 540px; margin-bottom: 28px; text-wrap: pretty; line-height: 1.6; }

.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.hero__ctas .btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.06); }
.hero__ctas .btn--ghost:hover { background: rgba(255,255,255,.14); }

.hero__trust { display: flex; align-items: center; gap: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }
.trust-stars { display: inline-flex; align-items: center; gap: 4px; color: var(--c-yellow); font-size: 1rem; }
.trust-stars b { color: #fff; margin-left: 6px; }
.trust-stars span:not(.trust-stars__sep) { color: rgba(255,255,255,.85); font-size: 0.9rem; font-weight: 500; }
.trust-stars__sep { color: rgba(255,255,255,.3) !important; }

/* LEAD CARD */
.lead { position: relative; }
.lead__ribbon {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-yellow); color: #4a3500;
  padding: 8px 16px;
  font-weight: 800; font-size: 0.76rem;
  letter-spacing: 0.08em;
  border-radius: 8px 8px 0 0;
  margin-left: 24px;
  box-shadow: 0 -4px 12px rgba(255,193,7,.3);
}
.lead__card {
  background: #fff;
  color: var(--c-ink);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--sh-xl);
  border: 1px solid rgba(255,255,255,.4);
}
.lead__head { margin-bottom: 18px; text-align: center; }
.lead__head h2 { font-size: 1.35rem; text-wrap: balance; margin-bottom: 6px; }
.lead__head p { color: var(--c-muted); font-size: 0.95rem; }
.lead__head p b { color: var(--c-accent); font-weight: 800; }

.lead__form { display: grid; gap: 14px; }

.lead__points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
  padding: 18px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  border-radius: var(--r-sm);
  border: 1px solid var(--c-line);
}
.lead__points li {
  display: flex; align-items: center; gap: 10px;
  color: var(--c-ink-2);
  font-size: 0.94rem;
}
.lead__points li svg { color: var(--c-wa); flex-shrink: 0; }
.lead__points b { color: var(--c-ink); font-weight: 700; }

.lead__card .btn--cta { width: 100%; margin-bottom: 12px; }
.lead__cta { flex-direction: column; gap: 8px; margin-bottom: 12px; }
.lead__cta > .btn { flex: 1 1 100%; width: 100%; margin-bottom: 0; }
.field { display: block; }
.field span { display: block; font-size: 0.82rem; font-weight: 600; color: var(--c-ink-2); margin-bottom: 6px; }
.field input, .field select {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--c-line);
  border-radius: var(--r-sm);
  font: inherit; font-size: 1rem;
  background: #fafafa;
  color: var(--c-ink);
  transition: border-color .15s, background .15s;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--c-primary); background: #fff;
  box-shadow: 0 0 0 4px rgba(11,79,138,.1);
}
.field .err { display: block; color: #dc2626; font-size: 0.8rem; font-style: normal; margin-top: 4px; font-weight: 500; }

.lead__legal { font-size: 0.78rem; color: var(--c-muted); display: flex; align-items: center; gap: 6px; justify-content: center; margin-top: 4px; }
.lead__legal svg { color: var(--c-muted); }

.lead__sent { text-align: center; padding: 20px 0; }
.check-big {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--c-wa); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.check-big svg { width: 36px; height: 36px; }
.lead__sent h3 { font-size: 1.4rem; margin-bottom: 8px; }
.lead__sent p { color: var(--c-muted); margin-bottom: 20px; }

.lead__guarantees {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  margin-top: 14px;
}
.lead__guarantees > div {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 10px 8px;
  border-radius: var(--r-sm);
  font-size: 0.78rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,.1);
  justify-content: center;
  text-align: center;
}
.lead__guarantees svg { color: var(--c-yellow); flex-shrink: 0; }

.countdown__digits {
  font-variant-numeric: tabular-nums;
  font-family: var(--ff-display);
  font-weight: 800;
  background: #4a3500;
  color: var(--c-yellow);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 4px;
}

@media (max-width: 900px) {
  .hero { padding: 28px 0 52px; }
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__copy { padding-top: 0; max-width: 100%; }
  .hero__title { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-bottom: 14px; }
  .hero__sub { font-size: 0.98rem; margin-bottom: 22px; }
  .hero__ctas { gap: 10px; margin-bottom: 18px; }
  .hero__ctas .btn { flex: 1; min-width: 0; justify-content: center; }
  .hero__ctas .btn--ghost { flex: 1 1 100%; }
  .hero__trust { padding-top: 14px; }
  .lead__card { padding: 20px 18px; }
  .lead__head h2 { font-size: 1.2rem; }
  .lead__head p { font-size: 0.88rem; }
  .lead__points { padding: 14px; }
  .lead__points li { font-size: 0.88rem; }
  .lead__ribbon { font-size: 0.7rem; padding: 7px 12px; margin-left: 16px; }
  .lead__guarantees > div { font-size: 0.7rem; padding: 8px 6px; }
}
@media (max-width: 420px) {
  .lead__ribbon { display: flex; margin-left: 12px; }
  .lead__guarantees { grid-template-columns: 1fr; gap: 6px; }
}

/* ============================================================
   PROOF BAR
   ============================================================ */
.proof { background: var(--c-ink); color: #fff; padding: 28px 0; border-top: 4px solid var(--c-accent); }
.proof__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
}
.proof__item strong {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--c-yellow);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.proof__item span { color: rgba(255,255,255,.72); font-size: 0.82rem; }

@media (max-width: 800px) {
  .proof__row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px;
  background: var(--c-primary);
  transform: translateY(3px);
  transition: transform .2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: var(--c-primary-l); }
.service-card:hover::before { transform: translateY(0); }
.service-card__icon {
  width: 52px; height: 52px;
  background: rgba(11,79,138,.08);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--c-muted); font-size: 0.92rem; flex: 1; margin-bottom: 14px; }
.service-card__cta { color: var(--c-primary); font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 1000px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .services__grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS
   ============================================================ */
.process__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.process__list::before {
  content: ""; position: absolute; top: 30px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-primary-l) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.process__step { position: relative; text-align: center; padding: 0 8px; }
.process__num {
  width: 60px; height: 60px;
  background: #fff;
  border: 3px solid var(--c-primary);
  color: var(--c-primary);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 800; font-size: 1.5rem;
  margin: 0 auto 16px;
  position: relative; z-index: 1;
  box-shadow: var(--sh-sm);
}
.process__step:hover .process__num { background: var(--c-primary); color: #fff; }
.process__body h3 { margin-bottom: 6px; font-size: 1.05rem; }
.process__body p { font-size: 0.88rem; color: var(--c-muted); }
.process__cta { text-align: center; margin-top: 40px; }

@media (max-width: 900px) {
  .process__list { grid-template-columns: 1fr; gap: 24px; }
  .process__list::before { display: none; }
  .process__step { display: grid; grid-template-columns: 60px 1fr; align-items: center; gap: 16px; text-align: left; }
  .process__num { margin: 0; }
}

/* ============================================================
   VS COMPETITION
   ============================================================ */
.vs__table {
  background: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--c-line);
}
.vs__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  align-items: center;
  padding: 16px 20px;
  border-top: 1px solid var(--c-line);
  font-size: 0.96rem;
}
.vs__row--head {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-d) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 0;
}
.vs__us { text-align: center; font-weight: 700; }
.vs__row--head .vs__us { color: var(--c-yellow); }
.vs__row:not(.vs__row--head) .vs__us {
  background: rgba(255,193,7,.12);
  color: var(--c-primary);
}
.vs__yes { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; background: var(--c-wa); color: #fff; border-radius: 50%; }
.vs__row .vs__them { text-align: center; color: var(--c-muted); }
.vs__no { color: #c4c4c4; font-size: 1.4rem; }

@media (max-width: 700px) {
  .vs__row { grid-template-columns: 1.4fr 0.8fr 0.8fr; padding: 14px 12px; font-size: 0.85rem; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.google-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--c-line);
  padding: 12px 18px; border-radius: 12px;
  margin-top: 18px;
  box-shadow: var(--sh-sm);
}
.google-badge__g {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-family: var(--ff-display);
  position: relative;
}
.google-badge__g::after { content: ""; position: absolute; inset: 4px; background: #fff; border-radius: 50%; }
.google-badge__g { color: transparent; }
.google-badge__g::before { content: "G"; position: absolute; color: #4285f4; font-size: 1rem; z-index: 1; }
.google-badge .trust-stars b { color: var(--c-ink); }
.google-badge .trust-stars span:not(.trust-stars__sep) { color: var(--c-muted); }
.google-badge small { color: var(--c-muted); font-size: 0.78rem; }

.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi__card {
  background: #fff;
  border-radius: var(--r-md);
  padding: 24px;
  border: 1px solid var(--c-line);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.testi__card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.testi__stars { color: var(--c-yellow); font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi__card p { color: var(--c-ink-2); font-size: 0.95rem; margin-bottom: 18px; flex: 1; text-wrap: pretty; }
.testi__card footer { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--c-line); }
.testi__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--c-ink);
  font-family: var(--ff-display);
}
.testi__card footer strong { display: block; font-size: 0.94rem; }
.testi__card footer small { color: var(--c-muted); font-size: 0.78rem; }

@media (max-width: 900px) { .testi__grid { grid-template-columns: 1fr; } }

/* ============================================================
   REGIONS
   ============================================================ */
.regions__grid {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; max-width: 880px; margin: 0 auto;
}
.region-chip {
  background: #fff; border: 1px solid var(--c-line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--c-ink-2);
  transition: all .15s;
}
.region-chip:hover { border-color: var(--c-primary); color: var(--c-primary); }
.regions__note { text-align: center; margin-top: 28px; color: var(--c-muted); }
.regions__note a { color: var(--c-primary); font-weight: 700; text-decoration: underline; }

/* ============================================================
   GUARANTEE
   ============================================================ */
.guarantee__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
}
.guarantee__seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.seal-svg {
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.4));
}
.seal-caption {
  text-align: center;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
}

.guarantee__copy ul { list-style: none; display: grid; gap: 8px; margin: 20px 0 28px; }
.guarantee__copy ul li { display: flex; gap: 10px; align-items: center; }
.guarantee__copy ul svg { color: var(--c-yellow); }

@media (max-width: 800px) {
  .guarantee__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .guarantee__seal { margin: 0 auto; }
  .seal-svg { width: 200px !important; height: 200px !important; }
  .seal-caption { font-size: 0.78rem; letter-spacing: 0.14em; }
  .guarantee__copy ul li { justify-content: center; }
  .guarantee__copy .cta-pair { justify-content: center; }
}
@media (max-width: 480px) {
  .seal-svg { width: 170px !important; height: 170px !important; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__inner { max-width: 800px; }
.faq__list { display: grid; gap: 8px; }
.faq__list details {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.faq__list details[open] { border-color: var(--c-primary-l); box-shadow: var(--sh-sm); }
.faq__list summary {
  list-style: none;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: var(--c-ink);
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__chev {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(11,79,138,.08);
  color: var(--c-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 400;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq__list details[open] .faq__chev { transform: rotate(45deg); background: var(--c-primary); color: #fff; }
.faq__list p { padding: 0 22px 20px; color: var(--c-muted); line-height: 1.6; }

.faq__contact { text-align: center; margin-top: 32px; }
.faq__contact p { color: var(--c-muted); margin-bottom: 14px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalcta__inner { text-align: center; max-width: 760px; margin: 0 auto; }
.finalcta__inner h2 { color: #fff; margin-bottom: 14px; }
.finalcta__inner p { color: rgba(255,255,255,.92); font-size: 1.1rem; margin-bottom: 28px; text-wrap: pretty; }
.finalcta__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.finalcta__small { color: rgba(255,255,255,.8); font-size: 0.85rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0a1628; color: rgba(255,255,255,.82); padding: 56px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer h4 { color: #fff; margin-bottom: 14px; font-size: 0.95rem; }
.footer a { display: flex; align-items: center; gap: 8px; padding: 4px 0; color: rgba(255,255,255,.7); font-size: 0.92rem; }
.footer a:hover { color: var(--c-yellow); }
.logo--footer .logo__name { color: #fff; }
.logo--footer { margin-bottom: 12px; }
.footer p, .footer small { color: rgba(255,255,255,.6); font-size: 0.85rem; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}
.footer__agency-inline a {
  display: inline-block;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}
.footer__agency-inline a:hover { color: var(--c-yellow); }
.footer__agency-inline strong { color: rgba(255,255,255,.9); font-weight: 700; }
.footer__agency-inline a:hover strong { color: var(--c-yellow); }

@media (max-width: 700px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 80px; right: 20px;
  z-index: 90;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.wa-float__btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--c-wa);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.5);
  transition: transform .2s;
}
.wa-float:hover .wa-float__btn { transform: scale(1.08); }
.wa-float__bubble {
  background: #fff;
  color: var(--c-ink);
  padding: 10px 16px;
  border-radius: 12px;
  box-shadow: var(--sh-md);
  font-size: 0.85rem;
  display: flex; flex-direction: column; line-height: 1.3;
  position: relative;
}
.wa-float__bubble::after {
  content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: #fff;
}
.wa-float__bubble strong { font-size: 0.92rem; }
.wa-float__bubble span { color: var(--c-muted); font-size: 0.78rem; }
.wa-float--pulse .wa-float__btn { animation: wa-bump 1s ease infinite; }
@keyframes wa-bump { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.12); box-shadow: 0 12px 40px rgba(37,211,102,.7); } }

@media (max-width: 700px) {
  .wa-float { display: none !important; }
}

/* ============================================================
   STICKY MOBILE BAR
   ============================================================ */
.sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 95;
  background: #fff;
  border-top: 1px solid var(--c-line);
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  padding: 10px;
  gap: 8px;
}
.sticky-bar__btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
}
.sticky-bar__btn--call { background: var(--c-accent); color: #fff; }
.sticky-bar__btn--wa { background: var(--c-wa); color: #fff; }

@media (max-width: 700px) { .sticky-bar { display: flex; } body { padding-bottom: 76px; } }

/* ============================================================
   PhoneTrack floating widget — push above sticky bar on mobile
   (sem afetar o código do PhoneTrack; só posição via CSS)
   ============================================================ */

/* ============================================================
   EXIT INTENT MODAL
   ============================================================ */
.exit-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.exit-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10,22,40,.7);
  backdrop-filter: blur(4px);
  animation: fade-in .25s;
}
.exit-modal__card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 36px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: var(--sh-xl);
  animation: pop-in .35s cubic-bezier(.2,1.2,.4,1);
}
@keyframes fade-in { from { opacity: 0; } }
@keyframes pop-in { from { opacity: 0; transform: scale(.92) translateY(20px); } }
.exit-modal__close {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-line);
  color: var(--c-ink);
  font-size: 1.4rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.exit-modal__close:hover { background: var(--c-ink); color: #fff; }
.exit-modal__badge {
  display: inline-block;
  background: var(--c-accent); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.exit-modal__card h2 { font-size: 1.7rem; margin-bottom: 12px; }
.exit-modal__card p { color: var(--c-muted); margin-bottom: 22px; }
.exit-modal__card .btn { width: 100%; margin-bottom: 12px; }
.exit-modal__card small { color: var(--c-muted); font-size: 0.78rem; }

/* ============================================================
   LIVE NOTIFICATIONS
   ============================================================ */
.live-notif {
  position: fixed; bottom: 24px; left: 24px;
  z-index: 80;
  background: #fff;
  border-radius: 12px;
  padding: 12px 16px 12px 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--c-line);
  max-width: 320px;
  animation: slide-in .4s cubic-bezier(.2,1,.4,1);
}
@keyframes slide-in { from { opacity: 0; transform: translateX(-20px); } }
.live-notif__dot {
  width: 10px; height: 10px;
  background: var(--c-wa);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(37,211,102,.2);
  animation: pulse-dot 1.5s infinite;
}
.live-notif__body { font-size: 0.85rem; color: var(--c-ink-2); line-height: 1.35; }
.live-notif__body strong { color: var(--c-ink); }
.live-notif__body em { font-style: normal; color: var(--c-primary); font-weight: 600; }
.live-notif__body small { display: block; color: var(--c-muted); font-size: 0.72rem; margin-top: 2px; }

@media (max-width: 700px) {
  .live-notif { left: 12px; right: 12px; bottom: 90px; max-width: none; }
}
