/* =============================================================
   ASCRED — Site Institucional
   Design System (Sora + Plus Jakarta Sans)
   ============================================================= */

:root {
  --navy: #202b4e;
  --navy-hover: #2b3a68;
  --navy-dark: #1a2340;
  --orange: #ed6a3c;
  --orange-hover: #d95a2e;
  --orange-tint: #fdeee7;
  --orange-tint-border: #f7cdb9;
  --orange-tint-text: #c94f22;
  --green: #1f8a5b;
  --green-tint: #e8f5ee;
  --olive: #8b6c1f;
  --page: #f7f8fa;
  --card: #ffffff;
  --border: #dbdee3;
  --hair: #eef0f4;
  --header-border: #e8eaf0;
  --text: #202b4e;
  --body: #5c6478;
  --muted: #8b93a7;
  --footer-link: #c6ccdb;
  --on-navy: #aeb6ca;
  --maxw: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange); }
a:hover { color: var(--orange-hover); }
::selection { background: var(--orange); color: #fff; }

h1, h2, h3, h4 { font-family: 'Sora', sans-serif; }

img { max-width: 100%; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* -------- Eyebrow / section headings -------- */
.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}
.section-title {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
}
.section-lead {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
}

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--header-border);
}
.site-header .inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 32px;
  height: 78px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.site-header .logo { display: flex; align-items: center; flex-shrink: 0; }
.site-header .logo img { height: 46px; display: block; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a {
  font-size: 14px; font-weight: 600; color: var(--navy);
  text-decoration: none; transition: color .2s;
}
.site-nav a:hover { color: var(--orange); }
.site-nav a.active { font-weight: 700; color: var(--orange); }
.header-cta {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff; font-size: 14px; font-weight: 700;
  padding: 12px 22px; border-radius: 999px; text-decoration: none;
  box-shadow: 0 6px 16px rgba(237,106,60,.28);
  transition: transform .2s, box-shadow .2s, background .2s;
}
.header-cta:hover {
  background: var(--orange-hover); color: #fff; transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(237,106,60,.36);
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700;
  padding: 16px 30px; border-radius: 999px; text-decoration: none;
  cursor: pointer; border: none;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(237,106,60,.3); }
.btn-orange:hover { background: var(--orange-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(237,106,60,.4); }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 10px 24px rgba(32,43,78,.24); }
.btn-navy:hover { background: var(--navy-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(32,43,78,.32); }
.btn-outline { background: #fff; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--orange); color: var(--navy); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: var(--orange); color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ============ PILL TABS / CHIPS ============ */
.pill-group { display: inline-flex; gap: 8px; background: var(--hair); padding: 6px; border-radius: 999px; }
.pill {
  appearance: none; border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700;
  padding: 11px 24px; border-radius: 999px; text-decoration: none;
  background: transparent; color: var(--body);
  transition: background .25s, color .25s, box-shadow .25s;
}
.pill.active { background: var(--navy); color: #fff; box-shadow: 0 4px 12px rgba(32,43,78,.24); }

.chip {
  appearance: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 600;
  padding: 11px 18px; border-radius: 999px;
  border: 1.5px solid var(--border); background: #fff; color: var(--navy);
  transition: border-color .2s, background .2s, color .2s;
}
.chip:hover { border-color: var(--orange); }
.chip.active { font-weight: 700; border-color: var(--orange); background: var(--orange-tint); color: var(--orange-tint-text); }

.select-fake {
  display: flex; align-items: center; gap: 8px; justify-content: space-between;
  border: 1.5px solid var(--border); border-radius: 999px; padding: 11px 18px;
  font-size: 14px; font-weight: 600; color: var(--navy); background: #fff;
  cursor: pointer; transition: border-color .2s;
}
.select-fake:hover { border-color: var(--orange); }
.select-fake .caret { color: var(--muted); font-size: 10px; }

/* ============ BADGE ============ */
.badge {
  position: absolute; top: 16px; left: 16px;
  color: #fff; font-size: 11.5px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; padding: 7px 13px; border-radius: 999px;
  pointer-events: none;
}

/* ============ SECTIONS ============ */
section { position: relative; }
.sec-pad { padding: 100px 32px; }
.sec-white { background: #fff; }
.sec-page { background: var(--page); }
.sec-navy { background: var(--navy); }

/* ============ HERO (home) ============ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--page) 100%);
}
.hero .deco1 { position: absolute; top: -120px; right: -120px; width: 420px; height: 420px; border: 2px solid rgba(237,106,60,.14); border-radius: 48px; transform: rotate(24deg); }
.hero .deco2 { position: absolute; top: 60px; right: 280px; width: 120px; height: 120px; background: rgba(219,222,227,.35); border-radius: 24px; transform: rotate(18deg); }
.hero .grid {
  max-width: var(--maxw); margin: 0 auto; padding: 88px 32px 140px;
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: center; position: relative;
}
.hero--nosearch .grid { padding-bottom: 88px; }
.hero h1 {
  font-size: 58px; line-height: 1.08; font-weight: 800; letter-spacing: -0.02em;
  margin: 0 0 24px; text-wrap: balance;
}
.hero h1 .accent { color: var(--orange); }
.hero p.lead { font-size: 18px; line-height: 1.65; color: var(--body); margin: 0 0 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.selo {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange-tint); border: 1px solid var(--orange-tint-border);
  color: var(--orange-tint-text); font-size: 13px; font-weight: 700;
  padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
}
.selo .dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; display: inline-block; }

.avatars { display: flex; align-items: center; gap: 14px; }
.avatars .stack { display: flex; }
.avatars .av { width: 40px; height: 40px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; border: 2.5px solid #fff; }
.avatars .av + .av { margin-left: -10px; }

.hero-image { position: relative; }
.hero-image .frame { position: relative; aspect-ratio: 4/3.4; border-radius: 28px; overflow: hidden; box-shadow: 0 24px 60px rgba(32,43,78,.18); }
.float-card {
  position: absolute; background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: 0 14px 34px rgba(32,43,78,.16); display: flex; align-items: center; gap: 12px;
  animation: ascred-float 3.4s ease-in-out infinite alternate; pointer-events: none;
}
.float-card.a { top: 26px; right: -22px; }
.float-card.b { bottom: -24px; left: -26px; background: var(--navy); animation-name: ascred-float-b; animation-duration: 4s; }
.float-card .ic { width: 38px; height: 38px; border-radius: 12px; background: var(--green-tint); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; }
@keyframes ascred-float { from { transform: translateY(0); } to { transform: translateY(-14px); } }
@keyframes ascred-float-b { from { transform: translateY(0); } to { transform: translateY(10px); } }

/* placeholder de imagem (quando não há foto real) */
.img-slot {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 18px;
  background: linear-gradient(135deg, #e9edf3, #f4f6fa);
  color: var(--muted); font-size: 13px; font-weight: 600; line-height: 1.5;
}
.img-slot.circle { border-radius: 50%; }
.img-cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ============ SEARCH BAR (home) ============ */
.search-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; position: relative; z-index: 5; }
.search-bar {
  position: absolute; left: 32px; right: 32px; bottom: -72px;
  background: #fff; border-radius: 20px; box-shadow: 0 20px 50px rgba(32,43,78,.14); padding: 10px 28px 24px;
}
.search-tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--hair); margin-bottom: 20px; }
.search-tab {
  appearance: none; border: none; cursor: pointer; background: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14.5px; font-weight: 700;
  padding: 14px 22px; color: var(--muted);
  border-bottom: 3px solid transparent; margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.search-tab.active { color: var(--orange); border-bottom-color: var(--orange); }
.search-fields { display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 14px; align-items: end; }
.field-label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.field-box {
  display: flex; align-items: center; justify-content: space-between;
  border: 1.5px solid var(--border); border-radius: 12px; padding: 13px 16px;
  font-size: 14.5px; font-weight: 600; color: var(--navy); cursor: pointer; transition: border-color .2s;
}
.field-box:hover { border-color: var(--orange); }
.search-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--orange); color: #fff; font-size: 15px; font-weight: 700;
  padding: 15px 32px; border-radius: 12px; text-decoration: none;
  box-shadow: 0 8px 20px rgba(237,106,60,.3); transition: background .2s, transform .2s;
}
.search-btn:hover { background: var(--orange-hover); color: #fff; transform: translateY(-2px); }

/* ============ STATS BAND ============ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; max-width: var(--maxw); margin: 0 auto; }
.stat { text-align: center; }
.stat .num { margin: 0; font-family: 'Sora', sans-serif; font-size: 48px; font-weight: 800; color: #fff; }
.stat .num .accent { color: var(--orange); }
.stat .lbl { margin: 6px 0 0; font-size: 14.5px; color: var(--on-navy); }

/* ============ PILLARS ============ */
.pillar { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pillar + .pillar { margin-top: 120px; }
.pillar .num-ghost { margin: 0; font-family: 'Sora', sans-serif; font-size: 88px; font-weight: 800; color: #f0f2f6; line-height: 1; }
.pillar .kicker { margin: -30px 0 12px; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); }
.pillar h3 { margin: 0 0 18px; font-size: 32px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.2; }
.pillar p { margin: 0 0 26px; font-size: 16px; line-height: 1.7; color: var(--body); }
.checklist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.checklist .item { display: flex; align-items: center; gap: 12px; }
.check {
  width: 24px; height: 24px; border-radius: 50%; background: var(--orange-tint); color: var(--orange);
  display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; flex-shrink: 0;
}
.checklist .item span:last-child { font-size: 15px; font-weight: 600; }
.pillar-media { position: relative; }
.pillar-media .frame { position: relative; aspect-ratio: 4/3.2; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(32,43,78,.14); }
.pillar-media .blob { position: absolute; width: 120px; height: 120px; border-radius: 24px; }
.pillar-media .blob.tr { top: -20px; right: -20px; background: var(--orange-tint); transform: rotate(12deg); }
.pillar-media .blob.bl { bottom: -20px; left: -20px; background: var(--hair); transform: rotate(-10deg); }
.pillar-media .blob.tl { top: -20px; left: -20px; background: var(--orange-tint); transform: rotate(-14deg); }

/* ============ JORNADA (navy 4-step) ============ */
.jornada { background: var(--navy); overflow: hidden; }
.jornada .deco { position: absolute; bottom: -140px; left: -100px; width: 380px; height: 380px; border: 2px solid rgba(237,106,60,.18); border-radius: 48px; transform: rotate(20deg); }
.steps4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: 32px 26px; transition: transform .25s, background .25s;
}
.step:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
.step.accent { background: var(--orange); border-color: var(--orange); }
.step .n { width: 48px; height: 48px; border-radius: 14px; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 20px; }
.step.accent .n { background: #fff; color: var(--orange); }
.step h4 { margin: 0 0 10px; font-size: 18px; font-weight: 700; color: #fff; }
.step p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--on-navy); }
.step.accent p { color: #ffe3d5; }

/* ============ PROPERTY CARDS ============ */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card-imovel {
  display: block; background: #fff; border-radius: 20px; overflow: hidden;
  text-decoration: none; color: var(--navy); box-shadow: 0 4px 14px rgba(32,43,78,.07);
  transition: transform .25s, box-shadow .25s;
}
.card-imovel:hover { color: var(--navy); transform: translateY(-8px); box-shadow: 0 20px 44px rgba(32,43,78,.16); }
.card-imovel .thumb { position: relative; height: 230px; }
.card-imovel .body { padding: 24px; }
.card-imovel .price { margin: 0 0 6px; font-family: 'Sora', sans-serif; font-size: 23px; font-weight: 800; color: var(--navy); }
.card-imovel .price .suf { font-size: 14px; font-weight: 600; color: var(--muted); }
.card-imovel .name { margin: 0 0 4px; font-size: 15.5px; font-weight: 700; }
.card-imovel .loc { margin: 0 0 18px; font-size: 13.5px; color: var(--muted); }
.card-specs {
  display: flex; gap: 14px; border-top: 1px solid var(--hair); padding-top: 16px;
  font-size: 13px; font-weight: 600; color: var(--body); flex-wrap: wrap;
}
.card-specs .sep { color: var(--border); }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }

/* ============ TESTIMONIALS ============ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi { background: var(--page); border-radius: 20px; padding: 34px 30px; transition: transform .25s, box-shadow .25s; }
.testi:hover { transform: translateY(-6px); box-shadow: 0 16px 38px rgba(32,43,78,.1); }
.testi .quote { margin: 0 0 4px; font-family: 'Sora', sans-serif; font-size: 44px; font-weight: 800; color: var(--orange); line-height: 1; }
.testi .text { margin: 0 0 26px; font-size: 15.5px; line-height: 1.7; color: #3d4560; }
.testi .who { display: flex; align-items: center; gap: 14px; }
.testi .av { width: 46px; height: 46px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; flex-shrink: 0; }
.testi .who p { margin: 0; }
.testi .who .nm { font-size: 14.5px; font-weight: 700; }
.testi .who .rl { font-size: 12.5px; color: var(--muted); }

/* ============ CTA PANELS ============ */
.cta-panel { max-width: var(--maxw); margin: 0 auto; border-radius: 28px; padding: 80px 64px; position: relative; overflow: hidden; }
.cta-navy { background: var(--navy); }
.cta-orange { background: var(--orange); }
.cta-panel .deco-a { position: absolute; top: -80px; right: -60px; width: 280px; height: 280px; background: rgba(237,106,60,.14); border-radius: 48px; transform: rotate(22deg); }
.cta-orange .deco-a { background: rgba(255,255,255,.12); }
.cta-panel h2 { margin: 0 0 18px; font-size: 42px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; color: #fff; text-wrap: balance; }
.cta-panel p { margin: 0 0 34px; font-size: 17px; line-height: 1.65; color: var(--on-navy); }
.cta-orange p { color: #ffe3d5; }
.cta-panel .inner-narrow { max-width: 600px; position: relative; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-split { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding: 56px 64px; }
.cta-split h2 { font-size: 30px; margin-bottom: 12px; }
.cta-split p { font-size: 15.5px; margin: 0; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-dark); padding: 72px 32px 0; }
.site-footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer-brand { margin: 0 0 16px; font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; letter-spacing: -0.01em; }
.footer-brand .as { color: var(--orange); }
.footer-brand .cred { color: #fff; }
.site-footer .blurb { margin: 0 0 20px; font-size: 14px; line-height: 1.7; color: var(--muted); max-width: 280px; }
.site-footer .creci { margin: 0; font-size: 12.5px; color: var(--body); }
.footer-h { margin: 0 0 18px; font-size: 12.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact p { font-size: 14px; font-weight: 600; color: var(--footer-link); text-decoration: none; transition: color .2s; margin: 0; }
.footer-links a:hover { color: var(--orange); }
.footer-contact .strong { font-weight: 700; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-bottom p { margin: 0; font-size: 12.5px; color: var(--body); }

/* ============ LISTING (imoveis) ============ */
.filters { background: #fff; border-bottom: 1px solid var(--header-border); padding: 44px 32px 0; }
.filters .head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.filters h1 { margin: 0; font-size: 38px; font-weight: 800; letter-spacing: -0.02em; }
.filters .count { margin: 10px 0 0; font-size: 15px; color: var(--body); }
.filters .count strong { color: var(--navy); }
.filter-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; padding-bottom: 24px; }
.filter-row .sort { margin-left: auto; display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--body); }
.filter-row .sort strong { color: var(--navy); }
.empty-state { text-align: center; padding: 80px 20px; color: var(--body); }
.empty-state .ic { font-size: 40px; margin-bottom: 16px; }
.example-note {
  display: flex; align-items: center; gap: 12px; background: var(--orange-tint);
  border: 1px solid var(--orange-tint-border); color: var(--orange-tint-text);
  border-radius: 14px; padding: 14px 20px; font-size: 14px; font-weight: 600; margin-bottom: 28px;
}

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; }
.pagination a, .pagination span {
  width: 44px; height: 44px; border-radius: 12px; border: 1.5px solid var(--border);
  background: #fff; color: var(--body); font-size: 14px; font-weight: 700; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none; transition: border-color .2s;
}
.pagination a:hover { border-color: var(--orange); }
.pagination .current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ============ DETAIL (imovel) ============ */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--muted); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .cur { color: var(--navy); }

.gallery { display: grid; grid-template-columns: 1.6fr 1fr; grid-template-rows: 220px 220px; gap: 14px; }
.gallery .main { grid-row: span 2; position: relative; border-radius: 24px; overflow: hidden; }
.gallery .col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gallery .cell { position: relative; border-radius: 18px; overflow: hidden; }
.gallery .more { position: absolute; inset: 0; background: rgba(32,43,78,.55); display: flex; align-items: center; justify-content: center; border-radius: 18px; }
.gallery .more span { color: #fff; font-size: 14px; font-weight: 700; }

.detail-grid { display: grid; grid-template-columns: 1fr 400px; gap: 44px; align-items: start; }
.detail-main h1 { margin: 0 0 8px; font-size: 34px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
.detail-main .sub { margin: 0; font-size: 15px; color: var(--muted); font-weight: 600; }
.facts { display: flex; gap: 26px; background: #fff; border-radius: 18px; padding: 22px 28px; margin: 26px 0 36px; box-shadow: 0 4px 14px rgba(32,43,78,.07); flex-wrap: wrap; }
.fact .k { margin: 0; font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.fact .v { margin: 4px 0 0; font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; }
.fact-div { width: 1px; background: var(--hair); }
.detail-main h2 { margin: 0 0 16px; font-size: 22px; font-weight: 800; }
.detail-main .desc { margin: 0 0 16px; font-size: 15.5px; line-height: 1.75; color: #3d4560; white-space: pre-line; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 40px; }
.feat { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 12px; padding: 13px 16px; font-size: 14px; font-weight: 600; box-shadow: 0 2px 8px rgba(32,43,78,.05); }
.feat .fchk { width: 22px; height: 22px; border-radius: 50%; background: var(--orange-tint); color: var(--orange); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }
#mapa-detalhe { height: 280px; border-radius: 20px; overflow: hidden; z-index: 0; }

.sidebar {
  position: sticky; top: 102px; background: #fff; border-radius: 24px; padding: 32px;
  box-shadow: 0 12px 36px rgba(32,43,78,.1);
}
.sidebar .price-lbl { margin: 0 0 4px; font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.sidebar .price { margin: 0 0 6px; font-family: 'Sora', sans-serif; font-size: 38px; font-weight: 800; color: var(--navy); }
.sidebar .fin-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--orange-tint); color: var(--orange-tint-text); font-size: 12.5px; font-weight: 700; padding: 7px 13px; border-radius: 999px; margin-bottom: 24px; }
.sidebar .sim { background: var(--page); border-radius: 14px; padding: 16px 18px; margin-bottom: 26px; }
.sidebar .sim .k { margin: 0 0 2px; font-size: 12.5px; font-weight: 700; color: var(--muted); }
.sidebar .sim .v { margin: 0; font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; color: var(--orange); }
.sidebar .sim .v small { font-size: 13px; color: var(--muted); font-weight: 600; }
.lead-fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.input {
  width: 100%; box-sizing: border-box; border: 1.5px solid var(--border); border-radius: 12px;
  padding: 14px 16px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14.5px;
  font-weight: 600; color: var(--navy); outline: none; transition: border-color .2s;
}
.input:focus { border-color: var(--orange); }
textarea.input { resize: vertical; }
.form-ok { background: var(--green-tint); color: var(--green); border-radius: 12px; padding: 14px 16px; font-size: 14px; font-weight: 700; text-align: center; margin-bottom: 12px; }
.disclaimer { margin: 18px 0 0; font-size: 11.5px; line-height: 1.5; color: var(--muted); }

/* ============ MCMV brackets / simulator / faq (empreendimentos) ============ */
.emp-hero { background: var(--navy); overflow: hidden; }
.emp-hero .deco1 { position: absolute; top: -100px; right: -100px; width: 380px; height: 380px; border: 2px solid rgba(237,106,60,.2); border-radius: 44px; transform: rotate(22deg); }
.emp-hero .deco2 { position: absolute; bottom: -140px; left: -80px; width: 300px; height: 300px; background: rgba(255,255,255,.03); border-radius: 44px; transform: rotate(-16deg); }
.emp-hero .grid { max-width: var(--maxw); margin: 0 auto; padding: 96px 32px 110px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; position: relative; }
.emp-hero .kicker { display: inline-flex; align-items: center; gap: 10px; background: rgba(237,106,60,.14); border: 1px solid rgba(237,106,60,.35); color: #ffb894; font-size: 13px; font-weight: 700; padding: 8px 16px; border-radius: 999px; margin-bottom: 26px; }
.emp-hero h1 { margin: 0 0 24px; font-size: 52px; line-height: 1.1; font-weight: 800; letter-spacing: -0.02em; color: #fff; text-wrap: balance; }
.emp-hero h1 .accent { color: var(--orange); }
.emp-hero p.lead { margin: 0 0 36px; font-size: 17.5px; line-height: 1.65; color: var(--on-navy); max-width: 520px; }
.progress-card { position: absolute; bottom: -22px; right: -18px; background: #fff; border-radius: 16px; padding: 16px 20px; box-shadow: 0 16px 38px rgba(0,0,0,.3); pointer-events: none; }
.progress-card .k { margin: 0 0 2px; font-size: 12.5px; font-weight: 700; color: var(--muted); }
.progress-card .t { margin: 0 0 8px; font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 800; color: var(--navy); }
.progress-bar { height: 8px; background: var(--hair); border-radius: 999px; overflow: hidden; }
.progress-bar > span { display: block; height: 100%; background: var(--orange); border-radius: 999px; }

.brackets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bracket { border: 1.5px solid var(--header-border); border-radius: 22px; padding: 36px 32px; transition: transform .25s, border-color .25s, box-shadow .25s; }
.bracket:hover { transform: translateY(-6px); border-color: var(--orange); box-shadow: 0 18px 40px rgba(32,43,78,.1); }
.bracket .fx { margin: 0 0 6px; font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 800; color: var(--orange); }
.bracket .renda { margin: 0 0 14px; font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; }
.bracket .txt { margin: 0 0 20px; font-size: 14.5px; line-height: 1.65; color: var(--body); }
.bracket .tag { margin: 0; font-size: 13px; font-weight: 700; color: var(--green); }

.sim-grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.sim-card { background: #fff; border-radius: 26px; padding: 44px; box-shadow: 0 16px 44px rgba(32,43,78,.1); }
.sim-card .row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.sim-card label { font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.sim-card .renda-val { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 800; color: var(--navy); }
.sim-card input[type=range] { width: 100%; cursor: pointer; margin-bottom: 8px; accent-color: var(--orange); }
.sim-card .range-lims { display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 32px; }
.sim-results { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.sim-result { background: var(--page); border-radius: 16px; padding: 20px; }
.sim-result .k { margin: 0 0 4px; font-size: 12.5px; font-weight: 700; color: var(--muted); }
.sim-result .v { margin: 0; font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; }
.sim-result .v small { font-size: 13px; color: var(--muted); font-weight: 600; }
.sim-result .v.parcela { color: var(--orange); }
.sim-result .v.subsidio { color: var(--green); }
.sim-faixa { background: var(--orange-tint); border-radius: 14px; padding: 14px 18px; margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.sim-faixa .dot { width: 10px; height: 10px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.sim-faixa p { margin: 0; font-size: 13.5px; font-weight: 700; color: var(--orange-tint-text); }

.timeline { display: flex; flex-direction: column; max-width: 1000px; margin: 0 auto; }
.tl-step { display: grid; grid-template-columns: 64px 1fr; gap: 28px; }
.tl-col { display: flex; flex-direction: column; align-items: center; }
.tl-n { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 19px; font-weight: 800; flex-shrink: 0; }
.tl-line { width: 2px; flex: 1; background: var(--header-border); margin: 8px 0; }
.tl-body { padding-bottom: 44px; }
.tl-body .fase { margin: 4px 0 4px; font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); }
.tl-body h3 { margin: 0 0 10px; font-size: 22px; font-weight: 800; }
.tl-body p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--body); max-width: 640px; }

.obra-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 14px rgba(32,43,78,.07); transition: transform .25s, box-shadow .25s; }
.obra-card:hover { transform: translateY(-8px); box-shadow: 0 20px 44px rgba(32,43,78,.16); }
.obra-card .thumb { position: relative; height: 200px; }
.obra-card .body { padding: 26px; }
.obra-card h3 { margin: 0 0 4px; font-size: 19px; font-weight: 800; }
.obra-card .local { margin: 0 0 20px; font-size: 13.5px; color: var(--muted); }
.obra-card .prog-row { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.obra-card .prog-row .l { color: var(--body); }
.obra-card .prog-row .r { color: var(--orange); }
.obra-card .entrega { margin: 18px 0 0; font-size: 13.5px; font-weight: 600; color: var(--body); }
.obra-card .entrega strong { color: var(--navy); }

.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border: 1.5px solid var(--header-border); border-radius: 18px; transition: background .25s, border-color .25s; }
.faq-item.open { background: var(--page); border-color: var(--orange); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: transparent; border: none; cursor: pointer; padding: 22px 26px; text-align: left; font-family: 'Plus Jakarta Sans', sans-serif; }
.faq-q .q { font-size: 16px; font-weight: 700; color: var(--navy); }
.faq-q .chev { font-size: 11px; color: var(--muted); transition: transform .3s, color .3s; flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); color: var(--orange); }
.faq-a { margin: 0; padding: 0 26px; max-height: 0; overflow: hidden; font-size: 15px; line-height: 1.7; color: var(--body); transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 26px 24px; }

/* ============ SOBRE ============ */
.sobre-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; max-width: var(--maxw); margin: 0 auto; }
.sobre-hero h1 { margin: 0 0 24px; font-size: 48px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; text-wrap: balance; }
.sobre-hero h1 .accent { color: var(--orange); }
.sobre-hero p { margin: 0 0 18px; font-size: 16.5px; line-height: 1.7; color: var(--body); }
.sobre-media { position: relative; }
.sobre-media .frame { position: relative; aspect-ratio: 4/3.4; border-radius: 28px; overflow: hidden; box-shadow: 0 24px 60px rgba(32,43,78,.16); }
.sobre-media .blob { position: absolute; top: -20px; right: -20px; width: 120px; height: 120px; background: var(--orange-tint); border-radius: 24px; transform: rotate(14deg); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value { background: #fff; border-radius: 22px; padding: 38px 34px; transition: transform .25s, box-shadow .25s; }
.value:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(32,43,78,.1); }
.value .n { width: 52px; height: 52px; border-radius: 16px; background: var(--orange-tint); color: var(--orange); display: flex; align-items: center; justify-content: center; font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 22px; }
.value h3 { margin: 0 0 12px; font-size: 21px; font-weight: 800; }
.value p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--body); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-member { text-align: center; }
.team-member .avatar { width: 180px; height: 180px; margin: 0 auto 20px; position: relative; }
.team-member .nm { margin: 0 0 4px; font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 800; }
.team-member .rl { margin: 0; font-size: 13.5px; font-weight: 600; color: var(--orange); }

/* ============ CONTATO ============ */
.contato-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: start; max-width: var(--maxw); margin: 0 auto; }
.contato-info h1 { margin: 0 0 20px; font-size: 46px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; text-wrap: balance; }
.contato-info .lead { margin: 0 0 40px; font-size: 16.5px; line-height: 1.7; color: var(--body); }
.contact-cards { display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }
.contact-card { display: flex; align-items: center; gap: 16px; background: #fff; border-radius: 16px; padding: 18px 22px; box-shadow: 0 4px 14px rgba(32,43,78,.06); text-decoration: none; }
.contact-card .ic { width: 44px; height: 44px; border-radius: 14px; background: var(--orange-tint); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; flex-shrink: 0; }
.contact-card .k { margin: 0; font-size: 12.5px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.contact-card .v { margin: 2px 0 0; font-size: 16px; font-weight: 800; color: var(--navy); }
.contact-card .sub { margin: 2px 0 0; font-size: 13px; font-weight: 600; color: var(--muted); }
.map-placeholder { position: relative; height: 220px; border-radius: 20px; overflow: hidden; background: repeating-linear-gradient(135deg, #e7eaef 0 14px, #eef0f4 14px 28px); display: flex; align-items: center; justify-content: center; text-align: center; }
.map-placeholder .pin { width: 42px; height: 42px; border-radius: 50%; background: var(--orange); margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; font-weight: 800; }
.map-placeholder p { margin: 0; font-family: ui-monospace, Menlo, monospace; font-size: 13px; color: var(--body); }
.contact-form { background: #fff; border-radius: 26px; padding: 46px; box-shadow: 0 16px 44px rgba(32,43,78,.1); }
.contact-form h2 { margin: 0 0 8px; font-size: 24px; font-weight: 800; }
.contact-form .sub { margin: 0 0 28px; font-size: 14.5px; color: var(--body); }
.contact-form .chips-label { margin: 0 0 10px; font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.chips-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.mb14 { margin-bottom: 14px; }
.mb22 { margin-bottom: 22px; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { color: #fff; transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 30px rgba(37,211,102,.55); }

/* ============ COOKIE BAR ============ */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 70;
  max-width: 1240px; margin: 0 auto;
  background: var(--navy); color: #fff;
  border-radius: 18px; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  box-shadow: 0 16px 44px rgba(32,43,78,.35);
}
.cookie-bar[hidden] { display: none; }
.cookie-text { margin: 0; font-size: 14px; line-height: 1.6; color: var(--on-navy); flex: 1 1 340px; }
.cookie-text strong { color: #fff; }
.cookie-text a { color: var(--orange); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-bar .btn { padding: 12px 24px; font-size: 14px; }
.cookie-reject { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); }
.cookie-reject:hover { border-color: var(--orange); color: #fff; transform: translateY(-2px); }

/* ============ CTA com imagem lateral ============ */
.cta-navy.cta-img { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-img .cta-media { position: relative; flex-shrink: 0; }
.cta-img .cta-media img { display: block; width: 180px; height: auto; max-width: 40vw; }

/* ============ SCROLL REVEAL ============ */
[data-reveal] { opacity: 0; transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1); }
[data-reveal="up"] { transform: translateY(34px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="scale"] { transform: scale(.94); }
[data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .float-card { animation: none !important; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .site-nav, .header-cta { display: none; }
  .site-nav.open {
    display: flex; position: absolute; top: 78px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px; padding: 16px 32px 24px;
    background: #fff; border-bottom: 1px solid var(--header-border); box-shadow: 0 20px 30px rgba(32,43,78,.08);
  }
  .site-nav.open a { padding: 10px 0; width: 100%; }
  .nav-toggle { display: block; }
  .hero .grid, .emp-hero .grid, .sim-grid, .sobre-hero, .contato-grid,
  .pillar, .detail-grid { grid-template-columns: 1fr; gap: 44px; }
  .pillar-media { order: -1; }
  .hero h1 { font-size: 42px; }
  .emp-hero h1 { font-size: 38px; }
  .stats, .steps4, .cards-grid, .testi-grid, .brackets, .values-grid, .team-grid, .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery .main { grid-row: auto; height: 260px; }
  .sidebar { position: static; }
  .search-bar { position: static; left: auto; right: auto; bottom: auto; margin-top: 32px; }
  .search-fields { grid-template-columns: 1fr; }
  .hero .grid { padding-bottom: 40px; }
  section.stats-band { padding-top: 64px !important; }
  .float-card { display: none; }
}
@media (max-width: 640px) {
  .container, .site-header .inner { padding: 0 20px; }
  .sec-pad { padding: 64px 20px; }
  .stats, .steps4, .cards-grid, .testi-grid, .brackets, .values-grid, .team-grid, .feat-grid { grid-template-columns: 1fr; }
  .section-title, .filters h1 { font-size: 30px; }
  .hero h1 { font-size: 34px; }
  .cta-panel, .cta-split { padding: 44px 26px; }
  .cta-panel h2 { font-size: 30px; }
  .contact-form, .sim-card { padding: 28px 22px; }
  .facts { gap: 16px; }
  .fact-div { display: none; }
}
