/* ================================================================
   SERPA NEGÓCIOS IMOBILIÁRIOS
   Design System — main.css (versão light / off-white)
   Caminho no projeto: /assets/css/main.css

   Fontes:
     · Josefin Sans  → labels, tags, botões, UI
     · DM Sans       → títulos, corpo, tudo mais

   Paleta:
     · Off-white quente como base
     · Verde floresta do logo como acento
     · Tipografia escura minimalista
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;600&family=DM+Sans:ital,opsz,wght@0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ──────────────────────────────────────────────────────────────
   TOKENS
────────────────────────────────────────────────────────────── */
:root {
  /* Backgrounds off-white */
  --bg0:  #F8F7F4;
  --bg1:  #F2F0EC;
  --bg2:  #ECEAE5;
  --bg3:  #FFFFFF;
  --bg4:  #F5F4F0;

  /* Verde primário — logo da marca */
  --g:    #4A6B3A;
  --g2:   #3D5A30;
  --g3:   #5E8247;
  --g4:   #74A060;
  --g5:   #A8C498;
  --g6:   #E8F2E2;

  /* Texto */
  --ink:  #1A1A18;
  --ink2: #3D3D3A;
  --ink3: #6B6B68;
  --ink4: #9E9E9A;

  /* Bordas */
  --border:  rgba(74, 107, 58, 0.18);
  --borderb: rgba(74, 107, 58, 0.35);
  --bl:      rgba(0, 0, 0, 0.07);
  --blm:     rgba(0, 0, 0, 0.12);

  /* Tipografia */
  --fd: 'Josefin Sans', sans-serif;
  --fb: 'DM Sans', sans-serif;

  /* Física */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --slow: cubic-bezier(0.16, 1, 0.3, 1);

  /* Sombras */
  --sh-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --sh:    0 4px 32px rgba(0, 0, 0, 0.10);
  --sh-lg: 0 12px 60px rgba(0, 0, 0, 0.13);
}

/* ──────────────────────────────────────────────────────────────
   RESET
────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  background: var(--bg0);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
img, video   { display: block; max-width: 100%; }
a            { color: inherit; text-decoration: none; }
ul, ol       { list-style: none; }
button, input, select, textarea {
  font-family: inherit; font-size: inherit;
  border: none; outline: none; background: none; color: inherit;
}
button       { cursor: pointer; }
::selection  { background: var(--g); color: #fff; }

/* ──────────────────────────────────────────────────────────────
   NAVBAR
────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px; padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.stuck {
  background: rgba(248, 247, 244, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--bl);
}
.nav__logo img { height: 34px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 36px; }
.nav__menu a {
  font-family: var(--fd); font-size: 10px; font-weight: 400;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink3);
  transition: color 0.2s; position: relative;
}
.nav__menu a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--g);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease);
}
.nav__menu a:hover              { color: var(--g); }
.nav__menu a:hover::after       { transform: scaleX(1); }
.nav__cta {
  font-family: var(--fd); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--g); color: #fff !important;
  padding: 10px 24px; border-radius: 4px;
  transition: background 0.2s !important;
}
.nav__cta:hover  { background: var(--g2) !important; }
.nav__cta::after { display: none !important; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer;
}
.nav__burger span {
  width: 22px; height: 1.5px; background: var(--ink);
  border-radius: 2px; transition: all 0.3s var(--ease);
}
.nav__drawer {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(248, 247, 244, 0.99); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bl);
  padding: 28px 5vw 36px; z-index: 199; flex-direction: column;
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-family: var(--fd); font-size: 12px; font-weight: 300;
  letter-spacing: 2px; text-transform: uppercase; color: var(--ink3);
  padding: 14px 0; border-bottom: 1px solid var(--bl); transition: color 0.2s;
}
.nav__drawer a:hover          { color: var(--g); }
.nav__drawer .btn--green      { margin-top: 20px; justify-content: center; }

/* ──────────────────────────────────────────────────────────────
   HERO
────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--bg0);
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 70% 40%, rgba(74,107,58,.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 0% 100%, rgba(74,107,58,.04) 0%, transparent 55%),
    var(--bg0);
}
.hero__bg::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--bl) 1px, transparent 1px),
    linear-gradient(90deg, var(--bl) 1px, transparent 1px);
  background-size: 80px 80px; opacity: 0.5;
  mask-image: radial-gradient(ellipse 70% 70% at 65% 45%, black 20%, transparent 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%; padding: 148px 5vw 80px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--fd); font-size: 10px; font-weight: 400;
  letter-spacing: 3.5px; text-transform: uppercase; color: var(--g);
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--g4); flex-shrink: 0;
}
.hero__title {
  font-family: var(--fb);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 200; line-height: 1.06; letter-spacing: -2px;
  color: var(--ink); max-width: 680px; margin-bottom: 24px;
}
.hero__title em { font-style: italic; font-weight: 300; color: var(--g); }
.hero__sub {
  font-family: var(--fb); font-size: 16px; font-weight: 300;
  line-height: 1.8; color: var(--ink3); max-width: 400px; margin-bottom: 52px;
}

/* Search box */
.sbox {
  max-width: 820px; background: #fff;
  border: 1px solid var(--bl); border-radius: 16px;
  padding: 10px; box-shadow: var(--sh);
}
.sbox__tabs { display: flex; gap: 4px; padding: 0 4px; margin-bottom: 10px; }
.stab {
  padding: 8px 22px; border-radius: 8px;
  font-family: var(--fd); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--ink4);
  transition: all 0.2s var(--ease);
}
.stab:hover { color: var(--g); }
.stab.on    { background: var(--g); color: #fff; }
.sbox__row  { display: grid; grid-template-columns: 1fr 1fr 1fr auto; align-items: stretch; }
.sf         { padding: 12px 20px; border-right: 1px solid var(--bl); }
.sf:last-of-type { border: none; }
.sf label {
  display: block; font-family: var(--fd); font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--g); margin-bottom: 5px;
}
.sf select, .sf input {
  width: 100%; background: transparent;
  font-family: var(--fb); font-size: 14px; font-weight: 300;
  color: var(--ink); appearance: none; cursor: pointer;
}
.sf select option  { background: #fff; color: var(--ink); }
.sf input::placeholder { color: var(--ink4); }
.sbtn {
  margin: 6px; padding: 0 28px; background: var(--g); border-radius: 10px;
  font-family: var(--fd); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: #fff;
  display: flex; align-items: center; gap: 9px;
  transition: all 0.2s var(--ease); white-space: nowrap;
}
.sbtn:hover { background: var(--g2); transform: translateY(-1px); }
.sbtn svg   { width: 15px; height: 15px; flex-shrink: 0; }

/* Stats */
.hero__stats { display: flex; gap: 48px; margin-top: 52px; }
.hstat__n {
  font-family: var(--fb); font-size: 38px; font-weight: 200;
  color: var(--ink); letter-spacing: -1px; line-height: 1;
}
.hstat__n sup { font-size: 18px; font-weight: 300; color: var(--g); vertical-align: super; }
.hstat__l {
  font-family: var(--fd); font-size: 9px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase; color: var(--ink4); margin-top: 6px;
}

/* Visual lado direito */
.hero__visual {
  position: absolute; right: -2vw; top: 6vh;
  width: 44vw; height: 88vh; z-index: 1; pointer-events: none;
}
.hv-main {
  position: absolute; top: 0; right: 0; width: 78%; height: 68%;
  border-radius: 32px 0 0 32px; overflow: hidden; box-shadow: var(--sh-lg);
}
.hv-main img { width: 100%; height: 100%; object-fit: cover; }
.hv-sm {
  position: absolute; bottom: 8%; right: 20%; width: 46%; height: 42%;
  border-radius: 20px; overflow: hidden;
  border: 3px solid var(--bg0); box-shadow: var(--sh-lg);
}
.hv-sm img  { width: 100%; height: 100%; object-fit: cover; }
.hv-card {
  position: absolute; bottom: 24%; left: 0;
  background: #fff; border: 1px solid var(--bl);
  border-radius: 14px; padding: 16px 20px; min-width: 220px; box-shadow: var(--sh);
}
.hvc-lbl {
  font-family: var(--fd); font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--g); margin-bottom: 7px;
}
.hvc-val {
  font-family: var(--fb); font-size: 22px; font-weight: 300;
  color: var(--ink); letter-spacing: -0.5px; line-height: 1;
}
.hvc-sub { font-family: var(--fb); font-size: 11px; color: var(--ink4); margin-top: 4px; }
.hv-badge {
  position: absolute; top: 20%; left: -6%;
  background: var(--g); border-radius: 10px;
  padding: 10px 16px; display: flex; align-items: center; gap: 10px; box-shadow: var(--sh);
}
.hv-badge__dot {
  width: 7px; height: 7px; border-radius: 50%; background: #fff; opacity: 0.7;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:.7; transform:scale(1) }
  50%     { opacity:.3; transform:scale(1.3) }
}
.hv-badge__txt {
  font-family: var(--fd); font-size: 11px; font-weight: 400;
  letter-spacing: 0.5px; color: #fff;
}

/* ──────────────────────────────────────────────────────────────
   CATEGORIAS
────────────────────────────────────────────────────────────── */
.cats {
  background: var(--bg1);
  border-top: 1px solid var(--bl); border-bottom: 1px solid var(--bl);
  padding: 56px 5vw;
}
.cats__grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.cat {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 24px 14px; background: #fff;
  border: 1px solid var(--bl); border-radius: 14px;
  cursor: pointer; transition: all 0.3s var(--ease); text-align: center;
}
.cat:hover { border-color: var(--border); box-shadow: var(--sh-sm); transform: translateY(-3px); }
.cat__ico {
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--g6); display: grid; place-items: center; transition: background 0.3s;
}
.cat:hover .cat__ico { background: rgba(74,107,58,.16); }
.cat__ico svg { width: 22px; height: 22px; stroke: var(--g); fill: none; stroke-width: 1.5; }
.cat__name {
  font-family: var(--fd); font-size: 10px; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink2);
}
.cat__n { font-family: var(--fb); font-size: 11px; color: var(--ink4); }

/* ──────────────────────────────────────────────────────────────
   SECTION HELPERS
────────────────────────────────────────────────────────────── */
.section      { padding: 100px 5vw; }
.section--alt { background: var(--bg1); }
.sec-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px; gap: 32px; flex-wrap: wrap;
}
.sec-eye {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--fd); font-size: 9px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--g); margin-bottom: 14px;
}
.sec-eye::before { content: ''; width: 24px; height: 1px; background: var(--g4); flex-shrink: 0; }
.sec-title {
  font-family: var(--fb);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 200; line-height: 1.1; letter-spacing: -1.5px;
  color: var(--ink); margin-bottom: 12px;
}
.sec-title em { font-style: italic; font-weight: 300; color: var(--g); }
.sec-sub {
  font-family: var(--fb); font-size: 15px; font-weight: 300;
  line-height: 1.8; color: var(--ink3); max-width: 460px;
}
.link-arr {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fd); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--g);
  transition: gap 0.25s var(--ease); white-space: nowrap; flex-shrink: 0;
}
.link-arr:hover { gap: 14px; }
.link-arr svg   { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ──────────────────────────────────────────────────────────────
   CARDS DE IMÓVEIS
────────────────────────────────────────────────────────────── */
.pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px,1fr));
  gap: 20px;
}
.pcard {
  background: #fff; border: 1px solid var(--bl);
  border-radius: 16px; overflow: hidden; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.pcard:hover { border-color: var(--blm); transform: translateY(-5px); box-shadow: var(--sh); }
.pcard--feat             { grid-column: span 2; }
.pcard--feat .pcard__img { height: 320px; }
.pcard__img  { position: relative; height: 220px; overflow: hidden; }
.pcard__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.pcard:hover .pcard__img img { transform: scale(1.04); }

/* Badges */
.pbadge {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 13px; border-radius: 100px;
  font-family: var(--fd); font-size: 9px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.pb-v { background: var(--g6);             color: var(--g2);  border: 1px solid var(--border); }
.pb-a { background: rgba(59,130,246,.08);  color: #1d4ed8;    border: 1px solid rgba(59,130,246,.18); }
.pb-l { background: rgba(245,158,11,.08);  color: #92400e;    border: 1px solid rgba(245,158,11,.2); }
.pb-d { background: var(--g);             color: #fff;        border: 1px solid var(--g); }

/* Favorito */
.pfav {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.92); border: 1px solid var(--bl);
  border-radius: 50%; display: grid; place-items: center;
  cursor: pointer; z-index: 2; transition: all 0.22s var(--ease);
  box-shadow: var(--sh-sm);
}
.pfav:hover { background: var(--g6); border-color: var(--border); }
.pfav.on    { background: var(--g);  border-color: var(--g); }
.pfav svg   { width: 14px; height: 14px; fill: none; stroke: var(--ink3); stroke-width: 1.5; transition: all .2s; }
.pfav:hover svg { stroke: var(--g); }
.pfav.on svg    { fill: #fff; stroke: #fff; }

/* Corpo */
.pcard__body  { padding: 20px 22px 22px; }
.pcard__price {
  font-family: var(--fb); font-size: 24px; font-weight: 300;
  color: var(--ink); letter-spacing: -0.5px; line-height: 1; margin-bottom: 3px;
}
.pcard__price small { font-size: 13px; font-weight: 300; color: var(--ink4); }
.pcard__psub  { font-size: 11px; color: var(--ink4); margin-bottom: 13px; }
.pcard__title { font-family: var(--fb); font-size: 14px; font-weight: 400; color: var(--ink2); margin-bottom: 7px; line-height: 1.45; }
.pcard__addr  { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--ink4); margin-bottom: 16px; }
.pcard__addr svg { width: 11px; height: 11px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 2; }
.pdiv  { height: 1px; background: var(--bl); margin-bottom: 15px; }
.specs { display: flex; gap: 16px; flex-wrap: wrap; }
.spec  { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink4); }
.spec svg     { width: 13px; height: 13px; stroke: var(--g4); fill: none; stroke-width: 1.5; }
.spec strong  { color: var(--ink2); font-weight: 500; }

/* ──────────────────────────────────────────────────────────────
   SIDEBAR FILTROS
────────────────────────────────────────────────────────────── */
.listing-wrap {
  display: grid; grid-template-columns: 280px 1fr;
  min-height: calc(100vh - 68px); margin-top: 68px;
}
.sidebar {
  position: sticky; top: 68px; height: calc(100vh - 68px);
  overflow-y: auto; background: #fff;
  border-right: 1px solid var(--bl); padding: 28px 22px 40px;
  scrollbar-width: thin; scrollbar-color: var(--bl) transparent;
}
.sidebar::-webkit-scrollbar       { width: 3px; }
.sidebar::-webkit-scrollbar-thumb { background: var(--blm); border-radius: 2px; }
.sb-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 26px; padding-bottom: 14px; border-bottom: 1px solid var(--bl);
}
.sb-title { font-family: var(--fd); font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--g); }
.sb-clear { font-family: var(--fb); font-size: 11px; color: var(--ink4); cursor: pointer; transition: color .2s; }
.sb-clear:hover { color: var(--g); }
.fgroup { margin-bottom: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--bl); }
.fgroup:last-of-type { border: none; }
.fgroup__lbl { font-family: var(--fd); font-size: 9px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: var(--ink4); margin-bottom: 12px; }
.ftabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ftab {
  padding: 8px; border-radius: 6px;
  font-family: var(--fd); font-size: 9px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid var(--bl); color: var(--ink3); background: transparent; transition: all .2s;
}
.ftab:hover { color: var(--g); border-color: var(--border); }
.ftab.on    { background: var(--g6); border-color: var(--border); color: var(--g2); }
.fcheck {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--fb); font-size: 13px; font-weight: 300;
  color: var(--ink2); cursor: pointer; padding: 4px 0; transition: color .2s;
}
.fcheck:hover { color: var(--g); }
.fcheck input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--g); cursor: pointer; flex-shrink: 0; }
.fpills { display: flex; gap: 6px; flex-wrap: wrap; }
.fpill {
  padding: 6px 14px; border-radius: 100px;
  font-family: var(--fd); font-size: 9px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  border: 1px solid var(--bl); color: var(--ink3); background: transparent; transition: all .2s;
}
.fpill:hover { color: var(--g); border-color: var(--border); }
.fpill.on    { background: var(--g); border-color: var(--g); color: #fff; }
.finput {
  width: 100%; background: var(--bg0); border: 1px solid var(--bl);
  border-radius: 8px; padding: 9px 12px;
  font-family: var(--fb); font-size: 13px; font-weight: 300; color: var(--ink);
  transition: border-color .2s, background .2s;
}
.finput:focus    { border-color: var(--border); background: #fff; outline: none; }
.finput::placeholder { color: var(--ink4); }
.frange          { display: flex; flex-direction: column; gap: 8px; }
.frange-row      { display: flex; align-items: center; gap: 10px; }
.frange-row label {
  font-family: var(--fd); font-size: 9px; font-weight: 400;
  letter-spacing: 1px; text-transform: uppercase; color: var(--ink4); width: 24px; flex-shrink: 0;
}
.btn-aplicar {
  width: 100%; padding: 13px; background: var(--g); border-radius: 10px;
  font-family: var(--fd); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: #fff;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 8px; transition: all .2s var(--ease);
}
.btn-aplicar:hover { background: var(--g2); transform: translateY(-1px); }
.btn-aplicar svg   { width: 15px; height: 15px; }
.listing-main  { padding: 28px 32px 60px; }
.listing-count { font-family: var(--fb); font-size: 13px; color: var(--ink4); }
.listing-count span { color: var(--ink); font-weight: 500; }

/* ──────────────────────────────────────────────────────────────
   MAPA
────────────────────────────────────────────────────────────── */
.mapwrap    { display: grid; grid-template-columns: 360px 1fr; min-height: 560px; }
.mappanel   { background: #fff; padding: 60px 40px; border-right: 1px solid var(--bl); display: flex; flex-direction: column; justify-content: center; }
.mlist      { margin-top: 28px; display: flex; flex-direction: column; }
.mitem      { display: flex; justify-content: space-between; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--bl); cursor: pointer; transition: padding .22s var(--ease); }
.mitem:hover { padding-left: 8px; }
.mitem__name { font-family: var(--fb); font-size: 13px; font-weight: 300; color: var(--ink3); transition: color .2s; }
.mitem:hover .mitem__name { color: var(--g); }
.mitem__n   { font-family: var(--fd); font-size: 11px; color: var(--g2); background: var(--g6); padding: 3px 10px; border-radius: 100px; }
.mapembed   { position: relative; overflow: hidden; }
.mapembed iframe { width: 100%; height: 100%; min-height: 560px; border: none; }
.mapgrad    { position: absolute; inset: 0; background: linear-gradient(90deg,#fff 0%,transparent 10%,transparent 90%,var(--bg0) 100%); pointer-events: none; }

/* ──────────────────────────────────────────────────────────────
   POR QUÊ SERPA
────────────────────────────────────────────────────────────── */
.why__grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why__feats { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.feat       { display: flex; gap: 18px; align-items: flex-start; }
.feat__ico  { width: 44px; height: 44px; background: var(--g6); border: 1px solid var(--border); border-radius: 11px; display: grid; place-items: center; flex-shrink: 0; transition: background .2s; }
.feat:hover .feat__ico { background: rgba(74,107,58,.16); }
.feat__ico svg { width: 20px; height: 20px; stroke: var(--g); fill: none; stroke-width: 1.5; }
.feat__title { font-family: var(--fb); font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 5px; }
.feat__desc  { font-family: var(--fb); font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--ink3); }
.why__img    { position: relative; height: 480px; border-radius: 24px; overflow: hidden; box-shadow: var(--sh-lg); }
.why__img img { width: 100%; height: 100%; object-fit: cover; }
.why__img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 55%,rgba(0,0,0,.4) 100%); }
.why__seal  { position: absolute; bottom: 24px; left: 24px; z-index: 2; background: rgba(255,255,255,.95); border: 1px solid var(--bl); border-radius: 14px; padding: 16px 20px; box-shadow: var(--sh); }
.seal__n    { font-family: var(--fb); font-size: 34px; font-weight: 200; letter-spacing: -1px; color: var(--g); line-height: 1; }
.seal__l    { font-family: var(--fd); font-size: 9px; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink4); margin-top: 5px; }

/* ──────────────────────────────────────────────────────────────
   CTA BAND
────────────────────────────────────────────────────────────── */
.ctaband {
  background: var(--g); padding: 80px 5vw;
  display: flex; justify-content: space-between; align-items: center;
  gap: 40px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.ctaband::before { content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.ctaband::after  { content: ''; position: absolute; right: 60px; top: 60px; width: 160px; height: 160px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; }
.ctaband__txt    { position: relative; z-index: 1; }
.ctaband__title  { font-family: var(--fb); font-size: clamp(28px,4vw,48px); font-weight: 200; letter-spacing: -1px; color: #fff; line-height: 1.1; }
.ctaband__sub    { font-family: var(--fb); font-size: 15px; font-weight: 300; color: rgba(255,255,255,.65); margin-top: 8px; }
.ctaband__acts   { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ──────────────────────────────────────────────────────────────
   BOTÕES
────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 6px;
  font-family: var(--fd); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  transition: all .22s var(--ease); white-space: nowrap; cursor: pointer;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn--green   { background: var(--g);   color: #fff;       border: 1.5px solid var(--g); }
.btn--green:hover { background: var(--g2); border-color: var(--g2); transform: translateY(-1px); }
.btn--dark    { background: var(--ink); color: #fff;        border: 1.5px solid var(--ink); }
.btn--dark:hover  { background: var(--ink2); }
.btn--ghost   { background: transparent; color: #fff;       border: 1.5px solid rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--outline { background: transparent; color: var(--g);   border: 1.5px solid var(--border); }
.btn--outline:hover { background: var(--g6); border-color: var(--borderb); }
.btn--light   { background: #fff; color: var(--ink);        border: 1.5px solid var(--bl); box-shadow: var(--sh-sm); }
.btn--light:hover { box-shadow: var(--sh); }

/* ──────────────────────────────────────────────────────────────
   FORMULÁRIOS
────────────────────────────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label {
  font-family: var(--fd); font-size: 9px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--g);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: var(--bg0); border: 1px solid var(--bl);
  border-radius: 10px; padding: 12px 16px;
  font-family: var(--fb); font-size: 14px; font-weight: 300; color: var(--ink);
  transition: border-color .2s, background .2s; resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--border); background: #fff; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--ink4); }
.form-group select option { background: #fff; color: var(--ink); }

/* ──────────────────────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────────────────────── */
.footer { background: var(--ink); padding: 80px 5vw 40px; }
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 40px;
}
.footer__logo img   { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: .85; margin-bottom: 18px; }
.footer__desc       { font-family: var(--fb); font-size: 13px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,.35); max-width: 260px; margin-bottom: 24px; }
.footer__socials    { display: flex; gap: 8px; }
.fsoc               { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; display: grid; place-items: center; cursor: pointer; transition: all .2s; }
.fsoc:hover         { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.06); }
.fsoc svg           { width: 15px; height: 15px; stroke: rgba(255,255,255,.4); fill: none; stroke-width: 1.5; transition: stroke .2s; }
.fsoc:hover svg     { stroke: rgba(255,255,255,.7); }
.fcol-title         { font-family: var(--fd); font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.fcol-links         { display: flex; flex-direction: column; gap: 11px; }
.fcol-links a       { font-family: var(--fb); font-size: 13px; font-weight: 300; color: rgba(255,255,255,.4); transition: color .2s; }
.fcol-links a:hover { color: rgba(255,255,255,.9); }
.footer__bot        { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer__copy, .footer__creci { font-family: var(--fb); font-size: 12px; color: rgba(255,255,255,.2); }

/* ──────────────────────────────────────────────────────────────
   WHATSAPP FLOAT
────────────────────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.35);
  transition: all .3s var(--ease);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,.5); }
.wa-float svg   { width: 26px; height: 26px; fill: #fff; }

/* ──────────────────────────────────────────────────────────────
   SCROLL REVEAL
────────────────────────────────────────────────────────────── */
.sr       { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--slow), transform .7s var(--slow); }
.sr.visible { opacity: 1; transform: translateY(0); }
.sr-left    { opacity: 0; transform: translateX(-28px); transition: opacity .7s var(--slow), transform .7s var(--slow); }
.sr-left.visible { opacity: 1; transform: translateX(0); }
.sr-scale   { opacity: 0; transform: scale(.96); transition: opacity .6s var(--slow), transform .6s var(--slow); }
.sr-scale.visible { opacity: 1; transform: scale(1); }
.sd1 { transition-delay: .08s; }
.sd2 { transition-delay: .16s; }
.sd3 { transition-delay: .24s; }
.sd4 { transition-delay: .32s; }
.sd5 { transition-delay: .40s; }
.sd6 { transition-delay: .48s; }

/* ──────────────────────────────────────────────────────────────
   PAGINAÇÃO
────────────────────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; align-items: center; gap: 6px; margin-top: 48px; }
.pag-btn    { width: 38px; height: 38px; border: 1px solid var(--bl); border-radius: 8px; display: grid; place-items: center; font-family: var(--fd); font-size: 12px; color: var(--ink3); background: #fff; transition: all .2s; cursor: pointer; }
.pag-btn:hover { border-color: var(--border); color: var(--g); }
.pag-btn.on    { background: var(--g); border-color: var(--g); color: #fff; }
.pag-btn svg   { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ──────────────────────────────────────────────────────────────
   RESPONSIVO
────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero__visual               { display: none; }
  .mapwrap                    { grid-template-columns: 1fr; }
  .why__grid                  { grid-template-columns: 1fr; gap: 48px; }
  .footer__top                { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cats__grid                 { grid-template-columns: repeat(3,1fr); }
  .listing-wrap               { grid-template-columns: 1fr; }
  .sidebar                    { position: static; height: auto; }
}
@media (max-width: 768px) {
  .nav__menu, .nav__cta       { display: none; }
  .nav__burger                { display: flex; }
  .sbox__row                  { grid-template-columns: 1fr 1fr; }
  .sbox__row .sf:nth-child(3) { display: none; }
  .hero__stats                { gap: 24px; }
  .footer__top                { grid-template-columns: 1fr; }
  .cats__grid                 { grid-template-columns: repeat(2,1fr); }
  .ctaband                    { flex-direction: column; text-align: center; }
  .ctaband__acts              { justify-content: center; }
  .pgrid                      { grid-template-columns: 1fr; }
  .pcard--feat                { grid-column: span 1; }
  .pcard--feat .pcard__img    { height: 220px; }
  .listing-main               { padding: 20px 16px 40px; }
}
@media (max-width: 480px) {
  .sbox__row                  { grid-template-columns: 1fr; }
  .sbtn                       { border-radius: 10px; margin: 0; justify-content: center; }
  .hero__stats                { flex-wrap: wrap; gap: 20px; }
}