/* ============================================================
   99 DESENTUPIDOR — v4 (24/05/2026)
   Design: hero água-em-movimento + ícone WhatsApp oficial.
   Vanilla CSS, sem !important, sem framework, replicável Elementor.
   ============================================================ */

:root {
  --c-navy: #0B3D7A;
  --c-navy-deep: #062A57;
  --c-cyan: #18a6e6;
  --c-aqua: #4fd3f4;
  --c-aqua-soft: #b6ecfa;
  --c-yellow: #FFD600;
  --c-yellow-deep: #f0b800;
  --c-wa: #25D366;
  --c-wa-deep: #128C7E;
  --c-text: #1a2438;
  --c-text-soft: #5a6478;
  --c-bg: #ffffff;
  --c-bg-soft: #f4f8fc;
  --c-border: #e4ebf2;
  --shadow-md: 0 8px 24px rgba(11, 61, 122, 0.12);
  --shadow-lg: 0 18px 50px rgba(11, 61, 122, 0.18);
  --shadow-wa: 0 10px 32px rgba(37, 211, 102, 0.45);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --f-display: 'Barlow Condensed', 'Inter', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --container: 1200px;
}

html { scroll-behavior: smooth; }

/* nav anchors não ficam cobertos pelo header sticky */
section[id] { scroll-margin-top: 90px; }
@media (max-width: 768px) { section[id] { scroll-margin-top: 72px; } }

body {
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

img, svg { max-width: 100%; height: auto; display: block; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--c-navy-deep);
  color: #fff;
  font-size: .82rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.topbar .ico {
  width: 14px; height: 14px;
  color: var(--c-yellow);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: var(--shadow-md);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header .logo {
  height: 42px;
  width: auto;
  max-width: 60vw;
}
.header nav {
  display: flex;
  gap: 22px;
  font-weight: 600;
  font-size: .93rem;
}
.header nav a {
  color: var(--c-text);
  text-decoration: none;
}
.header nav a:hover { color: var(--c-navy); }
.header .header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-wa);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .35);
  transition: transform .15s ease;
}
.header .header-cta:hover { transform: translateY(-1px); }
.header .header-cta svg { width: 18px; height: 18px; }

/* ============================================================
   HERO — gradiente água animado + técnico SVG
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(24,166,230,.25), transparent 55%),
    linear-gradient(135deg, #062A57 0%, #0B3D7A 45%, #0a4d92 100%);
  color: #fff;
  overflow: hidden;
  padding: 64px 0 64px;
}
@keyframes water-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
/* glow decorativo sutil */
.hero::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  top: -180px; left: -160px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(79,211,244,.18), rgba(79,211,244,0) 65%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 214, 0, .18);
  color: var(--c-yellow);
  border: 1px solid rgba(255, 214, 0, .4);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  background: #ff5050;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 80, 80, .8);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 80, 80, .8); }
  100% { box-shadow: 0 0 0 14px rgba(255, 80, 80, 0); }
}

.hero h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.hero h1 .y {
  color: var(--c-yellow);
  display: inline-block;
}
.hero h1 .h {
  background: linear-gradient(90deg, #fff, #b6ecfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .lead {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: rgba(255,255,255,.92);
  max-width: 540px;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: var(--r-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform .15s ease, box-shadow .2s ease;
  border: none;
  cursor: pointer;
}
.btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }

.btn-wa {
  background: var(--c-wa);
  color: #fff;
  box-shadow: var(--shadow-wa);
}
.btn-wa:hover { box-shadow: 0 14px 40px rgba(37, 211, 102, .6); }

.btn-tel {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
  backdrop-filter: blur(6px);
}
.btn-tel:hover { background: rgba(255,255,255,.22); }

.btn-yellow {
  background: var(--c-yellow);
  color: var(--c-navy-deep);
  box-shadow: 0 8px 24px rgba(255, 214, 0, .4);
}

.hero-trust {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-trust .t {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
}
.hero-trust svg {
  width: 18px; height: 18px;
  color: var(--c-aqua);
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  padding: 3px;
}

/* HERO PHOTO — foto real técnico, formato retrato, com chips sobrepostos */
.hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-photo img {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 24px;
  box-shadow:
    0 30px 60px rgba(0,0,0,.45),
    0 0 0 1px rgba(255,255,255,.08);
  position: relative;
  z-index: 2;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: auto -24px -24px auto;
  width: 70%;
  height: 70%;
  background: linear-gradient(135deg, rgba(255,214,0,.18), transparent 60%);
  border-radius: 24px;
  z-index: 1;
}
.hero-chip {
  position: absolute;
  background: #fff;
  color: var(--c-navy-deep);
  padding: 10px 14px;
  border-radius: var(--r-pill);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  font-weight: 700;
  font-size: .85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  white-space: nowrap;
}
.hero-chip svg { width: 18px; height: 18px; color: var(--c-cyan); }
.chip-time { top: 18%; left: -16px; }
.chip-rating { bottom: 12%; right: -16px; background: var(--c-yellow); }
.chip-rating svg { color: var(--c-navy-deep); }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   LOGOS FAIXA
   ============================================================ */
.logos-band {
  background: var(--c-bg-soft);
  padding: 24px 0;
  border-bottom: 1px solid var(--c-border);
}
.logos-band .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}
.logos-band .l {
  font-family: var(--f-display);
  font-weight: 800;
  color: var(--c-text-soft);
  font-size: 1.15rem;
  letter-spacing: .04em;
  opacity: .7;
  transition: opacity .2s;
}
.logos-band .l:hover { opacity: 1; color: var(--c-navy); }

/* ============================================================
   SECTION GENÉRICO
   ============================================================ */
section { padding: 72px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head .kicker {
  color: var(--c-cyan);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--c-navy-deep);
  margin-bottom: 14px;
}
.section-head p { color: var(--c-text-soft); font-size: 1.04rem; }

/* ============================================================
   SERVIÇOS — cards com gradiente + ícone grande
   ============================================================ */
.services { background: var(--c-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-cyan);
}
.svc-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-navy-deep);
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.svc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,61,122,0) 40%, rgba(11,61,122,.4) 100%);
}
.svc-card:hover .svc-img img { transform: scale(1.08); }
.svc-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.svc-body h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--c-navy-deep);
  text-transform: uppercase;
  letter-spacing: .005em;
}
.svc-body p {
  color: var(--c-text-soft);
  font-size: .94rem;
  flex: 1;
}
.svc-arrow {
  font-weight: 700;
  color: var(--c-cyan);
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.svc-arrow svg { width: 16px; height: 16px; transition: transform .2s; }
.svc-card:hover .svc-arrow svg { transform: translateX(4px); }

/* ============================================================
   DIFERENCIAIS — faixa escura com pattern
   ============================================================ */
.differentials {
  position: relative;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.differentials .diff-bg {
  position: absolute;
  inset: 0;
  background: url('../img/photos/bg-water.webp') center/cover no-repeat;
  z-index: -2;
}
.differentials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,42,87,.92) 0%, rgba(11,61,122,.85) 50%, rgba(6,42,87,.92) 100%);
  z-index: -1;
}
.section-head-light h2 { color: #fff; }
.section-head-light p { color: rgba(255,255,255,.78); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.diff-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  transition: transform .2s, background .2s, border-color .2s;
}
.diff-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.12);
  border-color: var(--c-yellow);
}
.diff-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 4.4rem;
  line-height: 1;
  color: var(--c-yellow);
  text-shadow: 0 4px 18px rgba(0,0,0,.25);
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.diff-num span {
  font-size: 1.2rem;
  color: rgba(255,255,255,.85);
  font-weight: 700;
}
.diff-num .prefix {
  font-size: 2.4rem;
  margin-right: 4px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  align-self: center;
  letter-spacing: -.02em;
}
.diff-card h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: .005em;
}
.diff-card p {
  color: rgba(255,255,255,.78);
  font-size: .92rem;
}

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.how { background: var(--c-bg-soft); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.how-step {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  text-align: center;
  overflow: hidden;
  padding-bottom: 28px;
}
.how-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 36px;
}
.how-img img { width: 100%; height: 100%; object-fit: cover; }
.how-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(6,42,87,.5) 100%);
}
.how-num {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-yellow);
  color: var(--c-navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.25), 0 0 0 4px #fff;
  z-index: 2;
}
.how-step h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--c-navy-deep);
  margin: 14px 22px 8px;
}
.how-step p { color: var(--c-text-soft); font-size: .95rem; padding: 0 22px; }

/* ============================================================
   ÁREAS
   ============================================================ */
.areas { background: #fff; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.areas-grid .area {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-cyan);
  padding: 14px 16px;
  border-radius: var(--r-sm);
  font-weight: 600;
  color: var(--c-navy-deep);
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.areas-grid .area svg { width: 16px; height: 16px; color: var(--c-cyan); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--c-bg-soft); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.review {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.review .stars {
  color: var(--c-yellow-deep);
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}
.review .stars svg { width: 18px; height: 18px; }
.review .quote {
  font-size: .98rem;
  color: var(--c-text);
  margin-bottom: 18px;
  line-height: 1.6;
  flex: 1;
}
.review .who {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--c-border);
  padding-top: 14px;
}
.review .avatar,
.review .avatar-photo {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--c-aqua-soft);
}
.review .who-meta strong { display: block; color: var(--c-navy-deep); font-size: .95rem; }
.review .who-meta small { color: var(--c-text-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: #fff; }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: background .2s;
}
.faq details[open] {
  background: #fff;
  box-shadow: var(--shadow-md);
  border-color: var(--c-cyan);
}
.faq summary {
  font-weight: 700;
  color: var(--c-navy-deep);
  cursor: pointer;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--c-cyan);
  font-weight: 300;
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary::-webkit-details-marker { display: none; }
.faq details p {
  color: var(--c-text-soft);
  margin-top: 12px;
  font-size: .96rem;
  line-height: 1.6;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-final .cta-bg {
  position: absolute;
  inset: 0;
  background: url('../img/photos/caminhao-99-bg.webp') center/cover no-repeat;
  z-index: -2;
  transform: scale(1.05);
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,42,87,.88) 0%, rgba(11,61,122,.82) 100%);
  z-index: -1;
}
.cta-final h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.cta-final p {
  font-size: 1.1rem;
  margin-bottom: 26px;
  color: rgba(255,255,255,.92);
}
.cta-final .hero-ctas { justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #051a36;
  color: rgba(255,255,255,.7);
  padding: 56px 0 24px;
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer h4 {
  color: #fff;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; }
.footer a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .15s;
}
.footer a:hover { color: var(--c-aqua); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* ============================================================
   FAB WHATSAPP STICKY
   ============================================================ */
.fab-wa {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 64px;
  height: 64px;
  background: var(--c-wa);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-wa);
  z-index: 100;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  animation: wa-pulse 2.4s ease-out infinite;
}
.fab-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 40px rgba(37, 211, 102, .65);
}
.fab-wa svg { width: 36px; height: 36px; }
@keyframes wa-pulse {
  0% { box-shadow: 0 10px 32px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 10px 32px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 32px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .fab-wa { animation: none; } }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 960px) {
  .hero { padding: 28px 0 36px; }
  .hero-grid { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .hero-eyebrow, .hero-ctas, .hero-trust { justify-content: center; }
  .hero-trust { border-top: 0; padding-top: 8px; gap: 10px; }
  .hero-trust .t { font-size: .82rem; }
  /* mobile/tablet: H1 acima, foto abaixo (playbook serviço emergencial) */
  .hero-photo { order: 2; }
  .hero-photo img { max-width: 320px; aspect-ratio: 4 / 5; object-position: center 25%; }
}
@media (min-width: 641px) and (max-width: 960px) {
  /* tablet: foto maior, sem cortar capacete (object-position top) */
  .hero-photo img { max-width: 420px; aspect-ratio: 3 / 4; object-position: center top; }
}
@media (max-width: 960px) {
  .hero-photo::after { display: none; }
  .chip-time { left: 8%; top: 6%; font-size: .76rem; padding: 8px 12px; }
  .chip-rating { right: 8%; bottom: 4%; font-size: .76rem; padding: 8px 12px; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); line-height: 1.02; }
  .hero h1 .h { display: block; }
  .hero .lead { font-size: .96rem; }
  .header nav { display: none; }
  .header .header-cta span { display: none; }
  .header .logo { height: 32px; max-width: 50vw; }
  .header { padding: 10px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .svc-body { padding: 16px; }
  .svc-body h3 { font-size: 1.1rem; }
  .svc-body p { font-size: .85rem; }
  .diff-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .diff-num { font-size: 3.2rem; }
  .how-grid, .reviews-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 48px 0; }
  .topbar { display: none; }
  .fab-wa { width: 60px; height: 60px; bottom: 16px; right: 16px; }
  .fab-wa svg { width: 32px; height: 32px; }
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-body { padding: 18px 20px 22px; }
  .svc-body h3 { font-size: 1.25rem; }
  .svc-body p { font-size: .92rem; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .diff-num { font-size: 2.8rem; }
  /* pílulas de cidades com mais ar no mobile (achado inspetor 24/05) */
  .areas-grid { gap: 10px; grid-template-columns: 1fr 1fr; }
  .areas-grid .area { padding: 12px 14px; font-size: .88rem; }
}

/* ===================================================================
   STICKY MOBILE CTA BAR — visita técnica (WhatsApp + Telefone)
   Aparece só em viewport ≤768px. Esconde o FAB-WA pra evitar duplicação.
   Padrão UX: 2 botões fixos no bottom — toque grande (mín 48px altura).
   =================================================================== */
.mobile-cta-bar { display: none; }

@media (max-width: 768px) {
  /* Esconde FAB circular (substituído pela barra de 2 ícones) */
  .fab-wa { display: none; }

  /* Espaço no body pra não cobrir conteúdo final */
  body { padding-bottom: 78px; }

  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background: #fff;
    border-top: 1px solid var(--c-border);
    box-shadow: 0 -8px 24px rgba(11, 61, 122, .12);
    gap: 0;
  }
  .mobile-cta-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 8px;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .02em;
    min-height: 56px;
    transition: filter 200ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .mobile-cta-bar a:active { filter: brightness(.92); }
  .mobile-cta-bar svg { width: 22px; height: 22px; flex-shrink: 0; }

  .mcb-wa {
    background: var(--c-wa, #25D366);
    color: #fff;
  }
  .mcb-tel {
    background: var(--c-navy, #0B3D7A);
    color: #fff;
  }
}
