* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --orange: #f47820;
  --orange-light: #fff4e8;
  --orange-soft: #fdebd9;
  --dark: #343332;
  --text: #2c2c2c;
  --text-muted: #7a7a7a;
  --border: #e5e5e5;
  --bg-light: #fafafa;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 14px;
  line-height: 1.5;
}

@keyframes page-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
main { animation: page-in .45s cubic-bezier(.22,1,.36,1) both; }

/* ── Topbar ───────────────────────────────────────────── */
.topbar {
  background: #343332;
  color: #fff;
  padding: 8px 0;
  font-size: 12px;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dolar { color: #fff; font-weight: 400; }
.dolar strong { color: var(--orange); font-weight: 600; margin-left: 4px; }
.social { display: flex; gap: 8px; }
.social a {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #3a3a3a;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none;
  font-size: 11px; transition: background 0.2s;
}
.social a:hover { background: var(--orange); }
.social svg { width: 11px; height: 11px; fill: currentColor; }

/* ── Header ───────────────────────────────────────────── */
.header { background: #fff; border-bottom: 1px solid #f0f0f0; }
.header-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--dark);
}
.logo-img { height: 54px; width: auto; display: block; }
.header-contact {
  display: flex; gap: 32px; justify-content: center; align-items: center;
}
.contact-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--text); font-size: 14px; text-decoration: none;
}
.contact-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); flex-shrink: 0;
}
.contact-icon svg { width: 14px; height: 14px; fill: currentColor; }
.btn-primary {
  background: var(--orange); color: #fff;
  border: none; padding: 13px 22px; border-radius: 8px;
  font-weight: 600; font-size: 14px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; transition: background 0.2s; font-family: inherit;
}
.btn-primary:hover { background: #e26a14; }
.btn-primary svg { width: 14px; height: 14px; fill: currentColor; }

/* ── Header bottom ────────────────────────────────────── */
.header-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px 12px;
}
.nav { display: flex; gap: 32px; }
.nav a {
  color: var(--text); text-decoration: none;
  font-size: 15px; padding: 8px 0;
  position: relative; font-weight: 500;
}
.nav a.active { color: var(--orange); }
.nav a.active::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--orange); border-radius: 2px;
}
.nav a:hover { color: var(--orange); }


/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 440px; overflow: visible;
  background: #1a2940;
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(10,18,30,0.55) 0%, rgba(10,18,30,0.70) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 1200px;
  margin: 0 auto; padding: 60px 32px 0; color: #fff;
}
.eyebrow {
  color: var(--orange); font-size: 13px; font-weight: 700;
  letter-spacing: 2px; margin-bottom: 18px; text-transform: uppercase;
}
.hero h1 {
  font-size: 48px; font-weight: 700; line-height: 1.15;
  margin-bottom: 22px; letter-spacing: -1px; color: #fff;
}
.hero p {
  font-size: 16px; color: rgba(255,255,255,0.85);
  max-width: 480px; line-height: 1.6; margin-bottom: 36px;
}

/* ── Filter card ──────────────────────────────────────── */
.filter-card {
  position: relative; background: #fff; border-radius: 16px;
  padding: 14px; box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  display: grid; grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px; margin-bottom: 0;
}
@media (max-width: 770px) {

    .hero {
        overflow: visible;
        padding-bottom: 90px;
    }

    .hero-content {
        position: relative;
    }

    .filter-card {
        position: absolute;
        left: 50%;
        bottom: -20px;
        transform: translateX(-50%);

        width: calc(100% - 32px);

        grid-template-columns: 1fr;
        z-index: 20;
    }

    .logo {
        justify-content: center;
        width: 100%;
    }

    .hero-content .text-banner {
        text-align: center;
    }

    .feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .feature-title {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .feature-desc {
        font-size: 14px;
        line-height: 1.4;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }
    .features-inner {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

}
.filter-field {
  display: flex; align-items: center; gap: 12px;
  padding: 6px 16px; border-radius: 8px; background: #fff;
  border: 1px solid #f0f0f0; cursor: pointer; position: relative;
}
.filter-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); flex-shrink: 0;
}
.filter-icon svg { width: 14px; height: 14px; fill: currentColor; }
.filter-text { flex: 1; min-width: 0; }
.filter-label { font-size: 11px; color: var(--text-muted); margin-bottom: 2px; font-weight: 500; }
.filter-value { font-size: 14px; font-weight: 600; color: var(--text); }
.filter-arrow {
  color: #bbb; font-size: 10px; pointer-events: none;
  transition: transform 0.2s; display: inline-block; flex-shrink: 0;
}
.filter-arrow.open { transform: rotate(180deg); color: var(--orange); }
.filter-field.open { border-color: var(--orange); }
.filter-field { position: relative; }

.filter-dropdown {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  top: auto;
  left: 0; right: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  box-shadow: 0 -4px 28px rgba(0,0,0,0.11);
  z-index: 200;
  max-height: 220px;
  overflow-y: auto;
  padding: 4px;
}
.filter-dropdown.open { display: block; }
.filter-dropdown::-webkit-scrollbar { width: 4px; }
.filter-dropdown::-webkit-scrollbar-track { background: transparent; }
.filter-dropdown::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }
.filter-option {
  padding: 9px 12px;
  font-size: 13px; color: var(--text);
  cursor: pointer; border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.filter-option:hover { background: var(--orange-light); color: var(--orange); }
.filter-option.selected { color: var(--orange); font-weight: 600; background: var(--orange-light); }

.btn-search {
  background: var(--orange); color: #fff; border: none;
  border-radius: 8px; padding: 0 28px; font-weight: 600; font-size: 14px;
  cursor: pointer; display: flex; align-items: center; gap: 10px;
  font-family: inherit; transition: background 0.2s;
}
.btn-search:hover { background: #e26a14; }
.btn-search svg { width: 14px; height: 14px; fill: currentColor; }

/* ── Features ─────────────────────────────────────────── */
.features { background: #fff; padding: 28px 0; border-bottom: 1px solid #f0f0f0; }
.features-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.feature { display: flex; align-items: center; gap: 14px; }
.feature-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.feature-icon svg { width: 18px; height: 18px; fill: currentColor; }
.feature-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.feature-desc { font-size: 12px; color: var(--text-muted); }

/* ── Highlights ───────────────────────────────────────── */
.highlights { padding: 50px 0 60px; background: #fff; position: relative; }
.section-head {
  max-width: 1200px; margin: 0 auto 30px; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.section-eyebrow {
  color: var(--orange); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.section-title { font-size: 32px; font-weight: 700; color: var(--text); letter-spacing: -0.5px; }
.btn-outline {
  border: 1px solid var(--orange); color: var(--orange);
  background: transparent; padding: 10px 18px; border-radius: 8px;
  font-weight: 500; font-size: 13px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; font-family: inherit; transition: all 0.2s;
}
.btn-outline:hover { background: var(--orange); color: #fff; }
.btn-outline svg { width: 12px; height: 12px; fill: currentColor; }

/* ── Cards ────────────────────────────────────────────── */
.cards-wrap { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: #fff; border-radius: 12px; overflow: hidden;
  border: 1px solid #ececec; transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer; text-decoration: none; display: block; color: inherit;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.card-image { position: relative; aspect-ratio: 4/3; background: #d4d4d4; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-image-placeholder {
  width: 100%; height: 100%; background: #eee;
  display: flex; align-items: center; justify-content: center; color: #ccc;
}
.card-image-placeholder svg { width: 40px; height: 40px; fill: currentColor; }
.card-tag {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.7); color: #fff;
  font-size: 10px; font-weight: 700; padding: 5px 10px;
  border-radius: 4px; letter-spacing: 1px;
}
.card-body { padding: 14px 16px 16px; }
.card-type {
  display: flex; align-items: center; gap: 8px;
  color: var(--orange); font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 6px;
}
.card-type svg { width: 13px; height: 13px; fill: currentColor; }
.card-title {
  font-size: 14px; font-weight: 600; color: var(--text);
  margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card-location { font-size: 12px; color: var(--text-muted); margin-bottom: 12px;}
.card-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; border-top: 1px solid #f0f0f0;
}
.card-area { font-size: 12px; color: var(--text); }
.card-area strong { color: var(--text-muted); font-weight: 500; }
.card-icons { display: flex; gap: 12px; color: var(--text-muted); font-size: 12px; }
.card-icons span { display: flex; align-items: center; gap: 4px; }
.card-icons svg { width: 13px; height: 13px; fill: currentColor; }

/* ── Features strip ───────────────────────────────────── */
.features-strip { background: var(--orange-soft); padding: 56px 0; }
.features-strip .features-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.features-strip .feature {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 12px;
}
.features-strip .feature-icon {
  width: 72px; height: 72px; color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  flex-shrink: 0;
}
.features-strip .feature-icon svg { width: 36px; height: 36px; fill: currentColor; }
.features-strip .feature-title { font-size: 18px; font-weight: 700; color: var(--text); margin: 0; }
.features-strip .feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; flex: 1; }
.feature-btn {
  display: inline-block; margin-top: 4px;
  padding: 9px 24px; border-radius: 6px;
  background: var(--orange); color: #fff;
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background .2s, transform .15s;
}
.feature-btn:hover { background: #c05a00; transform: translateY(-1px); }

/* ── Footer ───────────────────────────────────────────── */
.site-footer { background: #343332; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 18px 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: #e5e2e2;
}
.footer-bottom a { color: #555; text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }

/* ── WhatsApp FAB ────────────────────────────────────── */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 22px rgba(37,211,102,.55); }
.wa-fab svg { width: 30px; height: 30px; }

/* ── Flash messages ──────────────────────────────────── */
.flash {
  padding: 12px 16px; border-radius: 8px; font-size: 13px;
  font-weight: 500; margin-bottom: 16px;
}
.flash-sucesso { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.flash-erro    { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── Imovel detail ────────────────────────────────────── */
.imovel-bg { background: var(--bg-light); }
.imovel-page { max-width: 1200px; margin: 0 auto; padding: 24px 32px 50px; }
.back-link {
  color: var(--orange); text-decoration: none; font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 14px;
}
.back-link svg { width: 12px; height: 12px; fill: currentColor; }
.back-link:hover { text-decoration: underline; }
.imovel-title {
  font-size: 26px; font-weight: 700; color: var(--text);
  letter-spacing: -0.3px; margin-bottom: 20px;
}
.imovel-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 24px; align-items: start;
}

/* Gallery */
.gallery-main {
  position: relative; aspect-ratio: 4/3; border-radius: 8px;
  overflow: hidden; background: #ddd;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-placeholder {
  width: 100%; height: 100%; background: #eee;
  display: flex; align-items: center; justify-content: center; color: #ccc;
}
.gallery-placeholder svg { width: 48px; height: 48px; fill: currentColor; }
.gallery-counter {
  position: absolute; top: 14px; right: 14px;
  background: rgba(0,0,0,0.65); color: #fff;
  padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600;
}
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.88); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #555; transition: background 0.2s;
}
.gallery-arrow:hover { background: #fff; }
.gallery-arrow.prev { left: 14px; }
.gallery-arrow.next { right: 14px; }
.gallery-arrow svg { width: 14px; height: 14px; fill: currentColor; }
.thumbs {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-top: 10px;
}
.thumb {
  aspect-ratio: 4/3; border-radius: 6px; overflow: hidden;
  cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; background: #ccc;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb.active { border-color: var(--orange); }

/* Panel */
.panel { background: #fff; border-radius: 8px; padding: 22px 24px; margin-bottom: 16px; }
.panel-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.panel-divider { border-top: 1px solid #f0f0f0; margin: 22px 0 20px; padding-top: 20px; }

/* Details + Description */
.details-desc-grid { display: grid; grid-template-columns: 240px 1fr; gap: 36px; }
.details-list { display: flex; flex-direction: column; gap: 10px; }
.detail-item {
  display: grid; grid-template-columns: 18px 100px 1fr; gap: 6px;
  align-items: start; font-size: 13px;
}
.detail-icon { color: var(--orange); }
.detail-icon svg { width: 14px; height: 14px; fill: currentColor; display: block; margin-top: 1px; }
.detail-label { color: var(--text); font-weight: 600; }
.detail-value { color: var(--text-muted); }
.ver-no-mapa {
  display: inline-flex; align-items: center; gap: 3px;
  margin-top: 5px; font-size: 11px; font-weight: 600;
  color: var(--orange); text-decoration: none;
  border: 1px solid var(--orange); border-radius: 4px;
  padding: 2px 7px 2px 5px; line-height: 1.4;
  transition: background .15s, color .15s;
}
.ver-no-mapa svg { width: 11px; height: 11px; fill: currentColor; flex-shrink: 0; }
.ver-no-mapa:hover { background: var(--orange); color: #fff; }
.description-text { font-size: 13.5px; color: #444; line-height: 1.75; }
.description-text p { margin-bottom: 10px; }
.description-text p:last-child { margin-bottom: 0; }

/* Characteristics */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.feature-item { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text); font-weight: 500; }
.feature-mark { width: 16px; height: 16px; flex-shrink: 0; color: var(--orange); }
.feature-mark svg { width: 12px; height: 12px; fill: currentColor; display: block; }

/* Map */
.map-wrap { aspect-ratio: 16/5; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; display: block; border: none; }

/* Sidebar contact form */
.sidebar-panel { background: #fff; border-radius: 8px; padding: 22px; margin-bottom: 16px; }
.sidebar-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.sidebar-sub { font-size: 12.5px; color: var(--text-muted); margin-bottom: 16px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 12px; color: #555; font-weight: 500; margin-bottom: 5px; }
.form-group .req { color: var(--orange); }
.form-group input, .form-group textarea {
  width: 100%; padding: 9px 11px; border: 1px solid #e0e0e0; border-radius: 6px;
  font-family: inherit; font-size: 13px; outline: none; background: #fff;
  color: var(--text); transition: border 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 76px; }
.btn-whatsapp {
  width: 100%; background: #25d366; color: #fff; border: none;
  padding: 11px; border-radius: 8px; font-weight: 600; font-size: 13.5px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; margin-bottom: 10px; transition: background 0.2s;
}
.btn-whatsapp:hover { background: #1da851; }
.btn-whatsapp svg { width: 16px; height: 16px; fill: currentColor; }
.btn-submit {
  width: 100%; background: var(--orange); color: #fff; border: none;
  padding: 11px; border-radius: 8px; font-weight: 600; font-size: 13.5px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 8px; font-family: inherit; transition: background 0.2s;
}
.btn-submit:hover { background: #e26a14; }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; }
.btn-submit svg { width: 13px; height: 13px; fill: currentColor; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Sucesso do formulário de contato */
#contato-sucesso {
  text-align: center; padding: 24px 16px;
  animation: fadeInUp .35s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.contato-ok-icon {
  width: 56px; height: 56px; margin: 0 auto 14px;
  background: #dcfce7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #16a34a;
}
.contato-ok-icon svg { width: 28px; height: 28px; }
.contato-ok-title { font-size: 17px; font-weight: 700; color: var(--text); margin: 0 0 6px; }
.contato-ok-sub   { font-size: 13px; color: var(--text-muted); margin: 0; }
.privacy-note {
  margin-top: 14px; background: var(--orange-light); border-radius: 6px;
  padding: 10px 12px; display: flex; gap: 10px; align-items: flex-start;
}
.privacy-icon {
  width: 26px; height: 26px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); flex-shrink: 0;
}
.privacy-icon svg { width: 13px; height: 13px; fill: currentColor; }
.privacy-text { font-size: 11.5px; line-height: 1.4; color: #555; }
.privacy-text strong { color: #333; font-weight: 600; display: block; margin-bottom: 1px; }

/* ── WhatsApp Share ───────────────────────────────────────── */
.btn-wa-share {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: #25D366; color: #fff; border-radius: 8px;
  padding: 11px 16px; font-size: 13px; font-weight: 600;
  text-decoration: none; margin-top: 12px; width: 100%; margin-bottom: 12px;
  transition: background .15s;
}
.btn-wa-share:hover { background: #1db954; color: #fff; }
.btn-wa-share svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* Barra fixa mobile */
.share-bar-mobile { display: none; }
@media (max-width: 900px) {
  .share-bar-mobile {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: #fff; border-top: 1px solid #e5e5e5;
    padding: 10px 16px 14px; box-shadow: 0 -3px 12px rgba(0,0,0,.1);
  }
  .share-bar-mobile-btn {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    background: #25D366; color: #fff; border-radius: 8px;
    padding: 13px 16px; font-size: 15px; font-weight: 700;
    text-decoration: none; width: 100%;
  }
  .share-bar-mobile-btn svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }
  .page-imovel { padding-bottom: 74px; }
}

/* Mini-cards (related) */
.more-title { font-size: 15px; font-weight: 700; color: var(--text); margin: 0 0 12px; }
.mini-card {
  background: #fff; border-radius: 8px; overflow: hidden; margin-bottom: 10px;
  display: grid; grid-template-columns: 100px 1fr;
  text-decoration: none; color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mini-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
.mini-img { aspect-ratio: 1/1; background: #ddd; overflow: hidden; }
.mini-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mini-img-placeholder {
  width: 100%; height: 100%; background: #eee;
  display: flex; align-items: center; justify-content: center; color: #ccc;
}
.mini-img-placeholder svg { width: 24px; height: 24px; fill: currentColor; }
.mini-body { padding: 10px 12px; }
.mini-type { color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 3px; }
.mini-title { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-loc { font-size: 11px; color: var(--text-muted); margin-bottom: 5px; }
.mini-price { font-size: 12px; font-weight: 700; color: var(--text); }
.btn-see-all {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: transparent; color: var(--orange);
  border: 1px solid var(--orange); border-radius: 8px;
  padding: 9px; font-weight: 500; font-size: 13px; cursor: pointer;
  font-family: inherit; margin-top: 6px; transition: all 0.2s; text-decoration: none;
}
.btn-see-all:hover { background: var(--orange); color: #fff; }
.btn-see-all svg { width: 12px; height: 12px; fill: currentColor; }

/* CTA strip */
.cta-strip {
  background: var(--orange); color: #fff; border-radius: 10px;
  padding: 22px 28px; margin-top: 20px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center;
}
.cta-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.cta-icon-wrap svg { width: 24px; height: 24px; fill: currentColor; }
.cta-text h4 { font-size: 17px; font-weight: 700; margin-bottom: 3px; }
.cta-text p { font-size: 13px; opacity: 0.9; }
.btn-white {
  background: #fff; color: var(--orange); border: none;
  padding: 11px 20px; border-radius: 8px; font-weight: 600; font-size: 13px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; font-family: inherit; white-space: nowrap;
}
.btn-white:hover { background: #f0f0f0; }
.btn-white svg { width: 12px; height: 12px; fill: currentColor; }

/* Bottom features strip */
.imovel-features { background: #fff; border-top: 1px solid #f0f0f0; }
.imovel-features-inner {
  max-width: 1200px; margin: 0 auto; padding: 28px 32px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.bf-item { display: flex; align-items: center; gap: 14px; }
.bf-icon { width: 40px; height: 40px; color: var(--orange); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.bf-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.bf-title { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.bf-desc { font-size: 12px; color: var(--text-muted); }

/* ── Page Banner ──────────────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, #1a2940 0%, #2a3f5c 60%, #343332 100%);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(244,120,32,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-banner-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  position: relative; color: #fff;
}
.page-banner .eyebrow { margin-bottom: 14px; }
.page-banner-title {
  font-size: 36px; font-weight: 700; letter-spacing: -0.5px;
  margin-bottom: 10px; color: #fff;
}
.page-banner-sub { font-size: 15px; color: rgba(255,255,255,0.65); }

/* Variante com foto de capa borrada */
.page-banner--photo { background: #111; }
.page-banner--photo::after {
  content: '';
  position: absolute; inset: -30px; z-index: 0;
  background-image: var(--cover-img);
  background-size: cover; background-position: center;
  filter: blur(22px);
  opacity: .55;
}
.page-banner--photo::before { background: rgba(0,0,0,.58); z-index: 1; }
.page-banner--photo .page-banner-inner { z-index: 2; }
.back-link--light { color: rgba(255,255,255,.7); }
.back-link--light:hover { color: #fff; }

/* ── Listings bar (filtro sticky) ─────────────────────── */
.listings-bar {
  background: #fff; border-bottom: 1px solid #f0f0f0;
  padding: 16px 0; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.listings-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.filter-card-listings { grid-template-columns: repeat(3, 1fr) auto; }
.filter-card-listings .filter-dropdown {
  bottom: auto;
  top: calc(100% + 6px);
  box-shadow: 0 4px 28px rgba(0,0,0,0.11);
}

/* ── Listings section ─────────────────────────────────── */
.listings { background: var(--bg-light); padding: 36px 0 60px; }
.listings-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── Results bar ──────────────────────────────────────── */
.results-bar {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 12px; margin-bottom: 24px;
}
.results-count { font-size: 14px; color: var(--text-muted); flex-shrink: 0; }
.results-count strong { color: var(--text); font-weight: 700; }
.filter-tags { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.filter-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--orange-light); color: var(--orange);
  border: 1px solid rgba(244,120,32,0.2); border-radius: 8px;
  padding: 4px 12px; font-size: 12px; font-weight: 600;
  text-decoration: none; transition: all 0.15s;
}
.filter-tag:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.filter-tag-x { font-size: 14px; line-height: 1; }
.filter-tag-clear {
  font-size: 12px; color: var(--text-muted); text-decoration: none;
  padding: 4px 10px; border-radius: 8px; border: 1px solid var(--border);
  transition: all 0.15s;
}
.filter-tag-clear:hover { color: var(--orange); border-color: var(--orange); }

/* ── Card destaque badge ──────────────────────────────── */
.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange); color: #fff;
  font-size: 10px; font-weight: 700; padding: 4px 8px;
  border-radius: 4px; letter-spacing: 0.5px; text-transform: uppercase;
}

/* ── Pagination ───────────────────────────────────────── */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 6px; margin-top: 48px;
}
.pag-btn {
  min-width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; border: 1px solid var(--border);
  background: #fff; color: var(--text);
  font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all 0.15s; padding: 0 12px;
}
.pag-btn:hover { border-color: var(--orange); color: var(--orange); }
.pag-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); font-weight: 700; }
.pag-btn svg { width: 16px; height: 16px; fill: currentColor; }
.pag-ellipsis { color: var(--text-muted); font-size: 14px; padding: 0 4px; }

/* ── Empty state ──────────────────────────────────────── */
.empty-state { text-align: center; padding: 80px 0 60px; }
.empty-icon {
  width: 80px; height: 80px; margin: 0 auto 20px;
  border-radius: 50%; background: var(--orange-light);
  display: flex; align-items: center; justify-content: center; color: var(--orange);
}
.empty-icon svg { width: 36px; height: 36px; fill: currentColor; }
.empty-state h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.empty-state p { font-size: 14px; color: var(--text-muted); }
.empty-state a { color: var(--orange); text-decoration: none; font-weight: 600; }
.empty-state a:hover { text-decoration: underline; }

/* ── Contato ──────────────────────────────────────────── */
.contato-grid {
  display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start;
}
.contato-card {
  background: #fff; border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  padding: 36px 40px;
}
.contato-card-title { font-size: 18px; font-weight: 700; color: var(--text); margin: 0 0 24px; }
.contato-info-col { display: flex; flex-direction: column; gap: 4px; }
.contato-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  padding: 20px 24px;
}
.contato-info-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.contato-info-icon svg { width: 20px; height: 20px; fill: currentColor; }
.contato-info-icon--green { background: #f0fdf4; color: #16a34a; }
.contato-info-icon--purple { background: #faf5ff; color: #9333ea; }
.contato-info-label { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 3px; }
.contato-info-value { font-size: 14px; font-weight: 600; color: var(--text); text-decoration: none; }
.contato-info-value:hover { color: var(--orange); }

/* ── Quem Somos ───────────────────────────────────────── */
.sobre-inner { max-width: 720px; }

.sobre-content { font-size: 16px; color: var(--text); line-height: 1.8; }
.sobre-content p { margin-bottom: 1.2em; }
.sobre-content h1, .sobre-content h2, .sobre-content h3 {
  font-weight: 700; color: var(--text); margin: 1.6em 0 .6em;
}
.sobre-content h1 { font-size: 26px; }
.sobre-content h2 { font-size: 22px; }
.sobre-content h3 { font-size: 18px; }
.sobre-content ul, .sobre-content ol { padding-left: 24px; margin-bottom: 1.2em; }
.sobre-content li { margin-bottom: .4em; }
.sobre-content strong { font-weight: 700; }
.sobre-content em { font-style: italic; }
.sobre-content a { color: var(--orange); text-decoration: underline; }

.sobre-vazio { color: var(--text-muted); font-size: 15px; }

.sobre-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 48px; padding-top: 32px; border-top: 1px solid #f0f0f0; }
.btn-orange {
  display: inline-block; padding: 12px 28px; border-radius: 8px;
  background: var(--orange); color: #fff;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background .2s;
}
.btn-orange:hover { background: #d96b10; }
.btn-outline {
  display: inline-block; padding: 12px 28px; border-radius: 8px;
  border: 2px solid var(--orange); color: var(--orange);
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--orange); color: #fff; }

/* Honeypot anti-spam */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

/* ── Map Section ──────────────────────────────────────── */
.map-section {
  background: #343332;
  padding: 72px 0 64px;
}
.map-section-head {
  max-width: 1200px; margin: 0 auto 32px;
  padding: 0 32px;
}
.map-section-title {
  font-size: 28px; font-weight: 800;
  color: #fff; margin: 0 0 4px;
  letter-spacing: -0.3px;
}
.map-section-sub {
  font-size: 14px; color: rgba(255,255,255,0.45);
  margin: 0;
}
.map-section-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px;
}
#imoveis-map {
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

/* Custom map pin */
.map-pin {
  width: 30px; height: 38px;
  position: relative; cursor: pointer;
}
.map-pin svg {
  width: 100%; height: 100%;
  fill: var(--pin-color, #f47820);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
  transition: transform .15s ease;
}
.map-pin:hover svg { transform: translateY(-3px) scale(1.1); }

/* Popup card */
.leaflet-popup-content-wrapper {
  background: #1a1f2e !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6) !important;
  padding: 0 !important;
  overflow: hidden;
}
.leaflet-popup-tip-container { display: none !important; }
.leaflet-popup-content { margin: 0 !important; width: 240px !important; }
.leaflet-popup-close-button {
  color: rgba(255,255,255,0.5) !important;
  top: 8px !important; right: 10px !important;
  font-size: 18px !important; font-weight: 400 !important;
  z-index: 10;
}
.leaflet-popup-close-button:hover { color: #fff !important; }

.map-card { width: 240px; }
.map-card-img {
  width: 100%; height: 130px;
  object-fit: cover; display: block;
}
.map-card-img--empty {
  background: #252b3b;
  display: flex; align-items: center; justify-content: center;
}
.map-card-img--empty svg {
  width: 36px; height: 36px; fill: rgba(255,255,255,0.15);
}
.map-card-body { padding: 12px 14px 14px; }
.map-card-tipo {
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 4px;
}
.map-card-titulo {
  font-size: 13px; font-weight: 700; color: #fff;
  line-height: 1.35; margin-bottom: 6px;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.map-card-local {
  display: flex; align-items: center; gap: 4px;
  font-size: 11px; color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.map-card-local svg { width: 11px; height: 11px; fill: currentColor; flex-shrink: 0; }
.map-card-preco {
  display: block; font-size: 14px; font-weight: 800;
  color: #fff; margin-bottom: 10px;
}
.map-card-preco--consulta { color: rgba(255,255,255,0.5); font-weight: 600; }
.map-card-btn {
  display: block; text-align: center;
  background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 8px 12px; border-radius: 8px;
  text-decoration: none; transition: background .15s;
}
.map-card-btn:hover { background: #d96b10; }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .imovel-layout { grid-template-columns: 1fr; }
  .imovel-features-inner { grid-template-columns: repeat(2, 1fr); }
  .more-properties-section { display: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .features-strip .features-inner { grid-template-columns: repeat(3, 1fr); }
  .header-top { grid-template-columns: auto auto; gap: 20px; }
  .header-contact { display: none; }
  .filter-card-listings { grid-template-columns: repeat(2, 1fr); }
  .filter-card-listings .btn-search { grid-column: 1 / -1; justify-content: center; padding: 14px; }
  .contato-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .topbar-inner { padding: 0 16px; }
  .header-top { padding: 14px 16px; grid-template-columns: 1fr auto; }
  .header-bottom { padding: 0 16px 12px; flex-direction: column; align-items: flex-start; gap: 12px; }
.nav { gap: 20px; }
  .nav a { font-size: 14px; }
  .hero h1 { font-size: 30px; }
  .hero-content { padding: 40px 16px 0; }
  .hero { overflow: visible !important; min-height: 0; z-index: 2; }
  .filter-card {
    grid-template-columns: 1fr;
    margin-bottom: -140px;
    position: relative;
    z-index: 10;
    box-shadow: 0 24px 64px rgba(0,0,0,0.28), 0 4px 16px rgba(0,0,0,0.14);
  }
  .btn-search { padding: 14px 28px; }
  .features { padding-top: 118px; position: relative; z-index: 1; }
  .features-inner { grid-template-columns: 1fr 1fr; padding: 0 16px; gap: 16px; }
  .features .feature { justify-content: center; text-align: center; }
  .features-strip .features-inner { grid-template-columns: 1fr; padding: 0 16px; gap: 28px; }
  .features-strip .feature { align-items: center; }
  .cards-wrap { padding: 0 16px; }
  .cards { grid-template-columns: 1fr; }
  .section-head { padding: 0 16px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; padding: 16px; }
  .imovel-page { padding: 16px 16px 40px; }
  .details-desc-grid { grid-template-columns: 1fr; gap: 20px; }
  .thumbs { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .cta-strip { grid-template-columns: 1fr; text-align: center; }
  .cta-icon-wrap { display: none; }
  .imovel-features-inner { grid-template-columns: 1fr 1fr; padding: 20px 16px; }
  .btn-primary { display: none; }
  .page-banner { padding: 36px 0 44px; }
  .page-banner-title { font-size: 26px; }
  .page-banner-inner { padding: 0 16px; }
  .listings-bar { position: static; }
  .listings-bar-inner { padding: 0 16px; }
  .filter-card-listings { grid-template-columns: 1fr; }
  .filter-card-listings .btn-search { grid-column: 1; }
  .listings-inner { padding: 0 16px; }
  .sobre-inner { padding: 0 16px; }
  .sobre-content { font-size: 15px; }
  .map-section { padding: 48px 0; }
  .map-section-head { padding: 0 16px; }
  .map-section-wrap { padding: 0 16px; }
  #imoveis-map { height: 320px; border-radius: 10px; }
  .header-bottom {align-items: center;}
  .nav {width: 100%; justify-content: center;}
  .highlights {padding-top: 105px;}
  .section-head {align-items: center; justify-content: center; text-align: center;}
  .map-section-head {text-align: center;}
  .page-banner-inner {text-align: center;}
  .listings {padding-top: 175px;}
}
