:root {
  --color-ink: #17211b;
  --color-ink-soft: #46554c;
  --color-forest: #244634;
  --color-forest-dark: #102419;
  --color-leaf: #6f8e57;
  --color-clay: #a35f3b;
  --color-gold: #c69b51;
  --color-sage: #e8efe6;
  --color-mist: #f5f7f3;
  --color-paper: #fffefa;
  --color-line: #dce4d8;
  --shadow-soft: 0 18px 48px rgba(16, 36, 25, 0.14);
  --shadow-strong: 0 28px 70px rgba(16, 36, 25, 0.24);
  --container: min(1120px, calc(100% - 40px));
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: #fff;
  background: var(--color-forest-dark);
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px max(20px, calc((100vw - 1120px) / 2));
  color: #fff;
  background: linear-gradient(180deg, rgba(16, 36, 25, 0.82), rgba(16, 36, 25, 0.46));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(16, 36, 25, 0.94);
  box-shadow: 0 16px 32px rgba(16, 36, 25, 0.22);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--color-forest-dark);
  background: #fff;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.9rem;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #fff;
}

.nav-cta {
  padding: 10px 16px;
  color: var(--color-forest-dark) !important;
  background: #fff;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  overflow: hidden;
  color: #fff;
}

.hero picture,
.hero-image,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 94svh;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 22, 15, 0.88) 0%, rgba(9, 22, 15, 0.62) 42%, rgba(9, 22, 15, 0.22) 100%),
    linear-gradient(0deg, rgba(9, 22, 15, 0.45), rgba(9, 22, 15, 0.06));
}

.hero-content {
  position: relative;
  align-self: end;
  width: var(--container);
  margin: 0 auto;
  padding: calc(var(--header-height) + 68px) 0 52px;
}

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

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
  line-height: 1.04;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.9rem, 9vw, 7.6rem);
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--color-forest-dark);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
}

.button-dark {
  color: #fff;
  background: var(--color-forest-dark);
}

.button-light {
  color: var(--color-forest-dark);
  background: #fff;
}

.hero-facts {
  gap: 10px;
  margin-top: 42px;
}

.hero-facts div {
  min-width: 190px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
}

.hero-price {
  display: grid;
  gap: 4px;
  line-height: 1.2;
}

.hero-price-old {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: line-through;
  text-decoration-color: var(--color-gold);
  text-decoration-thickness: 2px;
}

.hero-price-opportunity {
  color: #fff;
  font-size: 1.02rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #fff;
  background: var(--color-forest-dark);
}

.strip-item {
  padding: 22px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.strip-item span,
.strip-item strong {
  display: block;
}

.strip-item span {
  color: var(--color-gold);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.strip-item strong {
  margin-top: 4px;
  font-size: 1rem;
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--color-mist);
}

.two-column,
.split-layout,
.location-layout,
.water-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.section-heading h2,
.final-cta h2 {
  max-width: 760px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.section-heading.centered {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.lead-copy {
  color: var(--color-ink-soft);
  font-size: 1.1rem;
}

.lead-copy p,
.split-copy p,
.location-copy p,
.price-copy p,
.water-layout .section-heading p,
.final-cta p {
  margin: 18px 0 0;
  color: var(--color-ink-soft);
  font-size: 1.05rem;
}

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

.feature-card,
.investment-card {
  min-height: 210px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(16, 36, 25, 0.06);
}

.feature-mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #fff;
  background: var(--color-forest);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-card h3,
.media-card h3,
.investment-card h3 {
  margin: 22px 0 8px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.feature-card p,
.media-card p,
.investment-card p {
  margin: 0;
  color: var(--color-ink-soft);
}

.gallery-section {
  background: #fff;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 22px;
}

.filter-button {
  padding: 10px 15px;
  color: var(--color-ink-soft);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  color: #fff;
  background: var(--color-forest);
  border-color: var(--color-forest);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 14px;
}

.gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background: var(--color-forest-dark);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.gallery-card[hidden] {
  display: none;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(9, 22, 15, 0.7));
}

.gallery-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  font-weight: 850;
  text-align: left;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.04);
}

.split-media,
.map-panel,
.rural-collage,
.price-panel,
.doc-panel {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.split-media {
  overflow: hidden;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.split-copy h2,
.location-copy h2,
.price-copy h2,
.documentation-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--color-ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 14px;
  height: 2px;
  background: var(--color-gold);
}

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

.media-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(16, 36, 25, 0.06);
}

.media-wide {
  grid-column: span 2;
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-card div {
  padding: 22px;
}

.water-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 36, 25, 0.94), rgba(36, 70, 52, 0.9)),
    var(--color-forest);
}

.water-section .eyebrow {
  color: #f0c66c;
}

.water-section h2,
.water-section p {
  color: #fff;
}

.water-layout {
  align-items: start;
}

.water-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.water-gallery figure {
  position: relative;
  min-height: 230px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.water-gallery figure:first-child {
  grid-column: span 2;
  min-height: 360px;
}

.water-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.water-gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  color: var(--color-forest-dark);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-list span {
  padding: 9px 12px;
  color: var(--color-forest-dark);
  background: var(--color-sage);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.rural-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
  overflow: hidden;
  padding: 12px;
  background: #fff;
}

.rural-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.rural-collage img:first-child {
  grid-row: span 2;
}

.location-layout {
  align-items: stretch;
}

.distance-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.distance-list div {
  padding: 16px 0;
  border-top: 1px solid var(--color-line);
}

.distance-list dt {
  color: var(--color-clay);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.distance-list dd {
  margin: 2px 0 0;
  color: var(--color-ink);
  font-weight: 780;
}

.map-panel {
  overflow: hidden;
  background: #fff;
}

.map-frame {
  position: relative;
  overflow: hidden;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.map-radius {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(58%, 330px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: rgba(201, 149, 71, 0.16);
  border: 3px solid rgba(201, 149, 71, 0.92);
  border-radius: 50%;
  box-shadow:
    0 0 0 999px rgba(9, 22, 15, 0.08),
    0 16px 36px rgba(9, 22, 15, 0.2);
  pointer-events: none;
}

.map-panel p {
  margin: 0;
  padding: 14px 16px;
  color: var(--color-ink-soft);
  font-size: 0.86rem;
  background: #fff;
  border-top: 1px solid var(--color-line);
}

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

.investment-card {
  min-height: 180px;
}

.investment-card h3 {
  margin-top: 0;
}

.documentation-section {
  padding-top: 0;
}

.doc-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  align-items: center;
  padding: 38px;
  color: #fff;
  background: var(--color-forest-dark);
}

.doc-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.price-section {
  padding-top: 0;
}

.price-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  background: linear-gradient(135deg, #fff, #f3f6ef);
  border: 1px solid var(--color-line);
}

.price-box {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--color-forest-dark);
  border-radius: var(--radius);
}

.price-line {
  display: grid;
  gap: 4px;
  padding-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.price-line strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  line-height: 1;
}

.old-price {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--color-gold);
}

.price-line.highlight span {
  color: var(--color-gold);
  font-weight: 850;
  text-transform: uppercase;
}

.final-cta {
  padding: 104px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(16, 36, 25, 0.94), rgba(16, 36, 25, 0.64)),
    url("../images/localizacao/entrada-principal.jpg") center / cover;
}

.final-cta-content {
  max-width: 760px;
}

.final-cta p {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.84);
}

.final-cta .button {
  margin-top: 28px;
}

.site-footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #09160f;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.site-footer p {
  margin: 4px 0 0;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  z-index: 80;
  right: 18px;
  border: 0;
  box-shadow: var(--shadow-strong);
}

.whatsapp-float {
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  color: #fff;
  background: #1d7f52;
  border-radius: 999px;
  font-weight: 900;
}

.back-to-top {
  bottom: 86px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--color-forest-dark);
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lightbox {
  width: min(1040px, calc(100vw - 28px));
  padding: 0;
  color: #fff;
  background: #09160f;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.lightbox::backdrop {
  background: rgba(9, 22, 15, 0.78);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #09160f;
}

.lightbox p {
  margin: 0;
  padding: 14px 18px 18px;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: rgba(9, 22, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    background: rgba(16, 36, 25, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    box-shadow: var(--shadow-strong);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 15px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-cta {
    margin: 10px;
    text-align: center;
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .trust-strip,
  .feature-grid,
  .media-grid,
  .investment-grid,
  .two-column,
  .split-layout,
  .reverse,
  .location-layout,
  .water-layout,
  .price-panel,
  .doc-panel {
    grid-template-columns: 1fr;
  }

  .strip-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .media-wide {
    grid-column: auto;
  }

  .price-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-image {
    min-height: 92svh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 22, 15, 0.48) 0%, rgba(9, 22, 15, 0.84) 58%, rgba(9, 22, 15, 0.96) 100%),
      linear-gradient(90deg, rgba(9, 22, 15, 0.58), rgba(9, 22, 15, 0.24));
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 84px);
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 4.6rem);
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button,
  .price-box .button,
  .final-cta .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    min-width: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading.centered {
    text-align: left;
  }

  .feature-card,
  .investment-card {
    min-height: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .gallery-large {
    grid-column: auto;
    grid-row: auto;
  }

  .water-gallery {
    grid-template-columns: 1fr;
  }

  .water-gallery figure:first-child {
    grid-column: auto;
    min-height: 260px;
  }

  .rural-collage {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 230px);
  }

  .rural-collage img:first-child {
    grid-row: auto;
  }

  .map-panel iframe {
    height: 360px;
  }

  .doc-panel,
  .price-panel {
    padding: 24px;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .back-to-top {
    right: 14px;
    bottom: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
