:root {
  --surface: #ffffff;
  --text: #14281d;
  --muted: #4b6958;
  --primary: #1f8a55;
  --primary-deep: #11633b;
  --primary-light: #e8f5ee;
  --line: #d6ebdf;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(18, 53, 36, 0.12);
  --shadow-hover: 0 24px 56px rgba(18, 53, 36, 0.2);
  --gold: #f5b342;
}
* { box-sizing: border-box; }
html { overflow-x: hidden; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    linear-gradient(165deg, rgba(8,45,29,.88) 0%, rgba(16,99,60,.62) 50%, rgba(31,138,85,.38) 100%),
    url("https://res.cloudinary.com/dqq4qonkb/image/upload/v1784836076/ChatGPT_Image_23_de_jul._de_2026_15_43_23_erq02k.png") center/cover fixed;
}
.container { width: min(1120px, 92%); margin: 0 auto; }

.topbar {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(244, 251, 247, 0.62);
  border-bottom: 1px solid rgba(214, 235, 223, 0.65);
}
.topbar-wrap { display: flex; align-items: center; gap: 0.8rem; padding: 0.65rem 0; }
.brand { max-width: 148px; height: auto; }
.brand-link .brand { max-width: 50px; border-radius: 999px; object-fit: cover; aspect-ratio: 1; }
.brand-wordmark {
  font-family: "DM Serif Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-deep);
  letter-spacing: .01em;
  white-space: nowrap;
}
.footer-brand-row { display: flex; align-items: center; gap: .7rem; }
.desktop-only { display: none; }
.menu-toggle { display: none; border: 0; border-radius: 10px; background: rgba(255,255,255,.7); font-size: 1.25rem; padding: .35rem .6rem; }
.main-nav { display: flex; gap: 0.6rem; margin-left: auto; }
.main-nav a { text-decoration: none; color: var(--text); font-weight: 700; padding: .4rem .55rem; border-radius: 10px; transition: background .3s, color .3s; }
.main-nav a:hover { background: rgba(255,255,255,.6); color: var(--primary-deep); }
.nav-highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff !important; padding: .4rem .9rem !important;
  box-shadow: 0 4px 14px rgba(31,138,85,.3);
}
.nav-highlight:hover { background: linear-gradient(135deg, var(--primary-deep), #0a4a2b) !important; color: #fff !important; box-shadow: 0 6px 20px rgba(31,138,85,.4) !important; }
.social-mini { display: flex; gap: .5rem; margin-left: .4rem; }
.icon-btn {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; text-decoration: none; font-size: .74rem; font-weight: 800;
  border: 1px solid rgba(18,53,36,.14);
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(225,243,233,.9));
  color: var(--primary-deep); box-shadow: 0 8px 20px rgba(15,70,44,.15);
  transition: transform .3s ease, box-shadow .3s ease;
}
.icon-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 28px rgba(15,70,44,.22); }
.icon-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.hero { position: relative; min-height: 68svh; display: grid; align-items: center; overflow: hidden; background: transparent; }
.hero-media {
  position: absolute; inset: 0; z-index: 0;
  background:
    url("https://res.cloudinary.com/dqq4qonkb/image/upload/v1784836076/ChatGPT_Image_23_de_jul._de_2026_15_43_23_erq02k.png") center/cover no-repeat;
  transform: scale(1.03);
}
.hero-picture {
  position: absolute; inset: 0; z-index: 0;
  display: block;
}
.hero-picture img {
  width: 100%; height: 100%; display: block; object-fit: cover; transform: scale(1.03);
}
.hero-overlay-art {
  position: absolute;
  right: clamp(13rem, 26vw, 21rem);
  bottom: clamp(.75rem, 3vw, 2rem);
  width: min(40vw, 560px);
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.22));
}
.hero.parallax { background-position: center center; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(8,45,29,.45) 0%, rgba(17,99,59,.18) 60%, rgba(31,138,85,.08) 100%); }
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 4rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 620px);
  grid-template-areas:
    "title search"
    "subtitle search"
    "actions search";
  align-items: end;
  min-height: 68svh;
  column-gap: clamp(1rem, 3vw, 3rem);
}
.hero-content h1 { grid-area: title; }
.hero-content p { grid-area: subtitle; }
.hero-actions { grid-area: actions; }
.hero h1 { font-family: "DM Serif Display", serif; font-size: clamp(2rem, 7vw, 4rem); line-height: 1.03; margin: .3rem 0 .8rem; max-width: 18ch; opacity: 0; animation: fadeUp .8s .3s forwards; }
.hero p { max-width: 52ch; opacity: 0; animation: fadeUp .8s .5s forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.word-highlight { color: var(--primary-deep); font-weight: 700; transition: opacity .25s ease; display: inline-block; min-width: 3ch; }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .75rem; font-weight: 700; opacity: .86; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.2rem; }
.hero-control-panel { display: contents; }

.hero-search {
  grid-area: search;
  margin: 0 0 0 auto;
  max-width: 620px;
  width: 100%;
  align-self: end;
  justify-self: end;
  position: relative;
  top: 4rem;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
}
.hero-search-pills { display: flex; gap: .4rem; margin-bottom: .5rem; }
.hero-search-pills .pill {
  border: 1px solid rgba(255,255,255,.4); background: rgba(255,255,255,.12);
  color: #fff; border-radius: 999px; padding: .3rem .85rem; font-size: .8rem; font-weight: 700;
  cursor: pointer; transition: background .3s, border-color .3s;
}
.hero-search-pills .pill.active { background: rgba(255,255,255,.25); border-color: #fff; }
.hero-search-pills .pill:hover { background: rgba(255,255,255,.2); }
.hero-search-row { display: flex; gap: .5rem; margin-bottom: .5rem; }
.hero-search-row input {
  flex: 1; padding: .7rem 1rem; border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px; font: inherit; font-size: .9rem;
  background: rgba(255,255,255,.88); backdrop-filter: blur(4px);
  transition: border-color .3s, box-shadow .3s;
}
.hero-search-row input:focus { outline: none; border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.2); background: #fff; }
.hero-filters { display: flex; gap: .5rem; flex-wrap: wrap; }
.hero-filters select {
  flex: 1; min-width: 0; padding: .6rem .85rem; border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px; font: inherit; font-size: .82rem;
  background: rgba(255,255,255,.88); backdrop-filter: blur(4px); color: #14281d;
  transition: border-color .3s, box-shadow .3s; cursor: pointer;
}
.hero-filters select:focus { outline: none; border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.2); background: #fff; }
.hero-filters .btn { padding: .6rem 1.2rem; font-size: .85rem; white-space: nowrap; }
.hero-clear-btn { display: none; align-items: center; gap: .35rem; }
.hero-clear-btn.show { display: inline-flex; }
.hero-clear-btn::before { content: "↺"; font-size: 1rem; line-height: 1; }
.mobile-filter-trigger { display: none; margin-top: 1rem; width: 100%; max-width: 240px; }
.hero-search-status {
  min-height: 1.2em;
  margin: -.1rem 0 0;
  color: rgba(255,255,255,.94);
  font-size: .9rem;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0,0,0,.18);
}

.trust-strip { margin: .85rem 0 1rem; }
.trust-strip .container {
  background: linear-gradient(135deg, rgba(8,45,29,.94), rgba(17,99,59,.86));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: .9rem;
  box-shadow: 0 16px 34px rgba(18,53,36,.16);
}
.trust-strip-inner {
  display: grid;
  gap: .6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.trust-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: .8rem .9rem;
  color: #fff;
  text-align: center;
  display: grid;
  gap: .18rem;
  align-content: center;
}
.trust-item span {
  color: rgba(255,255,255,.82);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .68rem;
  font-weight: 800;
}
.trust-item strong {
  color: #fff;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.25;
}

.category-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.category-card {
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(8,45,29,.1), rgba(8,45,29,.75));
  border-radius: 18px;
  padding: 1rem;
  text-align: left;
  cursor: pointer;
  min-height: 180px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .35rem;
  box-shadow: 0 8px 20px rgba(18,53,36,.12);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.category-card .category-label {
  display: block;
  color: rgba(255,255,255,.98);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  font-weight: 900;
  margin-top: auto;
}
.category-card .category-subtitle {
  display: block;
  color: #fff;
  font-size: .98rem;
  line-height: 1.45;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0,0,0,.35);
}
.category-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(18,53,36,.18); border-color: rgba(255,255,255,.25); }
.category-card-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,45,29,.08) 0%, rgba(8,45,29,.4) 38%, rgba(8,45,29,.94) 100%);
}
.category-card-photo .category-label,
.category-card-photo .category-subtitle {
  position: relative;
  z-index: 1;
}
.category-card-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.category-card-photo .category-label { margin-bottom: .25rem; }
.category-casa { background-image: url("https://i.postimg.cc/C5sDtvKy/qual-adiferenca-de-casa-classica-e-casa-contemporanea-2.jpg"); }
.category-terreno { background-image: url("https://i.postimg.cc/jq1rnsqw/images.jpg"); }
.category-chacara { background-image: url("https://i.postimg.cc/pdV2Yqw5/olimpia-casas-chacara-recanto-bela-vista-04-08-2023-09-24-42-8.webp"); }
.category-fazenda { background-image: url("https://i.postimg.cc/Z5GR88Tp/fazendas.jpg"); }
.category-comercial { background-image: url("https://i.postimg.cc/GmhNXVpd/fachada-comercial-pequena.jpg"); }
.category-card.active {
  border-color: rgba(31,138,85,.5);
  box-shadow: 0 14px 30px rgba(31,138,85,.14);
  transform: translateY(-2px);
}

.mobile-filter-backdrop {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(10, 25, 16, .5);
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease;
}
.mobile-filter-backdrop.open { opacity: 1; visibility: visible; }
.mobile-filter-sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 71;
  background: rgba(248, 252, 249, .98);
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -12px 40px rgba(0,0,0,.18);
  transform: translateY(100%);
  transition: transform .28s ease;
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom));
  max-height: 88vh;
  overflow: auto;
}
.mobile-filter-sheet.open { transform: translateY(0); }
.mobile-filter-header {
  display: flex; align-items: start; justify-content: space-between; gap: .8rem;
  margin-bottom: .9rem;
}
.mobile-filter-header h3 { margin: .1rem 0 0; font-size: 1.15rem; }
.mobile-filter-close {
  width: 42px; height: 42px; border: 0; border-radius: 999px; cursor: pointer;
  background: #eaf4ee; color: var(--primary-deep); font-size: 1.7rem; font-weight: 900;
}
.mobile-filter-grid { display: grid; gap: .75rem; }
.mobile-filter-grid label { display: grid; gap: .3rem; font-size: .86rem; font-weight: 700; color: var(--primary-deep); }
.mobile-filter-apply { width: 100%; margin-top: 1rem; }

.btn {
  border: 0; text-decoration: none; border-radius: 999px; padding: .8rem 1.2rem;
  font-weight: 700; cursor: pointer;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(18,53,36,.18); }
.btn:active { transform: translateY(-1px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-deep)); box-shadow: var(--shadow); }
.btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.08); }
.btn-outline { color: var(--primary-deep); border: 1.5px solid var(--primary-deep); background: transparent; font-size: .82rem; padding: .55rem .9rem; }
.btn-outline:hover { background: rgba(17,99,59,.08); }
.card-actions { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .7rem; }
.card-actions .btn { font-size: .82rem; padding: .55rem .9rem; }
.price-line { font-weight: 700; color: var(--primary-deep); }
.btn-secondary { color: var(--primary-deep); border: 1.5px solid var(--primary-deep); background: transparent; }
.btn-secondary:hover { background: rgba(17,99,59,.08); }

.section { padding: 4rem 0; }
.search-section .container, .institutional .container, .contact .container, #avaliacoes .container, #destaques .container, .detail-wrap {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(214,235,223,.75);
  border-radius: 20px;
  padding: 1rem;
  overflow: hidden;
}
.dark-section .container {
  background: linear-gradient(135deg, rgba(8,45,29,.94), rgba(17,99,59,.8));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 1rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(18,53,36,.16);
}
.dark-section .section-title-wrap .eyebrow,
.dark-section .section-title-wrap h2,
.dark-section .section-title-wrap p {
  color: #fff;
  opacity: 1;
}
.dark-section h1 { color: #fff; }
.dark-section p,
.dark-section li {
  color: rgba(255,255,255,.9);
}
.dark-section .section-title-wrap h2 { margin-top: .15rem; }
.section-title-wrap h2, .institutional h2, .contact h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); margin-top: .2rem; }
.dark-section .badge-grid article,
.dark-section .mvv-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  color: #fff;
}
.dark-section .badge-grid strong,
.dark-section .mvv-card h3,
.dark-section .mvv-card p,
.dark-section .badge-grid span {
  color: #fff;
}
.dark-section .badge-grid article:hover,
.dark-section .mvv-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,.16); }
.search-grid { display: grid; grid-template-columns: 1fr; gap: .8rem; margin-top: 1rem; }
label span { display: block; font-size: .83rem; margin-bottom: .28rem; color: var(--muted); font-weight: 700; }
input, select, textarea {
  width: 100%; border-radius: 14px; border: 1px solid var(--line); background: #fff;
  padding: .82rem .9rem; font: inherit; color: var(--text);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--primary);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 8px 24px rgba(17,99,59,.16);
}
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%234b6958' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9rem center; background-size: 12px;
  cursor: pointer;
}
.cards { display: grid; grid-template-columns: 1fr; gap: 1rem; content-visibility: auto; }
.stats { margin: 1rem 0 .4rem; color: var(--muted); font-weight: 600; }
.stats.no-results { color: #8f3b2e; font-weight: 800; }
.no-results-box {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
  text-align: center;
  display: grid;
  gap: .6rem;
  justify-items: center;
}
.no-results-box h3 { margin: 0; color: var(--primary-deep); }
.no-results-box p { margin: 0; color: #335a46; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.thumb-wrap { height: 180px; overflow: hidden; position: relative; }
.thumb-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.card:hover .thumb-wrap img { transform: scale(1.08); }
.card-map-pin {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.88);
  color: var(--primary-deep);
  box-shadow: 0 6px 16px rgba(18,53,36,.18);
  backdrop-filter: blur(6px);
}
.card-map-link { text-decoration: none; }
.card-map-link:hover { transform: translateY(-1px) scale(1.03); }
.card-map-pin svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.card-body { padding: 1rem; }
.meta { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .6rem; }
.tag { font-size: .72rem; border-radius: 999px; padding: .28rem .58rem; background: var(--primary-light); color: var(--primary-deep); font-weight: 700; }
.card p { margin: .2rem 0; color: #345a46; font-size: .92rem; }
.feature-icons { display: flex; flex-wrap: wrap; gap: .4rem; margin: .5rem 0 .25rem; }
.feature-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(17,99,59,.08);
  border: 1px solid rgba(17,99,59,.14);
  color: var(--primary-deep);
  box-shadow: 0 4px 12px rgba(18,53,36,.06);
}
.feature-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-icon strong {
  position: absolute;
  right: -3px;
  bottom: -3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: .62rem;
  line-height: 16px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(18,53,36,.16);
}

.institutional-img { width: 100%; border-radius: var(--radius); margin-top: 1rem; box-shadow: var(--shadow); }
.badge-grid { display: grid; gap: .7rem; grid-template-columns: 1fr 1fr; }
.badge-grid article { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; transition: transform .3s ease, box-shadow .3s ease; }
.badge-grid article:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(18,53,36,.1); }
.badge-grid strong { display: block; color: var(--primary-deep); font-size: 1.4rem; }
.contact-layout { display: grid; gap: 1.5rem; }
@media (min-width: 760px) {
  .contact-layout { grid-template-columns: 1.2fr .9fr; align-items: start; }
}
.contact ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; display: grid; gap: .75rem; }
.form-with-bg {
  background-size: cover; background-position: center; background-repeat: no-repeat; position: relative;
  border: 0; padding: 1.5rem; background-color: transparent;
}
.form-with-bg::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  background: rgba(255,255,255,.82); backdrop-filter: blur(8px);
  z-index: 0;
}
.form-with-bg > * { position: relative; z-index: 1; }
.contact-form label { display: grid; gap: .25rem; font-size: .85rem; font-weight: 600; color: var(--primary-deep); }
.contact-form input, .contact-form select, .contact-form textarea { padding: .65rem .75rem; border: 1px solid var(--line); border-radius: 12px; font: inherit; font-size: .92rem; transition: border-color .3s, box-shadow .3s; background: #fff; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(31,138,85,.15); }
.contact-form textarea { resize: vertical; min-height: 80px; }
.required { color: #dc3545; }
.opt { font-weight: 400; color: var(--muted); font-size: .78rem; }
.form-feedback { font-size: .85rem; margin: 0; min-height: 1.2em; }
.form-feedback.success { color: var(--primary); }
.form-feedback.error { color: #dc3545; }

.contact-proof { display: grid; gap: .75rem; align-content: start; }
.proof-card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1rem 1.1rem; text-align: center;
  box-shadow: 0 4px 14px rgba(18,53,36,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.proof-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(18,53,36,.1); }
.proof-card strong { display: block; font-size: 1.3rem; color: var(--primary-deep); }
.proof-card span { font-size: .85rem; color: var(--muted); }
.proof-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 3px; margin-bottom: .2rem; }
.proof-google { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; flex-wrap: wrap; }
.proof-google .google-logo { width: 18px; height: 18px; display: inline-flex; }
.proof-rating { font-weight: 700; color: var(--primary-deep); font-size: .95rem; }

.dynamic-fields { display: grid; gap: .75rem; }
.dynamic-fields label { display: grid; gap: .25rem; font-size: .85rem; font-weight: 600; color: var(--primary-deep); }

.map-interactive { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-interactive iframe { width: 100%; min-height: 220px; border: 0; display: block; }

.detail-wrap { display: grid; gap: 1rem; box-shadow: var(--shadow); position: relative; }
.detail-badge-destaque {
  position: absolute; top: 12px; left: 12px; z-index: 5;
  background: linear-gradient(135deg, var(--gold), #e09530); color: #fff;
  padding: .3rem .7rem; border-radius: 999px; font-size: .72rem; font-weight: 700;
  box-shadow: 0 4px 12px rgba(245,179,66,.4);
}
.detail-media { min-height: 280px; border-radius: 16px; overflow: hidden; position: relative; }

.gallery-premium { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); background: var(--surface); }
.gallery-layout { display: grid; gap: .85rem; padding: .85rem; }
.gallery-main { position: relative; overflow: hidden; background: #f0f5f2; cursor: zoom-in; }
.gallery-main-img { width: 100%; display: block; height: auto; min-height: 280px; object-fit: cover; transition: transform .35s ease; border-radius: 16px; }
.gallery-main:hover .gallery-main-img { transform: scale(1.02); }
.detail-intro {
  padding: .2rem .15rem 0;
}
.detail-kicker {
  margin: 0 0 .3rem;
  color: #7b8680;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.detail-intro h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.08;
  color: var(--text);
  margin: 0 0 .55rem;
}
.detail-location-line {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.detail-location-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .42rem .75rem;
  border-radius: 999px;
  background: #f3f5f3;
  border: 1px solid var(--line);
  color: #7b8680;
  font-size: .86rem;
  font-weight: 700;
}
.detail-location-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #98a09a;
}
.detail-location-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.detail-price-highlight {
  margin-top: .55rem;
  color: var(--primary-deep);
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1;
  letter-spacing: -.02em;
}
.detail-whatsapp-cta {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: 100%;
  margin-top: .8rem;
  padding: .95rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(37,211,102,.28);
}
.detail-whatsapp-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.detail-content { padding-top: .1rem; }
.detail-city { color: var(--muted); margin-top: 0; }
.gallery-open-btn {
  position: absolute; top: 12px; right: 12px; z-index: 4;
  border: 0; border-radius: 999px; padding: .45rem .8rem;
  background: rgba(255,255,255,.9); color: var(--primary-deep);
  font-size: .78rem; font-weight: 800; cursor: pointer;
  box-shadow: 0 4px 14px rgba(18,53,36,.16);
}
.gallery-open-btn:hover { background: #fff; }
.gallery-counter {
  position: absolute; bottom: 12px; left: 12px; z-index: 5;
  background: rgba(0,0,0,.7); backdrop-filter: blur(6px);
  color: #fff; padding: .3rem .7rem; border-radius: 999px;
  font-size: .78rem; font-weight: 600; letter-spacing: .5px;
}
.gallery-thumbs {
  display: flex; gap: 6px; padding: 8px;
  overflow-x: auto; scrollbar-width: none;
  background: #f7fcf9; border-top: 1px solid var(--line);
}
.gallery-thumbs-side { padding: 0; border-top: 0; background: transparent; }
.gallery-thumbs-bottom {
  margin: 0 .85rem .85rem;
  padding: .85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f7fcf9;
}
.gallery-thumbs-bottom .gallery-thumb { width: 88px; height: 66px; }
.gallery-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: .55rem 0 .2rem;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: #cfd5d0;
  padding: 0;
}
.gallery-dot.active { background: var(--primary-deep); transform: scale(1.15); }
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  flex-shrink: 0; width: 72px; height: 54px;
  border-radius: 10px; overflow: hidden; border: 2px solid transparent;
  cursor: pointer; transition: border-color .25s, transform .25s;
  background: none; padding: 0;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb.active { border-color: var(--primary); transform: scale(1.05); }
.gallery-thumb:hover { border-color: var(--primary-light); }

.gallery-modal {
  position: fixed; inset: 0; z-index: 1200;
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
  background: rgba(5, 10, 7, .92);
  backdrop-filter: blur(8px);
}
.gallery-modal.open { display: flex; }
.gallery-modal-figure {
  margin: 0; width: min(94vw, 1100px);
  display: grid; gap: .7rem; justify-items: center;
}
.gallery-modal-figure img {
  max-width: 100%; max-height: 82vh; width: auto; height: auto;
  object-fit: contain; border-radius: 18px; box-shadow: 0 24px 70px rgba(0,0,0,.55);
  transform: scale(1); transition: transform .25s ease;
}
.gallery-modal-figure img.zoomed {
  transform: scale(1.7);
  cursor: zoom-out;
}
.gallery-modal-figure figcaption {
  color: rgba(255,255,255,.92); font-size: .85rem; font-weight: 700;
  background: rgba(0,0,0,.45); padding: .35rem .7rem; border-radius: 999px;
}
.gallery-modal-close,
.gallery-modal-nav {
  position: absolute; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  color: #102216;
}
.gallery-modal-close {
  top: 18px; right: 18px; width: 46px; height: 46px; border-radius: 999px;
  background: rgba(255,255,255,.96); font-size: 1.9rem; font-weight: 900;
  box-shadow: 0 8px 22px rgba(0,0,0,.35); z-index: 2;
}
.gallery-modal-nav {
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 999px;
  background: rgba(255,255,255,.9); font-size: 2rem; font-weight: 900;
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
}
.gallery-modal-nav.prev { left: 18px; }
.gallery-modal-nav.next { right: 18px; }
body.no-scroll { overflow: hidden; }

.slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 42px; height: 42px; border-radius: 999px; border: 0;
  background: rgba(255,255,255,.88); color: var(--primary-deep);
  font-size: 1.5rem; font-weight: 800; cursor: pointer;
  transition: background .25s, transform .25s;
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
}
.slide-btn:hover { background: #fff; transform: translateY(-50%) scale(1.12); }
.slide-btn.prev { left: 10px; }
.slide-btn.next { right: 10px; }
.hidden { display: none; }
.detail-content h1 { font-family: "DM Serif Display", serif; margin: .2rem 0 .45rem; font-size: clamp(1.7rem, 4vw, 2.8rem); }
.detail-city { color: var(--muted); margin-top: 0; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin: 1rem 0; }
.detail-grid div { border: 1px solid var(--line); border-radius: 14px; padding: .8rem; background: #f7fcf9; }
.detail-grid span { display: block; font-size: .77rem; color: var(--muted); }
.detail-grid-premium { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .3rem; }
.detail-card { display: grid; gap: .08rem; align-content: start; min-width: 0; }
.detail-card-head { display: flex; align-items: center; gap: .14rem; width: 100%; min-width: 0; line-height: 1; white-space: nowrap; overflow: hidden; }
.detail-card strong { font-size: .9rem; color: var(--text); }
.detail-card-feature { grid-template-columns: 1fr auto; align-items: center; gap: .15rem .3rem; }
.detail-card-label { color: var(--muted); font-size: .62rem; font-weight: 800; line-height: 1; text-transform: uppercase; letter-spacing: .02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.detail-card-value { font-size: .92rem; font-weight: 800; color: var(--text); line-height: 1; justify-self: end; }
.detail-card-icon { width: 14px; height: 14px; display: inline-flex; align-items: center; justify-content: center; color: var(--primary-deep); margin-bottom: 0; border: 0; background: transparent; }
.detail-card-icon svg { width: 11px; height: 11px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; display: block; }
.detail-actions { display: flex; flex-wrap: wrap; gap: .6rem; }
.descricao-imovel { margin: .8rem 0 0; color: #2f5642; line-height: 1.6; }
.detail-map-block { margin-top: 1rem; }
.detail-map-title {
  margin: 0 0 .45rem;
  color: var(--text);
  font-size: .9rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
}
.detail-map-frame {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #f7fcf9;
  min-height: 240px;
}
.detail-map-frame iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}
.detail-map-frame a {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-deep);
  font-weight: 800;
  text-decoration: none;
  padding: 1rem;
}
.share-row { margin-top: .9rem; display: flex; gap: .5rem; align-items: center; }
.similar-section {
  margin-top: 1.5rem;
  background: linear-gradient(180deg, rgba(31,138,85,.08), rgba(255,255,255,.92));
  border: 1px solid rgba(214,235,223,.9);
  border-radius: 18px;
  padding: 1rem;
}
.similar-section .section-title-wrap .eyebrow,
.similar-section .section-title-wrap h2 {
  color: #fff;
  opacity: 1;
}
.similar-cards { grid-template-columns: 1fr; }
.detail-similar-full { margin-top: 1.4rem; }
.card-similar { background: #fff; box-shadow: 0 10px 24px rgba(18,53,36,.08); }

.detail-page .section { padding: 1rem 0 1.6rem; }
.detail-page .container { width: min(1320px, 96%); }
.detail-page .detail-wrap { gap: 1.2rem; }

.reviews-box { text-align: left; }
.reviews-header { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; justify-content: space-between; margin-bottom: 1rem; }
.google-rating-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  margin-top: .55rem; padding: .45rem .75rem;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(18,53,36,.08);
  font-size: .86rem; font-weight: 700; color: var(--primary-deep);
}
.google-logo { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; }
.google-rating-badge strong { font-size: .92rem; }
.reviews-slider-wrap { position: relative; overflow: hidden; }
.reviews-track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none; padding-bottom: .5rem;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  scroll-snap-align: start; min-width: 260px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 1rem; box-shadow: 0 4px 14px rgba(18,53,36,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  overflow-wrap: break-word; word-wrap: break-word;
  width: 100%; max-width: 340px;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(18,53,36,.12); }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: .35rem; }
.review-card blockquote { margin: 0; font-size: .9rem; line-height: 1.55; color: #2a4a38; overflow-wrap: break-word; word-break: break-word; }
.review-author { display: block; margin-top: .55rem; font-weight: 700; color: var(--primary-deep); font-size: .83rem; }
.review-source { font-size: .7rem; color: var(--muted); }
.review-dots { display: flex; justify-content: center; gap: .45rem; margin-top: .8rem; }
.review-dot {
  width: 10px; height: 10px; border-radius: 999px; border: 0;
  background: var(--line); cursor: pointer; transition: background .3s ease, transform .3s ease;
}
.review-dot.active { background: var(--primary); transform: scale(1.3); }
.reviews-rating-badge { font-size: .82rem; color: var(--muted); margin-top: .2rem; font-weight: 600; }

.scroll-top {
  position: fixed; bottom: 30px; right: 24px; z-index: 50;
  width: 48px; height: 48px; border-radius: 999px; border: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff; box-shadow: 0 10px 30px rgba(17,99,59,.3);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease, visibility .35s;
  cursor: pointer;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(17,99,59,.4); }
.scroll-top svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.whatsapp-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 49;
  display: flex; align-items: center; gap: .5rem;
  padding: .6rem 1rem .6rem .7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.whatsapp-float:hover { transform: scale(1.06); box-shadow: 0 12px 40px rgba(37,211,102,.55); }
.whatsapp-label { font-size: .85rem; font-weight: 700; white-space: nowrap; }

.footer {
  margin-top: 2rem;
  padding: 1.2rem 0 1.9rem;
  color: var(--muted);
  background: rgba(244,251,247,.72);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(214,235,223,.75);
}
.footer-grid { display: grid; gap: 1rem; text-align: left; }
.footer-brand { max-width: 52px; border-radius: 999px; object-fit: cover; aspect-ratio: 1; margin-bottom: .5rem; }
.footer-signature-wrap {
  margin-top: .8rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(214,235,223,.6);
  display: grid;
  gap: .7rem;
  justify-items: center;
}
.footer-copyright {
  font-size: .85rem;
  color: var(--muted);
  text-align: center;
}
.footer-signature {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .65rem .4rem .8rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  background: rgba(20,20,20,.9);
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
  color: #fff;
  width: min(100%, 500px);
  justify-content: space-between;
  text-decoration: none;
  cursor: pointer;
}
.footer-signature:hover { background: rgba(24,24,24,.98); }
.footer-signature-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 .55rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.95);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .58rem;
  font-weight: 800;
  white-space: nowrap;
}
.footer-dev-logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.cta-section { padding: 3rem 0; }
.cta-box {
  text-align: center;
  background: linear-gradient(135deg, rgba(31,138,85,.85), rgba(17,99,59,.75));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(214,235,223,.75);
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
}
.cta-content { max-width: 520px; margin: 0 auto; }
.cta-content .eyebrow { color: rgba(255,255,255,.9); }
.cta-content h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); margin: .3rem 0 .6rem; color: #fff; }
.cta-content p { color: rgba(255,255,255,.85); margin-bottom: 1.2rem; }
.btn-cta { font-size: 1rem; padding: .9rem 1.8rem; }
.btn-cta:hover { transform: translateY(-3px); }
.cta-form { max-width: 560px; margin: 1.5rem auto 0; display: grid; gap: .75rem; text-align: left; }
.cta-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.cta-form label { display: grid; gap: .25rem; font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.9); }
.cta-form input, .cta-form select, .cta-form textarea {
  padding: .65rem .75rem; border: 1px solid rgba(255,255,255,.3); border-radius: 12px;
  font: inherit; font-size: .92rem; background: rgba(255,255,255,.9);
  transition: border-color .3s, box-shadow .3s;
}
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus {
  outline: none; border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.2); background: #fff;
}
.cta-form textarea { resize: vertical; min-height: 60px; }
.cta-form .required { color: #ff8a8a; }
.cta-form-feedback { font-size: .85rem; margin: 0; min-height: 1.2em; text-align: center; }
.cta-form-feedback.success { color: #b8f0d0; }
.cta-form-feedback.error { color: #ff8a8a; }
.footer h3 { margin: 0 0 .5rem; }
.social-row { display: flex; gap: .55rem; }
.map-frame { width: 100%; min-height: 150px; border: 0; border-radius: 14px; }
.city-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .35rem; }
.city-list li {
  background: rgba(31,138,85,.1); color: var(--primary-deep);
  padding: .25rem .65rem; border-radius: 999px; font-size: .8rem; font-weight: 600;
}

.reveal { opacity: 0; transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94); }
.reveal-fade { transform: translateY(30px); }
.reveal-zoom { transform: scale(.85); }
.reveal-slide { transform: translateX(-40px); }
.reveal.show { opacity: 1; transform: none; }

.card-destaque { position: relative; }
.card-badge {
  position: absolute; top: 10px; right: 10px; z-index: 5;
  background: linear-gradient(135deg, var(--gold), #e09530); color: #fff;
  padding: .25rem .6rem; border-radius: 999px; font-size: .68rem; font-weight: 700;
  box-shadow: 0 4px 12px rgba(245,179,66,.35);
  animation: destaquePulse 2.4s ease-in-out infinite;
}

.about-hero h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.04;
  margin: .2rem 0 .7rem;
}
.about-hero-bg {
  position: relative;
  overflow: hidden;
}
.about-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://res.cloudinary.com/dqq4qonkb/image/upload/v1784836076/ChatGPT_Image_23_de_jul._de_2026_15_43_23_erq02k.png") center/cover no-repeat;
  z-index: -3;
}
.about-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: -2;
}
.about-hero-copy { position: relative; z-index: 1; }
.about-hero .container {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.about-hero-copy {
  background: rgba(8,45,29,.66);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: .95rem;
  backdrop-filter: blur(10px);
}
.about-hero-copy .eyebrow,
.about-hero-copy h1,
.about-hero-copy p {
  color: #fff;
}
.about-hero-title {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.about-hero-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 999px;
  flex: 0 0 auto;
}
.about-hero-copy p {
  opacity: .95;
}
.desktop-break { display: none; }
.about-split { display: grid; align-items: center; gap: 1rem; }
.about-hero-wrap { position: relative; display: grid; gap: 1rem; min-height: 100svh; align-content: center; padding: 1rem 0; overflow: visible; }
.about-hero-art {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: clamp(0rem, 1vw, 1rem);
  width: min(46vw, 620px);
  height: auto;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.22));
}
.about-hero-art-btn {
  position: absolute;
  right: 4.5rem !important;
  top: auto !important;
  bottom: 1rem !important;
  z-index: 3;
  display: inline-flex;
  justify-content: center;
  width: clamp(320px, 34vw, 430px);
  padding-left: 3rem;
  padding-right: 3rem;
}
#nossa-historia .section-title-wrap .eyebrow,
#trajetoria .section-title-wrap .eyebrow { color: #fff; }
#nossa-historia .section-title-wrap .eyebrow,
#trajetoria .section-title-wrap .eyebrow {
  color: #fff !important;
}
#nossa-historia .section-title-wrap h2 { color: #102216; }
#trajetoria .section-title-wrap h2 { color: #102216; }
#nossa-historia .section-title-wrap h2,
#trajetoria .section-title-wrap h2 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.01em;
}
#nossa-historia .section-title-wrap h2::after,
#trajetoria .section-title-wrap h2::after {
  content: "";
  display: block;
  width: 62px;
  height: 4px;
  margin-top: .55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}
#nossa-historia .section-title-wrap .eyebrow,
#trajetoria .section-title-wrap .eyebrow {
  color: var(--primary-deep);
  opacity: 1;
  font-weight: 800;
}
.about-hero-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.about-hero-actions .btn { padding: .72rem 1rem; }
.about-hero-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.about-hero-pills span {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  border-radius: 999px;
  padding: .35rem .7rem;
  font-size: .78rem;
  font-weight: 700;
}
.about-content-grid { display: grid; align-items: start; gap: 1rem; }
.split > div:first-child { display: grid; gap: .8rem; justify-items: start; }
.split > div:first-child .btn { margin-top: .2rem; }
.about-hero-home {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 1.15rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  align-content: end;
  gap: .75rem;
  isolation: isolate;
}
.about-hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,45,29,.14) 0%, rgba(8,45,29,.48) 58%, rgba(8,45,29,.72) 100%), url("https://res.cloudinary.com/dqq4qonkb/image/upload/v1784836076/ChatGPT_Image_23_de_jul._de_2026_15_43_23_erq02k.png") center 28% / cover no-repeat;
  z-index: -2;
}
.about-hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,45,29,.06), rgba(8,45,29,.18));
  z-index: -1;
}
.about-hero-home .eyebrow,
.about-hero-home h2,
.about-hero-home p { position: relative; z-index: 1; }
.about-hero-home .about-hero-art-btn { position: absolute; z-index: 3; }
.about-home-title {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0;
}
.about-home-title img {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  flex-shrink: 0;
}
.about-hero-home .eyebrow { color: rgba(255,255,255,.92); }
.about-hero-home h2 { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.25); }
.about-hero-home p { color: rgba(255,255,255,.9); text-shadow: 0 1px 8px rgba(0,0,0,.18); }
.badge-grid { gap: .5rem; }
.badge-grid article { padding: .75rem .8rem; border-radius: 14px; }
.badge-grid strong { font-size: 1.2rem; }
.badge-grid span { font-size: .82rem; }
.about-story {
  display: grid;
  gap: .9rem;
  max-width: 920px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(214,235,223,.92);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(18,53,36,.08);
}
.about-story p {
  margin: 0;
  line-height: 1.75;
  color: #20382b;
}
.about-diff-grid { display: grid; gap: .9rem; }
.about-diff-card {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(214,235,223,.92);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 10px 24px rgba(18,53,36,.08);
}
.about-diff-card strong { display: block; color: var(--primary-deep); margin-bottom: .35rem; font-size: 1rem; }
.about-diff-card p { margin: 0; color: #20382b; line-height: 1.6; }
.mvv-grid { display: grid; gap: .85rem; }
.mvv-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: 1rem;
}
.mvv-card h3 { margin: 0 0 .45rem; font-size: 1.1rem; }
.mvv-card p { margin: 0; line-height: 1.6; }
.about-cta-box { text-align: center; }

@media (min-width: 760px) {
  .mvv-grid { grid-template-columns: repeat(2, 1fr); }
  .mvv-card-wide { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .about-content-grid { grid-template-columns: 1.15fr .85fr; gap: 1.2rem; }
  .about-diff-grid { grid-template-columns: repeat(3, 1fr); }
  .home-about-image { max-height: 260px; object-position: center 28%; }
}

@media (min-width: 761px) {
  .desktop-break { display: block; }
}

@media (max-width: 899px) {
  .about-hero-wrap {
    min-height: auto;
    padding: 1rem 0 0;
  }
  .about-hero-art {
    width: min(92vw, 460px);
    right: 1rem;
    bottom: 0;
  }
  .about-hero-art-btn {
    position: relative;
    right: auto;
    top: auto;
    margin-top: .5rem;
    z-index: 3;
  }
  .about-hero-title { gap: .55rem; }
  .about-hero-logo { width: 42px; height: 42px; border-radius: 999px; }
}

@keyframes destaquePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(245,179,66,.35); }
  50% { transform: scale(1.05); box-shadow: 0 8px 18px rgba(245,179,66,.5); }
}

@media (max-width: 900px) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .menu-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; top: 64px; left: 0; right: 0;
    display: none; flex-direction: column;
    background: rgba(245,252,248,.96); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line); padding: .7rem 4%;
  }
  .main-nav.open { display: flex; }
  .whatsapp-float { padding: .5rem .7rem .5rem .5rem; }
  .whatsapp-label { font-size: .78rem; }
  .review-card { min-width: 80vw; max-width: 88vw; }
  .cta-form-grid { grid-template-columns: 1fr; }
  .contact-proof { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-grid-premium { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .22rem; }
  .detail-card-text { grid-column: 1 / -1; }
  .detail-card { padding: .26rem .36rem; min-height: 30px; }
  .detail-card span { font-size: .58rem; }
  .detail-card strong { font-size: .76rem; line-height: 1; }
  .detail-card-feature { grid-template-columns: 1fr auto; }
  .detail-card-feature .detail-card-label { font-size: .5rem; }
  .detail-card-value { font-size: .75rem; }
  .detail-card-icon { width: 12px; height: 12px; }
  .detail-card-icon svg { width: 9px; height: 9px; }
  .detail-grid-premium .detail-card:nth-child(n+5) { display: none; }
  .detail-actions { display: none; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-item {
    min-height: 42px;
    padding: .35rem .45rem;
  }
  .trust-item span { display: none; }
  .trust-item strong { font-size: .68rem; line-height: 1.15; }
  .gallery-main { aspect-ratio: 4/3; }
  .gallery-thumb { width: 56px; height: 42px; }
  .slide-btn { width: 36px; height: 36px; font-size: 1.2rem; }
  .badge-grid { grid-template-columns: 1fr 1fr; }
  body { background-attachment: scroll; }
  .hero { background-attachment: scroll; }
  .hero-media {
    background-position: center center !important;
    background-size: cover !important;
  }
  .hero-control-panel {
    display: grid;
    position: relative;
    top: 3rem;
    gap: .8rem;
    width: min(100%, 520px);
    margin: 9rem auto 0;
    padding: .95rem;
    border-radius: 22px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 16px 34px rgba(18,53,36,.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .hero-control-panel .hero-actions {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .4rem;
    width: 100%;
  }
  .hero-control-panel .hero-actions button.mobile-filter-trigger { grid-column: 1; }
  .hero-control-panel .hero-actions a[href="#imoveis"] { grid-column: 2; }
  .hero-control-panel .hero-actions a[href="#cta-anunciar"] { grid-column: 3; }
  .hero-control-panel .hero-actions a[href="#imoveis"] {
    background: #fff;
    color: var(--primary-deep);
    border: 1px solid rgba(17,99,59,.22);
  }
  .hero-control-panel .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: .8rem .5rem;
    font-size: .72rem;
    min-width: 0;
    min-height: 58px;
    line-height: 1.02;
    white-space: normal;
    text-align: center;
  }
  .hero-control-panel .mobile-filter-trigger {
    display: inline-flex;
    min-height: 58px;
    padding: .8rem .5rem;
    font-size: .72rem;
    line-height: 1.02;
  }
  .hero-search {
    display: grid;
    width: 100%;
    max-width: none;
    margin-top: 0;
    opacity: 1;
    animation: none;
    transform: none;
    position: static;
    justify-self: stretch;
  }
  .hero-search-pills { justify-content: center; flex-wrap: wrap; }
  .hero-search-row { margin-bottom: .45rem; }
  .hero-filters { display: grid; grid-template-columns: 1fr; }
  .hero-filters select,
  .hero-filters .btn { width: 100%; }
  .mobile-filter-trigger {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 0;
    grid-column: 1 / -1;
  }
  .about-hero-home { min-height: 260px; padding: 1rem; }
  .about-hero-home::before { background-position: center 22%; }
  .about-hero { padding-top: 1.2rem; }
  .about-home-title img { width: 32px; height: 32px; }
  .about-hero .container,
  .about-hero-copy { border-radius: 16px; }
  .about-hero-wrap { gap: .9rem; position: relative; }
  .about-hero-copy {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 1rem;
    margin: 0;
    z-index: 3;
    box-shadow: 0 18px 40px rgba(18,53,36,.22);
  }
  .about-hero-actions { margin-bottom: .75rem; }
  .about-hero-pills { margin-top: .5rem; gap: .65rem; }
  .about-hero { min-height: 0; }
  .about-hero .container { min-height: 0; display: block; padding-bottom: 1rem; }
  .about-story { gap: .75rem; }
  .about-diff-grid { gap: .75rem; }
  .hero-filters { flex-direction: column; }
  .hero-filters select { flex: none; width: 100%; }
  .hero-filters .btn { width: 100%; }
  .hero-actions { gap: .45rem; margin-top: 1rem; }
  .hero-actions .btn { padding: .62rem .9rem; font-size: .82rem; line-height: 1.1; }
  .hero-search { display: none; }
}

@media (min-width: 760px) {
  .search-grid { grid-template-columns: 1.2fr repeat(3, .8fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1.2fr 1fr; }
  .footer-grid { grid-template-columns: 1.2fr .8fr 1fr 1fr; }
  .similar-cards { grid-template-columns: repeat(2, 1fr); }
  .desktop-only { display: inline-flex; }
  .trust-strip-inner { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .hero-overlay-art {
    width: min(100vw, 560px);
    right: .5rem;
    bottom: 1.5rem;
  }
  .scroll-top { bottom: 88px; right: 12px; }
  .whatsapp-float { bottom: 20px; left: 12px; }
  .footer-signature {
    width: 100%;
    gap: .35rem;
    padding: .5rem .6rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .footer-signature-label {
    min-height: 32px;
    padding: 0 .55rem;
    font-size: .62rem;
    letter-spacing: .07em;
  }
  .footer-dev-logo {
    height: 18px;
    align-self: center;
  }
}

@media (min-width: 761px) {
  .footer-dev-logo {
    height: 42px;
  }
}
@media (min-width: 1060px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  #destaque-cards { grid-template-columns: repeat(3, 1fr); }
  .detail-wrap { grid-template-columns: 1fr; }
  .gallery-layout { grid-template-columns: minmax(0, 1.8fr) minmax(240px, .9fr); align-items: start; }
  .gallery-main-img { min-height: 560px; }
  .gallery-thumbs { flex-direction: column; gap: 10px; max-height: 560px; overflow: hidden; }
  .gallery-thumb { width: 100%; height: 134px; }
  .gallery-thumbs-bottom { display: grid; grid-template-columns: repeat(auto-fit, minmax(112px, 1fr)); }
  .gallery-thumbs-bottom .gallery-thumb { width: 100%; height: 96px; }
  .gallery-dots { display: none !important; }
  .similar-cards { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 1059px) {
  .detail-page .container { width: 100%; }
  .detail-page .detail-wrap { gap: .9rem; }
  .detail-page .gallery-premium {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    box-shadow: none;
  }
  .detail-page .gallery-layout { padding: 0; gap: 0; }
  .detail-whatsapp-cta { display: inline-flex; }
  .gallery-thumbs-side,
  .gallery-thumbs-bottom { display: none; }
  .gallery-dots { display: flex; }
  .gallery-main-img { min-height: 0; aspect-ratio: 4 / 3; }
  .gallery-main { border-radius: 0; }
  .gallery-main-img { border-radius: 0; }
  .slide-btn { display: none; }
  .gallery-premium { padding-bottom: .35rem; }
  .gallery-dots { gap: 5px; padding: .45rem 0 .1rem; }
  .gallery-dot { width: 6px; height: 6px; }
}

.hero-media {
  background: url("https://res.cloudinary.com/dqq4qonkb/image/upload/v1784836076/ChatGPT_Image_23_de_jul._de_2026_15_43_23_erq02k.png") center/cover no-repeat !important;
}
.hero-picture { display: none !important; }

@media (min-width: 901px) {
  .hero-media {
    background-position: center 18% !important;
  }
}

@media (max-width: 760px) {
  .hero-content {
    display: block;
    min-height: 0;
  }
  .hero-search { margin-top: 1.5rem; }
  .hero-overlay-art {
    width: min(60vw, 300px);
    right: 1rem;
    bottom: .5rem;
  }
}

@media (min-width: 761px) {
  .hero-search { top: 4rem; }
}
