/* =============================================================
   STYLE.CSS — Estilos unificados de todo o projeto
   Inclui: site.html, admin_editar.html, admin_novo.html,
           admin_lista.html, admin_leads.html, login.html
   ============================================================= */

/* =======================
   VARIÁVEIS GLOBAIS
======================= */
:root {
  --laranja: #F07A3A;
  --verde: #1F2E2B;
  --cinza-claro: #f7f7f5;
  --cinza-borda: #e8e8e4;
  --texto: #1a1a1a;
  --texto-suave: #6b6b6b;
  --radius: 16px;
  --transition: 0.3s ease;
}

/* =======================
   RESET
======================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }


/* ================================================================
   SITE PÚBLICO (site.html)
================================================================ */

body.site {
  font-family: 'DM Sans', sans-serif;
  background: #fff;
  color: var(--texto);
  -webkit-font-smoothing: antialiased;
}
body.site h1,
body.site h2,
body.site h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}

body.site .container { width: 90%; max-width: 1100px; margin: auto; }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--laranja); margin-bottom: 12px;
}

/* Botões do site */
.btn-principal {
  background: var(--laranja); color: white; border: none;
  padding: 15px 28px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
  cursor: pointer; transition: opacity .2s, transform .2s;
  display: inline-block; text-decoration: none;
}
.btn-principal:hover { opacity: .9; transform: translateY(-1px); }

.btn-secundario {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 15px 28px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 15px;
  cursor: pointer; transition: border-color .2s;
}
.btn-secundario:hover { border-color: rgba(255,255,255,0.8); }

/* 1. HERO */
.hero { position: relative; overflow: hidden; padding: 0; }
.hero-imagem-full {
  width: 100%; height: 70vh; min-height: 420px; max-height: 720px;
  object-fit: cover; display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,30,25,.78) 60%, rgba(15,30,25,.15));
}
.hero-content { position: absolute; inset: 0; display: flex; align-items: center; }
.hero-text-inner { width: 90%; max-width: 1100px; margin: auto; color: white; }
.logo {
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; opacity: .75; margin-bottom: 12px;
}
.construtora-badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.35); color: rgba(255,255,255,.88);
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
}
.hero-text-inner h1 {
  font-size: clamp(28px, 5vw, 52px); line-height: 1.15;
  margin-bottom: 16px; color: white;
}
.hero-localizacao {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,.78); margin-bottom: 28px;
}
.hero-localizacao span { color: var(--laranja); font-weight: 600; }
.hero-botoes { display: flex; gap: 12px; flex-wrap: wrap; }

/* 2. INFO CARDS */
.info-destaques { background: var(--cinza-claro); padding: 60px 0; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.info-card { padding: 28px 20px; border-right: 1px solid var(--cinza-borda); text-align: center; }
.info-card:last-child { border-right: none; }
.info-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
}
.info-card-icon svg { width: 22px; height: 22px; }
.info-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--texto-suave); margin-bottom: 6px;
}
.info-card strong, .info-card p {
  font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--texto);
}

/* 3. SOBRE */
.sobre { background: white; padding: 80px 0}
.sobre-inner { max-width: 700px; margin: auto; text-align: center; }
.sobre-inner h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 20px; }
.sobre-inner p { font-size: 17px; line-height: 1.78; color: var(--texto-suave); margin-bottom: 32px; }

/* GALERIA */
.galeria { background: var(--cinza-claro); padding: 20px 0;}
.galeria h2 { text-align: center; font-size: 32px; margin-bottom: 32px; }

/* PLANTAS */
.plantas { background: white; padding: 20px 0;}
.plantas h2 { text-align: center; font-size: 32px; margin-bottom: 32px; }
.plantas .slide img { object-fit: contain; background: #fff; padding: 20px; }

/* 4. LAZER */
.lazer { background: white; padding: 80px 0;}
.lazer-header { text-align: center; margin-bottom: 48px; }
.lazer-header h2 { font-size: clamp(26px, 4vw, 38px); }
.lazer-header p { color: var(--texto-suave); margin-top: 10px; font-size: 16px; max-width: 500px; margin-inline: auto; }
.lazer-body { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.lazer-categorias-clean { display: flex; flex-direction: column; gap: 28px; }
.lazer-bloco-clean h4 {
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--laranja); margin-bottom: 10px;
}
.lazer-bloco-clean ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.lazer-bloco-clean li { font-size: 14px; color: var(--texto); display: flex; align-items: center; gap: 10px; }
.lazer-bloco-clean li::before {
  content: '';
  width: 18px; height: 18px; min-width: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='11' stroke='%2322c55e' stroke-width='1.5'/%3E%3Cpath d='M8 12l2.5 2.5L16 9' stroke='%2322c55e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.lazer-cta { margin-top: 32px; }
.lazer-carousel { border-radius: var(--radius); overflow: hidden; }

/* 5. DIFERENCIAIS */
.diferenciais { background: var(--cinza-claro); padding: 80px 0; }
.dif-header { text-align: center; margin-bottom: 48px; }
.dif-header h2 { font-size: clamp(26px, 4vw, 38px); }
.dif-header p { color: var(--texto-suave); margin-top: 10px; font-size: 16px; }
.diferenciais-grid-clean { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.dif-card-clean {
  background: white; border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid var(--cinza-borda); transition: box-shadow .2s, transform .2s;
}
.dif-card-clean:hover { box-shadow: 0 12px 32px rgba(0,0,0,.07); transform: translateY(-3px); }
.dif-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 22px;
}
.dif-card-clean h3 {
  font-family: 'DM Sans', sans-serif; font-size: 17px; font-weight: 600;
  margin-bottom: 8px; color: var(--texto);
}
.dif-card-clean p { font-size: 14px; color: var(--texto-suave); line-height: 1.65; }

/* 6. LOCALIZAÇÃO */
.localizacao-section { background: var(--cinza-claro); padding: 80px 0; }
.loc-header { text-align: center; margin-bottom: 48px; }
.loc-header h2 { font-size: clamp(26px, 4vw, 38px); }
.loc-header p { color: var(--texto-suave); margin-top: 10px; font-size: 16px; }
.loc-body { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.loc-card { background: white; border-radius: var(--radius); padding: 32px; border: 1px solid var(--cinza-borda); }
.loc-card h3 {
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600;
  margin-bottom: 20px; color: var(--texto);
}
.loc-lista { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.loc-item { display: flex; align-items: center; gap: 14px; }
.loc-item-icon {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.loc-item-texto strong { display: block; font-size: 14px; font-weight: 600; color: var(--texto); }
.loc-item-texto span { font-size: 13px; color: var(--texto-suave); }
.loc-nota {
  background: var(--cinza-claro); border-radius: 10px;
  padding: 14px 16px; font-size: 13px; color: var(--texto-suave); line-height: 1.55;
}
.loc-nota strong { color: var(--texto); }
.loc-mapa { border-radius: var(--radius); overflow: hidden; height: 340px; }
.loc-mapa iframe { width: 100%; height: 100%; border: 0; display: block; }

/* CONTATO */
.contato { background: linear-gradient(135deg, var(--verde), #142c28); color: white; padding: 80px 0; }
.contato-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contato-texto h2 { font-size: clamp(26px, 4vw, 38px); color: white; margin-bottom: 14px; }
.contato-texto p { color: rgba(255,255,255,.75); font-size: 16px; margin-bottom: 24px; }
.contato-beneficios { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: rgba(255,255,255,.85); }
.contato-form-box {
  background: white; border-radius: var(--radius); padding: 36px;
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
}
.contato-form-box form { display: flex; flex-direction: column; gap: 14px; }
.contato-form-box input {
  padding: 14px 16px; border: 1.5px solid var(--cinza-borda); border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; outline: none;
  transition: border-color .2s; width: 100%;
}
.contato-form-box input:focus { border-color: var(--laranja); }
.privacidade { font-size: 11px; color: #aaa; text-align: center; }

/* 7. BANNER WHATSAPP */
.whatsapp-banner {
  background: linear-gradient(135deg, #1a5c35, #25a244);
  padding: 72px 0; text-align: center; color: white;
}
.whatsapp-banner h2 { font-size: clamp(24px, 4vw, 40px); color: white; margin-bottom: 10px; }
.whatsapp-banner p { font-size: 16px; color: rgba(255,255,255,.82); margin-bottom: 32px; }
.btn-whatsapp-banner {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; color: #1a5c35;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 16px;
  padding: 16px 36px; border-radius: 50px; text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-whatsapp-banner:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.22); }
.btn-whatsapp-banner svg { width: 22px; height: 22px; }

/* FOOTER */
footer {
  background: var(--verde);
  color: rgba(255,255,255,.75);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 48px;
  padding: 56px 0 40px;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; color: white; margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,.6); margin: 0; max-width: 280px;
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--laranja); margin-bottom: 16px;
}
.footer-lista {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.footer-lista li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.5;
}
.footer-lista li svg { min-width: 15px; margin-top: 2px; stroke: var(--laranja); }

.footer-link {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: color .2s;
  font-size: 13px;
  line-height: 1.5;
}
.footer-link:hover { color: var(--laranja); }
.footer-link svg { min-width: 15px; margin-top: 2px; stroke: var(--laranja); transition: stroke .2s; }
.footer-horario li { color: rgba(255,255,255,.65); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 20px 0; text-align: center;
    font-size: 12px; color: rgba(255,255,255,.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* Endereço na seção de localização */
.loc-endereco {
  display: flex; align-items: flex-start; gap: 6px;
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--cinza-borda);
  font-size: 13px; color: var(--texto-suave);
}
.loc-endereco svg { min-width: 14px; margin-top: 2px; stroke: var(--laranja); }

@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 32px; }
  footer { padding-bottom: 100px; }
}

/* WHATSAPP FIXO */
.whatsapp {
  position: fixed; bottom: 24px; right: 24px;
  width: 60px; height: 60px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.18); z-index: 100; transition: transform .2s;
  animation: pulse-whats 2.5s ease-in-out infinite;
}
.whatsapp:hover { transform: scale(1.08); animation: none; box-shadow: 0 8px 24px rgba(37,211,102,.5); }
.icone-whats { width: 28px; height: 28px; }

.icone-ap { 
  height: 20px; 
}

@keyframes pulse-whats {
  0%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,.18); }
  50%       { box-shadow: 0 6px 20px rgba(37,211,102,.45), 0 0 0 8px rgba(37,211,102,.12); }
}

/* CARROSSEL */
.carousel { position: relative; overflow: hidden; border-radius: var(--radius); }
.carousel-track { display: flex; transition: transform .4s ease; }
.slide { min-width: 100%; }
.slide img { width: 100%; height: 380px; object-fit: cover; display: block; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.92); border: none;
  width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; font-size: 16px; color: var(--verde);
  box-shadow: 0 4px 12px rgba(0,0,0,.12); transition: background .2s;
}
.carousel-btn:hover { background: var(--laranja); color: white; }
.prev { left: 16px; }
.next { right: 16px; }
.carousel-dots { display: flex; justify-content: center; gap: 6px; padding: 14px 0; }
.carousel-dots span { width: 7px; height: 7px; background: #ccc; border-radius: 50%; cursor: pointer; transition: background .2s; }
.carousel-dots .active { background: var(--laranja); }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: .3s ease; z-index: 9999;
  overflow: hidden;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90%; max-height: 85%; border-radius: 10px;
  transition: transform .25s ease;
  user-select: none; -webkit-user-drag: none;
}
.lightbox-close { position: absolute; top: 24px; right: 32px; font-size: 32px; color: white; cursor: pointer; z-index: 10; }
.lightbox-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,.15); color: white;
  font-size: 13px; padding: 6px 16px; border-radius: 20px;
  pointer-events: none; transition: opacity .5s ease;
  backdrop-filter: blur(4px);
}

/* BARRA FIXA MOBILE */
.mobile-cta-bar { display: none; }

@media (max-width: 1023px) {
  .mobile-cta-bar {
    position: fixed; bottom: 0; left: 0; width: 100%;
    display: flex; gap: 10px; padding: 10px;
    background: #fff; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); z-index: 999;
  }
  .mobile-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px; border-radius: 8px; font-weight: bold;
    text-decoration: none; border: none; cursor: pointer;
  }
  .mobile-btn-whats { background: #25D366; color: white; }
  .mobile-btn-form  { background: var(--verde); color: white; }
  .mobile-btn img, .mobile-btn svg { width: 18px; height: 18px; }
  .mobile-btn svg { stroke: white; fill: none; }

  footer { padding-bottom: 100px !important; }
  .whatsapp { display: none; }
  .lazer-body, .loc-body, .contato-container { grid-template-columns: 1fr; gap: 32px; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .info-card { border-right: none; border-bottom: 1px solid var(--cinza-borda); }
  .info-card:nth-child(odd) { border-right: 1px solid var(--cinza-borda); }
}


/* ================================================================
   PAINEL ADMIN — base compartilhada
   (admin_editar, admin_novo, admin_lista, admin_leads, login)
================================================================ */

body.admin {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

body.admin .admin-wrap      { max-width: 700px; margin: 40px auto; }
body.admin .admin-wrap-wide { max-width: 900px; margin: 40px auto; }

body.admin input,
body.admin textarea {
  width: 100%; padding: 10px; margin-bottom: 10px;
  box-sizing: border-box; border: 1px solid #ddd;
  border-radius: 4px; font-size: 14px;
}

body.admin button {
  padding: 10px 15px; border: none; cursor: pointer;
  margin-bottom: 10px; font-weight: bold;
  background: #6c757d; color: white;
}
body.admin button.adicionar { background: #28a745; color: white; margin-right: 5px; }
body.admin button.excluir   { background: #dc3545; color: white; margin-left: 5px; }
body.admin button.salvar    { background: #007bff; color: white; font-size: 16px; padding: 12px 30px; }

body.admin .box {
  border: 1px solid #ddd; padding: 15px;
  margin-bottom: 20px; position: relative; background: #fff;
}

body.admin hr { margin: 30px 0; border: none; border-top: 1px solid #ddd; }
body.admin h2 { margin-top: 40px; font-size: 20px; }
body.admin img { max-width: 200px; margin-bottom: 10px; display: block; }

body.admin label {
  font-size: 13px; font-weight: bold; color: #333; display: block; margin-bottom: 4px;
}
body.admin label.hint { font-weight: normal; color: #555; }

/* Nav de topo */
.admin-top { display: flex; justify-content: flex-end; gap: 15px; margin-bottom: 20px; }
.admin-top a { text-decoration: none; color: var(--verde); font-weight: bold; }
.admin-top-btns a { padding: 10px 16px; background: var(--verde); color: white; text-decoration: none; text-align: center; }

/* Listagem de sites */
.site-row { display: flex; gap: 10px; margin-bottom: 10px; }
.site-row a { padding: 10px; color: white; text-decoration: none; text-align: center; }
.btn-editar { background: var(--verde); flex: 1; }
.btn-ver    { background: var(--laranja); width: 110px; }

/* Toast */
#toast {
  display: none; position: fixed; top: 24px; right: 24px;
  background: #28a745; color: white; padding: 16px 24px;
  border-radius: 8px; font-size: 15px; font-weight: bold;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2); z-index: 9999;
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn-ver-site {
  display: inline-block; background: var(--verde); color: white;
  text-decoration: none; padding: 12px 24px;
  border-radius: 6px; font-weight: bold; font-size: 15px; margin-left: 10px;
}
.btn-ver-site:hover { opacity: 0.85; }

/* Seletor de ícone */
.icone-grid { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 14px; }
.icone-opt {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  border: 2px solid #ddd; border-radius: 8px; padding: 8px 10px; cursor: pointer;
  font-size: 11px; color: #555; transition: .2s; min-width: 68px; text-align: center; background: #fff;
}
.icone-opt:hover { border-color: var(--laranja); }
.icone-opt.selecionado { border-color: var(--laranja); background: #fef3eb; color: var(--laranja); font-weight: 600; }
.icone-opt svg { pointer-events: none; }

/* Tabela de leads */
.leads-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.leads-table th { background: var(--verde); color: white; padding: 12px 10px; text-align: left; font-size: 13px; }
.leads-table td { padding: 11px 10px; border-bottom: 1px solid #eee; font-size: 14px; vertical-align: middle; }
.leads-table tr:hover td { background: #f9f9f9; }

.badge { display: inline-block; background: #f3efe7; color: var(--verde); font-size: 11px; font-weight: bold; padding: 3px 8px; border-radius: 20px; }
.btn-whats { display: inline-block; background: #25D366; color: white; text-decoration: none; padding: 6px 12px; border-radius: 5px; font-size: 12px; font-weight: bold; white-space: nowrap; }
.btn-whats:hover { opacity: 0.85; }

.vazio { text-align: center; padding: 60px; color: #999; }
.subtitulo { color: #888; font-size: 14px; margin-bottom: 30px; }

.filtro { margin-bottom: 20px; }
.filtro select { padding: 8px 12px; border: 1px solid #ddd; border-radius: 5px; font-size: 14px; cursor: pointer; }

/* Login */
body.login-page {
  font-family: Arial, sans-serif; background: #f4f4f4;
  display: flex; align-items: center; justify-content: center; height: 100vh; margin: 0;
}
.login-card {
  background: white; padding: 40px; width: 350px;
  border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.login-card h2 { text-align: center; margin-bottom: 25px; }
.login-card input { width: 100%; padding: 10px; margin-bottom: 15px; }
.login-card button {
  width: 100%; padding: 12px; background: var(--verde);
  color: white; border: none; cursor: pointer; font-weight: bold;
}
.login-card button:hover { opacity: 0.9; }
.login-erro { color: red; text-align: center; margin-bottom: 10px; }

/* ================================================================
   HUB — PÁGINA INICIAL (index.html)
================================================================ */

/* Hero */
.hub-hero {
  background: linear-gradient(135deg, var(--verde), #142c28);
  padding: 80px 0 72px;
  color: white;
}
.hub-hero-inner {
  max-width: 600px;
}
.hub-hero-inner h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  color: white;
  margin-bottom: 16px;
}
.hub-hero-inner p {
  font-size: 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Filtro */
.hub-filtro-section {
  background: var(--cinza-claro);
  padding: 24px 0;
  border-bottom: 1px solid var(--cinza-borda);
  position: sticky;
  top: 0;
  z-index: 50;
}
.hub-filtro {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hub-filtro-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--cinza-borda);
  border-radius: 50px;
  background: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--texto-suave);
  cursor: pointer;
  transition: all .2s;
}
.hub-filtro-btn:hover {
  border-color: var(--laranja);
  color: var(--laranja);
}
.hub-filtro-btn.ativo {
  background: var(--verde);
  border-color: var(--verde);
  color: white;
}

/* Grid */
.hub-grid-section { padding: 56px 0 80px; background: white; }
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* Card */
.hub-card {
  border-radius: var(--radius);
  border: 1px solid var(--cinza-borda);
  overflow: hidden;
  text-decoration: none;
  color: var(--texto);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
  background: white;
}
.hub-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.hub-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--cinza-claro);
}
.hub-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.hub-card:hover .hub-card-img img { transform: scale(1.04); }
.hub-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.hub-card-zona {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(31,46,43,.85);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.hub-card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.hub-card-construtora {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--laranja);
}
.hub-card-nome {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; font-weight: 400;
  color: var(--texto); line-height: 1.2;
}
.hub-card-loc {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; color: var(--texto-suave);
}
.hub-card-loc svg { stroke: var(--laranja); }
.hub-card-info { margin-top: 4px; }
.hub-card-preco { margin-bottom: 8px; }
.hub-card-preco-label { font-size: 11px; color: var(--texto-suave); display: block; }
.hub-card-preco strong { font-size: 18px; color: var(--verde); }
.hub-card-detalhes {
  display: flex; gap: 12px;
  font-size: 13px; color: var(--texto-suave);
}
.hub-card-detalhes span{
  display: flex; 
  gap: 8px;
  align-items: center;
}
.hub-card-cta {
  margin-top: auto;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--laranja);
}

/* CTA final */
.hub-cta {
  background: var(--cinza-claro);
  padding: 64px 0;
  border-top: 1px solid var(--cinza-borda);
}
.hub-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.hub-cta-inner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 8px;
}
.hub-cta-inner p { color: var(--texto-suave); font-size: 16px; }
.hub-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .hub-cta-inner { flex-direction: column; align-items: flex-start; }
  .hub-grid { grid-template-columns: 1fr; }
}