/* ==========================================================================
   MATHEUS POLI — CORRETOR DE IMÓVEIS EM UBERABA / MG
   Estilo: Masculino, Sofisticado, Limpo & Alta Conversão
   Paleta: Midnight Carbon + Ouro Champagne Escovado + Vidro Fumê
   ========================================================================== */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Fundo & Superfícies */
  --bg-main:         #0a0c10;
  --bg-secondary:    #0f1217;
  --bg-card:         #141820;
  --bg-card-hover:   #191f2a;

  /* Dourado Nobre */
  --gold:            #c5a468;
  --gold-light:      #dfc699;
  --gold-dim:        rgba(197, 164, 104, 0.08);
  --gold-border:     rgba(197, 164, 104, 0.25);

  /* Textos */
  --text-primary:    #ffffff;
  --text-secondary:  #cad3de;
  --text-muted:      #828f9f;

  /* Bordas */
  --border-subtle:   rgba(255, 255, 255, 0.06);
  --border-gold:     rgba(197, 164, 104, 0.3);

  /* WhatsApp */
  --wpp-green:       #25d366;
  --wpp-dark:        #189a4a;

  /* Fontes */
  --font-serif:      'Playfair Display', Georgia, serif;
  --font-body:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container:       1200px;
  --section-py:      clamp(64px, 7vw, 100px);
  --radius-sm:       6px;
  --radius-md:       12px;
  --radius-lg:       18px;
  --radius-pill:     50px;

  /* Transições */
  --transition:      all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: var(--bg-main);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Fundo atmosférico sutil */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: 
    radial-gradient(circle at 10% 10%, rgba(197, 164, 104, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 90% 70%, rgba(20, 35, 55, 0.4) 0%, transparent 55%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ── UTILITIES ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.text-gold {
  color: var(--gold-light);
}

.text-italic {
  font-style: italic;
  font-family: var(--font-serif);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 10%, #dfc699 60%, #c5a468 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  padding: 4px 12px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.section-header p {
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── BOTÕES ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #0a0c10;
  background: linear-gradient(135deg, #f5ebd7 0%, #dfc699 50%, #c5a468 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 20px -3px rgba(197, 164, 104, 0.35);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -3px rgba(197, 164, 104, 0.5);
  color: #000;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold-light);
  color: #fff;
  transform: translateY(-2px);
}

.btn-nav-wpp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.btn-nav-wpp:hover {
  background: var(--wpp-green);
  border-color: var(--wpp-green);
  color: #000;
  transform: translateY(-1px);
}

/* ── NAVBAR ────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10, 12, 16, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(8, 10, 14, 0.98);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-brand img {
  height: 38px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
}

.nav-brand-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  color: var(--gold-light);
  padding: 6px;
}

.nav-close {
  display: none;
}

/* ── 1. HERO SECTION ───────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(50px, 7vw, 96px) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
  font-weight: 600;
  line-height: 1.16;
  color: #fff;
  margin-bottom: 18px;
}

.hero-lead {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* Foto Hero */
.hero-visual {
  position: relative;
}

.hero-photo-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.6);
}

.hero-photo-inner {
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #000;
}

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

.hero-floating-tag {
  position: absolute;
  bottom: -14px;
  right: -10px;
  background: rgba(15, 18, 23, 0.95);
  border: 1px solid var(--border-gold);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.hero-floating-tag strong {
  display: block;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
}

.hero-floating-tag span {
  font-size: 0.75rem;
  color: var(--gold-light);
}

/* ── 2. IMÓVEIS EM DESTAQUE ────────────────────────────────── */
.imoveis-section {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.imoveis-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}

.imovel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.imovel-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.5);
}

.imovel-thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #000;
}

.imovel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.imovel-card:hover .imovel-thumb img {
  transform: scale(1.04);
}

.imovel-tag-type {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #0a0c10;
  background: var(--gold-light);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

.imovel-tag-loc {
  position: absolute;
  bottom: 14px;
  left: 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #fff;
  background: rgba(10, 12, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(6px);
}

.imovel-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.imovel-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}

.imovel-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.imovel-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 12px 0;
  margin-bottom: 18px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.imovel-spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.imovel-spec-item svg {
  color: var(--gold);
}

.imovel-link-wpp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-top: auto;
}

.imovel-link-wpp:hover {
  color: #fff;
}

.imoveis-cta-banner {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.imoveis-cta-banner h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.imoveis-cta-banner p {
  color: var(--text-secondary);
  font-size: 0.94rem;
}

/* ── 3. DIFERENCIAIS ───────────────────────────────────────── */
.diferenciais-section {
  padding: var(--section-py) 0;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-subtle);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.diferencial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: var(--transition);
}

.diferencial-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.diferencial-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.diferencial-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.diferencial-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── 4. BAIRROS DE UBERABA ─────────────────────────────────── */
.bairros-section {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.bairros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bairro-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: var(--transition);
}

.bairro-box:hover {
  border-color: var(--gold);
}

.bairro-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bairro-box h3 {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.bairro-box p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── 5. SOBRE ──────────────────────────────────────────────── */
.sobre-section {
  padding: var(--section-py) 0;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-subtle);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: center;
}

.sobre-photos {
  position: relative;
}

.sobre-photo-main {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 8px;
}

.sobre-photo-main img {
  border-radius: calc(var(--radius-lg) - 4px);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}

.sobre-photo-sub {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 48%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 6px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
}

.sobre-photo-sub img {
  border-radius: calc(var(--radius-md) - 2px);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.sobre-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 600;
  color: #fff;
  margin: 10px 0 6px;
}

.sobre-creci {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}

.sobre-text p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.sobre-badges-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 28px;
}

.sobre-badge-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
}

.sobre-badge-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-light);
}

.sobre-badge-item span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── 6. DEPOIMENTOS ────────────────────────────────────────── */
.depoimentos-section {
  padding: var(--section-py) 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.depoimento-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.depoimento-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.depoimento-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.depoimento-texto {
  font-size: 0.94rem;
  color: var(--text-primary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}

.depoimento-autor {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
}

.depoimento-autor strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: #fff;
}

.depoimento-autor span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── 7. FAQ ────────────────────────────────────────────────── */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-subtle);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-header {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  border-color: var(--gold);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-body-inner {
  padding: 0 22px 20px;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ── 8. CTA FINAL ──────────────────────────────────────────── */
.final-cta {
  padding: clamp(60px, 8vw, 100px) 0;
  background: radial-gradient(circle at center, rgba(197, 164, 104, 0.07) 0%, var(--bg-main) 70%);
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
}

.final-cta-box {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta-box h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.5vw, 3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin: 10px 0 14px;
}

.final-cta-box p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.final-contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.final-contact-info a {
  color: var(--text-secondary);
}

.final-contact-info a:hover {
  color: var(--gold-light);
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: #07080a;
  padding: 44px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── WHATSAPP FLUTUANTE ────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  background: #12161f;
  border: 1px solid rgba(37, 211, 102, 0.4);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  border-color: var(--wpp-green);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25);
}

.whatsapp-float-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wpp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.whatsapp-float-text {
  display: flex;
  flex-direction: column;
}

.whatsapp-float-text strong {
  font-size: 0.78rem;
  color: #fff;
  line-height: 1.1;
}

.whatsapp-float-text span {
  font-size: 0.68rem;
  color: var(--wpp-green);
}

/* ── RESPONSIVIDADE ────────────────────────────────────────── */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-visual {
    max-width: 440px;
    margin: 0 auto;
  }
  .imoveis-grid {
    grid-template-columns: 1fr;
  }
  .diferenciais-grid {
    grid-template-columns: 1fr;
  }
  .bairros-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sobre-photos {
    max-width: 420px;
    margin: 0 auto;
  }
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0; width: 78%;
    max-width: 300px;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-subtle);
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 24px 30px;
    gap: 18px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 105;
  }
  .nav-links.active {
    transform: translateX(0);
  }
  .nav-toggle {
    display: block;
  }
  .nav-close {
    display: block;
    position: absolute;
    top: 20px; right: 20px;
    color: var(--gold-light);
    font-size: 1.5rem;
  }
  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .bairros-grid {
    grid-template-columns: 1fr;
  }
  .sobre-badges-row {
    grid-template-columns: 1fr;
  }
  .imoveis-cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 24px 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .whatsapp-float-text {
    display: none;
  }
  .whatsapp-float {
    padding: 8px;
    border-radius: 50%;
  }
}
