:root {
  --primary: #47362d;
  --secondary: #a49380;
  --third: #ece6d8;
  --fourth: #81736b;
  --fifth: #9a9a9a;
  --white: #ffffff;
  --container: min(1180px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Figtree", sans-serif;
  color: var(--primary);
  background: var(--third);
}

.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;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -44px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white);
}

.skip-link:focus {
  top: 12px;
}

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

.fixed-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 45;
  width: 100%;
  max-width: 618px;
  min-height: 118px;
  padding-top: 12px;
  background: var(--primary);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.31);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: opacity .3s ease, transform .3s ease;
}

.fixed-block.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.helvetia-logo {
  width: 205px;
  margin: 0 0 24px 50px;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  padding-left: 31px;
  background: var(--secondary);
}

.fixed-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
}

.fixed-cta p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.fixed-cta span {
  font-size: 1.05rem;
  line-height: 1;
}

.fixed-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  align-self: stretch;
  background: rgba(71, 54, 45, 0.08);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-video-wrap,
.hero-video-wrap::after {
  position: absolute;
  inset: 0;
}

.hero-video-wrap::after {
  content: "";
  background: rgba(20, 12, 7, 0.42);
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 416px);
  align-items: center;
  gap: 56px;
  min-height: 100vh;
  padding: 52px 0 48px;
}

.hero-brand {
  max-width: 560px;
  color: var(--white);
  text-align: center;
}

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

.hero-logo {
  display: block;
  width: min(416px, 62vw);
  margin: 0 auto 60px;
}

.hero-title-wrap {
  width: fit-content;
  margin: 0 auto;
}

.hero-title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.hero-title-line::before,
.hero-title-line::after {
  content: "";
  width: 128px;
  height: 1px;
  background: var(--white);
}

.line-text {
  font-size: clamp(1.15rem, 1.8vw, 2.2rem);
  font-weight: 300;
  letter-spacing: .14em;
  white-space: nowrap;
}

.hero-metric {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  width: fit-content;
  margin: 0 auto;
}

.hero-metric img {
  display: block;
  width: clamp(180px, 24vw, 314px);
}

.hero-metric span {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1;
}

.hero-metric sup {
  top: -.55em;
  font-size: .48em;
}

.hero-address {
  margin: 56px 0 0;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  font-weight: 400;
  letter-spacing: .12em;
}

.hero-form-shell {
  position: relative;
}

.hero-form {
  padding: 56px 40px 62px;
  background: rgba(71, 54, 45, 0.96);
}

.hero-form h2 {
  margin: 0 0 16px;
  color: var(--third);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: .04em;
  text-align: center;
}

.hero-form p {
  margin: 0 0 28px;
  color: var(--secondary);
  font-size: .98rem;
  line-height: 1.45;
  text-align: center;
}

.hero-form form {
  display: grid;
  gap: 10px;
}

.hero-form input {
  height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(164, 147, 128, 0.35);
  background: transparent;
  color: var(--white);
}

.hero-form input::placeholder {
  color: rgba(164, 147, 128, 0.8);
}

.hero-form button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 178px;
  height: 44px;
  margin: 14px 0 0 auto;
  border: 0;
  background: var(--third);
  color: var(--primary);
  cursor: pointer;
}

.section-tradicao,
.copy-image-section,
.section-arquitetura,
.implantacao-section,
.gpci-section {
  position: relative;
}

.section-tradicao {
  padding: 92px 0;
  background: #fffdf7;
}

.tradicao-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 46px;
  align-items: start;
}

.section-tradicao-media {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
}

.section-tradicao-media > img {
  width: 100%;
  height: 100%;
  min-height: 565px;
  object-fit: cover;
}

.tradicao-copy {
  max-width: 620px;
  padding: 10px 0 0;
  background: transparent;
}

.tradicao-prose {
  display: grid;
  gap: 14px;
}

.tradicao-prose p {
  margin: 0;
}

.tradicao-lead,
.tradicao-close {
  font-size: 1.08rem;
  line-height: 1.8;
}

.tradicao-lead {
  max-width: 30ch;
}

.tradicao-close {
  max-width: 34ch;
}

.tradicao-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-bottom: 26px;
}

.tradicao-copy p,
.copy-panel p,
.author-block p,
.footer-legal p {
  margin: 0 0 15px;
  font-size: 1rem;
  line-height: 1.72;
  font-weight: 300;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--primary);
  font-weight: 500;
}

.tradicao-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  font-size: .92rem;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}

.tradicao-play img {
  width: 44px;
  height: 44px;
  min-height: 0;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.28));
}

.image-band {
  position: relative;
}

.image-band-colonia {
  margin-top: 24px;
}

.image-band img {
  width: 100%;
  height: auto;
}

.image-band-label {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 14px;
  background: var(--third);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 400;
}

.image-band-label.left {
  left: 0;
  justify-content: flex-end;
}

.image-band-label.right {
  right: 0;
  justify-content: flex-start;
}

.copy-image-section {
  padding: 96px 0;
}

.copy-image-section.alt {
  background: rgba(236, 230, 216, 0.76);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  gap: 46px;
  align-items: center;
}

.split-layout.reverse {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
}

.copy-panel {
  max-width: 540px;
}

.right-copy {
  margin-left: auto;
}

.copy-title {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-bottom: 28px;
}

.copy-title.single {
  margin-bottom: 28px;
}

.image-panel img,
.architecture-media img,
.gpci-media img,
.author-portrait {
  width: 100%;
  height: auto;
}

.panel-footnote {
  margin-top: 18px;
  color: var(--fourth);
  font-size: .98rem;
  font-weight: 300;
}

.valoriza-section {
  padding-top: 40px;
}

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

.brown-panel {
  padding: 40px 36px 32px;
  background: var(--primary);
}

.brown-panel p,
.brown-panel .panel-footnote {
  color: rgba(236, 230, 216, 0.9);
}

.brown-panel .copy-title {
  margin-bottom: 20px;
}

.architecture-cluster {
  padding: 96px 0 70px;
  background: #fbf8f1;
}

.architecture-intro {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: start;
  margin-bottom: 42px;
}

.architecture-copy {
  max-width: 520px;
}

.arquitetura-title {
  width: min(460px, 100%);
  margin-bottom: 28px;
}

.architecture-media img {
  width: 100%;
}

.architecture-authors {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 42px;
}

.author-card {
  display: grid;
  gap: 24px;
  align-content: start;
}

.author-portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.author-block {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(236, 230, 216, 0.18);
}

.author-block.light {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  color: var(--primary);
}

.author-block.light span {
  color: var(--fourth);
}

.author-block.light p {
  color: var(--primary);
}

.author-block.light .video-link {
  color: var(--primary);
}

.author-block.no-border {
  padding-top: 0;
  border-top: 0;
}

.author-block span {
  display: block;
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: .95rem;
  font-weight: 300;
}

.author-block .video-link {
  margin: 16px 0 18px;
  color: var(--third);
}

.author-block p {
  color: rgba(236, 230, 216, 0.88);
}

.amenities-section {
  display: grid;
  gap: 24px;
}

.amenities-section .image-band + .image-band {
  margin-top: 0;
}

.amenity-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.amenities-section .image-band-label {
  z-index: 2;
}

.implantacao-section {
  padding: 90px 0 0;
  background: #4a382e;
}

.implantacao-shell {
  display: grid;
  grid-template-columns: minmax(360px, 42%) minmax(0, 58%);
  gap: 0;
  align-items: stretch;
}

.implantacao-box {
  padding: 68px 42px 54px;
  background: #b4a493;
  color: var(--white);
}

.implantacao-title-wrap {
  margin-bottom: 26px;
}

.implantacao-line {
  display: block;
  width: 1px;
  height: 68px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.implantacao-title-wrap h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 3vw, 3.7rem);
  font-weight: 700;
  line-height: 1.05;
}

.implantacao-box > p {
  max-width: 30ch;
  margin: 0 0 34px;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
}

.implantacao-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin-bottom: 28px;
}

.implantacao-list div {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  font-size: .96rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.96);
}

.implantacao-list span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 20px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 700;
}

.implantacao-list strong {
  font-weight: 400;
}

.implantacao-list.is-collapsed div:nth-child(n+17) {
  display: none;
}

.toggle-list {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 156px;
  min-height: 42px;
  border: 0;
  background: var(--primary);
  color: var(--third);
  cursor: pointer;
}

.implantacao-map {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #2c221d;
}

.implantacao-map-scroll {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.implantacao-map-scroll img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center;
}

.central-vendas-section {
  padding: 92px 0;
  background: linear-gradient(180deg, #ffffff 35%, #e3d8cc 35%);
}

.central-vendas-box {
  text-align: center;
  color: var(--primary);
}

.central-vendas-box h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
}

.central-vendas-box p {
  margin: 0 0 24px;
  font-size: 1.1rem;
  font-weight: 300;
}

.central-map-shell {
  overflow: hidden;
  border: 1px solid rgba(71, 54, 45, 0.12);
  box-shadow: 0 18px 42px rgba(71, 54, 45, 0.12);
}

.central-map-shell iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.consultor-section {
  padding: 72px 0 84px;
  background: var(--primary);
  color: var(--third);
}

.consultor-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .85fr);
  gap: 42px;
  align-items: center;
}

.consultor-copy h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  font-weight: 700;
}

.consultor-copy p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(236, 230, 216, 0.86);
}

.consultor-form {
  display: grid;
  gap: 12px;
}

.consultor-form input {
  height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(236, 230, 216, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.consultor-form input::placeholder {
  color: rgba(236, 230, 216, 0.66);
}

.consultor-form button {
  min-height: 48px;
  border: 0;
  background: var(--third);
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
}

.gpci-section {
  padding: 100px 0;
}

.faq-section {
  padding: 90px 0;
  background: #f6f1e7;
}

.faq-grid {
  display: grid;
  gap: 30px;
}

.faq-intro h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.7vw, 3rem);
  font-weight: 700;
}

.faq-intro p {
  margin: 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.75;
  color: #5e5048;
}

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

.faq-item {
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(71, 54, 45, 0.08);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.45;
}

.faq-item p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.7;
  color: #5e5048;
}

.gpci-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.gpci-copy > img {
  width: 180px;
  margin-bottom: 24px;
}

.gpci-media {
  position: relative;
}

.site-footer {
  padding: 56px 0 28px;
  background: #2e2520;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 32px;
}

.footer-column h2 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.footer-column p {
  margin: 0;
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.footer-column {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.legal-trigger {
  color: rgba(255, 255, 255, 0.82);
}

.legal-trigger {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: underline;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  grid-column: 1 / -1;
  padding-top: 18px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: .84rem;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
}

.legal-modal.is-open {
  display: block;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.legal-modal-dialog {
  position: relative;
  width: min(760px, calc(100vw - 32px));
  max-height: min(80vh, 760px);
  margin: 8vh auto 0;
  padding: 28px 24px 24px;
  overflow: auto;
  background: #fbf8f1;
  color: var(--primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.legal-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.legal-modal-dialog h2 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
}

.legal-modal-copy {
  display: grid;
  gap: 14px;
}

.legal-modal-copy p {
  margin: 0;
  line-height: 1.75;
  color: #4a3c34;
}

.floating-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 35;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1ea89a;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1200px) {
  .hero-grid,
  .tradicao-layout,
  .split-layout,
  .split-layout.reverse,
  .architecture-intro,
  .architecture-authors,
  .gpci-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-address {
    margin-left: 0;
  }

  .hero-form-shell {
    max-width: 416px;
  }

  .tradicao-copy {
    max-width: none;
  }

  .copy-panel {
    max-width: none;
  }

  .right-copy {
    margin-left: 0;
  }

  .implantacao-circle {
    position: absolute;
    top: 20px;
    right: 20px;
    transform: none;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(calc(100vw - 24px), 1180px);
  }

  .fixed-block {
    max-width: none;
    min-height: 96px;
    padding-top: 10px;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding: 68px 0 28px;
    gap: 24px;
  }

  .hero-brand {
    max-width: none;
    text-align: center;
  }

  .hero-logo {
    width: min(295px, 74vw);
    margin: 0 auto 28px;
  }

  .hero-title-wrap {
    margin: 0 auto;
  }

  .hero-title-line {
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .hero-title-line::before,
  .hero-title-line::after {
    width: 66px;
  }

  .line-text {
    font-size: .84rem;
    letter-spacing: .12em;
  }

  .hero-metric {
    justify-content: center;
    gap: 8px;
  }

  .hero-metric img {
    width: 184px;
  }

  .hero-metric span {
    font-size: 1.9rem;
  }

  .hero-address {
    margin: 30px 0 0;
    font-size: 1rem;
    text-align: center;
  }

  .hero-form-shell {
    max-width: none;
  }

  .hero-form {
    padding: 34px 18px 22px;
    overflow: hidden;
  }

  .hero-form h2 {
    font-size: 1.15rem;
  }

  .hero-form p {
    font-size: .92rem;
    max-width: 100%;
    white-space: normal;
  }

  .helvetia-logo {
    width: 160px;
    margin: 0 0 16px 18px;
  }

  .content-wrapper {
    min-height: 44px;
    padding-left: 18px;
  }

  .fixed-cta p {
    font-size: .92rem;
  }

  .hero-form button {
    width: 100%;
    margin-top: 12px;
  }

  .tradicao-copy,
  .copy-image-section,
  .architecture-cluster,
  .implantacao-section,
  .gpci-section,
  .central-vendas-section {
    padding-left: 0;
    padding-right: 0;
  }

  .tradicao-copy {
    padding: 26px 18px 30px;
  }

  .section-tradicao {
    padding: 54px 0 0;
  }

  .tradicao-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-tradicao-media {
    order: 2;
    width: calc(100% + 24px);
    margin-left: -12px;
    margin-bottom: 18px;
  }

  .section-tradicao-media > img {
    height: 240px;
    min-height: 240px;
  }

  .tradicao-play {
    gap: 6px;
    font-size: .74rem;
  }

  .tradicao-play img {
    width: 28px;
    height: 28px;
  }

  .tradicao-copy {
    background: transparent;
    padding: 0;
  }

  .tradicao-prose {
    gap: 12px;
  }

  .tradicao-lead,
  .tradicao-close {
    font-size: 1rem;
    line-height: 1.7;
    max-width: none;
  }

  .copy-image-section,
  .architecture-cluster,
  .implantacao-section,
  .gpci-section,
  .consultor-section {
    padding: 72px 0;
  }

  .tradicao-heading img,
  .copy-title img,
  .arquitetura-title,
  .central-vendas-box > img,
  .implantacao-box > img {
    max-width: 100%;
    height: auto;
  }

  .copy-title {
    gap: 8px 12px;
  }

  .brown-panel {
    padding: 28px 18px 24px;
  }

  #regiao .split-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  #regiao .copy-panel p,
  .brown-panel p,
  .architecture-copy p,
  .author-block.light p,
  .gpci-copy p {
    font-size: .9rem;
    line-height: 1.58;
  }

  .architecture-intro {
    gap: 18px;
    margin-bottom: 24px;
  }

  .architecture-copy {
    order: 1;
  }

  .architecture-media {
    order: 2;
  }

  .architecture-authors {
    gap: 18px;
  }

  .author-card {
    gap: 18px;
  }

  .author-block.light span {
    color: var(--fourth);
  }

  .author-block.light p {
    color: var(--primary);
  }

  .author-portrait {
    max-width: 100%;
  }

  .amenity-pair {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .amenities-section > .image-band,
  .copy-image-section .image-panel,
  .section-tradicao-media {
    overflow: hidden;
  }

  .amenities-section > .image-band {
    aspect-ratio: 16 / 9;
  }

  .amenity-pair .image-band {
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  .amenities-section .image-band img,
  .amenity-pair .image-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .copy-image-section .image-panel {
    border-radius: 0;
  }

  .copy-image-section .image-panel img {
    width: 100%;
    height: auto;
  }

  .section-tradicao-media {
    aspect-ratio: 16 / 10;
  }

  .section-tradicao-media > img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .author-portrait {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
  }

  .image-band-label {
    min-height: 34px;
    font-size: .88rem;
  }

  .implantacao-shell {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
  }

  .implantacao-box {
    order: 2;
    padding: 30px 18px 28px;
  }

  .implantacao-list {
    grid-template-columns: 1fr;
  }

  .implantacao-box > p,
  .implantacao-list div {
    font-size: .88rem;
    line-height: 1.48;
  }

  .implantacao-title-wrap {
    margin-bottom: 20px;
  }

  .implantacao-line {
    height: 40px;
    margin-bottom: 14px;
  }

  .implantacao-title-wrap h2 {
    font-size: 2.35rem;
  }

  .implantacao-map {
    order: 1;
  }

  .implantacao-map-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .implantacao-map-scroll img {
    width: auto;
    min-width: 880px;
    height: 420px;
    min-height: 0;
    object-fit: contain;
    object-position: left top;
  }

  #regiao.copy-image-section {
    padding-bottom: 24px;
  }

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

  .implantacao-map-scroll {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .implantacao-map-scroll img {
    display: block;
    width: 880px;
    max-width: none;
    height: auto;
    margin: 0;
  }

  .toggle-list {
    min-width: 118px;
    min-height: 34px;
    font-size: .84rem;
  }

  .central-map-shell iframe {
    height: 320px;
  }

  .consultor-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-section {
    padding: 72px 0;
  }

  .faq-items {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

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

  .footer-bottom {
    margin-top: 0;
  }

  .legal-modal-dialog {
    width: calc(100vw - 24px);
    max-height: 84vh;
    margin-top: 6vh;
    padding: 22px 18px 18px;
  }

}
