/* ==========================================================================
   Achei Imóveis Gyn — design tokens (v2)
   Baseado na referência em Claude Design: tema escuro contínuo,
   Playfair Display + Manrope, botões em pílula, cantos bem arredondados.
   ========================================================================== */

:root {
  --bg-base:      oklch(21% 0.025 55);
  --bg-panel:     oklch(25% 0.03 55);
  --bg-panel-alt: oklch(24% 0.028 55);
  --bg-panel-hi:  oklch(27% 0.03 55);

  --stripe-a:      oklch(27% 0.03 55);
  --stripe-b:      oklch(24% 0.028 55);
  --stripe-card-a: oklch(29% 0.03 55);
  --stripe-card-b: oklch(26% 0.028 55);

  --gold:       oklch(78% 0.12 85);
  --gold-hover: oklch(85% 0.10 85);
  --gold-soft:  oklch(78% 0.12 85 / 0.14);
  --gold-ink:   oklch(20% 0.03 55);

  --text-1: oklch(97% 0.010 85);
  --text-2: oklch(88% 0.015 70);
  --text-3: oklch(80% 0.020 60);
  --text-4: oklch(75% 0.020 60);
  --text-5: oklch(70% 0.020 60);

  --line-soft: oklch(96% 0.012 85 / 0.08);
  --line:      oklch(96% 0.012 85 / 0.15);
  --line-gold: oklch(78% 0.12 85 / 0.18);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", Menlo, monospace;

  --r-s: 10px;
  --r-m: 18px;
  --r-l: 24px;
  --r-pill: 999px;

  --shadow-pop: 0 20px 40px oklch(10% 0.02 55 / 0.4);
  --container: 1360px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-3);
  background: var(--bg-base);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hover); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-1);
  margin: 0 0 0.5em;
  font-weight: 700;
  line-height: 1.2;
}
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
::placeholder { color: var(--text-5); }
select option { background: var(--bg-panel); color: var(--text-1); }

:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid var(--line-gold);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}

/* ---------- botões (pílula) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 700;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-brass, .btn-clay {
  background: var(--gold);
  color: var(--gold-ink);
}
.btn-brass:hover, .btn-clay:hover { background: var(--gold-hover); }
.btn-outline {
  border-color: oklch(96% 0.012 85 / 0.3);
  color: var(--text-1);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost {
  color: var(--text-1);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 10px 20px; font-size: 13.5px; }
.btn-full { width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(21% 0.025 55 / 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-gold);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img { height: 44px; width: auto; }
.brand-text { font-family: var(--font-display); color: var(--text-1); font-size: 18px; line-height: 1.1; }
.brand-text small { display: block; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; color: var(--gold); text-transform: uppercase; margin-top: 4px; }

.main-nav ul { display: flex; gap: 32px; align-items: center; }
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--gold); }
.main-nav a.active { color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-gold);
  border-radius: var(--r-s);
  width: 44px;
  height: 44px;
  color: var(--text-1);
  align-items: center;
  justify-content: center;
}

/* ---------- hero ---------- */
.hero {
  padding: clamp(48px, 8vw, 96px) 0 60px;
}
.hero-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: center;
}
.hero-main { flex: 1 1 480px; min-width: 320px; }
.hero h1 {
  font-size: clamp(38px, 5.2vw, 60px);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-lede {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--text-3);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-visual {
  flex: 1 1 420px;
  min-width: 320px;
  position: relative;
  display: flex;
  justify-content: center;
}
.stripe-block {
  width: 100%;
  border-radius: var(--r-l);
  background: repeating-linear-gradient(135deg, var(--stripe-a), var(--stripe-a) 14px, var(--stripe-b) 14px, var(--stripe-b) 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-gold);
  text-align: center;
  padding: 20px;
}
.stripe-block span {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-4);
  letter-spacing: 1px;
}
.hero-visual .stripe-block { max-width: 480px; aspect-ratio: 4/5; }

.float-badge {
  position: absolute;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: var(--shadow-pop);
}
.float-badge .num { font-family: var(--font-display); font-size: 26px; font-weight: 800; }
.float-badge .lbl { font-size: 12px; }
.float-badge.gold { background: var(--gold); color: var(--gold-ink); }
.float-badge.gold .lbl { font-weight: 600; }
.float-badge.dark { background: var(--bg-panel-alt); border: 1px solid var(--line-gold); }
.float-badge.dark .num { color: var(--gold); }
.float-badge.dark .lbl { color: var(--text-3); }
.float-badge.top-left { top: 8%; left: -4%; }
.float-badge.bottom-right { bottom: 10%; right: -4%; }

/* ---------- filtro de busca (hero card) ---------- */
.hero-search {
  background: var(--bg-panel);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-l);
  padding: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: end;
}
.hero-search .field { display: flex; flex-direction: column; gap: 6px; flex: 1 1 140px; }

/* ---------- seções gerais ---------- */
section { padding: 80px 0; }
section.tight { padding: 56px 0; }
.on-dark, .on-paper { background: var(--bg-panel-alt); }

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.section-head p { color: var(--text-3); font-size: 16px; line-height: 1.6; }

.section-foot { margin-top: 40px; display: flex; justify-content: center; }

.section-top-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 44px;
}
.text-link { color: var(--text-1); font-weight: 600; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.text-link:hover { color: var(--gold); }

/* ---------- bairros ---------- */
.bairros-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.bairro-chip {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  border-radius: var(--r-m);
  padding: 22px 16px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.bairro-chip:hover { border-color: var(--gold); transform: translateY(-3px); }
.bairro-chip .mark { color: var(--gold); margin-bottom: 10px; }
.bairro-chip strong { display: block; font-size: 14.5px; color: var(--text-1); font-weight: 700; }

/* ---------- diferenciais / serviços ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.service-card { display: flex; flex-direction: column; gap: 16px; }
.service-card .icon-badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
}
.service-card .icon-badge svg { width: 24px; height: 24px; color: var(--gold); }
.service-card h3 { font-size: 19px; margin-bottom: 0; }
.service-card p { color: var(--text-4); font-size: 14.5px; margin: 0; line-height: 1.6; }

/* ---------- imóveis: grid + cards ---------- */
.listing-toolbar {
  background: var(--bg-panel);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-l);
  padding: 22px;
  margin-bottom: 30px;
  position: sticky;
  top: 98px;
  z-index: 20;
}
.filters-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr auto;
  gap: 12px;
}
.field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-5);
  margin-bottom: 6px;
}
.field input, .field select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg-base);
  border-radius: var(--r-s);
  padding: 12px 12px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-1);
}
.field input:focus, .field select:focus { border-color: var(--gold); outline: none; }
.filters-row .field.clear { display: flex; align-items: flex-end; }

.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  font-size: 14px;
  color: var(--text-4);
}
.results-bar strong { color: var(--text-1); font-weight: 800; }
.results-bar select { border: 1px solid var(--line); border-radius: var(--r-s); padding: 9px 10px; background: var(--bg-panel); color: var(--text-2); font-size: 13.5px; }

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.property-card {
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-l);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.property-card:hover { transform: translateY(-4px); border-color: var(--line-gold); }
.property-cta { font-size: 13px; font-weight: 700; color: var(--gold); }
.property-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: repeating-linear-gradient(135deg, var(--stripe-card-a), var(--stripe-card-a) 12px, var(--stripe-card-b) 12px, var(--stripe-card-b) 24px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.property-media span.ph { font-family: var(--font-mono); font-size: 12px; color: var(--text-5); }
.property-media img { width: 100%; height: 100%; object-fit: cover; }
.property-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--gold-ink);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-pill);
}
.property-featured-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--bg-panel-alt);
  border: 1px solid var(--line-gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--r-pill);
}
.property-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.property-loc { font-size: 14px; color: var(--text-4); }
.property-body h3 { font-size: 20px; margin: 0; }
.property-specs {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-3);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 0;
}
.property-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.property-price { font-family: var(--font-display); font-weight: 800; color: var(--text-1); font-size: 19px; }
.property-price span { display: block; font-size: 11px; color: var(--text-5); font-weight: 400; font-family: var(--font-body); }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 24px;
  border: 1.5px dashed var(--line);
  border-radius: var(--r-l);
}
.empty-state .mark { width: 46px; height: 46px; color: var(--gold); margin: 0 auto 18px; }
.empty-state h3 { margin-bottom: 8px; }
.empty-state p { color: var(--text-4); margin-bottom: 20px; }

/* ---------- carrossel de destaques ---------- */
.carousel { position: relative; }
.carousel-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > .property-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
}
.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-panel);
  border: 1px solid var(--line-gold);
  color: var(--text-1);
  font-size: 22px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.carousel-btn:hover { border-color: var(--gold); color: var(--gold); }
.carousel-btn.prev { left: -22px; }
.carousel-btn.next { right: -22px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--bg-panel-alt);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-l);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 8px; }
.cta-banner p { color: var(--text-3); margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- stats ---------- */
.stats-row { display: flex; flex-wrap: wrap; gap: 32px; }
.stats-row .stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--text-1); }
.stats-row .stat-lbl { font-size: 13px; color: var(--text-4); }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-panel-alt); border-top: 1px solid var(--line-gold); padding: 60px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--text-4); max-width: 32ch; }
.footer-col h4 { color: var(--gold); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.footer-col li { margin-bottom: 12px; font-size: 14px; color: var(--text-2); }
.footer-col a { color: var(--text-2); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line-soft); font-size: 13px; color: var(--text-5); flex-wrap: wrap; gap: 10px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: var(--text-1);
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- whatsapp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-ink);
  box-shadow: var(--shadow-pop);
  z-index: 90;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.06); }

/* ---------- páginas internas: cabeçalho de página ---------- */
.page-hero { padding: 56px 0 48px; }
.page-hero h1 { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 12px; }
.page-hero p { color: var(--text-3); max-width: 60ch; margin: 0; }
.breadcrumb { font-size: 13px; color: var(--gold); margin-bottom: 18px; }
.breadcrumb a { color: var(--text-4); }

/* ---------- sobre ---------- */
.about-lede { font-size: 19px; color: var(--text-2); max-width: 72ch; }
.process-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; }
.process-step { position: relative; padding-top: 50px; }
.process-step::before {
  content: attr(data-step);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--line-gold);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  position: absolute;
  top: 0; left: 0;
}
.process-step h3 { font-size: 18px; margin-bottom: 8px; }
.process-step p { color: var(--text-4); font-size: 14.5px; margin: 0; line-height: 1.6; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.value-item { border-top: 2px solid var(--gold); padding-top: 16px; }
.value-item h3 { font-size: 17px; margin-bottom: 6px; }
.value-item p { color: var(--text-4); font-size: 14.5px; margin: 0; line-height: 1.6; }

/* ---------- blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-l);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card-media {
  aspect-ratio: 16/10;
  background: repeating-linear-gradient(135deg, var(--stripe-card-a), var(--stripe-card-a) 12px, var(--stripe-card-b) 12px, var(--stripe-card-b) 24px);
  display: flex; align-items: center; justify-content: center;
}
.blog-card-media span { font-family: var(--font-mono); font-size: 12px; color: var(--text-5); }
.blog-card-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-cat { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); }
.blog-card h3 { font-size: 19px; margin: 0; }
.blog-card p { color: var(--text-4); font-size: 14px; margin: 0; line-height: 1.6; }
.blog-meta { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-soft); font-size: 12px; color: var(--text-5); display: flex; justify-content: space-between; }
.blog-note {
  border: 1.5px dashed var(--line);
  border-radius: var(--r-m);
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-4);
  margin-top: 36px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.blog-note svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-m);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text-1);
}
.faq-question .plus {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-question .plus { transform: rotate(45deg); border-color: var(--gold); }
.faq-answer { padding: 0 24px 22px; color: var(--text-4); font-size: 14.5px; max-width: 68ch; line-height: 1.6; }
.faq-item summary { cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

/* ---------- contato ---------- */
.contact-grid { display: flex; flex-wrap: wrap; gap: 40px; }
.contact-form {
  flex: 1 1 420px; min-width: 300px;
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-l);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.contact-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; color: var(--text-5); margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r-s);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--bg-base);
  color: var(--text-1);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); outline: none; }
.form-note { font-size: 12.5px; color: var(--text-5); }
.form-status { font-size: 14px; padding: 12px 14px; border-radius: var(--r-s); display: none; }
.form-status.show { display: block; }
.form-status.ok { background: var(--gold-soft); color: var(--gold); border: 1px solid var(--line-gold); }

.contact-side { flex: 1 1 340px; min-width: 300px; display: flex; flex-direction: column; gap: 20px; }
.contact-cta-card {
  background: var(--gold);
  color: var(--gold-ink);
  border-radius: var(--r-l);
  padding: 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.contact-cta-card h3 { color: var(--gold-ink); font-size: 20px; margin: 0; }
.contact-cta-card p { margin: 0 0 8px; font-size: 14px; font-weight: 600; }
.contact-cta-card .btn { background: var(--gold-ink); color: var(--text-1); width: fit-content; }
.contact-cta-card .btn:hover { background: oklch(28% 0.03 55); }

.contact-info-card {
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-l);
  padding: 28px;
  display: flex; flex-direction: column; gap: 0;
}
.contact-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.contact-line:last-of-type { border-bottom: none; }
.contact-line .ic { color: var(--gold); flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; }
.contact-line strong { display: block; font-size: 12px; color: var(--text-5); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.contact-line span, .contact-line a { font-size: 15px; color: var(--text-2); }
.contact-bairros { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.contact-bairros span {
  font-size: 12px;
  border: 1px solid var(--line-gold);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  color: var(--gold);
}
.map-embed { margin-top: 26px; border-radius: var(--r-m); overflow: hidden; border: 1px solid var(--line); filter: grayscale(0.3) invert(0.92) contrast(0.9); }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ---------- página de detalhes do imóvel ---------- */
.detail-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; }
.detail-gallery { display: flex; flex-direction: column; gap: 12px; }
.detail-main-photo {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-l);
  overflow: hidden;
  background: repeating-linear-gradient(135deg, var(--stripe-card-a), var(--stripe-card-a) 12px, var(--stripe-card-b) 12px, var(--stripe-card-b) 24px);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-soft);
}
.detail-main-photo img { width: 100%; height: 100%; object-fit: cover; }
.detail-main-photo span.ph { font-family: var(--font-mono); font-size: 13px; color: var(--text-5); }
.detail-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.detail-thumb {
  width: 76px; height: 58px;
  border-radius: var(--r-s);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.detail-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-thumb:hover { opacity: 1; }
.detail-thumb.active { opacity: 1; border-color: var(--gold); }

.detail-info { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 14px; }
.detail-info h1 { font-size: clamp(26px, 3vw, 34px); margin: 6px 0 2px; }
.detail-price { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--gold); margin: 4px 0 6px; }
.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-m);
  padding: 18px 20px;
  margin-bottom: 4px;
}
.detail-specs strong { display: block; font-family: var(--font-display); font-size: 20px; color: var(--text-1); }
.detail-specs span { font-size: 12.5px; color: var(--text-5); }
.detail-description { border-top: 1px solid var(--line-soft); padding-top: 18px; margin-top: 6px; }
.detail-description h3 { font-size: 18px; margin-bottom: 10px; }
.detail-description p { color: var(--text-3); font-size: 15px; line-height: 1.7; }

@media (max-width: 900px) {
  .detail-grid { grid-template-columns: 1fr; }
  .detail-info { position: static; }
}

/* ---------- utilidades ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 1020px) {
  .bairros-strip { grid-template-columns: repeat(3, 1fr); }
  .filters-row { grid-template-columns: 1fr 1fr; }
  .process-list, .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .main-nav, .header-actions .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .main-nav {
    display: block;
    position: absolute;
    top: 82px; left: 0; right: 0;
    background: var(--bg-panel-alt);
    border-bottom: 1px solid var(--line-gold);
    padding: 10px 24px 24px;
  }
  .site-header.open .main-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .site-header.open .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  section { padding: 56px 0; }
  .bairros-strip, .process-list, .values-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; padding: 32px; }
  .contact-form .row-2 { grid-template-columns: 1fr; }
  .filters-row { grid-template-columns: 1fr; }
  .listing-toolbar { position: static; }
  .float-badge { display: none; }
  .carousel-btn { display: none; }
  .carousel-track > .property-card { flex-basis: 82vw; }
}
