/* ==========================================================
   ROME IMOBILIÁRIA — Sistema Institucional
   ========================================================== */

:root {
  /* ─── Paleta ─── */
  --green: #2E8B57;            /* verde institucional médio */
  --green-dark: #1F6B41;        /* verde para hover/escuro */
  --green-deep: #154A2C;        /* verde para headers/footer */
  --green-light: #4FB07A;
  --green-soft: #E8F3EC;        /* background sutil verde */
  --green-tint: #F2F8F4;

  --orange: #E27A2B;            /* laranja accent (logo) */
  --orange-dark: #C56720;

  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  --bg: #FFFFFF;
  --bg-alt: #F9FAFB;

  /* ─── Tipografia ─── */
  --font: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;

  /* ─── Espaçamento ─── */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-7: 32px; --sp-8: 48px;
  --sp-9: 64px; --sp-10: 80px; --sp-11: 96px;

  /* ─── Layout ─── */
  --container: 1240px;
  --header-h: 80px;

  /* ─── Radius ─── */
  --r-sm: 6px;
  --r: 10px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-full: 999px;

  /* ─── Sombras ─── */
  --shadow-xs: 0 1px 2px rgba(17, 24, 39, .04);
  --shadow-sm: 0 2px 6px rgba(17, 24, 39, .05), 0 1px 2px rgba(17, 24, 39, .04);
  --shadow: 0 4px 12px rgba(17, 24, 39, .06), 0 2px 4px rgba(17, 24, 39, .04);
  --shadow-lg: 0 12px 28px rgba(17, 24, 39, .08), 0 4px 10px rgba(17, 24, 39, .04);
  --shadow-xl: 0 24px 56px rgba(17, 24, 39, .12);
}

/* ========================================
   RESET
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--green); color: white; }

h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--gray-900);
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
section { padding: var(--sp-10) 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-soft);
  padding: 6px 14px;
  border-radius: var(--r-full);
  letter-spacing: 0.02em;
  margin-bottom: var(--sp-4);
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-8);
}
.section-head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: var(--sp-3);
}
.section-head p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ========================================
   BOTÕES
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--r);
  transition: all .2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.btn-accent {
  background: var(--orange);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn-accent:hover {
  background: var(--orange-dark);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}
.btn-secondary {
  background: white;
  color: var(--green);
  border-color: var(--gray-200);
}
.btn-secondary:hover {
  border-color: var(--green);
  background: var(--green-soft);
}
.btn-ghost {
  background: transparent;
  color: var(--gray-700);
}
.btn-ghost:hover { background: var(--gray-100); color: var(--green); }
.btn-white {
  background: white;
  color: var(--green-deep);
}
.btn-white:hover { background: var(--gray-100); }
.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: white; }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ========================================
   HEADER
   ======================================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: all .25s ease;
}
.topbar.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-xs);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  height: var(--header-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 44px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 10px 16px;
  border-radius: var(--r);
  transition: all .2s;
}
.nav a:hover { color: var(--green); background: var(--green-soft); }
.nav a.active { color: var(--green); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  padding: 8px 14px;
  border-radius: var(--r);
  transition: all .2s;
}
.header-phone:hover { background: var(--green-soft); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.menu-toggle:hover { background: var(--gray-100); }
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--gray-800); border-radius: 2px;
  transition: all .25s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  padding: var(--sp-5);
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
  transition: transform .3s ease, opacity .25s ease, visibility .3s;
  z-index: 130;
  flex-direction: column;
  gap: var(--sp-2);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 900px) {
  .mobile-menu { display: flex; }
}
.mobile-menu.open { transform: translateY(0); visibility: visible; opacity: 1; }
.mobile-menu a {
  padding: 12px var(--sp-3);
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--r);
}
.mobile-menu a:hover { background: var(--green-soft); color: var(--green); }
.mobile-menu .btn { width: 100%; margin-top: var(--sp-3); }

/* ========================================
   HERO
   ======================================== */
.hero {
  padding-top: calc(var(--header-h) + var(--sp-9));
  padding-bottom: var(--sp-9);
  background: linear-gradient(180deg, var(--green-tint) 0%, transparent 100%);
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-9);
  align-items: center;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  margin-bottom: var(--sp-5);
  letter-spacing: -0.025em;
}
.hero h1 .accent {
  color: var(--green);
  position: relative;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 8px;
  background: rgba(46, 139, 87, .18);
  border-radius: 4px;
  z-index: -1;
}
.hero p.lead {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: var(--sp-6);
}
.hero-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-7);
}
.hero-trust {
  display: flex;
  gap: var(--sp-7);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--gray-200);
}
.hero-trust-item strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-trust-item span {
  font-size: 13px;
  color: var(--gray-500);
}

.hero-visual {
  position: relative;
}
.hero-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  box-shadow: var(--shadow-xl);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-card {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: white;
  padding: var(--sp-5);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: var(--sp-4);
  align-items: center;
  min-width: 280px;
}
.hero-card-icon {
  width: 48px; height: 48px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.hero-card-sub {
  font-size: 13px;
  color: var(--gray-500);
}

.hero-badge {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--orange);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow);
}

/* ========================================
   CATEGORIAS RÁPIDAS
   ======================================== */
.categorias {
  padding: var(--sp-8) 0;
  border-bottom: 1px solid var(--gray-100);
}
.categorias-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.cat {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--bg-alt);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: all .25s;
  cursor: pointer;
}
.cat:hover {
  background: white;
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.cat-icon {
  width: 52px; height: 52px;
  background: var(--green);
  color: white;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cat-icon svg { width: 24px; height: 24px; }
.cat strong { display: block; font-size: 15px; color: var(--gray-900); margin-bottom: 2px; }
.cat span { font-size: 13px; color: var(--gray-500); }

/* ========================================
   IMÓVEIS EM DESTAQUE
   ======================================== */
.imoveis { background: var(--bg-alt); }
.imoveis-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
  flex-wrap: wrap;
}
.imoveis-head h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: var(--sp-2);
}
.imoveis-head p {
  font-size: 16px;
  color: var(--gray-600);
}
.imoveis-head-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.imoveis-head-link:hover { color: var(--green-dark); }

.imovel-filters {
  display: flex;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
  padding: var(--sp-3);
  background: white;
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
}
.chip {
  padding: 9px 18px;
  background: transparent;
  border: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all .2s;
  border-radius: var(--r);
}
.chip:hover { background: var(--green-soft); color: var(--green); }
.chip.active {
  background: var(--green);
  color: white;
}

.imoveis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.imovel {
  background: white;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  border: 1px solid var(--gray-100);
  cursor: pointer;
}
.imovel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.imovel-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-100);
}
.imovel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.imovel:hover .imovel-img img { transform: scale(1.05); }
.imovel-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-full);
}
.imovel-badge.orange { background: var(--orange); }
.imovel-badge.dark { background: var(--green-deep); }
.imovel-fav {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-700);
  transition: all .2s;
}
.imovel-fav:hover { background: var(--orange); color: white; }

.imovel-body { padding: var(--sp-5); }
.imovel-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.imovel-price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  margin-left: 4px;
}
.imovel-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  margin: var(--sp-3) 0 var(--sp-2);
  line-height: 1.3;
}
.imovel-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: var(--sp-4);
}
.imovel-location svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }
.imovel-stats {
  display: flex;
  gap: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--gray-100);
}
.imovel-stat {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
}
.imovel-stat svg { width: 16px; height: 16px; color: var(--green); }

.imoveis-foot {
  text-align: center;
  margin-top: var(--sp-8);
}

/* ========================================
   POR QUE A ROME (4 cards institucional)
   ======================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.why-card {
  background: white;
  padding: var(--sp-6);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  text-align: left;
  transition: all .25s;
}
.why-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 {
  font-size: 17px;
  margin-bottom: var(--sp-2);
}
.why-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ========================================
   SOBRE / MANIFESTO
   ======================================== */
.sobre {
  background: var(--green-soft);
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-9);
  align-items: center;
}
.sobre-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.sobre-visual img { width: 100%; height: 100%; object-fit: cover; }
.sobre-quote {
  position: absolute;
  bottom: var(--sp-5);
  left: var(--sp-5);
  right: var(--sp-5);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  padding: var(--sp-5);
  border-radius: var(--r-md);
}
.sobre-quote p {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.sobre-quote span {
  font-size: 13px;
  color: var(--gray-500);
}

.sobre-content h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: var(--sp-5);
}
.sobre-content p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}
.sobre-content p strong { color: var(--green-deep); font-weight: 700; }
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(46, 139, 87, 0.18);
}
.sobre-stat strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.sobre-stat span {
  font-size: 14px;
  color: var(--gray-600);
}

/* ========================================
   EQUIPE
   ======================================== */
.equipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.socio {
  background: white;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all .25s;
}
.socio:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.socio-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  overflow: hidden;
}
.socio-photo img { width: 100%; height: 100%; object-fit: cover; }
.socio-photo .initial {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 96px;
  font-weight: 800;
  color: rgba(255,255,255,.25);
}
.socio-photo .badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.95);
  color: var(--green-deep);
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
}
.socio-body {
  padding: var(--sp-5);
}
.socio-body h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.socio-role {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}
.socio-bio {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}
.socio-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--gray-100);
}
.socio-stat {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
}
.socio-stat svg { width: 16px; height: 16px; color: var(--orange); }
.socio-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  display: inline-flex; align-items: center; gap: 4px;
}
.socio-link:hover { color: var(--green-dark); }

/* ========================================
   KELVIN — Corretor solo
   ======================================== */
.kelvin {
  background: var(--bg);
}
.kelvin-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-9);
  align-items: center;
}
.kelvin-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  box-shadow: var(--shadow-xl);
}
.kelvin-initial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 240px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1;
}
.kelvin-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-deep);
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
}
.kelvin-credentials {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.kelvin-cred {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-deep);
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
}
.kelvin-cred svg { width: 16px; height: 16px; color: var(--green); }

.kelvin-content h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  margin: var(--sp-4) 0 var(--sp-5);
  line-height: 1.15;
}
.kelvin-name-soft {
  color: var(--gray-500);
  font-weight: 600;
}
.kelvin-lead {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
}
.kelvin-lead strong { color: var(--green-deep); font-weight: 700; }

.kelvin-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--green-soft);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-6);
}
.kelvin-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 4px;
}
.kelvin-stat span {
  font-size: 13px;
  color: var(--gray-600);
}

.kelvin-quote {
  border-left: 3px solid var(--orange);
  padding: var(--sp-3) var(--sp-5);
  font-size: 17px;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: var(--sp-6);
}
.kelvin-quote span {
  display: block;
  margin-top: var(--sp-3);
  font-size: 13px;
  font-style: normal;
  color: var(--gray-500);
  font-weight: 600;
}

.kelvin-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .kelvin-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* ========================================
   DEPOIMENTOS
   ======================================== */
.depoimentos { background: var(--bg-alt); }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.dep {
  background: white;
  padding: var(--sp-6);
  border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  transition: all .25s;
}
.dep:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}
.dep-stars {
  color: var(--orange);
  font-size: 16px;
  margin-bottom: var(--sp-4);
  letter-spacing: 2px;
}
.dep-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}
.dep-author {
  display: flex; align-items: center; gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--gray-100);
}
.dep-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.dep-author strong {
  display: block; font-size: 14px; color: var(--gray-900); font-weight: 600;
}
.dep-author span {
  font-size: 12px; color: var(--gray-500);
}

/* ========================================
   FAQ
   ======================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-8);
  align-items: start;
}
.faq-side h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: var(--sp-3);
}
.faq-side p {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: var(--sp-5);
}

.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  transition: all .25s;
  overflow: hidden;
}
.faq-item.open {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: var(--sp-5);
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  transition: color .2s;
}
.faq-q:hover { color: var(--green); }
.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 600;
  transition: all .25s;
}
.faq-item.open .faq-toggle {
  background: var(--green);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 var(--sp-5) var(--sp-5);
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   CTA FINAL
   ======================================== */
.cta-final {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
  color: white;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 80% 20%, rgba(226,122,43,.15), transparent 70%);
}
.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--sp-7);
  align-items: center;
}
.cta-final .eyebrow {
  background: rgba(255,255,255,.15);
  color: white;
}
.cta-final h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: white;
  margin-bottom: var(--sp-4);
}
.cta-final p {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  margin-bottom: var(--sp-6);
}
.cta-final-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--green-deep);
  color: rgba(255,255,255,.78);
  padding: var(--sp-9) 0 var(--sp-5);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-7);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand img {
  height: 56px;
  filter: brightness(0) invert(1);
  margin-bottom: var(--sp-4);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  max-width: 320px;
  margin-bottom: var(--sp-5);
}
.footer h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: var(--sp-4);
}
.footer ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer ul a {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  transition: color .2s;
}
.footer ul a:hover { color: var(--orange); }
.footer-social {
  display: flex;
  gap: var(--sp-2);
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: var(--r);
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: white;
  transition: all .2s;
}
.footer-social a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}
.footer-bottom {
  padding-top: var(--sp-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ========================================
   REVEAL
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVO
   ======================================== */
@media (max-width: 1100px) {
  .imoveis-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .categorias-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero-inner, .sobre-grid, .faq-grid, .cta-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .equipe-grid, .dep-grid, .footer-top { grid-template-columns: 1fr 1fr; }
  section { padding: var(--sp-9) 0; }
}
@media (max-width: 640px) {
  .imoveis-grid, .equipe-grid, .dep-grid, .why-grid, .categorias-grid, .footer-top { grid-template-columns: 1fr; }
  .hero-card { left: 0; right: 0; bottom: -20px; min-width: auto; }
  .hero-badge { top: -12px; right: 12px; }
  .imoveis-head { flex-direction: column; align-items: stretch; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
