@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --c-navy:    #09202f;
  --c-navy2:   #112d3f;
  --c-navy3:   #1c4258;
  --c-teal:    #0d8a8c;
  --c-teal-l:  #10b3b5;
  --c-gold:    #c8922a;
  --c-gold-l:  #e0b45a;
  --c-gold-bg: #fdf6e8;
  --c-ink:     #141f26;
  --c-ink2:    #3d5260;
  --c-ink3:    #7a9099;
  --c-bg:      #ffffff;
  --c-bg2:     #f5f8fa;
  --c-bg3:     #eef2f5;
  --c-line:    #dde4e8;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --sh-sm: 0 2px 8px rgba(9,32,47,.07);
  --sh-md: 0 8px 28px rgba(9,32,47,.11);
  --sh-lg: 0 20px 56px rgba(9,32,47,.16);
  --sh-gold: 0 8px 24px rgba(200,146,42,.38);
  --nav-h: 60px;
  --max: 1200px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.58;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  color: var(--c-navy);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.022em;
  margin: 0;
}
p { margin: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }
svg { display: block; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap  { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.wrap-n{ max-width: 800px;      margin: 0 auto; padding: 0 28px; }
section { padding: 48px 0; }
.s-sm   { padding: 28px 0; }
.center { text-align: center; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--c-gold); font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; font-size: .72rem;
  margin-bottom: 10px;
}
.eyebrow::before {
  content: ""; width: 20px; height: 2px;
  background: var(--c-gold); flex-shrink: 0;
}
h2 { font-size: clamp(1.55rem, 2.8vw, 2.1rem); margin-bottom: 10px; }
h2.w { color: #fff; }
.sub { color: var(--c-ink2); max-width: 600px; font-size: .97rem; }
.center .sub { margin: 0 auto; }
.sh { margin-bottom: 28px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 13px 24px; border-radius: 100px;
  font-weight: 700; font-size: .91rem;
  cursor: pointer; border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  white-space: nowrap; line-height: 1;
}
.btn-gold {
  background: linear-gradient(135deg, var(--c-gold-l), var(--c-gold));
  color: var(--c-navy); box-shadow: var(--sh-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(200,146,42,.48); }
.btn-ghost {
  background: rgba(255,255,255,.09);
  border: 1.5px solid rgba(255,255,255,.32); color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--c-navy); color: var(--c-navy);
}
.btn-outline:hover { background: var(--c-navy); color: #fff; }
.btn-sm { padding: 10px 18px; font-size: .83rem; }
.btn-full { width: 100%; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--c-navy);
  color: #8aabb7; font-size: .76rem;
  padding: 7px 0; text-align: center; letter-spacing: .02em;
}
.topbar a { color: var(--c-gold-l); font-weight: 700; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid var(--c-line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); min-height: var(--nav-h);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Plus Jakarta Sans'; font-weight: 800;
  font-size: 1rem; color: var(--c-navy); flex-shrink: 0;
}
.brand-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--c-teal), var(--c-navy2));
  display: flex; align-items: center; justify-content: center;
}
.brand-icon svg { width: 18px; height: 18px; color: #fff; }
.brand-text small {
  display: block; font-weight: 500;
  font-size: .6rem; color: var(--c-ink3); letter-spacing: .03em;
}
.nav-menu {
  display: flex; align-items: center; gap: 2px;
}
.nav-menu a {
  font-weight: 600; color: var(--c-ink2);
  font-size: .86rem; padding: 8px 12px;
  border-radius: 8px; transition: color .15s, background .15s;
}
.nav-menu a:hover { color: var(--c-navy); background: var(--c-bg2); }
.nav-menu a.cur { color: var(--c-teal); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 8px;
  border-radius: 8px; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--c-navy); border-radius: 2px;
  transition: transform .25s, opacity .25s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Scroll anchor — compensa o header sticky em todos os dispositivos */
#orcamento {
  scroll-margin-top: calc(var(--nav-h) + 10px);
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  box-shadow: 0 12px 32px rgba(9,32,47,.1);
  z-index: 899;
  padding: 12px 20px 20px;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform .22s, opacity .22s;
}
.nav-drawer.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.nav-drawer a {
  display: block; padding: 13px 12px;
  font-weight: 600; font-size: .95rem; color: var(--c-ink);
  border-bottom: 1px solid var(--c-bg3); border-radius: 0;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a.cur { color: var(--c-teal); }
.nav-drawer .btn { display: flex; margin-top: 14px; width: 100%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 90% -20%, rgba(13,138,140,.4) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 0% 110%, rgba(200,146,42,.2) 0%, transparent 60%),
    linear-gradient(160deg, var(--c-navy) 0%, var(--c-navy2) 55%, var(--c-navy3) 100%);
  color: #fff; padding: 24px 0 0;
}
.hero::after {
  content: ""; pointer-events: none;
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 36px; align-items: start;
  position: relative; z-index: 2; padding-bottom: 28px;
}
.hero-badge svg{width:13px;height:13px;flex-shrink:0;}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.2);
  color: var(--c-gold-l); padding: 5px 14px; border-radius: 100px;
  font-size: .73rem; font-weight: 700; margin-bottom: 14px;
}
.hero h1 {
  color: #fff; font-size: clamp(1.55rem, 3vw, 2.15rem);
  margin-bottom: 12px; max-width: 520px;
}
.hero h1 em { font-style: normal; color: var(--c-gold-l); }
.hero-lead {
  color: #c5d8de; font-size: .95rem; max-width: 500px;
  margin-bottom: 18px; line-height: 1.6;
}
.hero-checks { margin-bottom: 22px; display: flex; flex-direction: column; gap: 7px; }
.hero-checks li {
  display: flex; align-items: flex-start; gap: 9px;
  color: #dceef2; font-size: .87rem;
}
.hero-checks li svg { width: 15px; height: 15px; color: var(--c-teal-l); flex-shrink: 0; margin-top: 3px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* scroll anchor offset for sticky header */


/* ============================================================
   FORM CARD
   ============================================================ */
.form-card {
  background: #fff; color: var(--c-ink);
  border-radius: var(--r-xl); padding: 22px 22px 18px;
  box-shadow: 0 28px 64px rgba(0,0,0,.38);
  position: relative;
}
.fc-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 3px;
}
.fc-head h3 { font-size: 1rem; color: var(--c-navy); }
.fc-badge {
  background: var(--c-gold-bg); color: var(--c-gold);
  font-size: .67rem; font-weight: 800;
  padding: 3px 9px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .04em;
}
.fc-sub { color: var(--c-ink3); font-size: .78rem; margin-bottom: 14px; }
.field { margin-bottom: 9px; }
.field label {
  display: block; font-size: .69rem; font-weight: 700;
  color: var(--c-ink2); margin-bottom: 4px;
  text-transform: uppercase; letter-spacing: .04em;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid var(--c-line); border-radius: var(--r-sm);
  font-size: .88rem; font-family: inherit;
  color: var(--c-ink); background: var(--c-bg2); transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-teal-l); background: #fff;
  box-shadow: 0 0 0 3px rgba(13,138,140,.14);
}
.field textarea { resize: vertical; min-height: 52px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.form-honey { position: absolute; left: -9999px; opacity: 0; }
.fc-note { text-align: center; font-size: .68rem; color: var(--c-ink3); margin-top: 8px; }
.fc-submit { margin-top: 11px; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust {
  background: var(--c-bg2); border-bottom: 1px solid var(--c-line);
}
.trust-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; padding: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-right: 1px solid var(--c-line);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 22px; height: 22px; color: var(--c-teal); flex-shrink: 0; }
.trust-label { font-weight: 700; font-size: .79rem; color: var(--c-navy); line-height: 1.25; }
.trust-sub   { font-size: .7rem; color: var(--c-ink3); line-height: 1.25; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-lg); padding: 20px 18px;
  box-shadow: var(--sh-sm); transition: transform .22s, box-shadow .22s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.card-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: linear-gradient(135deg, var(--c-teal), var(--c-navy2));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.card-icon svg { width: 20px; height: 20px; color: #fff; }
.card h3 { font-size: .97rem; margin-bottom: 7px; }
.card p  { color: var(--c-ink2); font-size: .86rem; line-height: 1.55; }

/* ============================================================
   DARK SPLIT SECTION
   ============================================================ */
.dark-split {
  background: linear-gradient(155deg, var(--c-navy) 0%, var(--c-navy2) 60%, var(--c-navy3) 100%);
  color: #fff;
}
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.plist li {
  display: flex; gap: 14px; padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.plist li:last-child { border: none; }
.pnum {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  background: rgba(200,146,42,.2); color: var(--c-gold-l);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .78rem;
}
.plist h4 { color: #fff; font-size: .94rem; margin-bottom: 3px; }
.plist p  { color: #aec8cf; font-size: .84rem; }
.dark-box {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-xl); padding: 28px 26px;
}
.dark-box h3 { color: #fff; font-size: 1.05rem; margin-bottom: 16px; }
.drow {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .86rem;
}
.drow:last-child { border: none; }
.drow .dl { color: #aec8cf; }
.drow .dv { color: var(--c-gold-l); font-weight: 700; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.pstep {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-md); padding: 16px 14px;
}
.pstep-num {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(135deg, var(--c-gold-l), var(--c-gold));
  color: var(--c-navy); font-weight: 800; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.pstep h4 { font-size: .9rem; margin-bottom: 5px; }
.pstep p  { font-size: .82rem; color: var(--c-ink2); }

/* ============================================================
   NEIGHBOURHOODS
   ============================================================ */
.neigh-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.neigh-card  {
  background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-md); padding: 20px 18px;
}
.neigh-card h4 {
  font-size: .88rem; color: var(--c-navy);
  margin-bottom: 12px; display: flex; align-items: center; gap: 7px;
}
.neigh-card h4 svg { width: 14px; height: 14px; color: var(--c-gold); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag-cloud a {
  display: inline-block; background: var(--c-bg2);
  border: 1px solid var(--c-bg3); border-radius: 6px;
  padding: 5px 11px; font-size: .74rem; font-weight: 600;
  color: var(--c-navy2); transition: border-color .15s, color .15s, background .15s;
}
.tag-cloud a:hover { border-color: var(--c-teal-l); color: var(--c-teal); background: #fff; }
.neigh-note {
  text-align: center; background: var(--c-gold-bg);
  border: 1px dashed var(--c-gold); border-radius: var(--r-md);
  padding: 22px 20px; margin-top: 18px;
}
.neigh-note p { color: var(--c-ink2); font-size: .88rem; margin-bottom: 12px; }
.neigh-note .btn-row { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }

/* ============================================================
   BAIRRO HERO (landing pages)
   ============================================================ */
.bairro-hero {
  background: linear-gradient(160deg, var(--c-navy) 0%, var(--c-navy2) 60%, var(--c-navy3) 100%);
  color: #fff; padding: 26px 0 32px; position: relative; overflow: hidden;
}
.bairro-hero::after {
  content: ""; pointer-events: none; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.bairro-hero > .wrap { position: relative; z-index: 2; }
.breadcrumb { font-size: .76rem; color: #87aab5; margin-bottom: 12px; }
.breadcrumb a { color: #c5d8de; font-weight: 600; }
.breadcrumb a:hover { color: var(--c-gold-l); }
.bairro-hero h1 { color: #fff; font-size: clamp(1.45rem, 3vw, 1.95rem); max-width: 680px; }
.bairro-hero p.lead { color: #c5d8de; max-width: 580px; margin-top: 10px; font-size: .94rem; line-height: 1.6; }

/* chips — compactos, inline, sem ícone grande */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  padding: 5px 13px; border-radius: 100px;
  font-size: .78rem; font-weight: 600; color: #dceef2;
}
.chip svg { width: 13px; height: 13px; }

/* ============================================================
   LOCAL BLOCK (bairro detail + contact page)
   ============================================================ */
.local-grid { display: grid; grid-template-columns: 1.35fr .95fr; gap: 36px; align-items: start; }
.local-grid h2 { font-size: clamp(1.2rem, 2.4vw, 1.55rem); }
.local-list li {
  display: flex; gap: 11px; padding: 11px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: .88rem; color: var(--c-ink2);
}
.local-list li:last-child { border: none; }
.local-list svg { width: 16px; height: 16px; color: var(--c-teal); flex-shrink: 0; margin-top: 3px; }
.side-card {
  background: var(--c-gold-bg); border: 1px solid #f0d9a5;
  border-radius: var(--r-lg); padding: 24px 22px;
  position: sticky; top: calc(var(--nav-h) + 14px);
}
.side-card h4 { font-size: .94rem; margin-bottom: 8px; color: var(--c-navy); }
.side-card p  { font-size: .82rem; color: var(--c-ink2); margin-bottom: 14px; }
.side-card-email {
  font-size: .73rem; color: var(--c-ink3);
  text-align: center; margin-top: 11px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.side-card-email svg { width: 13px; height: 13px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--c-line); padding: 16px 0; cursor: pointer; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; color: var(--c-navy); font-size: .92rem; gap: 12px;
}
.faq-q .ico { width: 22px; height: 22px; border-radius: 6px; background: var(--c-bg3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; }
.faq-q .ico svg { width: 14px; height: 14px; color: var(--c-ink2); transition: transform .25s, color .25s; }
.faq-item.open .faq-q .ico { background: var(--c-teal); }
.faq-item.open .faq-q .ico svg { transform: rotate(180deg); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--c-ink2); font-size: .88rem; }
.faq-item.open .faq-a { max-height: 240px; padding-top: 10px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(120deg, var(--c-teal) 0%, var(--c-navy2) 100%);
  color: #fff; text-align: center; padding: 60px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #d8eef0; max-width: 500px; margin: 10px auto 24px; font-size: .95rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--c-navy); color: #7a9099; padding: 40px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 20px; padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { color: #fff; }
.footer-brand small { color: var(--c-ink3); }
.footer-about { font-size: .8rem; margin-top: 12px; color: #7a9099; max-width: 260px; line-height: 1.58; }
footer h5 {
  color: #fff; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 14px;
}
footer ul li { margin-bottom: 9px; }
footer ul li a { font-size: .8rem; color: #7a9099; transition: color .15s; }
footer ul li a:hover { color: var(--c-gold-l); }
.footer-bottom {
  padding: 18px 0; text-align: center;
  font-size: .72rem; color: #4d6570;
}
.footer-seo { font-size: .67rem; color: #364b53; margin-top: 10px; line-height: 2; }

/* ============================================================
   MOBILE BOTTOM TAB BAR (app-like)
   ============================================================ */
.tab-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--c-line);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -4px 20px rgba(9,32,47,.09);
}
.tab-bar-inner { display: flex; justify-content: space-around; }
.tab-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 10px 8px 9px; color: var(--c-ink3);
  font-size: .61rem; font-weight: 700;
  border-radius: 0; flex: 1;
  transition: color .15s;
}
.tab-bar a svg { width: 20px; height: 20px; }
.tab-bar a.cur { color: var(--c-teal); }
.tab-bar a.cta { color: var(--c-navy); }
.tab-bar a.cta svg { color: var(--c-gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ================================================================
   CLASSES AUXILIARES DE LAYOUT (desktop base)
   ================================================================ */

/* Bairro-hero de serviços: 2 colunas em desktop */
.bh-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.bh-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ================================================================
   RESPONSIVE — MOBILE FIRST, CLEAN, NO CONFLICTS
   ================================================================ */

/* 1060px — footer e trust 3 col */
@media (max-width: 1060px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .trust-inner {
    grid-template-columns: 1fr 1fr;
  }
  .trust-item { border-right: none; border-bottom: 1px solid var(--c-line); }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--c-line); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* 900px */
@media (max-width: 900px) {
  .hero-grid   { grid-template-columns: 1fr; gap: 24px; }
  .cards-3     { grid-template-columns: 1fr 1fr; }
  .cards-2     { grid-template-columns: 1fr; }
  .split-grid  { grid-template-columns: 1fr; gap: 32px; }
  .process-grid{ grid-template-columns: 1fr 1fr; }
  .neigh-grid  { grid-template-columns: 1fr; }
  .local-grid  { grid-template-columns: 1fr; }
  .side-card   { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bh-split    { grid-template-columns: 1fr; gap: 18px; }
}

/* 720px — mobile */
@media (max-width: 720px) {
  /* ---- GLOBAL ---- */
  body { overflow-x: hidden; }
  body        { padding-bottom: 56px; }

  /* ---- TOPBAR: esconder no mobile ---- */
  .topbar { display: none !important; }

  /* ---- NAV: mostrar só hamburger ---- */
  .nav-menu   { display: none !important; }
  .nav-toggle { display: flex !important; }
  .tab-bar    { display: block !important; }

  /* ---- SECTION PADDING ---- */
  section { padding: 36px 0; }
  .s-sm   { padding: 24px 0; }
  .sh     { margin-bottom: 24px; }

  /* ---- WRAP ---- */
  .wrap, .wrap-n { padding-left: 16px !important; padding-right: 16px !important; }

  /* ---- HERO ---- */
  .hero { padding-top: 16px; }
  .hero h1 { font-size: 1.4rem; }
  .hero-lead { font-size: .9rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* ---- GRIDS → 1 COLUNA ---- */
  .hero-grid, .cards-3, .cards-2, .process-grid,
  .neigh-grid, .local-grid, .split-grid,
  .footer-grid { grid-template-columns: 1fr !important; }

  /* ---- TRUST → 2 colunas no mobile médio ---- */
  .trust-inner {
    grid-template-columns: 1fr 1fr;
    border: none;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--c-line);
    padding: 12px 14px;
  }
  .trust-item:nth-child(odd)  { border-right: 1px solid var(--c-line); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }

  /* ---- FORM ---- */
  .form-card  { width: 100%; min-width: 0; padding: 16px 14px; }
  .field-row  { grid-template-columns: 1fr; }

  /* ---- BAIRRO HERO SPLIT ---- */
  .bh-split      { grid-template-columns: 1fr !important; gap: 14px !important; }
  .bh-mini-grid  { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }

  /* ---- TEXTO NÃO VAZA ---- */
  h1,h2,h3,h4,p,li,a,span,div {
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
  }

  /* ---- CHIPS ---- */
  .chip-row { flex-wrap: wrap; gap: 6px; }
  .chip { font-size: .72rem; padding: 4px 10px; }

  /* ---- TAG CLOUD ---- */
  .tag-cloud a { font-size: .71rem; padding: 4px 9px; }

  /* ---- SIDE CARD ---- */
  .side-card { position: static !important; }

  /* ---- BAIRRO HERO ---- */
  .bairro-hero { padding: 22px 0 28px; }

  /* ---- FOOTER ---- */
  .footer-grid { grid-template-columns: 1fr !important; gap: 22px; }
  footer h5    { margin-bottom: 8px; }
  footer ul li { margin-bottom: 6px; }
}

/* 479px — telefone pequeno */
@media (max-width: 479px) {
  .hero h1     { font-size: 1.28rem; }
  h2           { font-size: 1.3rem; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item  { border-right: none !important; }
  .trust-item:nth-last-child(-n+1) { border-bottom: none; }
}
