/* ============================================================
   LOTEAMENTOS — CSS
   Layout: coluna central estreita, fundo com chevrons, cards cinza
   ============================================================ */

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

:root {
  --verde:      #22c55e;
  --verde-dark: #16a34a;
  --preto:      #111111;
  --cinza-card: #f2f2f2;
  --cinza-borda:#e5e5e5;
  --cinza-texto:#6b7280;
  --cinza-pill: #1f2937;
  --branco:     #ffffff;
  --font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: #f8f8f8;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='45'%3E%3Cpolyline points='0,45 40,5 80,45' fill='none' stroke='%23e0e0e0' stroke-width='1.2'/%3E%3Cpolyline points='0,90 40,50 80,90' fill='none' stroke='%23e0e0e0' stroke-width='1.2'/%3E%3C/svg%3E");
background-size: 80px 45px;
  color: var(--preto);
  min-height: 100vh;
  padding-bottom: 80px; /* espaço pro botão fixo */
}

/* ── COLUNA CENTRAL ── */
.page-wrap {
  max-width: 520px;
  margin: 0 auto;
  padding: 0 16px 24px;
}

/* ── CARD BASE ── */
.card {
  background: #e3e3e3;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid #ebebeb;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.card-inner {
  padding: 12px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 4/3;
  background: #222;
}
.hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 40%, rgba(0,0,0,.1) 100%);
}
.hero-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  color: #fff;
}
.hero-badge {
  display: inline-block;
  background: var(--verde);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 8px;
}
.hero-info h1 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: -.5px;
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
.hero-location svg { flex-shrink: 0; }

/* ── SLOGAN / DESTAQUE ── */
.slogan {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: var(--preto);
  padding: 16px 0 8px;
  margin-bottom: 8px;
}

/* ── SOBRE ── */
.sobre-titulo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--preto);
}
.sobre-texto {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

/* ── GALERIA (slider simples) ── */
.galeria-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 4/3;
  background: #ddd;
}
.galeria-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.galeria-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  animation: kenburns 10s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.35) translate(-1%, -1%); }
}
.galeria-counter {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.galeria-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 10px;
  pointer-events: none;
}
.galeria-btn {
  pointer-events: all;
  background: rgba(255,255,255,.85);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  transition: background .15s;
}
.galeria-btn:hover { background: #fff; }

/* ── LOCALIZAÇÃO ── */
.loc-titulo {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700;
  margin-bottom: 6px;
}
.loc-sub {
  font-size: 13px; color: var(--cinza-texto); margin-bottom: 14px;
}
.mapa-embed {
  border-radius: 12px; overflow: hidden; margin-bottom: 14px;
}
.mapa-embed iframe { display: block; width: 100%; height: 200px; border: 0; }

/* pontos próximos */
.ponto-item {
  display: flex; align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--cinza-borda);
  gap: 10px;
}
.ponto-item:last-child { border-bottom: none; }
.ponto-item svg { color: var(--cinza-texto); flex-shrink: 0; }
.ponto-nome { flex: 1; font-size: 14px; font-weight: 500; }
.ponto-pill {
  background: var(--cinza-pill);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* ── ESPECIFICAÇÕES ── */
.specs-titulo {
  font-size: 16px; font-weight: 700; margin-bottom: 14px;
}
.spec-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: #333;
}
.spec-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.spec-check svg { color: #555; }

/* ── TABELA DE LOTES ── */
.tabela-titulo {
  font-size: 16px; font-weight: 700; margin-bottom: 14px;
}
.lote-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--cinza-borda);
  gap: 8px;
}
.lote-row:last-child { border-bottom: none; }
.lote-num { font-size: 14px; font-weight: 700; }
.lote-info { font-size: 12px; color: var(--cinza-texto); margin-top: 2px; }
.lote-valor { font-size: 14px; font-weight: 700; color: var(--preto); text-align: right; }
.lote-status {
  font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 20px;
  white-space: nowrap;
}
.status-disponivel { background: #dcfce7; color: #15803d; }
.status-reservado  { background: #fef9c3; color: #92400e; }
.status-vendido    { background: #fee2e2; color: #991b1b; }
.btn-interesse {
  display: block; width: 100%;
  background: var(--verde);
  color: #fff; border: none;
  padding: 11px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; margin-top: 14px;
  text-decoration: none; text-align: center;
  transition: background .15s;
}
.btn-interesse:hover { background: var(--verde-dark); }

/* ── SIMULADOR FINANCEIRO ── */
.sim-titulo { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.sim-sub { font-size: 13px; color: var(--cinza-texto); margin-bottom: 18px; }
.sim-campo { margin-bottom: 18px; }
.sim-label {
  display: flex; justify-content: space-between;
  font-size: 13px; font-weight: 600; margin-bottom: 8px;
}
.sim-label span:last-child { color: var(--preto); font-weight: 700; }
input[type=range] {
  width: 100%; -webkit-appearance: none; height: 4px;
  background: #d1d5db; border-radius: 2px; outline: none;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px;
  border-radius: 50%; background: var(--preto); cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
}
.sim-hint { font-size: 11px; color: var(--cinza-texto); margin-top: 4px; }
.sim-resultado {
  background: var(--branco); border-radius: 12px;
  padding: 16px; margin-top: 6px;
}
.sim-linha {
  display: flex; justify-content: space-between;
  font-size: 14px; padding: 5px 0;
  border-bottom: 1px solid var(--cinza-borda);
  color: #444;
}
.sim-linha:last-child { border-bottom: none; }
.sim-parcela {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0 0;
  font-size: 15px; font-weight: 700;
}
.sim-parcela span:last-child { font-size: 20px; color: var(--preto); }
.sim-aviso { font-size: 11px; color: var(--cinza-texto); text-align: center; margin-top: 12px; }

/* ── CORRETOR ── */
.corretor-wrap {
  display: flex; align-items: center; gap: 14px; margin-bottom: 12px;
}
.corretor-avatar {
  width: 60px; height: 60px; border-radius: 50%; object-fit: cover;
  background: #ddd; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700; color: #888;
  overflow: hidden;
}
.corretor-avatar img { width: 100%; height: 100%; object-fit: cover; }
.corretor-nome { font-size: 16px; font-weight: 700; }
.corretor-creci { font-size: 12px; color: var(--cinza-texto); display: flex; align-items: center; gap: 4px; margin: 2px 0; }
.corretor-tipo { font-size: 12px; color: var(--cinza-texto); }
.corretor-status {
  display: flex; align-items: center; gap: 7px;
  background: #f0fdf4; border-radius: 8px; padding: 10px 14px;
  font-size: 13px; color: #15803d; font-weight: 500; margin-bottom: 12px;
}
.dot-verde {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--verde); flex-shrink: 0;
  animation: pulsar 1.8s ease-in-out infinite;
}

@keyframes pulsar {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.corretor-especialidade { font-size: 13px; color: #444; }

/* ── SELOS DE CONFIANÇA ── */
.selos-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.selo {
  background: var(--branco); border-radius: 10px; padding: 14px;
  display: flex; align-items: flex-start; gap: 10px; font-size: 13px; font-weight: 500;
}
.selo svg { flex-shrink: 0; color: #555; margin-top: 1px; }

/* ── CTA FIXO NO RODAPÉ ── */
.cta-fixo {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--verde);
  z-index: 50;
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer; border: none;
  color: #fff; font-size: 16px; font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}
.cta-fixo:hover { background: var(--verde-dark); }

/* ── SEÇÃO TÍTULO ── */
.secao-titulo {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; margin-bottom: 14px;
}

/* ── RESPONSIVO ── */
@media (min-width: 600px) {
  .page-wrap { padding: 0 20px 24px; }
  .hero-info h1 { font-size: 34px; }
}

/* ============================================================
   GRÁFICO DE VALORIZAÇÃO
   ============================================================ */
.valorizacao-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.valorizacao-titulo {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 700; color: var(--preto);
}
.val-badge {
  background: var(--preto); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  white-space: nowrap;
}
.valorizacao-sub {
  font-size: 12px; color: var(--cinza-texto); margin-bottom: 16px;
}
.chart-wrap {
  position: relative; width: 100%; height: 200px;
}
.chart-wrap canvas { width: 100% !important; height: 100% !important; }
.chart-legenda {
  display: flex; align-items: center; gap: 16px;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--cinza-borda);
  font-size: 12px; color: var(--cinza-texto);
}
.leg-item { display: flex; align-items: center; gap: 6px; }
.leg-linha { width: 20px; height: 2px; background: var(--preto); }
.leg-linha.tracejada {
  background: none;
  border-top: 2px dashed var(--preto);
  height: 0;
}
.chart-atualizado {
  margin-left: auto; font-size: 11px; color: #aaa;
}

/* ============================================================
   SIMULADOR REFORMULADO
   ============================================================ */
.sim2-titulo {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; margin-bottom: 4px;
}
.sim2-sub {
  font-size: 13px; color: var(--cinza-texto); margin-bottom: 20px;
}
.sim2-campo { margin-bottom: 20px; }
.sim2-label-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 8px;
}
.sim2-label-nome { font-size: 13px; font-weight: 600; color: var(--preto); display: flex; align-items: center; gap: 6px; }
.sim2-label-val  { font-size: 13px; font-weight: 700; color: var(--preto); }
.sim2-hint { font-size: 11px; color: var(--cinza-texto); margin-top: 5px; }

/* resultado */
.sim2-resultado {
  background: var(--branco); border-radius: 12px; padding: 16px; margin-top: 4px;
}
.sim2-linha {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--cinza-borda);
  font-size: 13px; color: #555;
}
.sim2-linha:last-of-type { border-bottom: none; }
.sim2-linha strong { color: var(--preto); font-size: 14px; }
.sim2-parcela-box {
  background: var(--cinza-card); border-radius: 10px; padding: 14px 16px;
  margin-top: 12px; display: flex; justify-content: space-between; align-items: center;
}
.sim2-parcela-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--preto);
}
.sim2-parcela-val {
  font-size: 22px; font-weight: 800; color: var(--preto);
}
.sim2-parcela-sub { font-size: 11px; color: var(--cinza-texto); margin-top: 2px; }
.sim2-aviso {
  font-size: 11px; color: var(--cinza-texto); text-align: center; margin-top: 12px; line-height: 1.5;
}
/* ── FORMULÁRIO MULTI-STEP ── */
.form-pergunta {
  font-size: 16px; font-weight: 700;
  margin-bottom: 14px; color: #111;
}
.form-opcoes {
  display: flex; flex-direction: column; gap: 8px;
}
.form-btn-opcao {
  width: 100%; text-align: left;
  background: #f2f2f2; border: 1.5px solid #e5e5e5;
  border-radius: 10px; padding: 14px 16px;
  font-size: 14px; font-weight: 500; color: #111;
  cursor: pointer; transition: all .15s;
}
.form-btn-opcao:hover { background: #e8e8e8; border-color: #ccc; }
.form-input {
  width: 100%; border: 1.5px solid #e5e5e5;
  border-radius: 10px; padding: 14px 16px;
  font-size: 15px; font-family: inherit;
  outline: none; margin-bottom: 12px;
  transition: border-color .15s;
}
.form-input:focus { border-color: #22c55e; }
.form-btn-continuar {
  width: 100%; background: #111; color: #fff;
  border: none; border-radius: 10px;
  padding: 14px; font-size: 15px; font-weight: 600;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center; gap: 8px;
  transition: background .15s;
}
.form-btn-continuar:hover { background: #333; }
/* ── FAQ ── */
.faq-lista { display: flex; flex-direction: column; }
.faq-item {
  padding: 16px 0; border-bottom: 1px solid var(--cinza-borda);
  cursor: pointer;
}
.faq-item:last-child { border-bottom: none; }
.faq-pergunta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 500; color: #111; gap: 12px;
}
.faq-chevron {
  font-size: 20px; color: #888; flex-shrink: 0;
  transition: transform .25s ease; line-height: 1;
}
.faq-resposta {
  font-size: 14px; color: #555; line-height: 1.7;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .3s ease, opacity .25s ease;
  padding-right: 24px;
}
/* ── AVALIAÇÕES GOOGLE ── */
.aval-resumo {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; background: #f9f9f9;
  border-radius: 12px; margin-bottom: 16px;
}
.aval-nota-num { font-size: 28px; font-weight: 800; color: #111; line-height: 1; }
.aval-estrelas-g { color: #fbbc04; font-size: 15px; margin: 3px 0; }
.aval-total { font-size: 11px; color: #888; }
.aval-link-google {
  margin-left: auto; font-size: 12px; color: #1a73e8;
  text-decoration: none; font-weight: 600; white-space: nowrap;
}
.aval-lista { display: flex; flex-direction: column; gap: 12px; }
.aval-item { padding: 14px; background: #f9f9f9; border-radius: 12px; }
.aval-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.aval-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.aval-nome { font-size: 14px; font-weight: 600; color: #111; }
.aval-data { font-size: 11px; color: #aaa; margin-top: 1px; }
.aval-estrelas { color: #fbbc04; font-size: 13px; margin-left: auto; }
.aval-texto { font-size: 13px; color: #444; line-height: 1.65; }
.aval-ver-mais {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 14px; padding: 12px;
  border: 1.5px solid #e5e5e5; border-radius: 10px;
  font-size: 13px; font-weight: 600; color: #1a73e8; text-decoration: none;
  transition: background .15s;
}
.aval-ver-mais:hover { background: #f0f7ff; }
/* ── NOTÍCIAS SLIDER ── */
.secao-sub { font-size:12px; color:#888; margin-bottom:16px; margin-top:-10px; }
.noticias-slider { position:relative; border-radius:12px; overflow:hidden; }
.noticias-track { display:flex; transition:transform .4s cubic-bezier(.4,0,.2,1); }
.noticia-slide { min-width:100%; position:relative; aspect-ratio:16/9; background:#111; overflow:hidden; }
.noticia-bg { width:100%; height:100%; object-fit:cover; display:block; filter:brightness(.42); }
.noticia-conteudo {
  position:absolute; inset:0; padding:18px;
  display:flex; flex-direction:column; justify-content:flex-end;
}
.noticia-tag {
  background:#22c55e; color:#fff; font-size:10px; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  padding:3px 8px; border-radius:4px; margin-bottom:8px; width:fit-content;
}
.noticia-fonte {
  display:inline-flex; align-items:center; gap:5px;
  background:rgba(255,255,255,.15); backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.2);
  color:#fff; font-size:11px; font-weight:600;
  padding:4px 10px; border-radius:20px;
  margin-bottom:8px; width:fit-content;
}
.noticia-titulo {
  color:#fff; font-size:15px; font-weight:800;
  line-height:1.3; margin-bottom:6px;
  text-shadow:0 1px 4px rgba(0,0,0,.4);
}
.noticia-data { color:rgba(255,255,255,.55); font-size:11px; }
.noticias-nav {
  position:absolute; top:50%; transform:translateY(-50%);
  width:100%; padding:0 8px; display:flex;
  justify-content:space-between; pointer-events:none;
}
.nnav-btn {
  pointer-events:all; background:rgba(255,255,255,.85); border:none;
  border-radius:50%; width:32px; height:32px; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  font-size:15px; box-shadow:0 2px 8px rgba(0,0,0,.2); transition:background .15s;
}
.nnav-btn:hover { background:#fff; }
.noticias-dots { display:flex; justify-content:center; gap:6px; margin-top:12px; }
.ndot {
  width:7px; height:7px; border-radius:50%;
  background:#d1d5db; cursor:pointer; transition:all .25s;
}
.ndot.ativo { background:#111; width:20px; border-radius:4px; }
.noticias-rodape {
  display:flex; align-items:flex-start; gap:10px;
  margin-top:12px; padding:12px 14px;
  background:#f9f9f9; border-radius:10px;
}
.noticias-rodape-txt { font-size:12px; color:#555; line-height:1.5; }
.noticias-rodape-txt strong { color:#111; }
/* ── SETORES ── */
.setor-mar {
  display:flex; align-items:center; gap:10px;
  padding:10px 14px;
  background:linear-gradient(135deg,#0ea5e9,#0284c7);
  border-radius:10px; margin-bottom:0;
  color:#fff; font-size:13px; font-weight:700;
}
.setor-conector {
  width:2px; height:16px;
  background:#e5e5e5; margin:0 auto;
}
.setor-card {
  border-radius:14px; overflow:hidden;
  transition:transform .2s, box-shadow .2s;
  cursor:default;
}
.setor-card:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(0,0,0,.12); }
.setor-header {
  padding:14px 16px 12px;
  display:flex; align-items:flex-start; justify-content:space-between; gap:8px;
}
.setor-nome { font-size:22px; font-weight:900; color:#fff; letter-spacing:-.5px; }
.setor-subtitulo { font-size:12px; color:rgba(255,255,255,.8); margin-top:2px; }
.setor-dist {
  background:rgba(255,255,255,.25); backdrop-filter:blur(4px);
  color:#fff; font-size:11px; font-weight:700;
  padding:4px 10px; border-radius:20px; white-space:nowrap; margin-top:3px; flex-shrink:0;
}
.setor-body { background:rgba(0,0,0,.1); padding:12px 16px 14px; }
.setor-desc { font-size:13px; color:rgba(255,255,255,.9); line-height:1.55; margin-bottom:10px; }
.setor-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:12px; }
.setor-tag {
  background:rgba(255,255,255,.2); border:1px solid rgba(255,255,255,.3);
  color:#fff; font-size:11px; font-weight:500;
  padding:3px 10px; border-radius:20px;
}
.setor-precos { border-top:1px solid rgba(255,255,255,.15); padding-top:10px; }
.setor-preco-row {
  display:flex; align-items:center; justify-content:space-between;
  padding:5px 0; border-bottom:1px solid rgba(255,255,255,.1);
  font-size:12px; color:rgba(255,255,255,.8);
}
.setor-preco-row:last-child { border:none; }
.setor-preco-row strong { color:#fff; font-size:13px; }
/* ── ÁUDIO EXPLICATIVO ── */
.audio-titulo { font-size:14px; font-weight:600; color:#888; margin-bottom:14px; }
.audio-player { display:flex; align-items:center; gap:12px; }
.audio-avatar {
  width:48px; height:48px; border-radius:50%; flex-shrink:0;
  background:#1f2937; color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:18px; font-weight:700; overflow:hidden;
}
.audio-avatar img { width:100%; height:100%; object-fit:cover; display:block; }
.audio-play-btn {
  width:38px; height:38px; border-radius:50%; flex-shrink:0;
  background:#111; border:none; color:#fff;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:background .15s;
}
.audio-play-btn:hover { background:#333; }
.audio-progresso-wrap { flex:1; min-width:0; }
..audio-wave {
  display: flex !important;
  align-items: center;
  gap: 2px;
  height: 32px;
  width: 100%;
  cursor: pointer;
  margin-bottom: 4px;
}
.audio-wave .bar {
  display: block;
  width: 3px;
  flex: 1;
  border-radius: 2px;
  background: #cfcfcf;
}
.audio-wave .bar.played { background:#22c55e; }
.audio-tempos { display:flex; justify-content:space-between; font-size:11px; color:#999; }
.audio-autor { font-size:12px; color:#888; margin-top:12px; font-weight:500; }
/* ── GALERIA DE FOTOS ── */
.galeria-destaque {
  position:relative; border-radius:12px; overflow:hidden;
  aspect-ratio:4/3; background:#111; cursor:pointer; margin-bottom:10px;
}
.galeria-destaque img {
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .6s cubic-bezier(.4,0,.2,1), opacity .25s ease;
}
.galeria-destaque img.zoom { transform:scale(1.07); }
.galeria-destaque img.trocando { opacity:0; transform:scale(1.02); }
.gal-overlay {
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:space-between;
  padding:0 8px; pointer-events:none;
}
.gal-seta {
  pointer-events:all; background:rgba(255,255,255,.88); border:none;
  border-radius:50%; width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size:17px; box-shadow:0 2px 8px rgba(0,0,0,.2);
  transition:background .15s;
}
.gal-seta:hover { background:#fff; }
.gal-contador {
  position:absolute; top:10px; right:10px;
  background:rgba(0,0,0,.55); color:#fff;
  font-size:12px; font-weight:600; padding:4px 10px;
  border-radius:20px; backdrop-filter:blur(4px); pointer-events:none;
}
.gal-legenda {
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(to top,rgba(0,0,0,.7) 0%,transparent 100%);
  color:#fff; font-size:13px; font-weight:500;
  padding:24px 14px 10px; pointer-events:none;
}
.gal-progress-bar {
  height:3px; position:absolute; bottom:0; left:0; right:0;
  background:rgba(255,255,255,.2);
}
.gal-progress-fill { height:100%; background:#22c55e; width:0%; }
.gal-thumbs { display:grid; grid-template-columns:repeat(5,1fr); gap:6px; }
.gal-thumb {
  aspect-ratio:1; border-radius:8px; overflow:hidden;
  cursor:pointer; border:2.5px solid transparent;
  transition:border-color .2s, transform .2s; position:relative;
}
.gal-thumb:hover { transform:scale(1.05); }
.gal-thumb.ativo { border-color:#22c55e; }
.gal-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.tov {
  position:absolute; inset:0; background:rgba(0,0,0,.3);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity .2s;
}
.gal-thumb:hover .tov { opacity:1; }
.gal-thumb.ativo .tov { opacity:0; }
.lightbox {
  display:none; position:fixed; inset:0;
  background:rgba(0,0,0,.96); z-index:1000;
  align-items:center; justify-content:center; flex-direction:column;
}
.lightbox.ativo { display:flex; }
.lightbox img { max-width:95vw; max-height:85vh; object-fit:contain; border-radius:4px; }
.lb-close {
  position:absolute; top:16px; right:16px;
  background:rgba(255,255,255,.15); border:none; color:#fff;
  width:38px; height:38px; border-radius:50%;
  font-size:18px; cursor:pointer; display:flex; align-items:center; justify-content:center;
}
.lb-setas {
  position:absolute; top:50%; transform:translateY(-50%);
  width:100%; display:flex; justify-content:space-between;
  padding:0 16px; pointer-events:none;
}
.lb-seta {
  pointer-events:all; background:rgba(255,255,255,.15); border:none; color:#fff;
  width:44px; height:44px; border-radius:50%;
  font-size:20px; cursor:pointer; display:flex; align-items:center; justify-content:center;
}
.lb-legenda { color:rgba(255,255,255,.65); font-size:13px; margin-top:14px; }
/* ── AMENIDADES ── */
.amenidades-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px 6px; }
.amenidade { display:flex; flex-direction:column; align-items:center; gap:9px; cursor:default; transition:transform .2s; }
.amenidade:hover { transform:translateY(-2px); }
.am-icon {
  width:56px; height:56px; border-radius:50%;
  background:#f4f4f4; border:1.5px solid #e8e8e8;
  display:flex; align-items:center; justify-content:center;
  transition:all .22s; flex-shrink:0;
}
.am-icon svg, .am-icon svg * { width:26px; height:26px; stroke:#888 !important; fill:none !important; stroke-width:1.5 !important; stroke-linecap:round !important; stroke-linejoin:round !important; transition:stroke .22s; }
.amenidade:hover .am-icon { background:#f0fdf4; border-color:#22c55e; box-shadow:0 0 0 4px rgba(34,197,94,.12); }
.amenidade:hover .am-icon svg { stroke:#22c55e; }
.am-nome { font-size:9.5px; font-weight:600; color:#555; text-align:center; line-height:1.4; text-transform:uppercase; letter-spacing:.05em; }
.amenidade:hover .am-icon svg, .amenidade:hover .am-icon svg * { stroke:#22c55e !important; fill:none !important; }
/* ══════════════════════════════════════════════
   NOVOS ESTILOS — REESTRUTURAÇÃO LP INVESTIDOR
   ══════════════════════════════════════════════ */

/* ── HERO: selos e CTAs ── */
.hero-selos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 12px;
}
.hero-selo {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.hero-cta {
  display: block;
  background: #22c55e;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 16px;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 8px;
  transition: background .15s;
}
.hero-cta:hover { background: #16a34a; }
.hero-cta-wpp {
  display: block;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.75);
  text-decoration: underline;
  margin-bottom: 4px;
}

/* ── SEÇÃO GENÉRICA ── */
.secao-titulo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--preto);
}
.secao-sub { font-size: 12px; color: #888; margin-bottom: 16px; margin-top: -2px; }

/* ── POR QUE INVESTIR ── */
.investidor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0;
}
.investidor-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 12px;
}
.investidor-num {
  font-size: 26px;
  font-weight: 800;
  color: #111;
  line-height: 1;
  margin-bottom: 4px;
}
.investidor-desc {
  font-size: 11px;
  color: #666;
  line-height: 1.45;
}
.investidor-frase {
  font-size: 13px;
  color: #444;
  line-height: 1.6;
  background: #f5f5f5;
  border-left: 3px solid #22c55e;
  padding: 10px 12px;
  border-radius: 0 8px 8px 0;
  margin-top: 4px;
}

/* ── BOTÃO CTA VERDE (genérico) ── */
.btn-cta-verde {
  display: block;
  background: #22c55e;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s;
}
.btn-cta-verde:hover { background: #16a34a; }

/* ── VALORIZAÇÃO: callout ── */
.valorizacao-callout {
  font-size: 12px;
  color: #555;
  font-style: italic;
  border-left: 3px solid #22c55e;
  padding: 8px 12px;
  margin-top: 14px;
  border-radius: 0 8px 8px 0;
  background: #f9f9f9;
  line-height: 1.5;
}

/* ── MÍDIA: logos ── */
.midia-logo-row {
  margin-bottom: 12px;
}
.midia-logo-label {
  font-size: 11px;
  color: #888;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.midia-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.midia-logo-pill {
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .02em;
}

/* ── SETORES: CTA e urgência ── */
.setor-cta-btn {
  display: block;
  background: rgba(255,255,255,.92);
  color: #111;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 14px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 12px;
  transition: background .15s;
}
.setor-cta-btn:hover { background: #fff; }
.setor-esgotado-msg {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin-top: 10px;
  font-style: italic;
}
.setor-urgencia {
  font-size: 12px;
  color: #555;
  text-align: center;
  margin-top: 12px;
  padding: 10px;
  background: #f5f5f5;
  border-radius: 8px;
  line-height: 1.5;
}

/* ── SIMULADOR: bloco e resultado ── */
.sim-bloco { margin-bottom: 16px; }
.sim-row-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
}
.sim-range {
  width: 100%;
  accent-color: #22c55e;
  cursor: pointer;
}
.sim-resultado {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.sim-res-item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 10px 12px;
}
.sim-res-item.destaque {
  background: #f0fdf4;
  border-color: #86efac;
  grid-column: 1 / -1;
}
.sim-res-label {
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 3px;
}
.sim-res-val {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}
.sim-res-sub {
  font-size: 11px;
  color: #22c55e;
  font-weight: 500;
  margin-top: 2px;
}

/* ── FORMULÁRIO: separador e botão WPP direto ── */
.form-wpp-separador {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 12px;
  color: #aaa;
  font-size: 12px;
}
.form-wpp-separador::before,
.form-wpp-separador::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e5e5;
}
.btn-wpp-direto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #22c55e;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s;
}
.btn-wpp-direto:hover { background: #16a34a; }

/* ── FORM: estilos existentes garantidos ── */
.form-step {}
.form-pergunta { font-size:15px; font-weight:700; margin-bottom:14px; color:#111; }
.form-opcoes { display:flex; flex-direction:column; gap:8px; }
.form-btn-opcao {
  background:#f5f5f5; border:1.5px solid #e5e5e5; border-radius:10px;
  padding:12px 14px; font-size:14px; font-weight:500; color:#111;
  text-align:left; cursor:pointer; transition:all .15s;
}
.form-btn-opcao:hover { background:#111; color:#fff; border-color:#111; }
.form-input {
  width:100%; padding:13px 14px; border:1.5px solid #e5e5e5;
  border-radius:10px; font-size:15px; color:#111;
  background:#fff; margin-bottom:12px; outline:none;
  transition:border-color .15s;
}
.form-input:focus { border-color:#22c55e; }
.form-btn-continuar {
  display:flex; align-items:center; justify-content:center; gap:8px;
  width:100%; padding:13px; border-radius:10px;
  background:#111; color:#fff; border:none;
  font-size:14px; font-weight:700; cursor:pointer; transition:background .15s;
}
.form-btn-continuar:hover { background:#333; }

/* ── CTA FIXO ── */
.cta-fixo {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: #22c55e;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(34,197,94,.45);
  width: 300px;
  transition: background .15s, box-shadow .15s;
}
.cta-fixo:hover { background: #16a34a; box-shadow: 0 6px 24px rgba(34,197,94,.55); }

/* ══════════════════════════════════════════════
   HERO COM VÍDEO DE FUNDO
   ══════════════════════════════════════════════ */
.hero-video-wrap {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 4/3;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
@media (max-width: 600px) {
  .hero-video-wrap {
    margin-left: -16px !important;
    margin-right: -16px !important;
    border-radius: 0 0 16px 16px !important;
    height: 60vh !important;
    max-height: 480px !important;
    aspect-ratio: unset !important;
  }
}