:root {
  --green-950: #002f2b;
  --green-900: #073e39;
  --green-850: #0a4a44;
  --cream: #f8f5ef;
  --cream-2: #eee8dd;
  --paper: #fffdf8;
  --ink: #173631;
  --muted: #5f6e68;
  --gold: #c8a469;
  --gold-soft: #dfc594;
  --copper: #c87450;
  --copper-dark: #a95b40;
  --line: rgba(20, 53, 49, 0.13);
  --shadow: 0 16px 42px rgba(38, 34, 27, 0.12);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Garante que o atributo `hidden` sempre esconda o elemento, mesmo quando
   uma classe (ex.: .btn, .region-compare__row) define seu próprio `display`. */
[hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  width: min(100% - 48px, 1600px);
  margin: 0 auto;
  padding-top: 0px;
  padding-right: 0;
  padding-bottom: 0px;
  padding-left: 0;
  color: #fff8ee;
  transition: padding 0.35s ease, color 0.35s ease;
}

.header.is-scrolled,
.header.header--inner {
  width: 100%;
  padding: 0px 44px;
  background: rgba(5, 44, 40, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  display: block;
  width: 156px;
  height: auto;
  object-fit: contain;
}

.header .brand img {
  width: 250px;
  height: auto;
}

.nav {
  position: relative;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(199, 161, 95, 0.12);
  border-radius: 999px;
  background: rgba(0, 38, 34, 0.18);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  z-index: 2;
  padding: 9px 13px;
  border-radius: 999px;
}

.nav__cursor {
  position: absolute;
  left: 0;
  top: 5px;
  z-index: 1;
  width: 0;
  height: calc(100% - 10px);
  border: 1px solid rgba(199, 161, 95, 0.48);
  border-radius: 999px;
  background: rgba(199, 161, 95, 0.16);
  box-shadow: 0 10px 28px rgba(199, 161, 95, 0.12);
  opacity: 0;
  transform: translateX(0);
  transition: opacity 0.22s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), width 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.nav.is-hovering .nav__cursor {
  opacity: 1;
}

.nav a,
.phone,
.section-head a,
.footer a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav a:hover,
.phone:hover,
.section-head a:hover,
.footer a:hover {
  color: var(--gold);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header__social {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 248, 238, 0.3);
  border-radius: 50%;
  color: inherit;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.header__social:hover {
  border-color: var(--gold);
  background: rgba(199, 161, 95, 0.16);
  transform: translateY(-2px);
}

.header__social .bt-icon {
  width: 16px;
  height: 16px;
}

.phone {
  font-size: 11px;
  font-weight: 700;
}

.btn,
.business-alert a,
.business-sale-card a,
.floating-cta {
  position: relative;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.btn::before,
.business-alert a::before,
.business-sale-card a::before,
.floating-cta::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  content: "";
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.btn:hover,
.business-alert a:hover,
.business-sale-card a:hover,
.floating-cta:hover {
  transform: translateY(-3px);
}

.btn:hover::before,
.business-alert a:hover::before,
.business-sale-card a:hover::before,
.floating-cta:hover::before {
  transform: translateX(120%);
}

.bt-icon {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: currentColor;
  line-height: 1;
  transition: transform 0.3s ease;
}

.bt-icon::before {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.bt-icon--arrow::before {
  content: "↗";
}

.bt-icon--search::before {
  content: "⌕";
}

.bt-icon--mail::before {
  content: "✉";
  font-size: 15px;
}

.bt-icon--play::before {
  content: "▶";
  font-size: 14px;
}

.bt-icon--whatsapp::before {
  width: 18px;
  height: 18px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.02 3C8.85 3 3.03 8.8 3.03 15.95c0 2.29.6 4.52 1.75 6.48L3 29l6.75-1.77a12.9 12.9 0 0 0 6.27 1.6C23.18 28.83 29 23.02 29 15.87 29 8.8 23.18 3 16.02 3Zm0 23.65c-1.93 0-3.82-.52-5.46-1.51l-.39-.23-4.01 1.05 1.07-3.9-.25-.4a10.72 10.72 0 0 1-1.66-5.71c0-5.95 4.8-10.78 10.7-10.78 2.86 0 5.55 1.12 7.57 3.15a10.65 10.65 0 0 1 3.13 7.55c0 5.95-4.8 10.78-10.7 10.78Zm5.87-8.06c-.32-.16-1.9-.94-2.2-1.05-.3-.11-.52-.16-.74.16-.21.32-.84 1.05-1.03 1.27-.19.21-.38.24-.7.08-.32-.16-1.36-.5-2.6-1.59-.96-.86-1.61-1.92-1.8-2.24-.19-.32-.02-.5.14-.66.15-.14.32-.38.48-.56.16-.19.21-.32.32-.54.11-.21.05-.4-.03-.56-.08-.16-.74-1.78-1.01-2.44-.27-.64-.54-.55-.74-.56h-.63c-.21 0-.56.08-.85.4-.3.32-1.12 1.1-1.12 2.68s1.15 3.1 1.31 3.32c.16.21 2.27 3.47 5.49 4.86.77.33 1.37.53 1.83.68.77.24 1.47.21 2.03.13.62-.09 1.9-.78 2.17-1.53.27-.75.27-1.4.19-1.53-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.02 3C8.85 3 3.03 8.8 3.03 15.95c0 2.29.6 4.52 1.75 6.48L3 29l6.75-1.77a12.9 12.9 0 0 0 6.27 1.6C23.18 28.83 29 23.02 29 15.87 29 8.8 23.18 3 16.02 3Zm0 23.65c-1.93 0-3.82-.52-5.46-1.51l-.39-.23-4.01 1.05 1.07-3.9-.25-.4a10.72 10.72 0 0 1-1.66-5.71c0-5.95 4.8-10.78 10.7-10.78 2.86 0 5.55 1.12 7.57 3.15a10.65 10.65 0 0 1 3.13 7.55c0 5.95-4.8 10.78-10.7 10.78Zm5.87-8.06c-.32-.16-1.9-.94-2.2-1.05-.3-.11-.52-.16-.74.16-.21.32-.84 1.05-1.03 1.27-.19.21-.38.24-.7.08-.32-.16-1.36-.5-2.6-1.59-.96-.86-1.61-1.92-1.8-2.24-.19-.32-.02-.5.14-.66.15-.14.32-.38.48-.56.16-.19.21-.32.32-.54.11-.21.05-.4-.03-.56-.08-.16-.74-1.78-1.01-2.44-.27-.64-.54-.55-.74-.56h-.63c-.21 0-.56.08-.85.4-.3.32-1.12 1.1-1.12 2.68s1.15 3.1 1.31 3.32c.16.21 2.27 3.47 5.49 4.86.77.33 1.37.53 1.83.68.77.24 1.47.21 2.03.13.62-.09 1.9-.78 2.17-1.53.27-.75.27-1.4.19-1.53-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bt-icon--area::before {
  width: 18px;
  height: 18px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='2 2 20 20' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9V4h5M20 9V4h-5M4 15v5h5M20 15v5h-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='2 2 20 20' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9V4h5M20 9V4h-5M4 15v5h5M20 15v5h-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bt-icon--terrain::before {
  width: 18px;
  height: 18px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='1 8 22 14' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 20l6-10 4 6 3-4 5 8H3z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='1 8 22 14' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 20l6-10 4 6 3-4 5 8H3z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bt-icon--bed::before {
  width: 18px;
  height: 18px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='1 9 22 13' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 17h20M4 17v-4a2 2 0 0 1 2-2h5v6M13 11h5a2 2 0 0 1 2 2v4M2 17v3M22 17v3'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='1 9 22 13' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 17h20M4 17v-4a2 2 0 0 1 2-2h5v6M13 11h5a2 2 0 0 1 2 2v4M2 17v3M22 17v3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bt-icon--bath::before {
  width: 18px;
  height: 18px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='2 2 20 20' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12h16M6 12V5a2 2 0 0 1 2-2h1M7 12v7a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-7'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='2 2 20 20' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 12h16M6 12V5a2 2 0 0 1 2-2h1M7 12v7a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-7'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bt-icon--car::before {
  width: 18px;
  height: 18px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='2 8 20 13' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 16l1.34-4.36A2 2 0 0 1 7.24 10h9.52a2 2 0 0 1 1.9 1.64L20 16M4 16v2a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h10v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-2M4 16h16'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='2 8 20 13' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 16l1.34-4.36A2 2 0 0 1 7.24 10h9.52a2 2 0 0 1 1.9 1.64L20 16M4 16v2a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-1h10v1a1 1 0 0 0 1 1h1a1 1 0 0 0 1-1v-2M4 16h16'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bt-icon--pin::before {
  width: 18px;
  height: 18px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='2 2 20 20' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s-7-6.2-7-11a7 7 0 0 1 14 0c0 4.8-7 11-7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='2 2 20 20' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s-7-6.2-7-11a7 7 0 0 1 14 0c0 4.8-7 11-7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bt-icon--calendar::before {
  width: 18px;
  height: 18px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='2 2 20 20' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 10h18'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='2 2 20 20' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M16 3v4M8 3v4M3 10h18'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bt-icon--instagram::before {
  width: 18px;
  height: 18px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='2 2 20 20' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.3' cy='6.7' r='1' fill='black' stroke='none'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='2 2 20 20' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.3' cy='6.7' r='1' fill='black' stroke='none'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bt-icon--phone::before {
  width: 17px;
  height: 17px;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='1 1 20 20' fill='black' stroke='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4c0-.6.4-1 1-1h2.2c.5 0 .9.3 1 .8l.8 3a1 1 0 0 1-.3 1L7 9.5a12 12 0 0 0 5.5 5.5l1.7-1.7a1 1 0 0 1 1-.3l3 .8c.5.1.8.5.8 1V17c0 .6-.4 1-1 1h-1C9.6 18 4 12.4 4 5V4z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='1 1 20 20' fill='black' stroke='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4c0-.6.4-1 1-1h2.2c.5 0 .9.3 1 .8l.8 3a1 1 0 0 1-.3 1L7 9.5a12 12 0 0 0 5.5 5.5l1.7-1.7a1 1 0 0 1 1-.3l3 .8c.5.1.8.5.8 1V17c0 .6-.4 1-1 1h-1C9.6 18 4 12.4 4 5V4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.btn:hover .bt-icon,
.business-alert a:hover .bt-icon,
.business-sale-card a:hover .bt-icon,
.section-head a:hover .bt-icon,
.blog-card a:hover .bt-icon,
.floating-cta:hover .bt-icon {
  transform: translateX(4px) scale(1.14);
}

.btn--copper {
  background: var(--copper);
  color: #fff8ee;
  box-shadow: 0 16px 34px rgba(130, 63, 38, 0.22);
}

.btn--copper:hover {
  background: var(--copper-dark);
}

.btn--outline {
  border-color: rgba(211, 177, 114, 0.58);
  color: #fff8ee;
  background: rgba(6, 58, 53, 0.42);
  backdrop-filter: blur(10px);
}

.btn--dark {
  background: var(--green-950);
  color: #fff8ee;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  background: rgba(5, 44, 40, 0.58);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff8ee;
}

.hero {
  position: relative;
  min-height: 660px;
  height: 72vw;
  max-height: 910px;
  overflow: hidden;
  isolation: isolate;
  color: #fff8ee;
  background: var(--green-950);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -2;
  object-fit: cover;
  object-position: 61% center;
  transform: scale(1.05);
  will-change: transform;
}

.hero__youtube-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -2;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100%;
  min-width: 177.78vh; /* 16:9 */
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 38, 34, 0.97) 0%, rgba(0, 38, 34, 0.76) 27%, rgba(0, 38, 34, 0.2) 64%, rgba(0, 38, 34, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 24, 22, 0.12), rgba(0, 24, 22, 0.78));
  will-change: transform;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding-top: 190px;
  will-change: transform;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  font: 500 clamp(54px, 5.8vw, 92px)/0.95 var(--serif);
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--copper);
  font-style: italic;
}

.hero p:not(.eyebrow) {
  max-width: 430px;
  margin: 28px 0 0;
  color: rgba(255, 248, 238, 0.82);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.55;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.hero__side {
  position: absolute;
  z-index: 2;
  right: 78px;
  top: 38%;
  display: grid;
  justify-items: center;
  gap: 18px;
  will-change: transform;
}

.hero__side span {
  width: 10px;
  height: 10px;
  border: 1px solid #fff8ee;
  border-radius: 50%;
}

.hero__side p {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__side::after {
  content: "";
  width: 1px;
  height: 140px;
  background: var(--gold);
}

.search-panel {
  position: relative;
  z-index: 3;
  width: min(100% - 96px, 1530px);
  margin: -48px auto 0;
  text-align: center;
}

.search-panel::before {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: -70px;
  width: 120vw;
  height: 132px;
  border-radius: 50% 50% 0 0;
  background: var(--cream);
  content: "";
  transform: translateX(-50%);
}

.search-panel h2 {
  margin: 0 0 16px;
  font: 500 25px/1.1 var(--serif);
}

.search-panel form {
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr) minmax(0, 1.12fr) minmax(0, 1.18fr) minmax(0, 0.98fr) minmax(0, 1.12fr) minmax(0, 1.14fr)
    minmax(0, 1.42fr);
  gap: 12px;
  align-items: end;
  padding: 22px 28px;
  border: 1px solid rgba(19, 52, 48, 0.16);
  border-radius: 7px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow);
  text-align: left;
}

.search-panel label {
  display: grid;
  min-width: 0;
  gap: 8px;
  color: #677570;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-panel input,
.search-panel select {
  width: 100%;
  min-width: 0;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  color: var(--ink);
  padding: 0 14px;
  font-size: 12px;
  text-transform: none;
}

.search-panel .btn {
  align-self: end;
  width: 100%;
  height: 46px;
  margin: 0;
  padding: 0 22px;
  white-space: nowrap;
}

.search-panel .btn span {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 29px;
  font-size: 23px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.search-panel .btn:hover span {
  transform: translateX(4px) scale(1.14);
}

.is-filtered-out {
  display: none !important;
}

.search-panel__feedback {
  margin: 14px 0 0;
  color: var(--copper);
  font-size: 13px;
  font-weight: 700;
}

.newsletter .btn .bt-icon {
  width: 26px;
  height: 26px;
}

.newsletter .btn .bt-icon--mail::before {
  font-size: 20px;
}

.search-panel .btn--dark {
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 50, 45, 0.18);
  top: -4% !important;
}

.search-panel .btn--dark::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  content: "";
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.search-panel .btn--dark:hover::before {
  transform: translateX(120%);
}

.search-panel .btn--dark:hover {
  background: #07534c;
  box-shadow: 0 20px 46px rgba(0, 50, 45, 0.26);
}

.about {
  display: grid;
  grid-template-columns: minmax(360px, 680px) 1fr 230px;
  gap: 46px;
  align-items: center;
  width: min(100% - 96px, 1530px);
  margin: 40px auto 60px;
}

.about img {
  width: 100%;
  height: 410px;
  border-radius: 4px;
  object-fit: cover;
}

.about h2,
.featured h2,
.opportunities h2,
.blog h2,
.reel-testimonials h2,
.experience h2,
.consult h2 {
  margin: 0;
  font: 500 clamp(34px, 3vw, 48px)/1.02 var(--serif);
}

.about article p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.signature {
  display: block;
  margin-top: 24px;
  color: var(--green-900);
  font: italic 28px/1.1 var(--serif);
}

.about small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metrics {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0 0 0 34px;
  border-left: 1px solid var(--line);
  list-style: none;
}

.metrics li {
  display: grid;
  gap: 4px;
}

.metrics strong {
  font-size: 25px;
}

.metrics span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.pillars {
  position: relative;
  overflow: hidden;
  padding: 42px max(48px, calc((100vw - 1530px) / 2)) 50px;
  background:
    radial-gradient(circle at 8% 30%, rgba(199, 161, 95, 0.16), transparent 22%),
    linear-gradient(135deg, #003a35, #002d29 58%, #00433d);
  color: #fff8ee;
  text-align: center;
}

.pillars h2 {
  margin: 0 0 36px;
  font: 500 43px/1.05 var(--serif);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.pillars article {
  padding: 0 32px;
  border-right: 1px solid rgba(199, 161, 95, 0.28);
}

.pillars article:last-child {
  border-right: 0;
}

.pillars span {
  color: var(--gold);
  font-size: 44px;
}

.pillars h3 {
  margin: 14px 0 10px;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pillars p {
  margin: 0;
  color: rgba(255, 248, 238, 0.75);
  font-size: 13px;
  line-height: 1.5;
}

.featured,
.opportunities,
.blog,
.reel-testimonials {
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding: 50px 0 56px;
}

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

.section-head a {
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.property-grid {
  display: grid;
  gap: 22px;
}

.property-grid--featured {
  grid-template-columns: repeat(3, 1fr);
}

.property-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 5px;
  background: #10211f;
  color: #fff8ee;
  box-shadow: var(--shadow);
}

.property-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.82));
  content: "";
}

.property-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.property-card:hover img {
  transform: scale(1.07);
}

.property-card > span {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  padding: 7px 10px;
  border-radius: 3px;
  background: var(--copper);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-card div {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.property-card h3 {
  margin: 0;
  color: #fff8ee;
  font-size: 21px;
  font-weight: 600;
}

.property-card p,
.property-card small {
  display: block;
  margin: 4px 0 0;
  color: rgba(255, 248, 238, 0.78);
}

.property-card strong {
  display: block;
  margin-top: 14px;
  color: #fff8ee;
  font-size: 21px;
}

.property-action {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(199, 161, 95, 0.5);
  border-radius: 4px;
  background: rgba(0, 50, 45, 0.82);
  color: #fff8ee;
  padding: 11px 16px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 36px rgba(0, 50, 45, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.property-action:hover {
  border-color: var(--gold);
  background: #07534c;
  box-shadow: 0 20px 46px rgba(0, 50, 45, 0.26);
  transform: translateY(-2px);
}

.region-showcase {
  position: relative;
  padding: 96px 0;
  background: var(--green-950);
  color: #fff8ee;
}

.region-showcase__head {
  display: grid;
  justify-items: start;
  gap: 14px;
  width: min(100% - 96px, 1530px);
  margin: 0 auto 44px;
  max-width: 760px;
}

.region-showcase__head h2 {
  margin: 0;
  font: 500 clamp(32px, 3.4vw, 48px)/1.1 var(--serif);
  letter-spacing: -0.01em;
}

.region-showcase__head p {
  margin: 0;
  color: rgba(255, 248, 238, 0.78);
  font-size: 16px;
  line-height: 1.7;
}

.region-showcase__head small {
  color: rgba(255, 248, 238, 0.48);
  font-size: 11px;
  line-height: 1.5;
}

/* Tabela comparativa */

.region-compare {
  display: grid;
  gap: 1px;
  width: min(100% - 96px, 1530px);
  margin: 0 auto 32px;
  overflow: hidden;
  border: 1px solid rgba(199, 161, 95, 0.28);
  border-radius: 8px;
  background: rgba(199, 161, 95, 0.22);
}

.region-compare__row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 1px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: left;
}

.region-compare__row--head {
  cursor: default;
}

.region-compare__row > span {
  padding: 14px 18px;
  background: rgba(0, 50, 45, 0.94);
  font-size: 13px;
  transition: background 0.2s ease;
}

.region-compare__row--head > span {
  background: rgba(255, 248, 238, 0.06);
  color: var(--gold-soft, #dfc594);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.region-compare__row:not(.region-compare__row--head):hover > span {
  background: rgba(199, 161, 95, 0.16);
}

.region-compare__row.is-active > span {
  background: rgba(199, 161, 95, 0.24);
}

/* Filtro por objetivo */

.region-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(100% - 96px, 1530px);
  margin: 0 auto 36px;
}

.region-filter button {
  border: 1px solid rgba(255, 248, 238, 0.28);
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 248, 238, 0.72);
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.region-filter button:hover {
  border-color: var(--gold);
  color: #fff8ee;
}

.region-filter button.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--green-950);
}

.region-filter__caption {
  width: min(100% - 96px, 1530px);
  margin: -20px auto 36px;
  color: rgba(255, 248, 238, 0.6);
  font-size: 13px;
}

/* Carrossel de cidades */

.region-carousel {
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
}

.region-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(88%, 920px);
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
  padding-bottom: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(199, 161, 95, 0.5) transparent;
}

.region-carousel__track::-webkit-scrollbar {
  height: 6px;
}

.region-carousel__track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(199, 161, 95, 0.5);
}

.region-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid rgba(199, 161, 95, 0.24);
  border-radius: 10px;
  background: #082d29;
}

.region-card--map {
  grid-template-columns: 1fr;
  align-content: stretch;
  background: rgba(0, 32, 29, 0.98);
}

.region-card__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.region-card__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transform: scale(1.06);
  transition: transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}

.region-card:hover .region-card__media img,
.region-card.is-in-view .region-card__media img {
  transform: scale(1);
}

.region-card__badge {
  position: absolute;
  left: 16px;
  top: 16px;
  border-radius: 999px;
  background: rgba(0, 32, 29, 0.86);
  border: 1px solid rgba(199, 161, 95, 0.4);
  color: var(--gold-soft, #dfc594);
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.region-card__body {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 40px;
}

.region-card__body--map {
  align-content: center;
  justify-items: start;
}

.region-card__body h3 {
  margin: 0;
  font: 500 clamp(28px, 2.6vw, 38px)/1.05 var(--serif);
}

.region-card__body > p {
  margin: 0;
  max-width: 460px;
  color: rgba(255, 248, 238, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.region-card__trend {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.region-card__trend-label {
  color: rgba(255, 248, 238, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.region-card__trend-bar {
  position: relative;
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.14);
}

.region-card__trend-bar i {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--gold);
  transform-origin: left;
}

.region-card__trend[data-level="alto"] .region-card__trend-bar i {
  transform: scaleX(0.92);
}

.region-card__trend[data-level="medio-alto"] .region-card__trend-bar i {
  transform: scaleX(0.68);
}

.region-card__trend[data-level="consolidado"] .region-card__trend-bar i {
  transform: scaleX(0.48);
}

.region-card__trend-value {
  color: #fff8ee;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.region-card__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 6px;
  overflow: hidden;
  border: 1px solid rgba(199, 161, 95, 0.3);
  border-radius: 8px;
  background: rgba(199, 161, 95, 0.3);
}

.region-card__stats span {
  display: grid;
  align-content: center;
  min-height: 88px;
  padding: 14px 10px;
  background: rgba(255, 248, 238, 0.08);
  color: rgba(255, 248, 238, 0.68);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
  overflow: hidden;
}

.region-card__stats strong {
  display: block;
  margin-bottom: 6px;
  overflow: hidden;
  color: #fff8ee;
  font: 700 clamp(13px, 1.05vw, 17px)/1.15 var(--sans);
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.region-card__quote {
  margin: 6px 0 0;
  padding-left: 14px;
  border-left: 2px solid rgba(199, 161, 95, 0.5);
  color: rgba(255, 248, 238, 0.82);
  font: 500 15px/1.55 var(--serif);
  font-style: italic;
}

.region-card__quote cite {
  display: block;
  margin-top: 8px;
  color: rgba(255, 248, 238, 0.5);
  font: 700 10px/1 var(--sans);
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.region-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.region-card__actions .btn {
  margin: 0;
}

/* Mapa (mantido dentro do primeiro card do carrossel) */

.region-map {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(199, 161, 95, 0.14), transparent 38%),
    linear-gradient(135deg, rgba(0, 50, 45, 0.94), rgba(0, 32, 29, 0.98));
}

.region-map::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(199, 161, 95, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 161, 95, 0.07) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
  content: "";
}

.region-map svg {
  position: relative;
  z-index: 2;
  width: min(70%, 380px);
  height: auto;
  overflow: hidden;
}

.region-map__glow {
  fill: url(#regionGlow);
  animation: region-pulse 3.8s ease-in-out infinite;
}

.region-map__shape {
  fill: rgba(255, 248, 238, 0.018);
  stroke: rgba(199, 161, 95, 0.34);
  stroke-width: 1.5;
}

.region-map__road {
  fill: none;
  stroke: rgba(199, 161, 95, 0.3);
  stroke-dasharray: 8 10;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.region-map__trace {
  fill: none;
  filter: url("#goldBlur");
  stroke: var(--gold);
  stroke-dasharray: 78 355;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  animation: region-trace 4.8s ease-in-out infinite alternate;
}

.region-map__city circle {
  fill: var(--gold);
  stroke: #fff8ee;
  stroke-width: 3;
  transform-box: fill-box;
  transform-origin: center;
  animation: region-node 2.6s ease-in-out infinite;
}

.region-map__city text {
  fill: #fff8ee;
  font: 800 15px/1 var(--sans);
  letter-spacing: 0.08em;
  paint-order: stroke;
  stroke: rgba(0, 50, 45, 0.85);
  stroke-width: 5;
  text-transform: uppercase;
}

.region-map__distance {
  fill: rgba(255, 248, 238, 0.66);
  font: 700 10px/1 var(--sans);
  letter-spacing: 0.04em;
  stroke: none;
  text-transform: none;
}

.region-map__city--cordeiropolis circle {
  animation-delay: 0.25s;
}

.region-map__city--rioclaro circle {
  animation-delay: 0.5s;
}

.region-map__city--piracicaba circle {
  animation-delay: 0.75s;
}

.region-map__city--americana circle {
  animation-delay: 1s;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
  color: var(--gold);
}

.scroll-cue__mouse {
  position: relative;
  display: inline-grid;
  justify-items: center;
  width: 34px;
  height: 54px;
  border: 1px solid rgba(199, 161, 95, 0.78);
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(199, 161, 95, 0.16);
}

.scroll-cue__mouse i {
  width: 4px;
  height: 9px;
  margin-top: 10px;
  border-radius: 999px;
  background: #fff8ee;
  animation: scroll-dot 1.45s ease-in-out infinite;
}

.scroll-cue__text {
  color: rgba(255, 248, 238, 0.74);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue__arrow {
  position: relative;
  display: inline-block;
  width: 11px;
  height: 26px;
  overflow: hidden;
}

.scroll-cue__arrow::before {
  position: absolute;
  left: 50%;
  top: -18px;
  width: 1px;
  height: 42px;
  background: var(--gold);
  content: "";
  transform: translateX(-50%);
  animation: scroll-line 1.45s ease-in-out infinite;
}

.scroll-cue__arrow::after {
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.scroll-cue__arrow--side {
  width: 26px;
  height: 11px;
}

.scroll-cue__arrow--side::before {
  top: 50%;
  left: -18px;
  width: 42px;
  height: 1px;
  transform: translateY(-50%);
  animation-name: scroll-line-side;
}

.scroll-cue__arrow--side::after {
  left: auto;
  right: 1px;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Navegação do carrossel (dots + setas) */

.region-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(100% - 96px, 1530px);
  margin: 28px auto 0;
}

.region-nav button[data-region-prev],
.region-nav button[data-region-next] {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 248, 238, 0.38);
  border-radius: 50%;
  background: rgba(0, 50, 45, 0.55);
  color: #fff8ee;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.region-nav button[data-region-prev]:hover,
.region-nav button[data-region-next]:hover {
  border-color: var(--gold);
  background: rgba(199, 161, 95, 0.24);
}

.region-nav__dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.region-nav__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 248, 238, 0.5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.region-nav__dots button.is-active {
  transform: scale(1.35);
  border-color: var(--gold);
  background: var(--gold);
}

@keyframes region-trace {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -430;
  }
}

@keyframes region-node {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.28);
  }
}

@keyframes region-pulse {
  0%,
  100% {
    opacity: 0.58;
    transform: scale(0.98);
    transform-origin: center;
  }

  50% {
    opacity: 1;
    transform: scale(1.03);
    transform-origin: center;
  }
}

@keyframes scroll-dot {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes scroll-line {
  0% {
    opacity: 0;
    transform: translate(-50%, -18px);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 22px);
  }
}

@keyframes scroll-line-side {
  0% {
    opacity: 0;
    transform: translate(-18px, -50%);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(22px, -50%);
  }
}

.property-grid--small {
  grid-template-columns: repeat(4, 1fr);
}

.property-grid--small article {
  overflow: hidden;
  border-radius: 4px;
  background: white;
  box-shadow: 0 12px 30px rgba(28, 38, 34, 0.08);
}

.property-grid--small img {
  width: 100%;
  aspect-ratio: 1.95;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.property-grid--small article:hover img {
  transform: scale(1.06);
}

.property-grid--small h3,
.property-grid--small p {
  margin: 12px 14px;
}

.property-grid--small h3 {
  margin-bottom: 4px;
  font-size: 15px;
}

.property-grid--small p {
  margin-top: 0;
  color: var(--ink);
  font-weight: 800;
}

.property-grid--small .property-action {
  margin: 4px 14px 16px;
  background: var(--green-950);
  color: #fff8ee;
  padding: 10px 12px;
  font-size: 10px;
}

.blog {
  padding-top: 26px;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid rgba(20, 53, 49, 0.1);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(28, 38, 34, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(28, 38, 34, 0.13);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1.72;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.blog-card:hover img {
  transform: scale(1.055);
}

.blog-card div {
  padding: 22px 22px 24px;
}

.blog-card span {
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 12px 0 12px;
  color: var(--ink);
  font: 500 29px/1.02 var(--serif);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.blog-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reel-testimonials {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 28px;
  padding: 44px;
  border: 1px solid rgba(199, 164, 105, 0.28);
  border-radius: 4px;
  background:
    radial-gradient(circle at 16% 12%, rgba(199, 164, 105, 0.16), transparent 28%),
    linear-gradient(135deg, #00352f, #002a27 62%, #063f39);
  color: #fff8ee;
}

.reel-testimonials__copy p:not(.eyebrow) {
  max-width: 430px;
  color: rgba(255, 248, 238, 0.72);
  line-height: 1.65;
}

.testimonial-reel {
  display: grid;
  grid-template-columns: 360px 1fr;
  min-height: 324px;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 238, 0.12);
  border-radius: 8px;
  background: rgba(248, 245, 239, 0.06);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.testimonial-reel:focus-visible {
  box-shadow: 0 0 0 2px rgba(199, 164, 105, 0.85);
}

.testimonial-reel__portraits {
  position: relative;
  overflow: hidden;
  min-height: 324px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}

.testimonial-reel__portraits::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 42, 39, 0.12), transparent 28%, transparent 72%, rgba(0, 42, 39, 0.12));
  content: "";
  pointer-events: none;
}

.reel-column {
  position: absolute;
  top: 50%;
  display: grid;
  gap: 8px;
  width: 118px;
  transform: translateY(-50%);
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.reel-column--side {
  display: none;
}

.reel-column--side:first-child {
  left: 22px;
}

.reel-column--main {
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.reel-column--side:last-child {
  right: 22px;
}

.reel-cell {
  width: 118px;
  height: 118px;
  border: 1px solid rgba(248, 245, 239, 0.12);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(248, 245, 239, 0.1), rgba(248, 245, 239, 0.035));
  filter: blur(0.6px);
}

.reel-cell--photo {
  position: relative;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  filter: none;
  opacity: 0.52;
  transform: scale(0.86);
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.reel-cell--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) saturate(0.25) contrast(0.94);
  transition: filter 0.35s ease, transform 0.35s ease;
}

.reel-cell--photo.is-active {
  border-color: rgba(199, 164, 105, 0.82);
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32), 0 0 0 5px rgba(199, 164, 105, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.reel-cell--photo.is-active img {
  filter: grayscale(0) saturate(0.98) contrast(1.02);
  transform: scale(1.04);
}

.reel-cell--photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(220deg, transparent 30%, rgba(199, 164, 105, 0.2), transparent 66%);
  content: "";
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.reel-cell--photo.is-active::after {
  opacity: 1;
}

.testimonial-reel__content {
  display: grid;
  align-content: center;
  padding: 38px 42px;
}

.quote-mark {
  color: rgba(199, 164, 105, 0.5);
  font: 600 72px/0.7 var(--serif);
}

.testimonial-reel blockquote {
  min-height: 116px;
  margin: 0;
  color: #fff8ee;
  font: 500 clamp(20px, 1.9vw, 29px)/1.25 var(--serif);
}

.testimonial-word {
  display: inline-block;
  white-space: nowrap;
}

.testimonial-reel blockquote span {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  animation: scroll-reel-char-rise 0.42s ease forwards;
}

.testimonial-reel cite {
  margin-top: 18px;
  color: rgba(255, 248, 238, 0.66);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonial-reel__controls {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.testimonial-reel__controls button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 248, 238, 0.22);
  border-radius: 50%;
  background: transparent;
  color: #fff8ee;
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.testimonial-reel__controls button:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.08);
}

.testimonial-reel__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.testimonial-reel__dots button {
  width: 22px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.24);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.testimonial-reel__dots button.is-active {
  width: 40px;
  background: var(--gold);
  transform: translateY(-1px);
}

@keyframes scroll-reel-char-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scroll-reel-exit {
  to {
    opacity: 0;
    transform: translateY(-12px);
  }
}

.experience {
  position: relative;
  min-height: 325px;
  overflow: hidden;
  color: #fff8ee;
  background: var(--green-950);
}

.experience img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
}

.experience::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 44, 40, 0.96), rgba(5, 44, 40, 0.45), rgba(5, 44, 40, 0.08));
  content: "";
}

.experience__copy {
  position: relative;
  z-index: 2;
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding: 52px 0;
}

.experience h2 {
  max-width: 560px;
}

.play {
  position: absolute;
  left: 52%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 2px solid #fff8ee;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.08);
  color: #fff8ee;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, background 0.25s ease;
}

.play:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%) scale(1.06);
}

.experience .btn {
  margin-top: 28px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 24, 22, 0.82);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal__frame {
  width: min(100%, 980px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(199, 161, 95, 0.42);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.38);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.28s ease;
}

.video-modal.is-open .video-modal__frame {
  transform: translateY(0) scale(1);
}

.video-modal iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 248, 238, 0.34);
  border-radius: 50%;
  background: rgba(255, 248, 238, 0.08);
  color: #fff8ee;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.video-modal__close:hover {
  border-color: var(--gold);
  background: rgba(199, 161, 95, 0.18);
  transform: scale(1.08);
}

body.is-video-open {
  overflow: hidden;
}

.footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 48px;
  padding: 44px max(48px, calc((100vw - 1530px) / 2));
  background: var(--green-950);
  color: rgba(255, 248, 238, 0.78);
  border-top: 1px solid rgba(199, 161, 95, 0.42);
}

.brand--footer img {
  width: 180px;
}

.footer p {
  max-width: 320px;
  line-height: 1.6;
}

.footer nav,
.footer address {
  display: grid;
  align-content: start;
  gap: 12px;
  font-style: normal;
}

.footer strong {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.footer a,
.footer span {
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 16px max(48px, calc((100vw - 1530px) / 2));
  background: var(--green-950);
  color: rgba(255, 248, 238, 0.55);
  border-top: 1px solid rgba(199, 161, 95, 0.18);
  font-size: 11.5px;
}

.footer-bottom__credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 248, 238, 0.72);
  text-decoration: none;
}

.footer-bottom__logo {
  height: 14px;
  width: auto;
  opacity: 0.9;
}

.footer-bottom__credit:hover {
  color: var(--gold);
}

.footer-bottom__credit strong {
  color: var(--gold);
  font-weight: 700;
}

.consult {
  display: none;
}

.page-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: end;
  color: #fff8ee;
  background: var(--green-950);
}

.page-hero--tall {
  min-height: 700px;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding: 170px 0 78px;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font: 400 clamp(48px, 5.4vw, 88px)/0.98 var(--serif);
}

.page-hero p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 248, 238, 0.82);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.55;
}

.page-hero strong {
  display: block;
  margin-top: 26px;
  color: var(--gold);
  font-size: 32px;
}

.page-hero .play {
  position: static;
  margin-top: 34px;
  transform: none;
}

.page-hero .play:hover {
  transform: scale(1.06);
}

.detail,
.split,
.flow,
.values,
.article-grid,
.testimonials,
.quiz,
.consult-block,
.gallery {
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
}

.detail {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 56px;
  padding: 68px 0 38px;
}

.detail__panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  box-shadow: var(--shadow);
}

.detail__panel span {
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail h2,
.split h2,
.consult-block h2,
.quiz h2 {
  margin: 14px 0 24px;
  font: 400 clamp(34px, 3.2vw, 52px)/1.02 var(--serif);
}

.detail p,
.split p,
.flow p,
.values p,
.article-grid p,
.testimonials p,
.consult-block p,
.quiz output {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.spec-grid strong {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  padding: 34px 0 70px;
}

.gallery img {
  width: 100%;
  height: 360px;
  border-radius: 5px;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
  padding: 78px 0;
}

.split img {
  width: 100%;
  height: 520px;
  border-radius: 5px;
  object-fit: cover;
}

.values,
.flow,
.article-grid,
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 34px 0 76px;
}

.values article,
.flow article,
.article-grid article,
.testimonials article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  box-shadow: 0 12px 32px rgba(28, 38, 34, 0.08);
}

.values strong,
.flow span {
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.values h3,
.flow h3,
.article-grid h3 {
  margin: 16px 0 10px;
  font: 400 28px/1.08 var(--serif);
}

.article-grid img {
  width: calc(100% + 56px);
  height: 230px;
  margin: -28px -28px 24px;
  object-fit: cover;
}

.consult-block {
  margin-bottom: 80px;
  padding: 38px;
  border-radius: 6px;
  background: var(--green-950);
  color: #fff8ee;
}

.consult-block form {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 12px;
  margin-top: 28px;
}

.consult-block input {
  height: 50px;
  border: 1px solid rgba(255, 248, 238, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ee;
  padding: 0 16px;
}

.consult-block input::placeholder {
  color: rgba(255, 248, 238, 0.62);
}

.search-panel--page {
  margin-top: -44px;
  margin-bottom: 20px;
}

.search-panel--page::before {
  display: none;
}

.flow span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.testimonials article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
}

.testimonials p {
  font: 400 27px/1.22 var(--serif);
  color: var(--ink);
}

.quiz {
  max-width: 980px;
  padding: 76px 0 90px;
}

.quiz__options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 26px 0;
}

.quiz__options button {
  min-height: 126px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.quiz__options button:hover,
.quiz__options button.is-active {
  border-color: var(--gold);
  background: #fffaf1;
  transform: translateY(-4px);
}

.quiz output {
  display: block;
  min-height: 92px;
  padding: 24px;
  border-left: 3px solid var(--copper);
  background: white;
}

.property-card,
.property-grid--small a {
  color: inherit;
}

.property-grid--small a {
  overflow: hidden;
  border-radius: 4px;
  background: white;
  box-shadow: 0 12px 30px rgba(28, 38, 34, 0.08);
}

.property-grid--small a:hover img {
  transform: scale(1.06);
}

.number-band,
.why-conceitto,
.masonry-showcase,
.type-showcase,
.map-section,
.geo-search,
.newsletter {
  width: min(100% - 96px, 1530px);
  margin-inline: auto;
}

.number-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.56);
}

.number-band article {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.number-band article:last-child {
  border-right: 0;
}

.number-band strong {
  color: var(--green-900);
  font: 500 44px/0.95 var(--serif);
}

.number-band p {
  max-width: 260px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}

.why-conceitto {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: center;
  padding: 68px 0;
}

.why-conceitto h2,
.masonry-showcase h2,
.type-showcase h2,
.map-section h2,
.geo-search h2,
.newsletter h2 {
  margin: 0;
  font: 500 clamp(34px, 3vw, 50px)/1.02 var(--serif);
}

.why-conceitto p,
.map-section p,
.geo-search p,
.newsletter p {
  color: var(--muted);
  line-height: 1.68;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.comparison article {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 14px 34px rgba(28, 38, 34, 0.08);
}

.comparison article:last-child {
  background: linear-gradient(145deg, #003a35, #002e2a);
  color: #fff8ee;
}

.comparison span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison ul {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.comparison li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.55;
}

.comparison article:last-child li {
  color: rgba(255, 248, 238, 0.78);
}

.comparison li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
}

.masonry-showcase {
  padding: 18px 0 62px;
}

.masonry-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 92px;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.masonry-card {
  position: relative;
  grid-row: span 3;
  min-height: 276px;
  overflow: hidden;
  border-radius: 5px;
  background: #10211f;
  color: #fff8ee;
  box-shadow: var(--shadow);
}

.masonry-card.is-tall {
  grid-row: span 4;
}

.masonry-card.is-wide {
  grid-column: span 2;
}

.masonry-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.84));
  content: "";
}

.masonry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.masonry-card:hover img {
  transform: scale(1.06);
}

.masonry-card span,
.masonry-card h3,
.masonry-card p,
.masonry-card strong,
.masonry-card .property-action {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
}

.masonry-card span {
  top: 18px;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 3px;
  background: var(--copper);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.masonry-card h3 {
  bottom: 124px;
  margin: 0;
  font: 600 25px/1 var(--serif);
}

.masonry-card p {
  bottom: 98px;
  margin: 0;
  color: rgba(255, 248, 238, 0.76);
  font-size: 12px;
}

.masonry-card strong {
  bottom: 68px;
  font-size: 18px;
}

.masonry-card .property-action {
  bottom: 20px;
  width: fit-content;
  margin-top: 0;
  right: auto;
}

.masonry-grid[data-property-layout="editorial"] {
  grid-auto-rows: auto;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
}

.masonry-grid[data-property-layout="editorial"] .masonry-card {
  grid-column: auto;
  grid-row: auto;
  min-height: 320px;
}

.masonry-grid[data-property-layout="editorial"] .masonry-card:nth-child(1) {
  grid-row: span 2;
  min-height: 660px;
}

.masonry-grid[data-property-layout="compact"] {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: auto;
}

.masonry-grid[data-property-layout="compact"] .masonry-card {
  grid-column: auto;
  grid-row: auto;
  min-height: 250px;
}

.type-showcase {
  padding: 18px 0 62px;
}

.type-row {
  display: flex;
  gap: 8px;
  height: clamp(360px, 40vw, 560px);
  border-radius: 5px;
}

.type-panel {
  position: relative;
  flex: 1 1 0;
  overflow: hidden;
  border-radius: 5px;
  background: #10211f;
  color: #fff8ee;
  box-shadow: var(--shadow);
  transition: flex 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.type-row .type-panel:hover {
  flex: 2.2 1 0;
}

.type-panel::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0.86));
  content: "";
}

.type-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.type-panel:hover img {
  transform: scale(1.06);
}

.type-panel__content {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.type-panel__content span:first-child {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: 3px;
  background: var(--copper);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.type-panel__content h3 {
  margin: 0 0 8px;
  font: 600 25px/1.1 var(--serif);
}

.type-panel__content p {
  max-width: 320px;
  margin: 0 0 16px;
  color: rgba(255, 248, 238, 0.76);
  font-size: 12px;
  line-height: 1.55;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.type-panel:hover .type-panel__content p {
  opacity: 1;
}

.type-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 26px;
  align-items: stretch;
  padding: 10px 0 66px;
}

.map-section__copy {
  padding: 38px;
  border-radius: 5px;
  background: var(--green-950);
  color: #fff8ee;
}

.map-section__copy p {
  color: rgba(255, 248, 238, 0.72);
}

.map-city-search {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-city-search select {
  border: 1px solid rgba(200, 164, 105, 0.42);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(0, 50, 45, 0.94);
  color: #fff8ee;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
}

.geo-search {
  padding: 10px 0 66px;
}

.geo-search__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: 38px;
  border-radius: 5px;
  background: var(--green-950);
  color: #fff8ee;
}

.geo-search__copy p {
  color: rgba(255, 248, 238, 0.72);
}

.geo-search__status {
  font-size: 13px;
  color: var(--gold-soft);
}

.geo-search__location {
  width: 100%;
  padding: 14px 18px;
  border-radius: 5px;
  border: 1px solid rgba(200, 164, 105, 0.42);
  background: rgba(0, 50, 45, 0.5);
  color: #fff8ee;
  font-size: 14px;
}

.geo-search__location strong {
  color: var(--gold-soft);
}

.geo-search__map {
  width: 100%;
  margin-top: 20px;
  border-radius: 5px;
  overflow: hidden;
  min-height: 420px;
  background: var(--cream-2);
}

.geo-search__map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.map-section iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 5px;
  filter: saturate(0.82) contrast(0.96);
  box-shadow: var(--shadow);
}

.newsletter {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
  align-items: center;
  margin-bottom: 0;
  padding: 42px;
  border-top: 1px solid rgba(200, 164, 105, 0.32);
  background:
    radial-gradient(circle at 88% 16%, rgba(200, 164, 105, 0.14), transparent 28%),
    var(--green-950);
  color: #fff8ee;
}

.newsletter p {
  color: rgba(255, 248, 238, 0.72);
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
}

.newsletter input {
  height: 48px;
  border: 1px solid rgba(255, 248, 238, 0.18);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff8ee;
  padding: 0 15px;
}

.newsletter input::placeholder {
  color: rgba(255, 248, 238, 0.58);
}

.floating-cta {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 3px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 248, 238, 0.22);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: #fff8ee;
  box-shadow: 0 18px 44px rgba(71, 31, 19, 0.26);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
}

.floating-cta--reveal-on-scroll {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.floating-cta--near-footer {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.floating-cta--reveal-on-scroll.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(71, 31, 19, 0.34);
}

.floating-cta span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-cta--whatsapp {
  background: linear-gradient(135deg, #2fd66b, #1fae52);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 44px rgba(15, 86, 44, 0.32);
}

.floating-cta--whatsapp:hover {
  box-shadow: 0 24px 56px rgba(15, 86, 44, 0.4);
}

.floating-cta__dot {
  position: relative;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #eafff2;
  animation: floating-cta-pulse 2s ease-out infinite;
}

@keyframes floating-cta-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(234, 255, 242, 0.65);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(234, 255, 242, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(234, 255, 242, 0);
  }
}

.floating-cta strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.business-opportunity {
  display: grid;
  grid-template-columns: 1.55fr 0.78fr;
  gap: 24px;
  width: min(100% - 96px, 1530px);
  margin: 0 auto 64px;
}

.business-opportunity__panel {
  display: grid;
  gap: 28px;
  padding: 42px;
  border-radius: 36px;
  background: #f1f0ee;
}

.business-opportunity__intro {
  display: grid;
  grid-template-columns: 1fr 0.48fr;
  gap: 32px;
  align-items: start;
}

.business-opportunity h2 {
  max-width: 760px;
  margin: 0;
  color: #080b0a;
  font: 500 clamp(48px, 5vw, 82px)/0.98 var(--serif);
}

.business-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

.business-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(8, 11, 10, 0.08);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.46);
  color: #131615;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
}

.business-tags span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #080b0a;
  content: "";
}

.business-alert {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  border-radius: 999px;
  background: #fff;
  padding: 10px 12px 10px 12px;
}

.business-alert > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(8, 11, 10, 0.08);
  border-radius: 50%;
  background: #f4f4f3;
  color: #080b0a;
  font-size: 24px;
}

.business-alert p {
  margin: 0;
  color: #151817;
  font-size: 17px;
  font-weight: 600;
}

.business-alert a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  border-radius: 999px;
  background: #f7f7f6;
  color: #080b0a;
  padding: 0 8px 0 24px;
  font-weight: 700;
}

.business-alert a strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #080b0a;
  color: #fff;
  font-size: 22px;
}

.business-faq {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.business-faq article {
  min-height: 250px;
  border-radius: 22px;
  background: #fff;
  padding: 28px;
}

.business-faq span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(8, 11, 10, 0.15);
  border-radius: 50%;
  color: #080b0a;
  font-weight: 700;
}

.business-faq h3 {
  margin: 34px 0 18px;
  color: #080b0a;
  font: 500 30px/1.08 var(--serif);
}

.business-faq p {
  margin: 0;
  color: rgba(8, 11, 10, 0.62);
  line-height: 1.55;
}

.business-opportunity__media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--green-950);
}

.business-opportunity__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-sale-card {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  padding: 26px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2);
}

.business-sale-card > span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 99px;
  background: rgba(200, 116, 80, 0.12);
  color: var(--copper);
  padding: 8px 11px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.business-sale-card h3 {
  margin: 0;
  color: #080b0a;
  font: 600 31px/1.05 var(--serif);
}

.business-sale-card p {
  margin: 12px 0 20px;
  color: rgba(8, 11, 10, 0.54);
  font-size: 13px;
  font-weight: 600;
}

.business-sale-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(8, 11, 10, 0.07);
  padding-top: 20px;
}

.business-sale-card strong {
  color: #080b0a;
  font-size: 28px;
}

.business-sale-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: #080b0a;
  color: #fff;
  padding: 9px 9px 9px 22px;
  font-size: 13px;
  font-weight: 700;
}

.business-sale-card em {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #080b0a;
  font-style: normal;
  font-size: 20px;
}

@media (max-width: 1180px) {
  .header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav,
  .header__actions {
    display: none;
  }

  .nav.is-open {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    justify-self: stretch;
    width: auto;
    display: grid;
    gap: 0;
    padding: 18px;
    border-radius: 0;
    background: rgba(5, 44, 40, 0.96);
  }

  .nav.is-open .nav__cursor {
    display: none;
  }

  .nav.is-open a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .search-panel form,
  .about,
  .pillars__grid,
  .property-grid--featured,
  .property-grid--small,
  .footer,
  .detail,
  .split,
  .values,
  .flow,
  .article-grid,
  .testimonials,
  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .consult-block form,
  .spec-grid,
  .quiz__options {
    grid-template-columns: 1fr 1fr;
  }

  .about {
    align-items: start;
  }

  .metrics {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .region-card {
    grid-template-columns: 1fr;
  }

  .region-card__media img {
    min-height: 280px;
  }

  .region-carousel__track {
    grid-auto-columns: min(92%, 640px);
  }
}

@media (max-width: 760px) {
  .header,
  .header.is-scrolled,
  .hero__content,
  .page-hero__content,
  .search-panel,
  .about,
  .featured,
  .opportunities,
  .experience__copy,
  .detail,
  .split,
  .flow,
  .values,
  .article-grid,
  .testimonials,
  .quiz,
  .consult-block,
  .gallery {
    width: min(100% - 32px, 1530px);
  }

  .header.is-scrolled {
    padding-inline: 16px;
  }

  .header .brand img {
    width: 198px;
  }

  .hero {
    min-height: 700px;
  }

  .hero__content {
    padding-top: 150px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero__side {
    display: none;
  }

  .search-panel {
    margin-top: -28px;
  }

  .search-panel form,
  .about,
  .pillars__grid,
  .property-grid--featured,
  .property-grid--small,
  .footer,
  .metrics,
  .detail,
  .split,
  .values,
  .flow,
  .article-grid,
  .testimonials,
  .gallery,
  .consult-block form,
  .spec-grid,
  .quiz__options {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .page-hero--tall {
    min-height: 620px;
  }

  .page-hero h1 {
    font-size: 46px;
  }

  .page-hero__content {
    padding-top: 146px;
  }

  .gallery img,
  .split img {
    height: 300px;
  }

  .section-head {
    display: grid;
  }

  .about img {
    height: 300px;
  }

  .pillars {
    padding-inline: 24px;
  }

  .pillars article {
    border-right: 0;
    border-bottom: 1px solid rgba(199, 161, 95, 0.24);
    padding: 24px 0;
  }

  .property-card {
    min-height: 340px;
  }

  .region-showcase__head,
  .region-compare,
  .region-filter,
  .region-carousel,
  .region-nav {
    width: min(100% - 32px, 1530px);
  }

  .region-compare {
    overflow-x: auto;
  }

  .region-compare__row {
    min-width: 600px;
  }

  .region-carousel__track {
    grid-auto-columns: min(90%, 380px);
    gap: 14px;
  }

  .region-card__media img {
    min-height: 220px;
  }

  .region-card__body {
    padding: 26px;
    gap: 10px;
  }

  .region-card__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .region-map {
    min-height: 320px;
  }

  .region-map svg {
    width: min(88%, 340px);
  }

  .region-nav button[data-region-prev],
  .region-nav button[data-region-next] {
    display: none;
  }

  .play {
    position: static;
    margin-top: 28px;
    transform: none;
  }

  .play:hover {
    transform: scale(1.06);
  }
}

@media (max-width: 1180px) {
  .blog__grid {
    grid-template-columns: 1fr 1fr;
  }

  .number-band,
  .why-conceitto,
  .business-opportunity,
  .business-opportunity__intro,
  .comparison,
  .map-section,
  .newsletter {
    grid-template-columns: 1fr 1fr;
  }

  .masonry-grid,
  .masonry-grid[data-property-layout="compact"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry-grid[data-property-layout="editorial"] {
    grid-template-columns: 1fr 1fr;
  }

  .type-row {
    height: 420px;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }

  .reel-testimonials,
  .testimonial-reel {
    grid-template-columns: 1fr;
  }

  .testimonial-reel__portraits {
    min-height: 250px;
  }
}

@media (max-width: 760px) {
  .blog,
  .reel-testimonials,
  .number-band,
  .why-conceitto,
  .masonry-showcase,
  .type-showcase,
  .business-opportunity,
  .map-section,
  .geo-search,
  .newsletter {
    width: min(100% - 32px, 1530px);
  }

  .type-row {
    flex-direction: column;
    height: auto;
  }

  .type-panel {
    flex: none !important;
    height: 220px;
  }

  .type-panel__content p {
    opacity: 1;
  }

  .number-band,
  .why-conceitto,
  .business-opportunity,
  .business-opportunity__intro,
  .business-faq,
  .business-alert,
  .comparison,
  .masonry-grid,
  .masonry-grid[data-property-layout="editorial"],
  .masonry-grid[data-property-layout="compact"],
  .map-section,
  .geo-search,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .number-band article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .business-opportunity__panel {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .business-opportunity h2 {
    font-size: 46px;
  }

  .business-alert {
    grid-template-columns: 1fr;
    border-radius: 22px;
    padding: 18px;
  }

  .business-alert a {
    width: 100%;
    justify-content: space-between;
  }

  .business-faq article {
    min-height: auto;
  }

  .business-opportunity__media {
    min-height: 520px;
    border-radius: 26px;
  }

  .business-sale-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .comparison article {
    min-height: auto;
  }

  .masonry-card,
  .masonry-card.is-tall,
  .masonry-grid[data-property-layout="editorial"] .masonry-card:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
    min-height: 310px;
  }

  .masonry-card.is-wide {
    grid-column: auto;
  }

  .map-section__copy,
  .geo-search__copy,
  .newsletter {
    padding: 28px 22px;
  }

  .map-section iframe,
  .geo-search__map,
  .geo-search__map iframe {
    min-height: 360px;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
    padding: 11px 14px;
  }

  body:has(.pd-mobile-cta) .floating-cta {
    bottom: 84px;
  }

  .blog__grid {
    grid-template-columns: 1fr;
  }

  .reel-testimonials {
    padding: 28px 20px;
  }

  .testimonial-reel {
    grid-template-columns: 1fr;
  }

  .testimonial-reel__portraits {
    min-height: 230px;
  }

  .testimonial-reel__content {
    padding: 26px 22px 30px;
  }

  .testimonial-reel blockquote {
    min-height: 150px;
  }

  .reel-column {
    width: 96px;
  }

  .reel-cell {
    width: 96px;
    height: 96px;
  }

  .reel-column--side:first-child {
    left: 10px;
  }

  .reel-column--side:last-child {
    right: 10px;
  }
}

/* ==================== Página interna de imóvel (pd-*) ==================== */

.pd-breadcrumb {
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding: 118px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pd-breadcrumb a {
  color: var(--muted);
}

.pd-breadcrumb a:hover {
  color: var(--copper);
}

.pd-breadcrumb span {
  margin: 0 6px;
  color: rgba(95, 110, 104, 0.5);
}

.pd-breadcrumb strong {
  color: var(--green-900);
}

.pd-header {
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding: 14px 0 26px;
}

.pd-header__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.pd-header h1 {
  margin: 6px 0 0;
  font: 500 clamp(36px, 4vw, 58px)/1.02 var(--serif);
  color: var(--green-950);
}

.pd-header__price {
  flex: 0 0 auto;
  text-align: right;
}

.pd-header__price strong {
  display: block;
  font: 500 clamp(26px, 2.6vw, 36px)/1 var(--serif);
  color: var(--copper);
}

.pd-header__code {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pd-header p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Galeria bento */

.pd-gallery {
  width: min(100% - 96px, 1530px);
  margin: 0 auto 8px;
}

.pd-gallery__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  height: clamp(360px, 46vw, 560px);
  border-radius: 6px;
  overflow: hidden;
}

.pd-gallery__cell {
  position: relative;
  display: block;
  overflow: hidden;
  background: #10211f;
  cursor: pointer;
}

.pd-gallery__cell--main {
  grid-row: 1 / -1;
}

.pd-gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pd-gallery__cell:hover img {
  transform: scale(1.05);
}

.pd-gallery__more {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(4, 30, 27, 0.62);
  color: #fff8ee;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pd-gallery__cell:hover .pd-gallery__more {
  opacity: 1;
}

.pd-gallery__cell--last .pd-gallery__more {
  opacity: 1;
  background: rgba(4, 30, 27, 0.72);
}

/* Sub-nav sticky */

.pd-subnav {
  position: sticky;
  top: 97px;
  z-index: 15;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(10px);
}

.pd-subnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding: 14px 0;
}

.pd-subnav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pd-subnav__links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.pd-subnav__links a:hover,
.pd-subnav__links a.is-active {
  background: var(--green-950);
  color: #fff8ee;
}

.pd-subnav__cta {
  flex: 0 0 auto;
}

/* Stats com ícone */

.pd-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding: 30px 0 0;
  list-style: none;
}

.pd-stats li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.pd-stats li:last-child {
  border-right: 0;
  padding-right: 0;
}

.pd-stats .bt-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--green-900);
}

.pd-stats .bt-icon::before {
  width: 20px;
  height: 20px;
  margin-top: 6px;
}

.pd-stats strong {
  display: block;
  color: var(--green-950);
  font-size: 17px;
  line-height: 1.1;
}

.pd-stats span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Resumo: descrição + card de preço */

.pd-summary {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 48px;
  align-items: start;
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding: 40px 0 64px;
}

.pd-summary__copy .eyebrow {
  margin-top: 6px;
}

.pd-summary__copy h2 {
  margin: 0 0 16px;
  font: 500 clamp(28px, 2.6vw, 38px)/1.15 var(--serif);
  color: var(--green-950);
}

.pd-summary__copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.pd-summary__copy p + p {
  margin-top: 14px;
}

.pd-price-card {
  position: sticky;
  top: 169px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding-bottom: 80px;
}

.pd-price-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.pd-price-card__row:first-child {
  padding-top: 0;
}

.pd-price-card__row:last-of-type {
  border-bottom: 0;
}

.pd-price-card__row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pd-price-card__row strong {
  color: var(--green-950);
  font-size: 15px;
}

.pd-price-card__row--total strong {
  font: 500 30px/1 var(--serif);
  color: var(--copper);
}

.pd-price-card__actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.pd-price-card__actions .btn {
  width: 100%;
  justify-content: center;
}

.pd-price-card__secondary {
  border-color: var(--line);
  background: var(--cream-2);
  color: var(--green-950);
}

.pd-price-card__secondary:hover {
  background: #e7ddc4;
  border-color: rgba(199, 161, 95, 0.5);
}

/* Ficha técnica categorizada */

.pd-specs {
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding: 18px 0 64px;
}

.pd-specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.pd-specs__group {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
}

.pd-specs__grid--single .pd-specs__group {
  grid-column: 1 / -1;
}

.pd-specs__grid--single .pd-specs__group ul {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 28px;
}

.pd-specs__group h3 {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pd-specs__group ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pd-specs__group li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
}

.pd-specs__group li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
}

/* Amenidades por categoria */

.pd-amenities {
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding: 18px 0 64px;
}

.pd-amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.pd-amenities__group {
  padding: 26px 28px;
  border-radius: 5px;
  background: var(--green-950);
  color: #fff8ee;
}

.pd-amenities__group h3 {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pd-amenities__group ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: rgba(255, 248, 238, 0.82);
}

.pd-amenities__group li {
  position: relative;
  padding-left: 20px;
}

.pd-amenities__group li::before {
  position: absolute;
  left: 0;
  color: var(--gold-soft);
  content: "✓";
}

/* Vídeo */

.pd-video {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding: 18px 0 70px;
}

.pd-video__media {
  position: relative;
  height: 360px;
  border-radius: 6px;
  overflow: hidden;
}

.pd-video__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-video h2 {
  margin: 6px 0 14px;
  font: 500 clamp(28px, 2.6vw, 38px)/1.15 var(--serif);
  color: var(--green-950);
}

.pd-video p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/* Localização */

.pd-location {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding: 18px 0 70px;
}

.pd-location h2 {
  margin: 6px 0 14px;
  font: 500 clamp(28px, 2.6vw, 38px)/1.15 var(--serif);
  color: var(--green-950);
}

.pd-location > div:first-child p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.pd-location__nearby {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
  list-style: none;
  padding: 0;
}

.pd-location__nearby li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
}

.pd-location__nearby .bt-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--copper);
  flex: 0 0 auto;
}

.pd-location__nearby .bt-icon::before {
  width: 20px;
  height: 20px;
  margin-top: 6px;
}

.pd-location__nearby strong {
  display: block;
  font-size: 13px;
  color: var(--green-950);
}

.pd-location__nearby span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.pd-location__map {
  position: relative;
  height: 100%;
  min-height: 340px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pd-location__map iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Agendar visita: calendário */

.pd-visit {
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding: 18px 0 70px;
}

.pd-visit__panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  overflow: hidden;
  border-radius: 6px;
  background: var(--green-950);
  color: #fff8ee;
}

.pd-visit__copy {
  padding: 44px;
}

.pd-visit__copy h2 {
  margin: 6px 0 14px;
  font: 500 clamp(26px, 2.4vw, 34px)/1.15 var(--serif);
}

.pd-visit__copy p {
  color: rgba(255, 248, 238, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.pd-visit__selected {
  display: block;
  margin: 22px 0;
  padding: 12px 16px;
  border: 1px dashed rgba(255, 248, 238, 0.32);
  border-radius: 5px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
}

.pd-calendar {
  display: flex;
  justify-content: center;
  padding: 40px 44px;
  background: rgba(255, 248, 238, 0.04);
}

.pd-calendar__inner {
  width: 100%;
  max-width: 380px;
}

.pd-calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #fff8ee;
  font: 500 20px/1 var(--serif);
  text-transform: capitalize;
}

.pd-calendar__nav {
  display: flex;
  gap: 8px;
}

.pd-calendar__nav button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 248, 238, 0.28);
  border-radius: 50%;
  background: transparent;
  color: #fff8ee;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.pd-calendar__nav button:hover {
  border-color: var(--gold);
  background: rgba(199, 161, 95, 0.16);
}

.pd-calendar__weekdays,
.pd-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.pd-calendar__weekdays span {
  padding-bottom: 8px;
  color: rgba(255, 248, 238, 0.5);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.pd-calendar__day {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 248, 238, 0.86);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pd-calendar__day:disabled {
  color: rgba(255, 248, 238, 0.22);
  cursor: default;
}

.pd-calendar__day:not(:disabled):hover {
  border-color: var(--gold);
}

.pd-calendar__day.is-today {
  border-color: rgba(199, 161, 95, 0.5);
}

.pd-calendar__day.is-selected {
  background: var(--copper);
  color: #fff8ee;
}

/* Similares */

.pd-similar {
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding: 18px 0 70px;
}

/* CTA fixa mobile */

.pd-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  gap: 10px;
  padding: 12px 16px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, 0.1);
}

.pd-mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Lightbox da galeria */

.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 24, 22, 0.9);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.pd-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pd-lightbox__frame {
  position: relative;
  width: min(100%, 1100px);
}

.pd-lightbox__frame img {
  display: block;
  width: 100%;
  max-height: 76vh;
  border-radius: 6px;
  object-fit: contain;
  background: #000;
}

.pd-lightbox__counter {
  margin-top: 14px;
  color: rgba(255, 248, 238, 0.7);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pd-lightbox__close,
.pd-lightbox__prev,
.pd-lightbox__next {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 248, 238, 0.34);
  border-radius: 50%;
  background: rgba(255, 248, 238, 0.08);
  color: #fff8ee;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.pd-lightbox__close:hover,
.pd-lightbox__prev:hover,
.pd-lightbox__next:hover {
  border-color: var(--gold);
  background: rgba(199, 161, 95, 0.18);
}

.pd-lightbox__close {
  top: -58px;
  right: 0;
}

.pd-lightbox__prev {
  top: 50%;
  left: -60px;
  transform: translateY(-50%);
}

.pd-lightbox__next {
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
}

body.is-lightbox-open {
  overflow: hidden;
}

#fotos,
#detalhes,
#amenidades,
#localizacao,
#agendar,
#similares {
  scroll-margin-top: 178px;
}

@media (max-width: 1180px) {
  .pd-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }

  .pd-gallery__cell--main {
    grid-column: 1 / -1;
    grid-row: 1 / 2;
  }

  .pd-summary,
  .pd-video,
  .pd-location {
    grid-template-columns: 1fr;
  }

  .pd-price-card {
    position: static;
  }

  .pd-specs__grid,
  .pd-amenities__grid {
    grid-template-columns: 1fr 1fr;
  }

  .pd-specs__grid--single .pd-specs__group ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-visit__panel {
    grid-template-columns: 1fr;
  }

  .pd-lightbox__prev {
    left: 10px;
  }

  .pd-lightbox__next {
    right: 10px;
  }
}

@media (max-width: 760px) {
  .pd-breadcrumb {
    width: min(100% - 32px, 1530px);
    padding-top: 100px;
  }

  .pd-header,
  .pd-gallery,
  .pd-stats,
  .pd-summary,
  .pd-specs,
  .pd-amenities,
  .pd-video,
  .pd-location,
  .pd-visit,
  .pd-similar {
    width: min(100% - 32px, 1530px);
  }

  .pd-subnav {
    display: none;
  }

  .pd-gallery__grid {
    grid-template-rows: repeat(3, 160px);
  }

  .pd-specs__grid,
  .pd-amenities__grid {
    grid-template-columns: 1fr;
  }

  .pd-specs__grid--single .pd-specs__group ul {
    grid-template-columns: 1fr;
  }

  .pd-location__nearby {
    grid-template-columns: 1fr;
  }

  .pd-mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 74px;
  }

  .pd-lightbox {
    padding: 16px;
  }

  .pd-lightbox__prev,
  .pd-lightbox__next {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .pd-lightbox__prev {
    left: 4px;
  }

  .pd-lightbox__next {
    right: 4px;
  }
}

/* ==================== Página de resultados da busca ==================== */

.results-page {
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding: 18px 0 80px;
}

.results-page__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.results-page__head h1 {
  margin: 6px 0 0;
  font: 500 clamp(32px, 3.4vw, 46px)/1.05 var(--serif);
  color: var(--green-950);
}

.results-page__summary {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--green-900);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.results-page__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}

.results-sidebar {
  position: sticky;
  top: 116px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.results-sidebar h2 {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.results-sidebar form {
  display: grid;
  gap: 16px;
}

.results-sidebar label {
  display: grid;
  gap: 7px;
  color: #677570;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.results-sidebar input,
.results-sidebar select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  color: var(--ink);
  padding: 0 12px;
  font-size: 12px;
  text-transform: none;
}

.results-sidebar__submit {
  width: 100%;
  margin-top: 4px;
}

.results-sidebar__clear {
  padding: 4px;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.results-sidebar__clear:hover {
  color: var(--copper);
}

.property-grid--results {
  grid-template-columns: repeat(3, 1fr);
}

.results-empty {
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  text-align: center;
}

.results-empty h2 {
  margin: 6px auto 12px;
  max-width: 560px;
  font: 500 clamp(24px, 2.4vw, 32px)/1.2 var(--serif);
  color: var(--green-950);
}

.results-empty > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--muted);
  line-height: 1.6;
}

.results-empty form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.results-empty input {
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  color: var(--ink);
  padding: 0 15px;
  font-size: 13px;
}

.results-empty .btn {
  grid-column: 1 / -1;
  width: 100%;
  height: 48px;
}

.results-empty__note {
  margin: 20px auto 0;
  max-width: 520px;
  color: var(--green-900);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .results-page__layout {
    grid-template-columns: 1fr;
  }

  .results-sidebar {
    position: static;
  }

  .property-grid--results {
    grid-template-columns: repeat(2, 1fr);
  }

  .results-empty form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .results-page {
    width: min(100% - 32px, 1530px);
  }

  .property-grid--results {
    grid-template-columns: 1fr;
  }

  .results-empty {
    padding: 32px 20px;
  }
}

/* ==================== Página de contato ==================== */

.contact-channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-channels a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-channels a:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.contact-channels .bt-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--copper);
  flex: 0 0 auto;
}

.contact-channels .bt-icon::before {
  width: 19px;
  height: 19px;
}

.contact-channels strong {
  display: block;
  font-size: 14px;
  color: var(--green-950);
}

.contact-channels span span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.contact-hours {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-hours > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-hours .bt-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--green-900);
  flex: 0 0 auto;
}

.contact-hours strong {
  display: block;
  font-size: 14px;
  color: var(--green-950);
}

.contact-hours span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.intent-section {
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding: 18px 0 64px;
}

.intent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.intent-grid a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 22px;
  border-radius: 6px;
  background: var(--green-950);
  color: #fff8ee;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.intent-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.intent-grid .bt-icon {
  color: var(--gold-soft);
}

.intent-grid strong {
  font: 500 21px/1.1 var(--serif);
}

.intent-grid span:not(.bt-icon) {
  color: rgba(255, 248, 238, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.contact-faq {
  width: min(100% - 96px, 1530px);
  margin: 0 auto;
  padding: 18px 0 64px;
}

.social-follow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 96px, 1530px);
  margin: 0 auto 70px;
  padding: 40px 44px;
  border-radius: 6px;
  background: var(--cream-2);
}

.social-follow h2 {
  margin: 6px 0 8px;
  font: 500 clamp(24px, 2.4vw, 32px)/1.2 var(--serif);
  color: var(--green-950);
}

.social-follow p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
}

.social-follow__btn {
  flex: 0 0 auto;
  color: var(--green-950);
  border-color: rgba(20, 53, 49, 0.3);
  background: var(--paper);
}

a.btn.btn--outline.social-follow__btn {
  margin-top: -78px;
}

@media (max-width: 1180px) {
  .intent-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-channels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .intent-section,
  .contact-faq {
    width: min(100% - 32px, 1530px);
  }

  .intent-grid {
    grid-template-columns: 1fr;
  }

  .social-follow {
    width: min(100% - 32px, 1530px);
    padding: 28px 22px;
    text-align: center;
    justify-content: center;
  }

  a.btn.btn--outline.social-follow__btn {
    margin-top: 8px;
  }
}

/* Avaliações no Google (página de contato) */

.google-reviews {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 96px, 1530px);
  margin: 0 auto 24px;
  padding: 36px 44px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.google-reviews h2 {
  margin: 6px 0 8px;
  font: 500 clamp(22px, 2.2vw, 28px)/1.25 var(--serif);
  color: var(--green-950);
}

.google-reviews > div:first-child p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
}

.google-reviews__badge {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.google-reviews__badge strong {
  font: 500 30px/1 var(--serif);
  color: var(--green-950);
}

.google-reviews__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}

.google-reviews__badge > span:not(.google-reviews__stars) {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.google-reviews__badge a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .google-reviews {
    width: min(100% - 32px, 1530px);
    padding: 28px 22px;
    text-align: center;
    justify-content: center;
  }

  .google-reviews__badge {
    flex: 1 1 100%;
    width: 100%;
    justify-content: center;
  }
}

