:root {
  --green-950: #0d1a17;
  --green-900: #142a25;
  --green-800: #1d3b34;
  --green-100: #eff6f3;
  --gold-500: #B79867;
  --gold-100: #fdf8ed;
  --paper: #fcfcf9;
  --surface: #ffffff;
  --ink: #121c19;
  --muted: #64746e;
  --line: #e2e8e4;
  --shadow-sm: 0 2px 4px rgba(16, 35, 31, 0.04);
  --shadow: 0 20px 48px -12px rgba(16, 35, 31, 0.12);
  --shadow-lg: 0 32px 64px -16px rgba(16, 35, 31, 0.18);
  --glass: rgba(255, 255, 255, 0.72);
  --radius: 12px;
  --container: 1200px;
  font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

.is-hidden {
  display: none !important;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  padding-bottom: 10px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand img {
  width: 138px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: var(--green-900);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 0;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-500);
}

.language-switch {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 0 5px 14px rgba(16, 35, 31, 0.06);
}

.lang-btn {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
}

.lang-btn.active {
  background: var(--green-900);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
}

.hero-section {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 54px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2.55rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  margin: 32px 0 0;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--gold-100);
  color: var(--green-950);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  box-shadow: inset 6px 0 0 var(--gold-500);
}

.hero-text {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--green-800);
  font-size: 1.35rem;
  line-height: 1.5;
  font-weight: 700;
}

.terms-note,
.soft-note {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.terms-note {
  margin: 12px 0 0;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(16, 35, 31, 0.13);
}

.btn.primary {
  background: var(--green-900);
  color: #fff;
}

.btn.secondary {
  background: #fff;
  color: var(--green-900);
  border-color: var(--line);
}

.btn small {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.8;
}

.btn-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.btn.secondary .btn-icon {
  background: var(--green-100);
}

.contact-symbol svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: currentColor;
}

.whatsapp-symbol {
  color: #128c4a;
}

.btn.primary .whatsapp-symbol,
.small-btn.primary .whatsapp-symbol {
  color: #fff;
}

.trust-points {
  margin-top: 28px;
  display: grid;
  gap: 10px;
  color: var(--green-900);
  font-weight: 750;
}

.trust-points div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  font-size: 0.86rem;
}

.hero-media {
  position: relative;
}

.land-photo {
  position: relative;
  min-height: 540px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  place-items: end start;
  padding: 24px;
  overflow: hidden;
}

.hero-rotator {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 0.9s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 35, 31, 0.05), rgba(16, 35, 31, 0.36));
}

.hero-slide.is-active {
  opacity: 1;
}

.land-photo span,
.map-placeholder span,
.thumb {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(16, 35, 31, 0.64);
  border-radius: var(--radius);
  padding: 8px 11px;
  font-size: 0.78rem;
  font-weight: 800;
}

.location-chip {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--green-900);
  box-shadow: var(--shadow);
  font-weight: 900;
}

.section {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

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

.section-heading.centered {
  display: block;
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.section-heading h2,
.trust-band h2,
.contact-strip h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 540px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.55;
}

.land-layout {
  display: block;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.filters-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 14px;
  margin: 0 0 12px;
  box-shadow: 0 10px 24px rgba(16, 35, 31, 0.05);
}

.filters-bar label {
  display: grid;
  gap: 6px;
  color: var(--green-900);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.filters-bar select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--green-950);
  padding: 0 12px;
  font-weight: 800;
}

.clear-filters {
  min-height: 44px;
  border: 1px solid var(--green-900);
  border-radius: var(--radius);
  background: #fff;
  color: var(--green-900);
  padding: 0 16px;
  cursor: pointer;
  font-weight: 900;
}

.filter-count {
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.property-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.property-image {
  min-height: 172px;
  display: grid;
  align-content: space-between;
  padding: 14px;
  background:
    linear-gradient(140deg, rgba(23, 49, 44, 0.74), rgba(199, 163, 92, 0.26)),
    repeating-linear-gradient(28deg, rgba(255, 255, 255, 0.12) 0 14px, transparent 14px 28px),
    #dae7dd;
  background-position: center;
  background-size: cover;
}

.property-map-link {
  cursor: pointer;
}

.property-map-link:hover,
.property-map-link:focus-visible {
  filter: brightness(1.04);
}

.property-image.has-photo {
  background-image:
    linear-gradient(180deg, rgba(16, 35, 31, 0.12), rgba(16, 35, 31, 0.36)),
    var(--photo);
}

.property-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-900);
  font-size: 0.76rem;
  font-weight: 900;
}

.map-hint {
  width: fit-content;
  border-radius: 999px;
  background: rgba(16, 35, 31, 0.76);
  color: #fff;
  padding: 7px 10px;
  font-size: 0.74rem;
  font-weight: 900;
}

.property-body {
  padding: 18px;
}

.property-body h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 1.18rem;
  line-height: 1.25;
}

.property-location {
  display: inline-block;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.map-text-link {
  color: var(--green-800);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(199, 163, 92, 0.7);
}

.map-text-link:hover,
.map-text-link:focus-visible {
  color: var(--gold-500);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0;
}

.price-box {
  border-radius: var(--radius);
  background: var(--green-100);
  padding: 12px;
}

.price-box span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.price-box strong {
  display: block;
  margin-top: 4px;
  color: var(--green-950);
  font-size: 1.02rem;
}

.property-meta {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: var(--green-800);
  font-size: 0.94rem;
  font-weight: 700;
}

.property-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.small-btn {
  width: 100%;
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--green-900);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
}

.share-btn {
  border-color: var(--green-900);
  color: var(--green-900);
}

.small-btn.primary {
  background: var(--green-900);
  color: #fff;
  border-color: var(--green-900);
}

.detail-panel {
  position: sticky;
  top: 98px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  background: rgba(16, 35, 31, 0.66);
  padding: 18px;
}

.property-modal-card {
  position: relative;
  width: min(840px, 100%);
  max-height: min(92vh, 1000px);
  overflow-y: auto;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: sticky;
  top: 12px;
  left: calc(100% - 54px);
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--green-900);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 950;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 70;
  width: min(420px, calc(100% - 32px));
  transform: translateX(-50%);
  border-radius: var(--radius);
  background: var(--green-950);
  color: #fff;
  padding: 13px 16px;
  box-shadow: 0 16px 34px rgba(16, 35, 31, 0.28);
  text-align: center;
  font-weight: 850;
}

.detail-empty,
.detail-content {
  padding: 20px;
}

.detail-empty h3,
.detail-content h3 {
  margin: 0 0 8px;
  color: var(--green-950);
}

.detail-empty p,
.detail-content p {
  color: var(--muted);
  line-height: 1.55;
}

.detail-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.detail-gallery::-webkit-scrollbar {
  height: 6px;
}

.detail-gallery::-webkit-scrollbar-track {
  background: var(--green-100);
  border-radius: 3px;
}

.detail-gallery::-webkit-scrollbar-thumb {
  background: var(--gold-500);
  border-radius: 3px;
}

.thumb {
  flex: 0 0 85%;
  aspect-ratio: 16/10;
  scroll-snap-align: center;
  border-radius: var(--radius);
  background: var(--green-100);
  background-position: center;
  background-size: cover;
  border: 1px solid var(--line);
  transition: opacity 0.3s ease;
}

@media (min-width: 721px) {
  .thumb {
    flex: 0 0 320px;
  }
}

.thumb.has-photo {
  background-image:
    linear-gradient(180deg, rgba(16, 35, 31, 0.08), rgba(16, 35, 31, 0.38)),
    var(--photo);
}

.map-placeholder {
  min-height: 130px;
  margin: 14px 0;
}

.detail-list {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.modal-actions .btn {
  flex: 1 1 200px;
  justify-content: center;
}

.modal-actions .share-btn {
  flex: 0 0 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
}

.process-section {
  padding-top: 52px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.process-steps article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(16, 35, 31, 0.06);
}

.process-steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: #fff;
  font-weight: 950;
}

.process-steps h3 {
  margin: 18px 0 8px;
  color: var(--green-950);
  font-size: 1.06rem;
  line-height: 1.28;
}

.process-steps p,
.trust-band p,
.faq-grid p,
.contact-strip p {
  color: var(--muted);
  line-height: 1.58;
}

.trust-band {
  background: var(--green-950);
  color: #fff;
  margin-top: 36px;
  padding: 82px 0;
}

.trust-band-grid {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 44px;
  align-items: center;
}

.trust-band h2 {
  color: #fff;
}

.trust-cards {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.trust-cards article {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  padding: 15px;
}

.trust-cards span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--green-950);
  font-weight: 950;
}

.trust-cards p,
.about-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.about-copy {
  border-left: 5px solid var(--gold-500);
  padding-left: 26px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.about-copy p {
  margin-top: 16px;
}

.gustavo-photo {
  width: 150px;
  aspect-ratio: 1;
  border: 4px solid var(--gold-100);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s ease;
}

.gustavo-photo:hover {
  transform: scale(1.05) rotate(1deg);
}

.back-to-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 45;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--green-900);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--green-900);
  color: #fff;
  transform: translateY(-4px);
}

.reviews-section {
  padding-bottom: 32px;
}

.reviews-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 30px;
  box-shadow: 0 10px 26px rgba(16, 35, 31, 0.06);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold-500);
  font-size: 0.8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.reviews-card h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.reviews-card p {
  color: var(--muted);
  line-height: 1.58;
}

.review-request {
  border-left: 5px solid var(--gold-500);
  background: var(--gold-100);
  border-radius: var(--radius);
  padding: 20px;
}

.review-request p {
  margin-top: 0;
  color: var(--green-900);
  font-weight: 750;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--green-950);
  font-weight: 900;
}

summary::marker {
  color: var(--gold-500);
}

.contact-strip {
  width: min(var(--container), calc(100% - 32px));
  margin: 34px auto 0;
  border-radius: var(--radius);
  background: var(--gold-100);
  padding: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.contact-strip .contact-actions {
  margin-top: 0;
}

address {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--green-900);
  font-style: normal;
  font-weight: 800;
}

.social-links,
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links {
  grid-column: 1 / -1;
}

.social-links a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(23, 49, 44, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: var(--green-900);
  padding: 9px 12px;
  font-weight: 900;
}

.social-icon {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 950;
}

.footer-social {
  justify-content: center;
  margin: 2px 0 14px;
}

.footer-social a {
  background: #fff;
  font-size: 0.84rem;
}

.floating-whatsapp,
.floating-sms {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 12px;
  background: #18ad4f;
  color: #fff;
  box-shadow: 0 12px 28px rgba(16, 35, 31, 0.28);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.floating-sms {
  background: var(--green-900);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible,
.floating-sms:hover,
.floating-sms:focus-visible {
  background: #128c42;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(16, 35, 31, 0.34);
}

.floating-sms:hover,
.floating-sms:focus-visible {
  background: var(--green-800);
}

.floating-whatsapp svg,
.floating-sms svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.site-footer {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 64px;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.site-footer img {
  width: 126px;
  margin: 0 auto 34px;
  display: block;
}

.site-footer p {
  max-width: 780px;
  margin: 8px auto;
  line-height: 1.55;
}

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

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 16px;
  }

  body.menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .hero-section,
  .land-layout,
  .trust-band-grid,
  .reviews-card,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding-top: 42px;
  }

  .land-photo {
    min-height: 380px;
  }

  .detail-panel {
    position: static;
  }

  .section-heading {
    display: block;
  }

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

  .clear-filters {
    grid-column: 1 / -1;
  }

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

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

  .about-copy {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .gustavo-photo {
    width: 120px;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    width: min(100% - 20px, var(--container));
    min-height: 70px;
    gap: 10px;
  }

  .brand img {
    width: 116px;
  }

  .language-switch {
    padding: 3px;
  }

  .lang-btn {
    min-width: 34px;
    min-height: 30px;
    font-size: 0.72rem;
  }

  .hero-section,
  .section,
  .trust-band-grid,
  .contact-strip,
  .site-footer {
    width: min(100% - 24px, var(--container));
  }

  .hero-copy h1 {
    font-size: 2.55rem;
  }

  .hero-text {
    font-size: 1.12rem;
  }

  .hero-actions,
  .contact-actions,
  .btn {
    justify-content: center;
    width: 100%;
  }

  .property-grid,
  .process-steps,
  .faq-grid,
  .price-row,
  .filters-bar {
    grid-template-columns: 1fr;
  }

  .about-copy {
    grid-template-columns: 1fr;
    padding-left: 18px;
  }

  .reviews-card {
    padding: 22px;
  }

  .review-request {
    border-left: 0;
    border-top: 5px solid var(--gold-500);
  }

  .gustavo-photo {
    width: 150px;
  }

  .property-modal-card {
    max-height: 92vh;
  }

  .contact-strip {
    padding: 24px;
  }

  .floating-whatsapp,
  .floating-sms {
    right: 16px;
    bottom: 16px;
    width: 62px;
    height: 62px;
  }

  .floating-whatsapp svg,
  .floating-sms svg {
    width: 36px;
    height: 36px;
  }

  .trust-band,
  .section {
    padding: 58px 0;
  }
}

/* ── Estado do grid de lotes (carregando / erro) ── */
.grid-state {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 48px 16px;
  font-size: 1.05rem;
}

/* ── Depoimentos (puxados do Firestore) ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.testimonials-grid.is-hidden {
  display: none;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(20, 42, 37, 0.06);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.testimonial-avatar-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-800);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-who {
  display: flex;
  flex-direction: column;
}

.testimonial-who strong {
  color: var(--ink);
  font-size: 1rem;
}

.testimonial-who span {
  color: var(--muted);
  font-size: 0.85rem;
}

.testimonial-card p {
  color: var(--ink);
  line-height: 1.55;
  font-size: 0.97rem;
  margin: 0;
}

/* ── Vendidos recentemente (faixa de prova social) ── */
.sold-section .property-image.sold-image {
  min-height: 172px;
}
.sold-card .sold-image.has-photo {
  filter: grayscale(0.55) brightness(0.82);
}
.badge-sold {
  background: #b3261e;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sold-card .property-body h3 {
  color: var(--green-900);
}
.sold-card .property-location {
  color: var(--ink);
  opacity: 0.75;
  margin: 0;
  font-size: 0.95rem;
}

/* ── Mapa dos terrenos (Leaflet) ── */
.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(16, 35, 31, 0.16);
  border: 1px solid rgba(16, 35, 31, 0.08);
}
#property-map {
  width: 100%;
  height: 460px;
}
@media (max-width: 640px) {
  #property-map { height: 360px; }
}
.map-popup {
  display: grid;
  gap: 6px;
  min-width: 180px;
  text-align: center;
}
.map-popup-photo {
  width: 100%;
  height: 110px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
.map-popup strong { color: var(--green-900); font-size: 0.95rem; }
.map-popup span { color: var(--ink); opacity: 0.8; font-size: 0.85rem; }
.map-popup-btn {
  margin-top: 4px;
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--green-900);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
}
.map-popup-btn:hover { filter: brightness(1.1); }
