/* ============================================================
   Takachi Imóveis – Stylesheet
   ============================================================ */

:root {
  --red:        #CC1515;
  --red-dark:   #A50F0F;
  --black:      #1A1A1A;
  --gray-dark:  #444;
  --gray-mid:   #888;
  --gray-light: #f5f5f5;
  --white:      #fff;
  --border:     #e0e0e0;
  --shadow:     0 2px 12px rgba(0,0,0,.10);
  --radius:     8px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; }
body  { font-family: 'Segoe UI', Arial, sans-serif; color: var(--black); background: #fff; line-height: 1.6; }
a     { color: inherit; text-decoration: none; }
img   { max-width: 100%; display: block; }
ul    { list-style: none; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; color: var(--black); }

/* ── Header ── */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 38px; width: auto; display: block; }
.logo-creci { font-size: .62rem; color: var(--gray-mid); font-weight: 600; letter-spacing: .3px; margin-top: 3px; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-dark);
  transition: color .2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a.active { color: var(--red); }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all .3s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-red    { background: var(--red);   color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: var(--white); }
.btn-dark   { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: #333; }
.btn-green  { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-green:hover { background: #1da851; border-color: #1da851; }
.btn-sm     { padding: 7px 16px; font-size: .82rem; }
.btn svg    { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #141414 0%, #2d2d2d 100%);
  padding: 80px 0 64px;
  color: var(--white);
}
.hero-content { max-width: 640px; margin-bottom: 40px; }
.hero h1 { font-size: 2.5rem; color: var(--white); margin-bottom: 14px; }
.hero h1 em { color: var(--red); font-style: normal; }
.hero p  { font-size: 1.05rem; color: rgba(255,255,255,.72); }

/* Search box */
.search-box {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 28px 28px;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
  max-width: 900px;
}
.search-tabs { display: flex; gap: 8px; margin-bottom: 20px; }
.search-tab {
  padding: 8px 22px;
  border-radius: 6px;
  border: 2px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: .88rem;
  color: var(--gray-dark);
  transition: all .2s;
}
.search-tab.active { background: var(--red); color: var(--white); border-color: var(--red); }
.search-fields {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: end;
}
.search-fields .btn { height: 44px; }
.search-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.search-actions .btn-red { min-width: 170px; }
.search-adv-toggle {
  background: transparent;
  border: none;
  color: var(--red);
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  padding: 8px 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.search-adv-toggle::after {
  content: "\25BE";
  font-size: .72em;
  transition: transform .2s;
}
.search-adv-toggle[aria-expanded="true"]::after { transform: rotate(180deg); }
.search-advanced {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: end;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.search-advanced[hidden] { display: none; }
.field-group { display: flex; flex-direction: column; gap: 4px; }
.field-group label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: .6px;
}
.field-group select,
.field-group input {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: .9rem;
  color: var(--black);
  background: var(--white);
  outline: none;
  font-family: inherit;
  transition: border-color .2s;
}
.field-group select:focus,
.field-group input:focus { border-color: var(--red); }

/* ── Sections ── */
.section     { padding: 64px 0; }
.section-alt { background: var(--gray-light); }

.section-header { text-align: center; margin-bottom: 40px; }
.section-header .tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 10px;
}
.section-header h2 { font-size: 1.95rem; margin-bottom: 8px; }
.section-header p  { color: var(--gray-mid); }

/* ── Property Cards ── */
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
}
.card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.card-img-bg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  letter-spacing: .5px;
}
.card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: .7rem; font-weight: 800;
  padding: 4px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .4px;
}
.badge-rent  { background: #1565C0; }
.badge-sold  { background: #555; }
.badge-rented { background: #777; }

.card-body { padding: 18px; flex: 1; }
.card-price {
  font-size: 1.28rem; font-weight: 800;
  color: var(--red); margin-bottom: 2px;
}
.card-price-sub { font-size: .8rem; color: var(--gray-mid); margin-bottom: 6px; }
.card-title { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.card-location {
  display: flex; align-items: center; gap: 4px;
  font-size: .8rem; color: var(--gray-mid); margin-bottom: 12px;
}
.card-location svg { width: 13px; height: 13px; flex-shrink: 0; }
.card-feats {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.card-feat {
  display: flex; align-items: center; gap: 5px;
  font-size: .8rem; color: var(--gray-dark);
}
.card-feat svg { width: 14px; height: 14px; color: var(--gray-mid); }

.card-actions {
  padding: 0 18px 18px;
  display: flex; gap: 8px;
}
.card-actions .btn { flex: 1; justify-content: center; }

/* ── Placeholder gradients ── */
.ph-casa-1   { background: linear-gradient(135deg,#8B7355,#C4A882); }
.ph-casa-2   { background: linear-gradient(135deg,#7A6040,#B8966A); }
.ph-apto-1   { background: linear-gradient(135deg,#4A6FA5,#7BA3D4); }
.ph-apto-2   { background: linear-gradient(135deg,#3A5F8F,#6B93C4); }
.ph-terreno  { background: linear-gradient(135deg,#5E7A4A,#8EBB6A); }
.ph-sala     { background: linear-gradient(135deg,#5B5EA6,#9D9AC3); }
.ph-chacara  { background: linear-gradient(135deg,#4A7A5E,#7AC39A); }
.ph-dark     { background: linear-gradient(135deg,#333,#666); }

/* ── Stats Row ── */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--red); line-height: 1; }
.stat-lbl { font-size: .82rem; color: var(--gray-mid); margin-top: 6px; }

/* ── About Strip (home) ── */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-text h2 { font-size: 1.85rem; margin-bottom: 14px; }
.about-text p  { color: var(--gray-dark); margin-bottom: 14px; line-height: 1.8; }
.about-img-ph {
  border-radius: 14px;
  height: 340px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35);
  font-size: .8rem;
}

/* ── CTA Strip ── */
.cta-strip { background: var(--black); padding: 60px 0; text-align: center; }
.cta-strip h2 { font-size: 2rem; color: var(--white); margin-bottom: 10px; }
.cta-strip p  { color: rgba(255,255,255,.85); margin-bottom: 28px; font-size: 1rem; }
.cta-buttons  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer { background: #111; color: rgba(255,255,255,.65); padding: 52px 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 40px;
  margin-bottom: 40px;
}
.logo-img-footer { height: 34px; width: auto; display: block; margin-bottom: 6px; }
.footer-creci { font-size: .75rem; color: var(--red); font-weight: 700; margin-bottom: 10px; }
.footer-desc  { font-size: .83rem; line-height: 1.75; }
.footer-heading {
  font-size: .76rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .6px;
  color: var(--white); margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .84rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links a:hover { color: var(--red); }
.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .83rem; margin-bottom: 10px;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--red); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .78rem;
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom a:hover { color: var(--red); }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #111;
  color: rgba(255,255,255,.85);
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.35);
  z-index: 9000;
}
.cookie-banner p { font-size: .84rem; flex: 1; min-width: 260px; line-height: 1.55; }
.cookie-banner a { color: var(--red); }
.cookie-buttons { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }
.ck-btn {
  padding: 8px 16px; border-radius: 6px;
  font-size: .8rem; font-weight: 700;
  cursor: pointer; border: none;
}
.ck-accept { background: var(--red); color: var(--white); }
.ck-accept:hover { background: var(--red-dark); }
.ck-reject { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.3); }
.ck-config { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.3); }
.cookie-banner.hidden { display: none; }

/* ── WhatsApp FAB ── */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  z-index: 8999;
  transition: transform .2s;
}
.whatsapp-fab:hover { transform: scale(1.1); }
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ── Page Header ── */
.page-header {
  background: linear-gradient(135deg, #141414 0%, #2d2d2d 100%);
  padding: 44px 0 36px; color: var(--white);
}
.page-header h1 { font-size: 2rem; color: var(--white); margin-bottom: 6px; }
.page-header p  { color: rgba(255,255,255,.65); }
.breadcrumb { font-size: .78rem; color: rgba(255,255,255,.45); margin-bottom: 10px; }
.breadcrumb a { color: rgba(255,255,255,.45); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); font-weight: 600; }

/* ── Filters bar ── */
.filters-bar {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.filters-title { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--gray-mid); margin-bottom: 14px; }
.filters-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: end;
}
.filters-row .btn { height: 44px; }

/* Dropdown de seleção múltipla (fechado, abre com checkboxes) */
.multi-dropdown { position: relative; }
.multi-dropdown-summary {
  list-style: none; cursor: pointer; user-select: none;
  padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 6px;
  background: var(--white); font-size: .9rem;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.multi-dropdown-summary::-webkit-details-marker { display: none; }
.multi-dropdown-summary::after { content: "\25BC"; font-size: 9px; color: var(--gray-mid); flex-shrink: 0; }
.multi-dropdown[open] .multi-dropdown-summary { border-color: var(--red); }
.multi-dropdown-panel {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 20;
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.14); padding: 8px; max-height: 230px; overflow-y: auto;
}
.multi-dropdown-item { display: flex; align-items: center; gap: 8px; padding: 6px 8px; font-size: .85rem; border-radius: 4px; cursor: pointer; }
.multi-dropdown-item:hover { background: var(--gray-light, #f5f5f5); }
.multi-dropdown-item input { width: 15px; height: 15px; flex-shrink: 0; }
.results-info { font-size: .85rem; color: var(--gray-mid); margin-bottom: 20px; }
.results-info strong { color: var(--black); }

/* ── Property Detail ── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  border-radius: 12px;
  overflow: hidden;
  height: 440px;
}
.gallery-main { height: 100%; }
.gallery-thumbs { display: grid; grid-template-rows: 1fr 1fr; gap: 8px; height: 100%; }
.gallery-thumb { height: 100%; }
.gallery-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: .72rem; color: rgba(255,255,255,.5); font-weight: 600; }

.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; margin-top: 36px; }
.detail-main h1 { font-size: 1.7rem; margin-bottom: 6px; }
.detail-location { display: flex; align-items: center; gap: 5px; font-size: .88rem; color: var(--gray-mid); margin-bottom: 20px; }
.detail-location svg { width: 15px; height: 15px; color: var(--red); }

.feats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin: 20px 0; }
.feat-box {
  background: var(--gray-light); border-radius: 8px;
  padding: 14px 12px; text-align: center;
}
.feat-box .val { font-size: 1.25rem; font-weight: 800; }
.feat-box .lbl { font-size: .72rem; color: var(--gray-mid); margin-top: 2px; }

.detail-desc { font-size: .9rem; color: var(--gray-dark); line-height: 1.8; margin-bottom: 20px; }
.tags-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 24px; }
.tag-pill {
  background: var(--gray-light); border-radius: 20px;
  padding: 5px 14px; font-size: .8rem; color: var(--gray-dark);
}
.section-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* Sidebar */
.detail-sidebar { position: sticky; top: 84px; }
.sidebar-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 16px;
}
.sidebar-price-big { font-size: 1.9rem; font-weight: 800; color: var(--red); line-height: 1; }
.sidebar-price-sub { font-size: .78rem; color: var(--gray-mid); margin-top: 4px; margin-bottom: 20px; }
.sidebar-card h3 { font-size: 1rem; margin-bottom: 14px; }
.sidebar-form .form-group { margin-bottom: 12px; }
.sidebar-info-item {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: .83rem; color: var(--gray-dark); margin-bottom: 10px;
}
.sidebar-info-item svg { width: 15px; height: 15px; color: var(--red); flex-shrink: 0; margin-top: 2px; }

/* ── Contact page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; }
.contact-info-item {
  display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: #fff0f0; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--red); }
.contact-info-item h4 { font-size: .88rem; margin-bottom: 2px; }
.contact-info-item p  { font-size: .84rem; color: var(--gray-mid); }
.map-ph {
  border-radius: 12px;
  background: linear-gradient(135deg,#c8e6c9,#a5d6a7);
  display: flex; align-items: center; justify-content: center;
  color: #2e7d32; font-weight: 600; font-size: .88rem;
  margin-top: 28px;
}
.map-embed {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.map-embed iframe { display: block; width: 100%; height: 100%; }
.map-embed .map-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}
.map-link-block { text-decoration: none; color: inherit; display: block; margin-top: 28px; }
.map-ph-link {
  height: auto; padding: 24px 28px; gap: 18px;
  background: #f5f5f5; color: var(--black);
  border: 1px solid var(--border); justify-content: flex-start;
  transition: box-shadow .2s, border-color .2s;
}
.map-link-block:hover .map-ph-link { border-color: var(--red); box-shadow: 0 4px 16px rgba(204,21,21,.1); }

/* Contact / sidebar form */
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: .82rem; font-weight: 700; color: var(--gray-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem; color: var(--black);
  font-family: inherit; outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 110px; }
.lgpd-row {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .8rem; color: var(--gray-dark); margin: 14px 0 20px;
}
.lgpd-row input[type=checkbox] {
  margin-top: 3px; flex-shrink: 0;
  width: 16px; height: 16px;
  accent-color: var(--red);
}
.lgpd-row a { color: var(--red); }
.form-success {
  text-align: center; padding: 40px 20px;
  background: #f0fdf4; border-radius: 12px; border: 1.5px solid #86efac;
}
.form-success .icon { font-size: 2.5rem; margin-bottom: 12px; }
.form-success h3 { color: #166534; margin-bottom: 6px; }
.form-success p { font-size: .88rem; color: #4d7c5b; }

/* ── Sobre page ── */
.hero-sobre { background: linear-gradient(135deg,#141414,#2d2d2d); padding: 80px 0; color: var(--white); }
.hero-sobre h1 { font-size: 2.3rem; color: var(--white); margin-bottom: 14px; }
.hero-sobre p { color: rgba(255,255,255,.7); font-size: 1.05rem; }
.about-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 48px; }
.about-ph-large { border-radius: 14px; height: 380px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.35); font-size: .85rem; }
.valores-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.valor-card { background: var(--white); border-radius: 12px; padding: 28px; box-shadow: var(--shadow); }
.valor-icon { width: 48px; height: 48px; background: #fff0f0; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.valor-icon svg { width: 24px; height: 24px; color: var(--red); }
.valor-card h3 { font-size: 1rem; margin-bottom: 8px; }
.valor-card p  { font-size: .84rem; color: var(--gray-dark); line-height: 1.75; }

/* ── Privacy Policy ── */
.policy-wrap { max-width: 800px; margin: 0 auto; }
.policy-wrap .update { font-size: .82rem; color: var(--gray-mid); margin-bottom: 28px; }
.policy-wrap h2 { font-size: 1.15rem; font-weight: 700; margin: 32px 0 10px; color: var(--black); }
.policy-wrap p { font-size: .88rem; color: var(--gray-dark); line-height: 1.85; margin-bottom: 10px; }
.policy-wrap ul { padding-left: 20px; margin-bottom: 10px; }
.policy-wrap li { font-size: .88rem; color: var(--gray-dark); line-height: 1.85; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .search-fields { grid-template-columns: 1fr 1fr; }
  .search-advanced { grid-template-columns: 1fr 1fr; }
  .cards-grid    { grid-template-columns: repeat(2,1fr); }
  .stats-row     { grid-template-columns: repeat(2,1fr); }
  .about-strip   { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .detail-grid   { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; height: 300px; }
  .gallery-thumbs { display: none; }
  .valores-grid  { grid-template-columns: 1fr 1fr; }
  .about-full-grid { grid-template-columns: 1fr; }
  .feats-grid    { grid-template-columns: repeat(2,1fr); }
  .filters-row   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero h1    { font-size: 1.75rem; }
  .main-nav   { display: none; }
  .burger     { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); box-shadow: 0 6px 20px rgba(0,0,0,.12);
    padding: 8px 0;
  }
  .main-nav.open a {
    padding: 12px 24px;
    border-bottom: 1px solid var(--border);
    font-size: .95rem;
  }
  .main-nav.open a:last-child { border-bottom: none; }
  .search-fields { grid-template-columns: 1fr; }
  .search-advanced { grid-template-columns: 1fr; }
  .cards-grid    { grid-template-columns: 1fr; }
  .stats-row     { grid-template-columns: 1fr 1fr; }
  .feats-grid    { grid-template-columns: repeat(2,1fr); }
  .valores-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .filters-row   { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

/* ===== Traga seu imóvel (captação) ===== */
.captacao {
  background: linear-gradient(135deg, #ffffff 0%, #fbeaea 100%);
  border: 1px solid var(--border);
  border-left: 5px solid var(--red);
  border-radius: 16px;
  padding: 44px 48px;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}
.captacao h2 { font-size: 2rem; margin: 12px 0 12px; }
.captacao > .captacao-text > p { color: var(--gray-dark); max-width: 660px; margin-bottom: 22px; }
.captacao-list {
  list-style: none; padding: 0; margin: 0 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px;
}
.captacao-list li { position: relative; padding-left: 32px; color: var(--black); font-size: .96rem; }
.captacao-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; background: var(--red); color: #fff;
  border-radius: 50%; font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.captacao-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; justify-content: center; margin-top: 4px; }
.captacao-mail { margin: 16px 0 0; font-size: .9rem; color: var(--gray-mid); }
.captacao-mail a { color: var(--red); font-weight: 600; text-decoration: none; }
.captacao-mail a:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .captacao { padding: 30px 22px; }
  .captacao h2 { font-size: 1.5rem; }
  .captacao-list { grid-template-columns: 1fr; }
  .captacao-btns .btn { width: 100%; justify-content: center; }
}
.captacao .tag {
  display: inline-block; background: var(--red); color: var(--white);
  font-size: .72rem; font-weight: 800; padding: 4px 14px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .7px;
}

/* Logo na seção "Sobre" (coluna direita, centralizada verticalmente) */
.about-media { display: flex; align-items: center; justify-content: center; }
.about-logo { max-width: 360px; width: 100%; height: auto; }
@media (max-width: 900px) {
  .about-media { margin-top: 8px; }
  .about-logo { max-width: 260px; }
}
