/* ============================================================
   Xerém Benefícios — landing
   ============================================================ */

:root {
  /* brand */
  --yellow: #FFC107;
  --yellow-2: #FFB300;
  --yellow-soft: #FFF4D1;
  --yellow-cream: #FFFBEF;

  /* ink */
  --ink: #181818;
  --ink-2: #2A2A2A;
  --ink-3: #4A4A4A;
  --gray: #6B7280;
  --gray-2: #9CA3AF;
  --line: #E8E5DE;
  --line-soft: #F0EDE6;

  /* surfaces */
  --bg: #FFFFFF;
  --cream: #FAF7F0;
  --cream-2: #F4EFE2;

  /* layout */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20,20,20,.04), 0 1px 1px rgba(20,20,20,.03);
  --shadow: 0 10px 28px rgba(20,20,20,.07), 0 2px 6px rgba(20,20,20,.04);
  --shadow-lg: 0 28px 60px rgba(20,20,20,.12), 0 6px 18px rgba(20,20,20,.06);

  /* type — Manrope */
  --f-display: "Manrope", system-ui, sans-serif;
  --f-body: "Manrope", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { font-size: 16px; line-height: 1.5; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ============== shared layout ============== */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--yellow);
  display: block;
}

.h-display {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

.h1 { font-size: clamp(40px, 5.4vw, 76px); }
.h2 { font-size: clamp(32px, 3.6vw, 52px); }
.h3 { font-size: clamp(22px, 1.8vw, 28px); }

.lead {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--ink-3);
  line-height: 1.5;
  text-wrap: pretty;
  margin: 0;
}

/* ============== buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover { background: #000; }

.btn-yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(255,193,7,.35);
}
.btn-yellow:hover { background: var(--yellow-2); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-wa {
  background: #25D366;
  color: #fff;
}
.btn-wa:hover { background: #1ebe5d; }

/* ============== navbar ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo svg { height: 38px; width: auto; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .btn { padding: 11px 18px; font-size: 14px; }

.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; color: var(--ink);
}
.nav-phone .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #25D366; box-shadow: 0 0 0 4px rgba(37,211,102,.18);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(37,211,102,.18); }
  50% { box-shadow: 0 0 0 6px rgba(37,211,102,.05); }
}

/* ============== hero shared ============== */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
}
.hero-stats .item { padding-right: 18px; }
.hero-stats .item + .item { padding-left: 28px; border-left: 1px solid rgba(0,0,0,.1); }
.hero-stats .num {
  font-family: var(--f-display);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stats .lbl {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 8px;
  line-height: 1.35;
}

/* hero A: yellow warm with placeholder */
.hero-a {
  background: var(--yellow);
  padding: 56px 0 0;
}
.hero-a .wrap { position: relative; }
.hero-a-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: end;
  min-height: 620px;
}
.hero-a-text { padding-bottom: 72px; }
.hero-a-text .h1 { color: var(--ink); margin-top: 22px; }
.hero-a-text .lead { color: rgba(24,24,24,.74); margin-top: 22px; max-width: 520px; }
.hero-a-actions { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-a-extra {
  margin-top: 16px;
  font-size: 13.5px;
  color: rgba(24,24,24,.7);
}
.hero-a-extra strong { color: var(--ink); font-weight: 600; }

.hero-a-photo {
  position: relative;
  align-self: stretch;
  margin-top: 30px;
}
.hero-a-photo .ph {
  position: absolute;
  inset: 0 0 0 0;
  background: var(--ink);
  border-radius: 22px 22px 0 0;
  overflow: hidden;
}

.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-a-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  max-width: 280px;
}
.hero-a-tag .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--yellow); display: grid; place-items: center;
  font-weight: 700; font-size: 13px; color: var(--ink);
  flex-shrink: 0;
}
.hero-a-tag .t1 { font-weight: 600; font-size: 13px; }
.hero-a-tag .t2 { font-size: 12px; color: var(--ink-3); line-height: 1.3; }

/* big X watermark for hero A */
.hero-a-mark {
  position: absolute;
  right: -120px;
  top: -80px;
  width: 480px;
  opacity: .12;
  pointer-events: none;
}

/* ============== sections ============== */
section { padding: 100px 0; }
section.tight { padding: 72px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.section-head .lead { max-width: 560px; }

/* ============== trust strip ============== */
.trust {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.trust-items {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-items .pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-2); font-weight: 500;
}
.trust-items .pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
}

/* ============== sobre / story ============== */
.story {
  background: var(--bg);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: start;
}
.story-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ink);
}
.story-photo .badge {
  position: absolute;
  top: 22px; left: 22px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.story-text .h2 { margin-top: 22px; }
.story-text .body { margin-top: 24px; }
.story-text .body p {
  font-size: 17px;
  color: var(--ink-3);
  line-height: 1.65;
  margin: 0 0 16px;
}
.story-text .body p strong { color: var(--ink); font-weight: 600; }

.story-signature {
  margin-top: 30px;
  display: flex; align-items: center; gap: 14px;
}
.story-signature .avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--cream-2); display: grid; place-items: center;
  font-weight: 700; color: var(--ink);
  border: 1px solid var(--line);
}
.story-signature .who { font-weight: 600; font-size: 14px; }
.story-signature .role { font-size: 13px; color: var(--ink-3); }

/* ============== plan card ============== */
.plan-section { background: var(--cream); }
.plan-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.plan-intro .h2 { margin-top: 22px; }
.plan-intro .lead { margin-top: 22px; }

.plan-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.plan-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 6px;
  background: var(--yellow);
}
.plan-name {
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.plan-title {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.plan-price .from { font-size: 13px; color: var(--ink-3); margin-right: 4px; }
.plan-price .currency { font-size: 18px; font-weight: 600; }
.plan-price .num {
  font-family: var(--f-display);
  font-size: 60px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan-price .per { font-size: 14px; color: var(--ink-3); }

.plan-features {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.plan-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
}
.plan-features .ck {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--yellow);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-cta {
  margin-top: 30px;
  display: flex; flex-direction: column; gap: 10px;
}
.plan-cta .btn { width: 100%; }
.plan-foot {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
  line-height: 1.4;
}

/* plan intro rows */
.plan-intro-row {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.5;
}
.plan-intro-row strong { color: var(--ink); font-weight: 600; }
.plan-intro-row-ico {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--ink);
}

/* ============== differentials ============== */
.diffs { background: var(--bg); }
.diffs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.diff {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, background .25s;
}
.diff:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  background: #fff;
}
.diff .ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--yellow);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.diff .h {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 10px;
}
.diff p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* ============== coverage list (large) ============== */
.coverage { background: var(--ink); color: #fff; }
.coverage .eyebrow { color: rgba(255,255,255,.7); }
.coverage .eyebrow::before { background: var(--yellow); }
.coverage .h2 { color: #fff; }
.coverage .lead { color: rgba(255,255,255,.7); }
.coverage-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.cov-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.cov-item:nth-child(odd) { padding-right: 32px; border-right: 1px solid rgba(255,255,255,.1); }
.cov-item:nth-child(even) { padding-left: 32px; }
.cov-item .n {
  font-family: var(--f-mono);
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.cov-item .name {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.cov-item .pill {
  font-size: 11px;
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--yellow);
  border: 1px solid rgba(255,193,7,.4);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
}

/* ============== como funciona ============== */
.how { background: var(--yellow-cream); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.step {
  position: relative;
}
.step .n {
  font-family: var(--f-display);
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--yellow-2);
  -webkit-text-stroke: 1px var(--ink);
  display: inline-block;
  margin-bottom: 18px;
}
.step .h {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.step p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 240px;
}

/* ============== testimonials ============== */
.testi { background: var(--bg); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.testi-card.feat {
  background: var(--yellow);
  border-color: var(--yellow);
}
.testi-card .stars { display: flex; gap: 3px; margin-bottom: 18px; }
.testi-card blockquote {
  margin: 0;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--ink);
  flex: 1;
}
.testi-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.testi-card.feat .who { border-top-color: rgba(0,0,0,.15); }
.testi-card .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--cream-2);
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.testi-card.feat .avatar { background: var(--ink); color: var(--yellow); }
.testi-card .name { font-weight: 600; font-size: 14px; }
.testi-card .place { font-size: 12.5px; color: var(--ink-3); }
.testi-card.feat .place { color: rgba(24,24,24,.7); }

/* ============== bairro / mapa ============== */
.bairro {
  background: var(--cream);
}
.bairro-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.bairro-map {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
}
.bairro-map .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px);
  background-size: 40px 40px;
}
.bairro-map .pin {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.bairro-map .pin.main {
  width: 24px; height: 24px;
  background: var(--ink);
  border: 4px solid var(--yellow);
  z-index: 2;
}
.bairro-map .ring {
  position: absolute;
  width: 240px; height: 240px;
  border: 1.5px dashed var(--yellow-2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.bairro-map .label {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .04em;
  color: var(--ink-3);
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -100%);
  background: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--line);
}
.bairro-map .legend {
  position: absolute;
  left: 20px; bottom: 20px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.6;
}
.bairro-map .legend .row { display: flex; align-items: center; gap: 8px; }
.bairro-map .legend .sw { width: 10px; height: 10px; border-radius: 2px; }

.bairro-stats {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bairro-stats .num {
  font-family: var(--f-display);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.bairro-stats .lbl {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 8px;
}

/* chip cloud of all served neighborhoods */
.bairros-chips {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bairros-chips .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  transition: background .15s, border-color .15s, transform .15s;
}
.bairros-chips .chip:hover {
  background: var(--yellow-soft);
  border-color: var(--yellow-2);
  transform: translateY(-1px);
}
.bairros-chips .chip-main {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
  font-weight: 600;
}
.bairros-chips .chip-main:hover {
  background: var(--yellow-2);
  border-color: var(--yellow-2);
}
.bairros-chips .chip svg {
  width: 12px; height: 12px;
}

/* ============== FAQ ============== */
.faq { background: var(--cream); }
.faq-grid {
  display: grid;
  grid-template-columns: .9fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .icn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background .2s;
}
.faq-item[open] .icn { background: var(--yellow); }
.faq-item[open] .icn svg { transform: rotate(45deg); }
.faq-item .icn svg { transition: transform .2s; }
.faq-item .answer {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 620px;
}

/* ============== CTA final ============== */
.cta {
  background: var(--yellow);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta .wrap { position: relative; z-index: 2; text-align: center; }
.cta .eyebrow { color: var(--ink); }
.cta .eyebrow::before { background: var(--ink); }
.cta .h1 { margin-top: 22px; max-width: 820px; margin-left: auto; margin-right: auto; }
.cta .lead {
  margin: 24px auto 0;
  color: rgba(24,24,24,.78);
  max-width: 580px;
}
.cta-actions {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-mark {
  position: absolute;
  right: -80px; bottom: -120px;
  width: 420px;
  opacity: .14;
  pointer-events: none;
}
.cta-mark.left {
  left: -80px; top: -100px; right: auto; bottom: auto;
  transform: rotate(15deg);
}

/* ============== footer ============== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 80px 0 36px;
}
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: #fff; }

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-brand .logo { margin-bottom: 22px; }
.footer-brand .logo svg { height: 42px; width: auto; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}

.footer-col h4 {
  color: #fff;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  font-size: 14px;
}
.footer-contact .row { display: flex; align-items: center; gap: 10px; }

.footer-social {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  font-size: 13px;
  color: rgba(255,255,255,.85);
  transition: background .15s, border-color .15s;
}
.footer-social a:hover {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}

/* ============== whatsapp float ============== */
.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 14px 30px rgba(37,211,102,.4);
  z-index: 40;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.04); }

/* ============== responsive ============== */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-a-grid,
  .story-grid,
  .plan-wrap,
  .bairro-grid,
  .faq-grid,
  .section-head { grid-template-columns: 1fr; gap: 36px; }
  .diffs-grid, .how-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .cov-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .cov-item:nth-child(even) { padding-left: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 0; }
  .hero-a-text { padding-bottom: 40px; }
  .hero-a-photo { min-height: 360px; }
}
@media (max-width: 600px) {
  .diffs-grid, .how-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 18px 0; }
  .hero-stats .item + .item { border-left: none; padding-left: 18px; }
}
