:root {
  --verde-profundo: #1D281F;
  --verde-serra: #2B3A2C;
  --pedra: #C2AE8F;
  --pedra-clara: #DDD0BB;
  --cobre: #8C6A3F;
  --off-white: #F4F0E8;
  --branco-quente: #FAF7F0;
  --preto-quente: #1A1A18;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;

  --motion-fast: 300ms;
  --motion-normal: 700ms;
  --motion-slow: 1200ms;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);

  --type-hero: clamp(2.75rem, 4vw, 4rem);
  --type-section-title: clamp(1.9rem, 2.8vw, 2.35rem);
  --type-section-subtitle: clamp(1.38rem, 2vw, 1.58rem);
  --type-editorial-large: clamp(2rem, 3.2vw, 3.1rem);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-padding-top: calc(var(--header-height) + 28px);
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: clip;
}

body {
  background: var(--branco-quente);
  color: var(--preto-quente);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::selection {
  background: var(--pedra);
  color: var(--verde-profundo);
}

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

[id] {
  scroll-margin-top: 96px;
}

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

h1,
h2,
h3,
h4 {
  color: inherit;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 7.6rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.15;
}

p {
  color: inherit;
}

.container {
  margin: 0 auto;
  max-width: 1360px;
  min-width: 0;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
  width: 100%;
}

.section-kicker {
  color: var(--pedra);
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-bottom: 1.35rem;
  text-transform: uppercase;
}

.section-heading {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 42%, transparent);
  margin: 0 0 4.8rem;
  max-width: 920px;
  padding-top: clamp(2rem, 4vw, 3.6rem);
  text-align: left;
}

.section-heading p {
  color: color-mix(in srgb, var(--preto-quente) 72%, var(--verde-serra));
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 300;
  line-height: 1.85;
  margin: 1.4rem 0 0;
  max-width: 560px;
}

.header {
  align-items: center;
  background: transparent;
  border-bottom: 1px solid color-mix(in srgb, var(--pedra-clara) 22%, transparent);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 78px;
  left: 0;
  padding: 0 clamp(1rem, 3vw, 3rem);
  position: fixed;
  right: 0;
  top: 0;
  transition: background var(--motion-fast) var(--ease-smooth), border-color var(--motion-fast) var(--ease-smooth), box-shadow var(--motion-fast) var(--ease-smooth);
  z-index: 20;
}

.header-is-scrolled .header {
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--branco-quente) 98%, transparent);
  border-bottom-color: color-mix(in srgb, var(--pedra) 42%, transparent);
  box-shadow: 0 18px 48px color-mix(in srgb, var(--preto-quente) 8%, transparent);
}

.header__nav {
  align-items: center;
  display: flex;
}

.header__nav {
  gap: clamp(0.85rem, 1.25vw, 1.55rem);
}

.header__link,
.header__button,
.header__menu-button,
.menu-panel__close {
  background: transparent;
  border: 0;
  color: var(--branco-quente);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 0.76vw, 0.74rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 18px color-mix(in srgb, var(--preto-quente) 38%, transparent);
  text-transform: uppercase;
  transition: color var(--motion-fast) var(--ease-smooth), border-color var(--motion-fast) var(--ease-smooth), background var(--motion-fast) var(--ease-smooth);
}

.header-is-scrolled .header__link,
.header-is-scrolled .header__button,
.header-is-scrolled .header__menu-button,
.header-is-scrolled .header__logo {
  color: var(--verde-profundo);
  text-shadow: none;
}

.header__link:hover {
  color: var(--pedra);
}

.header__link {
  white-space: nowrap;
}

.header__menu-button {
  align-items: center;
  display: inline-flex;
  gap: 0.74rem;
}

.header__menu-button span {
  background: currentColor;
  display: block;
  height: 1px;
  position: relative;
  width: 2.2rem;
}

.header__menu-button span::before,
.header__menu-button span::after {
  background: currentColor;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}

.header__menu-button span::before {
  top: -0.36rem;
}

.header__menu-button span::after {
  top: 0.36rem;
  width: 62%;
}

.header__menu-button:hover,
.menu-panel__close:hover {
  color: var(--pedra);
}

.header__logo {
  color: var(--branco-quente);
  text-shadow: 0 1px 22px color-mix(in srgb, var(--preto-quente) 42%, transparent);
  width: clamp(4.2rem, 5.4vw, 5.6rem);
}

.brand-signature {
  align-items: center;
  display: inline-grid;
  gap: 0.28rem;
  justify-items: center;
  line-height: 1;
  text-transform: uppercase;
}

.brand-signature__image {
  display: block;
  height: auto;
  max-width: 3.15rem;
  width: 100%;
}

.brand-signature__descriptor {
  color: currentColor;
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.38rem, 0.48vw, 0.5rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1;
  opacity: 0.92;
  text-align: center;
}

.brand-signature__image--dark {
  display: none;
}

.header-is-scrolled .header__logo .brand-signature__image--light {
  display: none;
}

.header-is-scrolled .header__logo .brand-signature__image--dark {
  display: block;
}

.brand-signature__mark {
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 1.8vw, 1.58rem);
  font-weight: 400;
  letter-spacing: 0.16em;
}

.brand-signature__rule {
  background: var(--cobre);
  display: block;
  height: 1px;
  opacity: 0.78;
  width: min(4.25rem, 100%);
}

.brand-signature__tagline {
  font-family: var(--font-body);
  font-size: 0.42rem;
  font-weight: 300;
  letter-spacing: 0.42em;
}

.header__button {
  border: 0;
  padding: 0;
}

.header__button:hover {
  background: transparent;
  color: var(--pedra-clara);
}

.menu-panel {
  background:
    linear-gradient(115deg, color-mix(in srgb, var(--verde-profundo) 96%, transparent) 0%, color-mix(in srgb, var(--preto-quente) 92%, transparent) 100%),
    url("assets/images/manhattan-fachada-noturna.jpg") center/cover no-repeat;
  color: var(--branco-quente);
  inset: 0;
  opacity: 0;
  overflow-y: auto;
  pointer-events: none;
  position: fixed;
  transform: translateY(-1.5rem);
  transition: opacity var(--motion-normal) var(--ease-smooth), transform var(--motion-normal) var(--ease-smooth), visibility var(--motion-normal) var(--ease-smooth);
  visibility: hidden;
  z-index: 40;
}

.menu-panel::after {
  background:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--pedra) 22%, transparent), transparent 24%),
    linear-gradient(90deg, color-mix(in srgb, var(--verde-profundo) 94%, transparent) 0%, color-mix(in srgb, var(--verde-profundo) 74%, transparent) 52%, color-mix(in srgb, var(--verde-profundo) 48%, transparent) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.menu-panel::before {
  border: 1px solid color-mix(in srgb, var(--pedra-clara) 18%, transparent);
  content: "";
  inset: clamp(1rem, 3vw, 2.7rem);
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.menu-is-open {
  overflow: hidden;
}

.menu-is-open .menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}

.menu-panel__inner {
  display: grid;
  gap: clamp(1.5rem, 3.6vw, 3.5rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.34fr);
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 100svh;
  padding: clamp(1.2rem, 3vw, 2.6rem);
  position: relative;
  z-index: 2;
}

.menu-panel__top {
  align-items: center;
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
}

.menu-panel__close {
  align-items: center;
  background: color-mix(in srgb, var(--verde-profundo) 62%, transparent);
  border: 1px solid color-mix(in srgb, var(--pedra-clara) 30%, transparent);
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.14em;
  min-height: 2.25rem;
  padding: 0 0.9rem;
  position: absolute;
  right: clamp(1.2rem, 3vw, 2.6rem);
  text-transform: uppercase;
  top: clamp(1.2rem, 3vw, 2.6rem);
  width: auto;
  z-index: 3;
}

.menu-panel__brand {
  color: var(--branco-quente);
  width: clamp(2.7rem, 3.8vw, 3.4rem);
}

.menu-panel__brand .brand-signature__mark {
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
}

.menu-panel__brand {
  color: var(--branco-quente);
  width: clamp(4.6rem, 7vw, 6.2rem);
}

.menu-panel__brand .brand-signature__image {
  max-width: 3.3rem;
}

.menu-panel__nav {
  align-self: end;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-panel__nav a {
  align-items: baseline;
  border-bottom: 1px solid color-mix(in srgb, var(--pedra-clara) 16%, transparent);
  color: var(--branco-quente);
  display: grid;
  font-family: var(--font-display);
  font-size: clamp(1.52rem, 2.25vw, 2.05rem);
  font-weight: 400;
  gap: clamp(0.75rem, 1.4vw, 1.2rem);
  grid-template-columns: 2.55rem minmax(0, 1fr);
  line-height: 1.04;
  opacity: 0;
  padding: clamp(0.38rem, 0.8vw, 0.65rem) 0;
  transform: translateY(16px);
  transition:
    color var(--motion-fast) var(--ease-smooth),
    opacity 680ms var(--ease-smooth),
    transform 680ms var(--ease-smooth),
    border-color var(--motion-fast) var(--ease-smooth);
}

.menu-is-open .menu-panel__nav a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--menu-order, 0) * 45ms);
}

.menu-panel__nav a span {
  color: var(--pedra);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
}

.menu-panel__nav a:hover {
  color: var(--pedra-clara);
  border-color: color-mix(in srgb, var(--pedra-clara) 44%, transparent);
  transform: translateX(0.4rem);
}

.menu-panel__context {
  align-self: end;
  border-top: 1px solid color-mix(in srgb, var(--pedra-clara) 28%, transparent);
  padding-top: clamp(1.2rem, 2.2vw, 1.8rem);
}

.menu-panel__context span {
  color: var(--pedra);
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.menu-panel__context p {
  color: var(--pedra-clara);
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  font-weight: 300;
  line-height: 1.75;
  max-width: 360px;
}

.menu-panel__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 1.4rem;
}

.menu-panel__links a {
  color: var(--branco-quente);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--motion-fast) var(--ease-smooth);
}

.menu-panel__links a:hover {
  color: var(--pedra);
}

.hero {
  align-items: flex-end;
  background: var(--verde-profundo);
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(6rem, 10vw, 9rem) clamp(1.25rem, 4vw, 4rem) clamp(2.4rem, 6vw, 5.6rem);
  position: relative;
}

.hero::after {
  display: none;
}

.hero__image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  overflow: hidden;
  will-change: transform;
}

.hero__scene {
  background: var(--verde-profundo);
  inset: 0;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}

.hero__scene::before,
.hero__scene::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}

.hero__scene::before {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--verde-profundo) 52%, transparent) 0%, color-mix(in srgb, var(--verde-profundo) 28%, transparent) 38%, color-mix(in srgb, var(--verde-profundo) 6%, transparent) 76%, transparent 100%),
    linear-gradient(180deg, color-mix(in srgb, var(--preto-quente) 4%, transparent) 0%, color-mix(in srgb, var(--verde-profundo) 10%, transparent) 100%);
}

.hero__scene::after {
  background: linear-gradient(180deg, color-mix(in srgb, var(--preto-quente) 5%, transparent) 0%, transparent 54%, color-mix(in srgb, var(--verde-profundo) 15%, transparent) 100%);
}

.hero__image--main {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--verde-profundo) 20%, transparent), color-mix(in srgb, var(--verde-profundo) 6%, transparent)),
    url("assets/images/ernesto-living-varanda.jpg") center / cover no-repeat,
    var(--verde-profundo);
  height: 100%;
  inset: 0;
  opacity: 0.96;
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.04);
  width: 100%;
  z-index: 1;
}

.hero__video {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.hero__image--left,
.hero__image--right,
.hero__image--lower {
  display: none;
}

.hero__image--main {
  transition:
    opacity 1500ms var(--ease-smooth),
    transform 1700ms var(--ease-smooth);
}

.hero__content {
  color: var(--branco-quente);
  max-width: 940px;
  padding-bottom: clamp(1rem, 4vw, 4rem);
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  color: var(--pedra-clara);
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.hero__title {
  color: var(--branco-quente);
  font-size: clamp(2.55rem, 3.8vw, 4rem);
  line-height: 1.02;
  max-width: 800px;
  text-shadow: 0 2px 32px color-mix(in srgb, var(--preto-quente) 34%, transparent);
}

.hero__eyebrow,
.hero__title,
.hero__subtitle,
.hero__actions,
.hero__proof {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
  transition:
    opacity 820ms var(--ease-smooth),
    transform 820ms var(--ease-smooth),
    filter 820ms var(--ease-smooth);
}

body:not(.is-loaded) .hero__image--main {
  opacity: 0;
  transform: scale(1.08);
}

.is-loaded .hero__eyebrow,
.is-loaded .hero__title,
.is-loaded .hero__subtitle,
.is-loaded .hero__actions,
.is-loaded .hero__proof {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.is-loaded .hero__eyebrow {
  transition-delay: 180ms;
}

.is-loaded .hero__title {
  transition-delay: 320ms;
}

.is-loaded .hero__subtitle {
  transition-delay: 520ms;
}

.is-loaded .hero__actions {
  transition-delay: 700ms;
}

.is-loaded .hero__proof {
  transition-delay: 860ms;
}

.hero__subtitle {
  color: var(--pedra-clara);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
  font-weight: 300;
  line-height: 1.8;
  margin: 1.6rem 0 2.3rem;
  max-width: 620px;
  text-shadow: 0 1px 18px color-mix(in srgb, var(--preto-quente) 40%, transparent);
}

.hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 1.6rem;
}

.hero__cta,
.cta-consultivo__button {
  border: 1px solid var(--pedra);
  color: var(--branco-quente);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.12em;
  min-width: 180px;
  overflow: hidden;
  padding: 1rem 1.4rem;
  position: relative;
  text-transform: uppercase;
  transform: translateY(0);
  transition:
    background var(--motion-fast) var(--ease-smooth),
    color var(--motion-fast) var(--ease-smooth),
    border-color var(--motion-fast) var(--ease-smooth),
    transform var(--motion-fast) var(--ease-smooth);
}

.hero__cta::after,
.cta-consultivo__button::after {
  background: currentColor;
  bottom: 0.55rem;
  content: "";
  height: 1px;
  left: 1.1rem;
  opacity: 0.62;
  position: absolute;
  right: 1.1rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-fast) var(--ease-smooth);
}

.hero__cta {
  background: transparent;
  border-color: color-mix(in srgb, var(--pedra-clara) 52%, transparent);
  min-width: 0;
  padding: 0.9rem 1.15rem;
}

.hero__cta:hover,
.cta-consultivo__button:hover {
  background: var(--pedra);
  color: var(--verde-profundo);
  transform: translateY(-2px);
}

.hero__cta:hover::after,
.cta-consultivo__button:hover::after {
  transform: scaleX(1);
}

.hero__text-link {
  color: var(--pedra-clara);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  position: relative;
  text-transform: uppercase;
  transition: color var(--motion-fast) var(--ease-smooth);
}

.hero__text-link::after {
  background: currentColor;
  bottom: -0.35rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-fast) var(--ease-smooth);
  width: 100%;
}

.hero__text-link:hover {
  color: var(--branco-quente);
}

.hero__text-link:hover::after {
  transform: scaleX(1);
}

.hero__proof {
  border-top: 1px solid color-mix(in srgb, var(--pedra-clara) 28%, transparent);
  display: grid;
  gap: 0.9rem clamp(1rem, 3vw, 3rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(2rem, 4vw, 4.2rem);
  max-width: 760px;
  padding-top: 1.15rem;
}

.hero__proof span {
  color: var(--pedra-clara);
  font-size: clamp(0.72rem, 0.85vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-shadow: 0 1px 16px color-mix(in srgb, var(--preto-quente) 44%, transparent);
  text-transform: uppercase;
}

.hero-transition {
  align-items: start;
  background: var(--branco-quente);
  color: var(--preto-quente);
  display: grid;
  gap: clamp(2rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.88fr);
  margin-top: -1px;
  min-height: auto;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.25rem, 4vw, 4rem);
  position: relative;
}

.hero-transition::before {
  display: none;
}

.hero-transition__media {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 42%, transparent);
  height: 1px;
  justify-self: stretch;
  max-width: none;
  transform: none;
  width: 100%;
}

.hero-transition__content {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 42%, transparent);
  max-width: 860px;
  padding-top: clamp(1.7rem, 3vw, 2.5rem);
  position: relative;
}

.hero-transition__content span {
  color: var(--pedra);
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-bottom: 1.15rem;
  text-transform: uppercase;
}

.hero-transition__content p {
  color: var(--verde-profundo);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 4.8rem);
  font-weight: 400;
  line-height: 1.03;
  max-width: 760px;
  text-wrap: balance;
}

.hero-transition__argument {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 34%, transparent);
  display: grid;
  gap: clamp(1.2rem, 2.5vw, 2.4rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(1.6rem, 3vw, 2.6rem);
  padding-top: clamp(1.2rem, 2vw, 1.8rem);
}

.hero-transition__argument p {
  color: color-mix(in srgb, var(--preto-quente) 78%, var(--verde-serra));
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.1vw, 1.06rem);
  font-weight: 300;
  line-height: 1.85;
  max-width: 340px;
  text-wrap: auto;
}

.manifesto {
  background: var(--branco-quente);
  padding: clamp(5.2rem, 7.4vw, 7.4rem) 0 clamp(5.8rem, 8.5vw, 8.5rem);
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.manifesto__inner {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 42%, transparent);
  display: block;
  max-width: 1180px;
  padding-top: clamp(2rem, 3.5vw, 3.4rem);
}

.manifesto__intro {
  display: grid;
  gap: clamp(1.4rem, 2.8vw, 3rem) clamp(4rem, 9vw, 9rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.34fr);
  min-height: clamp(360px, 48vh, 520px);
}

.manifesto__intro .section-kicker {
  grid-column: 1 / -1;
}

.manifesto__text {
  align-self: start;
  color: var(--verde-profundo);
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 4.35vw, 4.9rem);
  font-weight: 400;
  line-height: 1.06;
  max-width: 13.8ch;
}

.manifesto__support {
  align-self: end;
  border-left: 1px solid color-mix(in srgb, var(--pedra) 40%, transparent);
  color: color-mix(in srgb, var(--preto-quente) 76%, var(--verde-serra));
  font-size: clamp(0.92rem, 0.95vw, 0.98rem);
  font-weight: 300;
  line-height: 1.82;
  max-width: 34ch;
  padding-left: clamp(1.2rem, 2.4vw, 2rem);
}

.manifesto__details {
  margin-top: clamp(1.8rem, 4vw, 4.8rem);
}

.manifesto__points {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 38%, transparent);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.manifesto__points span {
  border-right: 1px solid color-mix(in srgb, var(--pedra) 28%, transparent);
  color: var(--verde-profundo);
  font-size: clamp(0.78rem, 0.9vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.55;
  min-height: 74px;
  padding: 1.2rem clamp(1rem, 2vw, 2rem) 0 0;
  text-transform: uppercase;
}

.manifesto__points span:last-child {
  border-right: 0;
}

.manifesto__contrast {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 38%, transparent);
  display: grid;
  gap: clamp(2.5rem, 7vw, 7.5rem);
  grid-template-columns: minmax(0, 38ch) minmax(0, 38ch);
  justify-content: space-between;
  margin-top: clamp(2.2rem, 4vw, 4rem);
  padding-top: clamp(1.4rem, 2.4vw, 2.2rem);
}

.manifesto__contrast p {
  color: color-mix(in srgb, var(--preto-quente) 74%, var(--verde-serra));
  font-size: clamp(0.9rem, 0.98vw, 0.98rem);
  font-weight: 300;
  line-height: 1.72;
  margin: 0;
  max-width: 500px;
}

.manifesto__contrast span {
  color: var(--pedra);
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.institucional-fvs {
  background: var(--branco-quente);
  color: var(--preto-quente);
  padding: clamp(5.5rem, 9vw, 9rem) 0;
}

.institucional-fvs__inner {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 40%, transparent);
  display: grid;
  gap: clamp(2.4rem, 5vw, 5.5rem);
  padding-top: clamp(2.4rem, 5vw, 4.5rem);
}

.institucional-fvs__intro {
  display: grid;
  gap: clamp(2rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.55fr);
}

.institucional-fvs__intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.institucional-fvs__intro h2 {
  color: var(--verde-profundo);
  font-size: clamp(2.5rem, 4.8vw, 5.15rem);
  line-height: 1.02;
  max-width: 900px;
}

.institucional-fvs__intro p {
  align-self: end;
  color: color-mix(in srgb, var(--preto-quente) 72%, var(--verde-serra));
  font-size: clamp(1rem, 1.18vw, 1.1rem);
  font-weight: 300;
  line-height: 1.9;
  max-width: 460px;
}

.institucional-fvs__stats {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 34%, transparent);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.institucional-fvs__stats article {
  border-right: 1px solid color-mix(in srgb, var(--pedra) 24%, transparent);
  min-height: 180px;
  padding: clamp(1.25rem, 2.4vw, 2rem) clamp(1rem, 2vw, 1.6rem) 0 0;
}

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

.institucional-fvs__stats strong {
  color: var(--verde-profundo);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 3.8vw, 4.4rem);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.institucional-fvs__stats span {
  color: color-mix(in srgb, var(--preto-quente) 68%, var(--verde-serra));
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.55;
  text-transform: uppercase;
}

.institucional-fvs__grid {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 36%, transparent);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.institucional-fvs__grid article {
  border-right: 1px solid color-mix(in srgb, var(--pedra) 28%, transparent);
  min-height: 260px;
  padding: clamp(1.4rem, 2.6vw, 2.4rem) clamp(1.1rem, 2.5vw, 2rem) 0 0;
}

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

.institucional-fvs__grid span {
  color: var(--pedra);
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  text-transform: uppercase;
}

.institucional-fvs__grid p {
  color: color-mix(in srgb, var(--preto-quente) 72%, var(--verde-serra));
  font-size: clamp(0.96rem, 1.08vw, 1.04rem);
  font-weight: 300;
  line-height: 1.82;
  max-width: 360px;
}

.metodo-fvs {
  background: var(--off-white);
  padding: clamp(4.2rem, 6.5vw, 6.4rem) 0 0;
}

.metodo-fvs__intro {
  display: grid;
  gap: clamp(1.8rem, 4.2vw, 4.4rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.42fr);
  margin-bottom: clamp(2rem, 4vw, 3.8rem);
}

.metodo-fvs__intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.metodo-fvs__intro h2 {
  color: var(--verde-profundo);
  font-size: clamp(2.1rem, 3.2vw, 3.65rem);
  line-height: 1.08;
  max-width: 720px;
}

.metodo-fvs__intro p {
  align-self: end;
  color: color-mix(in srgb, var(--preto-quente) 72%, var(--verde-serra));
  font-size: clamp(0.94rem, 1vw, 1rem);
  font-weight: 300;
  line-height: 1.78;
  max-width: 430px;
}

.metodo-fvs__steps {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 42%, transparent);
  display: grid;
}

.metodo-fvs__steps article {
  align-items: start;
  border-bottom: 1px solid color-mix(in srgb, var(--pedra) 34%, transparent);
  display: grid;
  gap: clamp(1.25rem, 3vw, 3rem);
  grid-template-columns: 3.6rem minmax(220px, 0.38fr) minmax(0, 0.72fr);
  padding: clamp(1.35rem, 2.2vw, 2rem) 0;
}

.metodo-fvs__steps span {
  color: var(--pedra);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.metodo-fvs__steps h3 {
  color: var(--verde-profundo);
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1.14;
}

.metodo-fvs__steps p {
  color: color-mix(in srgb, var(--preto-quente) 72%, var(--verde-serra));
  font-size: clamp(0.92rem, 0.98vw, 0.98rem);
  font-weight: 300;
  line-height: 1.75;
  max-width: 520px;
}

.metodo-fvs__proof {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 42%, transparent);
  display: grid;
  gap: clamp(1rem, 3vw, 3rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding-top: clamp(1.7rem, 3vw, 2.6rem);
}

.metodo-fvs__proof p {
  color: color-mix(in srgb, var(--preto-quente) 74%, var(--verde-serra));
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  font-weight: 300;
  line-height: 1.85;
  margin: 0;
  max-width: 580px;
}

.metodo-fvs__proof span {
  color: var(--pedra);
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.gramado {
  background: var(--off-white);
  overflow: hidden;
  padding: clamp(5rem, 10vw, 10rem) 0 clamp(3rem, 5.2vw, 4.8rem);
}

.gramado__layout {
  align-items: stretch;
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1fr);
  min-width: 0;
}

.gramado__layout--text-only {
  grid-template-columns: minmax(0, 1fr);
}

.gramado__layout--text-only .gramado__content {
  max-width: 960px;
}

.gramado__media {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--verde-profundo) 12%, transparent), color-mix(in srgb, var(--verde-profundo) 34%, transparent)),
    var(--verde-profundo);
  min-height: 680px;
}

.gramado__content {
  align-self: center;
  min-width: 0;
}

.gramado h2 {
  color: var(--verde-profundo);
  font-size: clamp(2.5rem, 4.5vw, 4.7rem);
  margin-bottom: 3rem;
  max-width: 860px;
}

.gramado__grid {
  border-top: 1px solid var(--pedra-clara);
  display: grid;
  gap: 0;
  min-width: 0;
}

.gramado__block {
  border-bottom: 1px solid var(--pedra-clara);
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(140px, 0.38fr) 1fr;
  min-width: 0;
  padding: 1.7rem 0;
}

.gramado__block h3 {
  color: var(--verde-profundo);
}

.gramado__block p {
  color: color-mix(in srgb, var(--preto-quente) 76%, var(--verde-serra));
  font-size: 0.98rem;
  line-height: 1.86;
}

.gramado__thesis {
  margin-top: clamp(1.6rem, 3vw, 2.6rem);
}

.gramado__thesis p {
  color: var(--verde-profundo);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 2.5rem);
  line-height: 1.12;
  margin: 0;
  max-width: 760px;
}

.gramado__thesis span {
  color: var(--pedra);
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.leitura-mercado {
  background: var(--verde-profundo);
  color: var(--branco-quente);
  padding: clamp(5.5rem, 9vw, 9rem) 0;
}

.leitura-mercado__inner {
  display: grid;
  gap: clamp(2.5rem, 5vw, 5.5rem);
}

.leitura-mercado__intro {
  border-top: 1px solid color-mix(in srgb, var(--pedra-clara) 28%, transparent);
  display: grid;
  gap: clamp(2rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.58fr);
  padding-top: clamp(2.4rem, 5vw, 4.5rem);
}

.leitura-mercado__intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.leitura-mercado__intro h2 {
  color: var(--branco-quente);
  font-size: clamp(2.55rem, 5vw, 5.5rem);
  line-height: 1;
  max-width: 900px;
}

.leitura-mercado__intro p {
  align-self: end;
  color: var(--pedra-clara);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 300;
  line-height: 1.9;
  max-width: 510px;
}

.leitura-mercado__data {
  border-top: 1px solid color-mix(in srgb, var(--pedra-clara) 22%, transparent);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.leitura-mercado__data article {
  border-right: 1px solid color-mix(in srgb, var(--pedra-clara) 18%, transparent);
  min-height: 290px;
  padding: clamp(1.4rem, 2.7vw, 2.6rem) clamp(1rem, 2.4vw, 2rem) 0 0;
}

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

.leitura-mercado__data span {
  color: var(--pedra);
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: clamp(2.7rem, 5vw, 4.8rem);
  text-transform: uppercase;
}

.leitura-mercado__data strong {
  color: var(--branco-quente);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.2vw, 4.9rem);
  font-weight: 400;
  line-height: 0.98;
  margin-bottom: 1.15rem;
}

.leitura-mercado__data p,
.leitura-mercado__source {
  color: var(--pedra-clara);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  font-weight: 300;
  line-height: 1.8;
  max-width: 360px;
}

.leitura-mercado__source {
  border-top: 1px solid color-mix(in srgb, var(--pedra-clara) 20%, transparent);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  max-width: none;
  padding-top: 1rem;
  text-transform: uppercase;
}

.investir-serra {
  background: var(--off-white);
  color: var(--preto-quente);
  padding: clamp(5.5rem, 9vw, 9rem) 0;
}

.investir-serra__inner {
  display: grid;
  gap: clamp(3rem, 6vw, 6rem);
}

.investir-serra__intro {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 42%, transparent);
  display: grid;
  gap: clamp(2rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.56fr);
  padding-top: clamp(2.4rem, 5vw, 4.5rem);
}

.investir-serra__intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.investir-serra__intro h2 {
  color: var(--verde-profundo);
  font-size: clamp(2.55rem, 5vw, 5.35rem);
  line-height: 1;
  max-width: 920px;
}

.investir-serra__intro p {
  align-self: end;
  color: color-mix(in srgb, var(--preto-quente) 72%, var(--verde-serra));
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 300;
  line-height: 1.9;
  max-width: 520px;
}

.investir-serra__grid {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 36%, transparent);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.investir-serra__grid article {
  border-right: 1px solid color-mix(in srgb, var(--pedra) 26%, transparent);
  min-height: 360px;
  padding: clamp(1.4rem, 2.6vw, 2.4rem) clamp(1rem, 2.2vw, 1.8rem) 0 0;
}

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

.investir-serra__grid span {
  color: var(--cobre);
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin-bottom: clamp(2.2rem, 5vw, 4.2rem);
  text-transform: uppercase;
}

.investir-serra__grid h3 {
  color: var(--verde-profundo);
  font-size: clamp(1.85rem, 2.8vw, 3.05rem);
  line-height: 1.04;
  margin-bottom: 1rem;
}

.investir-serra__grid p {
  color: color-mix(in srgb, var(--preto-quente) 72%, var(--verde-serra));
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.82;
  max-width: 320px;
}

.experiencia {
  background: var(--verde-profundo);
  color: var(--branco-quente);
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  place-items: center;
  position: relative;
}

.experiencia__image {
  background:
    linear-gradient(90deg, var(--verde-profundo) 0%, color-mix(in srgb, var(--verde-profundo) 78%, transparent) 44%, color-mix(in srgb, var(--verde-profundo) 16%, transparent) 100%),
    url("assets/images/experiencia-interior.png") center/cover no-repeat;
  inset: 0;
  position: absolute;
}

.experiencia .container {
  position: relative;
}

.experiencia__layout {
  align-items: end;
  display: grid;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.experiencia__content {
  max-width: 680px;
}

.experiencia h2 {
  color: var(--branco-quente);
  font-size: clamp(2.65rem, 5vw, 5.4rem);
  line-height: 0.98;
  margin-bottom: 2.2rem;
}

.experiencia p {
  color: var(--pedra-clara);
  font-size: 1.04rem;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.experiencia__scenes {
  border-top: 1px solid color-mix(in srgb, var(--pedra-clara) 30%, transparent);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(2rem, 4vw, 3.4rem);
  max-width: 620px;
}

.experiencia__scenes span {
  border-bottom: 1px solid color-mix(in srgb, var(--pedra-clara) 22%, transparent);
  color: var(--branco-quente);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.55;
  min-height: 72px;
  padding: 1.1rem 1.1rem 1.1rem 0;
  text-transform: uppercase;
}

.experiencia__moments {
  display: grid;
  gap: 0.9rem;
  justify-self: end;
  width: min(100%, 390px);
}

.experiencia__moment {
  align-items: end;
  aspect-ratio: 1 / 0.72;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--verde-profundo) 8%, transparent), color-mix(in srgb, var(--verde-profundo) 70%, transparent)),
    var(--moment-image) center/cover no-repeat;
  border: 1px solid color-mix(in srgb, var(--pedra-clara) 18%, transparent);
  display: grid;
  margin: 0;
  min-height: 190px;
  overflow: hidden;
  padding: 1.2rem;
  position: relative;
}

.experiencia__moment--arrival {
  --moment-image: url("assets/images/manhattan-fachada-noturna.jpg");
}

.experiencia__moment--living {
  --moment-image: url("assets/images/manhattan-living-cobertura.jpg");
  transform: translateX(-2.2rem);
}

.experiencia__moment--rest {
  --moment-image: url("assets/images/ernesto-suite.jpg");
}

.experiencia__moment span {
  color: var(--pedra-clara);
  font-size: 0.7rem;
  font-weight: 500;
  left: 1.2rem;
  letter-spacing: 0.16em;
  position: absolute;
  text-transform: uppercase;
  top: 1rem;
}

.experiencia__moment figcaption {
  color: var(--branco-quente);
  font-family: var(--font-display);
  font-size: clamp(1.34rem, 2vw, 1.78rem);
  line-height: 1.08;
  max-width: 16rem;
}

.empreendimentos {
  background: var(--branco-quente);
  padding: clamp(3rem, 5.2vw, 4.8rem) 0 clamp(4rem, 8vw, 8rem);
}

.empreendimentos h2 {
  color: var(--verde-profundo);
}

.empreendimentos .section-heading {
  border-top: 0;
  padding-top: 0;
}

.empreendimentos__grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.6rem);
  grid-template-columns: minmax(0, 1fr);
}

.empreendimento {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 42%, transparent);
  display: grid;
  gap: clamp(1.2rem, 3vw, 3rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  min-height: 640px;
  overflow: hidden;
  padding-top: clamp(1rem, 2vw, 1.4rem);
}

.empreendimento--ernesto {
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 0.92fr);
}

.empreendimento--ernesto .empreendimento__image {
  order: 2;
}

.empreendimento__image {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--verde-profundo) 4%, transparent), color-mix(in srgb, var(--verde-profundo) 28%, transparent)),
    var(--empreendimento-image) center/cover no-repeat;
  min-height: 620px;
  transition:
    filter 680ms var(--ease-smooth),
    transform 1350ms var(--ease-smooth);
  will-change: transform, filter;
}

.empreendimento--manhattan {
  --empreendimento-image: url("assets/images/manhattan-fachada-noturna.jpg");
}

.empreendimento--ernesto {
  --empreendimento-image: url("assets/images/ernesto-living-varanda.jpg");
}

.empreendimento:hover .empreendimento__image {
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.065) translateY(-10px);
}

.empreendimento__content {
  align-content: center;
  background: var(--off-white);
  display: grid;
  min-width: 0;
  padding: clamp(2.2rem, 4.4vw, 4.4rem);
}

.empreendimento__location {
  color: var(--pedra);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-bottom: clamp(0.85rem, 1.2vw, 1.15rem);
  text-transform: uppercase;
}

.empreendimento__name {
  color: var(--verde-profundo);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  line-height: 0.9;
  margin-bottom: clamp(1rem, 1.8vw, 1.55rem);
}

.empreendimento__concept {
  color: color-mix(in srgb, var(--preto-quente) 78%, var(--verde-serra));
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  line-height: 1.8;
  margin-bottom: clamp(1.7rem, 3.2vw, 2.5rem);
  max-width: 34rem;
  overflow-wrap: anywhere;
}

.empreendimento__facts {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 42%, transparent);
  display: grid;
  gap: 0;
  margin-bottom: 2rem;
}

.empreendimento__facts div {
  border-bottom: 1px solid color-mix(in srgb, var(--pedra) 28%, transparent);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(90px, 0.28fr) minmax(0, 1fr);
  padding: 1.05rem 0;
}

.empreendimento__facts dt {
  color: var(--pedra);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.empreendimento__facts dd {
  color: color-mix(in srgb, var(--preto-quente) 76%, var(--verde-serra));
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
}

.empreendimento__link,
.page-card a,
.page-link {
  color: var(--verde-profundo);
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.35;
  position: relative;
  text-transform: uppercase;
  transition: color var(--motion-fast) var(--ease-smooth);
  width: fit-content;
}

.empreendimento__link::after,
.page-card a::after,
.page-link::after,
.decisao__card a::after {
  background: currentColor;
  bottom: -0.35rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-fast) var(--ease-smooth);
  width: 100%;
}

.empreendimento__link:hover,
.page-card a:hover,
.page-link:hover {
  color: var(--pedra);
}

.empreendimento__link:hover::after,
.page-card a:hover::after,
.page-link:hover::after,
.decisao__card a:hover::after {
  transform: scaleX(1);
}

.projeto-detalhe {
  background: var(--verde-profundo);
  color: var(--branco-quente);
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.projeto-detalhe__intro {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.64fr);
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.projeto-detalhe__intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.projeto-detalhe__intro h2 {
  color: var(--branco-quente);
  font-size: clamp(2.8rem, 5.8vw, 6rem);
  line-height: 0.98;
  max-width: 920px;
}

.projeto-detalhe__intro p {
  align-self: end;
  color: var(--pedra-clara);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  font-weight: 300;
  line-height: 1.95;
}

.projeto-detalhe__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.48fr);
  min-height: 720px;
}

.projeto-detalhe__image,
.projeto-detalhe__thumb {
  background-position: center;
  background-size: cover;
}

.projeto-detalhe__image {
  min-height: 620px;
}

.projeto-detalhe__image--manhattan-main {
  background-image:
    linear-gradient(180deg, color-mix(in srgb, var(--verde-profundo) 8%, transparent), color-mix(in srgb, var(--verde-profundo) 20%, transparent)),
    url("assets/images/manhattan-fachada-noturna.jpg");
}

.projeto-detalhe__image--ernesto-main {
  background-image:
    linear-gradient(180deg, color-mix(in srgb, var(--verde-profundo) 8%, transparent), color-mix(in srgb, var(--verde-profundo) 22%, transparent)),
    url("assets/images/ernesto-living-varanda.jpg");
  background-position: 54% center;
}

.projeto-detalhe__argument {
  align-content: end;
  background: var(--off-white);
  color: var(--preto-quente);
  display: grid;
  padding: clamp(2rem, 4vw, 4rem);
}

.projeto-detalhe__eyebrow {
  color: var(--pedra);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.projeto-detalhe__argument h3 {
  color: var(--verde-profundo);
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  margin-bottom: 1.4rem;
}

.projeto-detalhe__argument p {
  color: color-mix(in srgb, var(--preto-quente) 76%, var(--verde-serra));
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.projeto-detalhe__argument dl {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 42%, transparent);
  display: grid;
}

.projeto-detalhe__argument dl div {
  border-bottom: 1px solid color-mix(in srgb, var(--pedra) 30%, transparent);
  display: grid;
  gap: 1rem;
  grid-template-columns: 5rem minmax(0, 1fr);
  padding: 1rem 0;
}

.projeto-detalhe__argument dt {
  color: var(--pedra);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.projeto-detalhe__argument dd {
  color: color-mix(in srgb, var(--preto-quente) 76%, var(--verde-serra));
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.72;
}

.projeto-detalhe__market-note {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 34%, transparent);
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
  padding-top: 1.25rem;
}

.projeto-detalhe__market-note span {
  color: var(--pedra);
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.projeto-detalhe__market-note p {
  color: color-mix(in srgb, var(--preto-quente) 72%, var(--verde-serra));
  font-size: clamp(0.94rem, 1.05vw, 1rem);
  font-weight: 300;
  line-height: 1.82;
  margin: 0;
}

.projeto-detalhe__proofs {
  display: grid;
  gap: clamp(1rem, 2vw, 2rem);
  grid-template-columns: 0.85fr 1.15fr;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.projeto-detalhe__proofs figure {
  background: color-mix(in srgb, var(--verde-serra) 80%, var(--preto-quente));
  min-height: 440px;
  overflow: hidden;
  position: relative;
}

.projeto-detalhe__proofs figure::after {
  background: linear-gradient(180deg, transparent 36%, color-mix(in srgb, var(--verde-profundo) 78%, transparent));
  content: "";
  inset: 0;
  position: absolute;
}

.projeto-detalhe__thumb {
  height: 100%;
  min-height: inherit;
  transition: transform var(--motion-slow) var(--ease-smooth);
}

.projeto-detalhe__proofs figure:hover .projeto-detalhe__thumb {
  transform: scale(1.035);
}

.projeto-detalhe__thumb--manhattan-hall {
  background-image: url("assets/images/manhattan-hall.jpg");
}

.projeto-detalhe__thumb--manhattan-living {
  background-image: url("assets/images/manhattan-living-cobertura.jpg");
}

.projeto-detalhe__thumb--ernesto-suite {
  background-image: url("assets/images/ernesto-suite.jpg");
}

.projeto-detalhe__thumb--ernesto-estar {
  background-image: url("assets/images/ernesto-living-varanda.jpg");
  background-position: 56% center;
}

.projeto-detalhe__proofs figcaption {
  bottom: 0;
  color: var(--branco-quente);
  display: grid;
  gap: 0.7rem;
  left: 0;
  padding: clamp(1.3rem, 2.8vw, 2.5rem);
  position: absolute;
  right: 0;
  z-index: 1;
}

.projeto-detalhe__proofs figcaption span {
  color: var(--pedra-clara);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.projeto-detalhe__proofs figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.1vw, 2.15rem);
  font-weight: 500;
  line-height: 1.08;
  max-width: 540px;
}

.projeto-detalhe__criteria {
  border-top: 1px solid color-mix(in srgb, var(--pedra-clara) 24%, transparent);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(2rem, 4vw, 4rem);
}

.projeto-detalhe__criteria article {
  border-bottom: 1px solid color-mix(in srgb, var(--pedra-clara) 18%, transparent);
  border-right: 1px solid color-mix(in srgb, var(--pedra-clara) 14%, transparent);
  display: grid;
  min-height: 280px;
  padding: clamp(1.25rem, 2.4vw, 2rem);
}

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

.projeto-detalhe__criteria span {
  color: var(--pedra);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.projeto-detalhe__criteria p {
  align-self: end;
  color: var(--pedra-clara);
  font-size: clamp(0.94rem, 1.05vw, 1rem);
  font-weight: 300;
  line-height: 1.82;
  margin: 0;
}

.produto-especifico {
  border-top: 1px solid color-mix(in srgb, var(--pedra-clara) 28%, transparent);
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: clamp(4rem, 7vw, 7rem);
  padding-top: clamp(2.2rem, 4vw, 3.6rem);
}

.produto-especifico__intro {
  display: grid;
  gap: clamp(1.6rem, 5vw, 6rem);
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.5fr);
}

.produto-especifico__intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.produto-especifico__intro h3 {
  color: var(--branco-quente);
  font-size: clamp(2.1rem, 3.6vw, 4rem);
  line-height: 1.04;
  max-width: 780px;
}

.produto-especifico__grid {
  border-top: 1px solid color-mix(in srgb, var(--pedra-clara) 22%, transparent);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.produto-especifico__grid article {
  border-right: 1px solid color-mix(in srgb, var(--pedra-clara) 16%, transparent);
  min-height: 260px;
  padding: clamp(1.3rem, 2.5vw, 2.2rem) clamp(1rem, 2vw, 1.8rem) 0 0;
}

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

.produto-especifico__grid span {
  color: var(--pedra);
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: clamp(2.4rem, 4vw, 4rem);
  text-transform: uppercase;
}

.produto-especifico__grid strong {
  color: var(--branco-quente);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.1vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 1rem;
}

.produto-especifico__grid p,
.produto-especifico__features li {
  color: var(--pedra-clara);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.8;
}

.produto-especifico__features {
  border-top: 1px solid color-mix(in srgb, var(--pedra-clara) 22%, transparent);
  columns: 2;
  gap: clamp(2rem, 6vw, 7rem);
  list-style-position: inside;
  padding-top: clamp(1.4rem, 3vw, 2.4rem);
}

.produto-especifico__features li {
  break-inside: avoid;
  margin-bottom: 0.75rem;
}

.produto-especifico__features li span {
  color: var(--branco-quente);
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.45;
  margin-bottom: 0.18rem;
  text-transform: uppercase;
}

.produto-especifico__features li::marker {
  color: var(--pedra);
}

.localizacao-produto {
  background: color-mix(in srgb, var(--verde-serra) 76%, var(--preto-quente));
  display: grid;
  gap: clamp(2rem, 5vw, 6rem);
  grid-template-columns: minmax(0, 0.65fr) minmax(280px, 0.5fr);
  margin-top: clamp(3rem, 6vw, 6rem);
  padding: clamp(2rem, 4vw, 4rem);
}

.localizacao-produto h3 {
  color: var(--branco-quente);
  font-size: clamp(2rem, 3.6vw, 3.9rem);
  line-height: 1.04;
  max-width: 720px;
}

.localizacao-produto p {
  color: var(--pedra-clara);
  font-weight: 300;
  line-height: 1.9;
  margin-top: 1.4rem;
  max-width: 560px;
}

.localizacao-produto dl {
  border-top: 1px solid color-mix(in srgb, var(--pedra-clara) 22%, transparent);
  display: grid;
}

.localizacao-produto dl div {
  border-bottom: 1px solid color-mix(in srgb, var(--pedra-clara) 18%, transparent);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 1rem 0;
}

.localizacao-produto dt,
.localizacao-produto dd {
  color: var(--pedra-clara);
  font-size: 0.9rem;
}

.localizacao-produto dd {
  color: var(--pedra);
  white-space: nowrap;
}

.produto-imagens {
  display: grid;
  gap: clamp(1rem, 2vw, 2rem);
  grid-template-columns: 1.15fr 0.85fr 1fr;
  margin-top: clamp(2rem, 4vw, 4rem);
}

.produto-imagens__item {
  align-items: end;
  background: var(--product-image) center/cover no-repeat;
  display: grid;
  min-height: clamp(320px, 34vw, 520px);
  overflow: hidden;
  padding: 1.2rem;
  position: relative;
  transition:
    filter 680ms var(--ease-smooth),
    transform 1350ms var(--ease-smooth);
  will-change: transform, filter;
}

.produto-imagens__item:hover {
  filter: saturate(1.04) contrast(1.04);
  transform: translateY(-12px) scale(1.018);
}

.produto-imagens__item::after {
  background: linear-gradient(180deg, transparent 38%, color-mix(in srgb, var(--verde-profundo) 78%, transparent));
  content: "";
  inset: 0;
  position: absolute;
}

.produto-imagens__item figcaption {
  color: var(--branco-quente);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.08;
  max-width: 16rem;
  position: relative;
  z-index: 1;
}

.produto-imagens__item--manhattan-fachada {
  --product-image: url("assets/images/manhattan-fachada-noturna.jpg");
}

.produto-imagens__item--manhattan-living {
  --product-image: url("assets/images/manhattan-living-cobertura.jpg");
  transform: translateY(clamp(1.5rem, 4vw, 3rem));
}

.produto-imagens__item--manhattan-living:hover {
  transform: translateY(calc(clamp(1.5rem, 4vw, 3rem) - 12px)) scale(1.018);
}

.produto-imagens__item--manhattan-hall {
  --product-image: url("assets/images/manhattan-hall.jpg");
}

.produto-imagens__item--ernesto-varanda {
  --product-image: url("assets/images/ernesto-living-varanda.jpg");
}

.produto-imagens__item--ernesto-estar {
  --product-image: url("assets/images/ernesto-living-varanda.jpg");
  transform: translateY(clamp(1.5rem, 4vw, 3rem));
}

.produto-imagens__item--ernesto-estar:hover {
  transform: translateY(calc(clamp(1.5rem, 4vw, 3rem) - 12px)) scale(1.018);
}

.produto-imagens__item--ernesto-suite {
  --product-image: url("assets/images/ernesto-suite.jpg");
}

.tipologias {
  background: var(--off-white);
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.tipologias__intro {
  display: grid;
  gap: clamp(2rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.tipologias__intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.tipologias__intro h2 {
  color: var(--verde-profundo);
  font-size: clamp(2.55rem, 5vw, 5.3rem);
  line-height: 1;
  max-width: 940px;
}

.tipologias__intro p {
  align-self: end;
  color: color-mix(in srgb, var(--preto-quente) 72%, var(--verde-serra));
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  font-weight: 300;
  line-height: 1.9;
}

.tipologias__grid {
  display: grid;
  gap: clamp(1rem, 2vw, 2rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tipologia-card {
  background: var(--branco-quente);
  display: grid;
  grid-template-rows: minmax(440px, 1fr) auto;
  min-height: 760px;
  overflow: hidden;
}

.tipologia-card__image {
  background-color: var(--branco-quente);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 440px;
  padding: 1rem;
}

.tipologia-card__image--tipo {
  background-image: url("assets/images/manhattan-planta-tipo.jpg");
}

.tipologia-card__image--cobertura {
  background-image: url("assets/images/manhattan-planta-cobertura.jpg");
}

.tipologia-card__content {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 32%, transparent);
  padding: clamp(1.8rem, 3vw, 2.8rem);
}

.tipologia-card__content span {
  color: var(--pedra);
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.tipologia-card__content h3 {
  color: var(--verde-profundo);
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin-bottom: 1.1rem;
}

.tipologia-card__metrics {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 34%, transparent);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.25rem;
}

.tipologia-card__metrics div {
  border-right: 1px solid color-mix(in srgb, var(--pedra) 24%, transparent);
  padding: 1rem 0.85rem 1rem 0;
}

.tipologia-card__metrics div:last-child {
  border-right: 0;
}

.tipologia-card__metrics dt {
  color: var(--pedra);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.tipologia-card__metrics dd {
  color: var(--verde-profundo);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1;
}

.tipologia-card__content p {
  color: color-mix(in srgb, var(--preto-quente) 74%, var(--verde-serra));
  font-weight: 300;
  line-height: 1.85;
  max-width: 560px;
}

.tipologia-card__reading {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 36%, transparent);
  display: grid;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

.tipologia-card__reading p {
  border-bottom: 1px solid color-mix(in srgb, var(--pedra) 26%, transparent);
  display: grid;
  gap: 1rem;
  grid-template-columns: 5.8rem minmax(0, 1fr);
  margin: 0;
  max-width: none;
  padding: 1rem 0;
}

.tipologia-card__reading p span {
  color: var(--pedra);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.decisao {
  background: var(--branco-quente);
  color: var(--preto-quente);
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.decisao__intro {
  display: grid;
  gap: clamp(2rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.decisao__intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.decisao__intro h2 {
  color: var(--verde-profundo);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 1;
  max-width: 920px;
}

.decisao__intro p {
  align-self: end;
  color: color-mix(in srgb, var(--preto-quente) 72%, var(--verde-serra));
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  font-weight: 300;
  line-height: 1.9;
}

.decisao__grid {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 42%, transparent);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.decisao__card {
  border-bottom: 1px solid color-mix(in srgb, var(--pedra) 42%, transparent);
  display: grid;
  min-height: 520px;
  padding: clamp(2rem, 4vw, 4rem);
}

.decisao__card + .decisao__card {
  border-left: 1px solid color-mix(in srgb, var(--pedra) 42%, transparent);
}

.decisao__card span,
.decisao__notes span {
  color: var(--pedra);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.decisao__card h3 {
  color: var(--verde-profundo);
  font-size: clamp(2rem, 3.1vw, 3.3rem);
  line-height: 1.06;
  margin: auto 0 1.6rem;
  max-width: 620px;
}

.decisao__card p {
  color: color-mix(in srgb, var(--preto-quente) 74%, var(--verde-serra));
  font-weight: 300;
  line-height: 1.9;
  max-width: 560px;
}

.decisao__card a {
  align-self: end;
  color: var(--verde-profundo);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  margin-top: 2rem;
  position: relative;
  text-transform: uppercase;
  transition: color var(--motion-fast) var(--ease-smooth);
}

.decisao__card a:hover {
  color: var(--pedra);
}

.decisao__card--quiet {
  background: var(--off-white);
}

.decisao__notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.decisao__notes p {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 38%, transparent);
  color: color-mix(in srgb, var(--preto-quente) 72%, var(--verde-serra));
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.75;
  padding: 1.2rem clamp(1rem, 2vw, 1.8rem) 0 0;
}

.decisao__notes span {
  display: block;
  margin-bottom: 0.65rem;
}

.decisao__diagnostic {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 42%, transparent);
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

.decisao__diagnostic p {
  color: var(--verde-profundo);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.08;
  margin: 0;
}

.decisao__diagnostic ul {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.decisao__diagnostic li {
  border-bottom: 1px solid color-mix(in srgb, var(--pedra) 30%, transparent);
  color: color-mix(in srgb, var(--preto-quente) 76%, var(--verde-serra));
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 300;
  line-height: 1.75;
  padding: 1.05rem 0;
}

.seguranca-decisao {
  background: var(--verde-profundo);
  color: var(--branco-quente);
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.seguranca-decisao__intro {
  display: grid;
  gap: clamp(2rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.seguranca-decisao__intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.seguranca-decisao__intro h2 {
  color: var(--branco-quente);
  font-size: clamp(2.55rem, 5vw, 5.35rem);
  line-height: 1;
  max-width: 900px;
}

.seguranca-decisao__intro p {
  align-self: end;
  color: var(--pedra-clara);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  font-weight: 300;
  line-height: 1.9;
}

.seguranca-decisao__grid {
  border-top: 1px solid color-mix(in srgb, var(--pedra-clara) 28%, transparent);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seguranca-decisao__grid article {
  border-bottom: 1px solid color-mix(in srgb, var(--pedra-clara) 22%, transparent);
  border-right: 1px solid color-mix(in srgb, var(--pedra-clara) 18%, transparent);
  display: grid;
  min-height: 420px;
  padding: clamp(1.4rem, 2.6vw, 2.4rem);
}

.seguranca-decisao__grid article:nth-child(4) {
  border-right: 0;
}

.seguranca-decisao__grid span {
  color: var(--pedra);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.seguranca-decisao__grid h3 {
  color: var(--branco-quente);
  font-size: clamp(1.8rem, 2.6vw, 2.9rem);
  line-height: 1.06;
  margin: auto 0 1.2rem;
}

.seguranca-decisao__grid p {
  color: var(--pedra-clara);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.82;
}

.seguranca-decisao__close {
  border-top: 1px solid color-mix(in srgb, var(--pedra-clara) 24%, transparent);
  color: var(--branco-quente);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1.02;
  margin: clamp(2rem, 4vw, 4rem) 0 0 auto;
  max-width: 820px;
  padding-top: clamp(1.8rem, 3vw, 2.8rem);
}

.confianca-fvs {
  background: var(--off-white);
  color: var(--preto-quente);
  padding: clamp(1.4rem, 2.4vw, 2.2rem) 0 clamp(4rem, 6.2vw, 5.6rem);
}

.confianca-fvs__inner {
  display: grid;
  gap: clamp(2rem, 3.8vw, 3.6rem);
}

.confianca-fvs__intro {
  display: grid;
  gap: clamp(1.6rem, 3.8vw, 4rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.42fr);
  padding-top: 0;
}

.confianca-fvs__intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.confianca-fvs__intro h2 {
  color: var(--verde-profundo);
  font-size: clamp(2.05rem, 3.05vw, 3.45rem);
  line-height: 1.1;
  max-width: 760px;
}

.confianca-fvs__intro p {
  align-self: end;
  color: color-mix(in srgb, var(--preto-quente) 72%, var(--verde-serra));
  font-size: clamp(0.94rem, 1vw, 1rem);
  font-weight: 300;
  line-height: 1.78;
  max-width: 430px;
}

.confianca-fvs__grid {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 36%, transparent);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.confianca-fvs__grid article {
  border-right: 1px solid color-mix(in srgb, var(--pedra) 26%, transparent);
  display: grid;
  min-height: clamp(220px, 18vw, 270px);
  padding: clamp(1.1rem, 1.8vw, 1.6rem) clamp(1rem, 1.8vw, 1.35rem) 0 0;
}

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

.confianca-fvs__grid span {
  color: var(--cobre);
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.confianca-fvs__grid h3 {
  color: var(--verde-profundo);
  font-size: clamp(1.28rem, 1.75vw, 1.85rem);
  line-height: 1.15;
  margin: auto 0 1.1rem;
}

.confianca-fvs__grid p {
  color: color-mix(in srgb, var(--preto-quente) 72%, var(--verde-serra));
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.82;
}

.galeria {
  background: var(--off-white);
  padding: clamp(5rem, 9vw, 9rem) 0 clamp(1.25rem, 3vw, 3rem);
}

.galeria__intro {
  display: grid;
  gap: clamp(2rem, 5vw, 6rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  margin: 0 0 clamp(3rem, 7vw, 6rem);
}

.galeria__intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.galeria__intro h2 {
  color: var(--verde-profundo);
  font-size: clamp(2.6rem, 5.6vw, 5.8rem);
  line-height: 0.98;
  max-width: 900px;
}

.galeria__intro p {
  align-self: end;
  color: color-mix(in srgb, var(--preto-quente) 72%, var(--verde-serra));
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 0.35rem;
}

.galeria__grid {
  display: grid;
  gap: clamp(1rem, 2vw, 2rem);
  grid-template-columns: 1.1fr 0.9fr 1fr;
  max-width: 1480px;
  margin: 0 auto;
}

.galeria__item {
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.galeria__item--large {
  grid-row: span 2;
  min-height: 760px;
}

.galeria__item:nth-child(4) {
  grid-column: 2 / span 2;
  grid-row: 2;
  min-height: 420px;
}

.galeria__image {
  background-position: center;
  background-size: cover;
  height: 100%;
  min-height: inherit;
  transition:
    filter 680ms var(--ease-smooth),
    transform 1350ms var(--ease-smooth);
  will-change: transform, filter;
}

.galeria__item:hover .galeria__image {
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.07) translateY(-8px);
}

.galeria__item::after {
  background:
    linear-gradient(180deg, transparent 42%, color-mix(in srgb, var(--verde-profundo) 72%, transparent) 100%);
  content: "";
  inset: 0;
  opacity: 0.88;
  pointer-events: none;
  position: absolute;
}

.galeria__item figcaption {
  bottom: 0;
  color: var(--branco-quente);
  display: grid;
  gap: 0.7rem;
  left: 0;
  padding: clamp(1.2rem, 2.6vw, 2.3rem);
  position: absolute;
  right: 0;
  z-index: 1;
}

.galeria__item figcaption span {
  color: var(--pedra-clara);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.galeria__item figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
  max-width: 520px;
}

.galeria__image--hero {
  background-image: url("assets/images/ernesto-living-varanda.jpg");
  background-position: 54% center;
}

.galeria__image--territorio {
  background-image: url("assets/images/manhattan-living-cobertura.jpg");
  background-position: 64% center;
}

.galeria__image--interior {
  background-image: url("assets/images/ernesto-suite.jpg");
  background-position: 56% center;
}

.galeria__image--fachada {
  background-image: url("assets/images/manhattan-fachada-noturna.jpg");
  background-position: center;
}

.galeria__proof-strip {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: clamp(1rem, 2vw, 2rem) auto 0;
  max-width: 1480px;
}

.galeria-proof {
  align-items: end;
  aspect-ratio: 1 / 1.24;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--verde-profundo) 6%, transparent), color-mix(in srgb, var(--verde-profundo) 78%, transparent)),
    var(--proof-image) center/cover no-repeat;
  display: grid;
  margin: 0;
  min-height: 320px;
  overflow: hidden;
  padding: clamp(1rem, 1.8vw, 1.45rem);
}

.galeria-proof--manhattan-hall {
  --proof-image: url("assets/images/manhattan-hall.jpg");
}

.galeria-proof--manhattan-living {
  --proof-image: url("assets/images/manhattan-living-cobertura.jpg");
}

.galeria-proof--manhattan-noite {
  --proof-image: url("assets/images/manhattan-fachada-noturna.jpg");
}

.galeria-proof--ernesto-varanda {
  --proof-image: url("assets/images/ernesto-living-varanda.jpg");
}

.galeria-proof--ernesto-estar {
  --proof-image: url("assets/images/ernesto-living-varanda.jpg");
}

.galeria-proof--ernesto-suite {
  --proof-image: url("assets/images/ernesto-suite.jpg");
}

.galeria-proof figcaption {
  color: var(--branco-quente);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.3vw, 1.32rem);
  line-height: 1.16;
}

.galeria-proof figcaption span {
  color: var(--pedra-clara);
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.ernesto-gallery {
  background: var(--off-white);
  color: var(--preto-quente);
}

.ernesto-gallery__intro {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 36%, transparent);
  display: grid;
  gap: clamp(1.8rem, 4vw, 4.8rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.54fr);
  padding-top: clamp(2rem, 4vw, 3.8rem);
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.ernesto-gallery__intro .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.ernesto-gallery__intro h2 {
  color: var(--verde-profundo);
  font-size: clamp(2.2rem, 4.4vw, 4.55rem);
  line-height: 1.02;
  max-width: 920px;
}

.ernesto-gallery__intro p {
  align-self: end;
  color: color-mix(in srgb, var(--preto-quente) 72%, var(--verde-serra));
  font-size: clamp(0.94rem, 1vw, 1rem);
  font-weight: 300;
  line-height: 1.78;
  max-width: 460px;
}

.ernesto-gallery__grid {
  display: grid;
  gap: clamp(0.7rem, 1.2vw, 1.1rem);
  grid-auto-flow: dense;
  grid-auto-rows: clamp(150px, 13vw, 230px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ernesto-gallery__item {
  background: var(--branco-quente);
  display: block;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.ernesto-gallery__item::after {
  border: 1px solid color-mix(in srgb, var(--branco-quente) 34%, transparent);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.ernesto-gallery__item img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition:
    filter 680ms var(--ease-smooth),
    transform 1350ms var(--ease-smooth);
  width: 100%;
  will-change: transform, filter;
}

.ernesto-gallery__item:hover img {
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.075) translateY(-8px);
}

.ernesto-gallery__item--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.ernesto-gallery__item--wide {
  grid-column: span 2;
}

.ernesto-gallery__item--tall {
  grid-row: span 2;
}

.gallery-lightbox {
  align-items: center;
  display: grid;
  inset: 0;
  opacity: 0;
  padding: clamp(1rem, 2.5vw, 2rem);
  pointer-events: none;
  position: fixed;
  transition: opacity var(--motion-fast) var(--ease-smooth), visibility var(--motion-fast) var(--ease-smooth);
  visibility: hidden;
  z-index: 3000;
}

.gallery-lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

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

.gallery-lightbox__backdrop {
  background: color-mix(in srgb, var(--verde-profundo) 88%, black);
  border: 0;
  cursor: zoom-out;
  inset: 0;
  opacity: 0.96;
  padding: 0;
  position: absolute;
}

.gallery-lightbox__dialog {
  align-items: center;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  height: min(88vh, 900px);
  margin: 0 auto;
  max-width: min(1500px, 100%);
  position: relative;
  width: 100%;
  z-index: 1;
}

.gallery-lightbox__figure {
  align-items: center;
  display: grid;
  gap: 1rem;
  height: 100%;
  justify-items: center;
  margin: 0;
  min-width: 0;
}

.gallery-lightbox__image {
  background: var(--branco-quente);
  box-shadow: 0 1.4rem 5rem color-mix(in srgb, black 38%, transparent);
  display: block;
  max-height: calc(88vh - 5rem);
  max-width: 100%;
  object-fit: contain;
}

.gallery-lightbox__caption {
  color: var(--branco-quente);
  display: flex;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  gap: 1rem;
  justify-content: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-lightbox__count {
  color: var(--pedra-clara);
}

.gallery-lightbox__close,
.gallery-lightbox__control {
  align-items: center;
  background: color-mix(in srgb, var(--branco-quente) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--branco-quente) 28%, transparent);
  color: var(--branco-quente);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.14em;
  min-height: 3rem;
  padding: 0 1rem;
  text-transform: uppercase;
  transition: background var(--motion-fast) var(--ease-smooth), color var(--motion-fast) var(--ease-smooth);
}

.gallery-lightbox__close:hover,
.gallery-lightbox__control:hover {
  background: var(--branco-quente);
  color: var(--verde-profundo);
}

.gallery-lightbox__close {
  position: absolute;
  right: 0;
  top: -4rem;
  z-index: 2;
}

.gallery-lightbox__control {
  align-self: center;
  height: 4rem;
  width: clamp(4.8rem, 7vw, 7rem);
}

.gallery-lightbox__control--prev {
  margin-right: clamp(0.7rem, 1.5vw, 1.4rem);
}

.gallery-lightbox__control--next {
  margin-left: clamp(0.7rem, 1.5vw, 1.4rem);
}

.cta-consultivo {
  background: var(--verde-profundo);
  color: var(--branco-quente);
  padding: clamp(6rem, 11vw, 10rem) 0;
}

.cta-consultivo .container {
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
}

.cta-consultivo h2 {
  color: var(--branco-quente);
  margin-bottom: 1.6rem;
  max-width: 860px;
}

.cta-consultivo p {
  color: var(--pedra-clara);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  font-weight: 300;
  line-height: 1.9;
  margin: 0 0 2.8rem;
  max-width: 620px;
}

.cta-consultivo__note {
  border-left: 1px solid var(--pedra);
  color: var(--branco-quente) !important;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.3vw, 2.2rem) !important;
  line-height: 1.18 !important;
  margin: 0 0 clamp(2rem, 4vw, 3.2rem) !important;
  padding-left: clamp(1rem, 2vw, 1.6rem);
}

.cta-consultivo__panel {
  align-self: end;
  border-top: 1px solid color-mix(in srgb, var(--pedra-clara) 32%, transparent);
}

.cta-consultivo__panel p {
  border-bottom: 1px solid color-mix(in srgb, var(--pedra-clara) 22%, transparent);
  color: var(--branco-quente);
  display: grid;
  font-size: 0.94rem;
  gap: 1.2rem;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  line-height: 1.75;
  margin: 0;
  max-width: none;
  padding: 1.25rem 0;
}

.cta-consultivo__panel span {
  color: var(--pedra);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.cta-consultivo__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-consultivo__button--primary {
  background: var(--pedra);
  color: var(--verde-profundo);
}

.footer {
  background: var(--preto-quente);
  color: var(--branco-quente);
  padding: clamp(4.5rem, 9vw, 8rem) 0 2rem;
}

.footer__lead {
  border-bottom: 1px solid color-mix(in srgb, var(--pedra) 28%, transparent);
  display: grid;
  gap: clamp(2rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 0.45fr) minmax(320px, 0.8fr);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.footer__logo {
  color: var(--branco-quente);
  justify-self: start;
  width: clamp(8rem, 13vw, 12rem);
}

.footer__logo .brand-signature__image {
  max-width: 100%;
}

.footer__logo .brand-signature__descriptor {
  font-size: clamp(0.5rem, 0.75vw, 0.68rem);
  letter-spacing: 0.28em;
}

.footer__logo .brand-signature__mark {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.footer__logo .brand-signature__rule {
  width: min(9rem, 100%);
}

.footer__logo .brand-signature__tagline {
  font-size: clamp(0.48rem, 1vw, 0.72rem);
}

.footer__lead p {
  color: var(--pedra-clara);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.05;
}

.footer__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.footer__block h4 {
  color: var(--pedra);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer__block p,
.footer__block a {
  color: var(--pedra-clara);
  font-size: 0.9rem;
  line-height: 1.9;
}

.footer__block a:hover {
  color: var(--branco-quente);
}

.footer__bottom {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 28%, transparent);
  padding-top: 1.5rem;
}

.footer__bottom p {
  color: var(--pedra-clara);
  font-size: 0.78rem;
}

[data-reveal] {
  filter: blur(5px);
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  transition:
    opacity 720ms var(--ease-smooth),
    transform 820ms var(--ease-smooth),
    filter 720ms var(--ease-smooth);
  transition-delay: calc(var(--reveal-order, 0) * 62ms);
  will-change: opacity, transform, filter;
}

[data-reveal].is-visible {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0) scale(1);
}

.has-local-visual-motion [data-motion] {
  transition-delay: calc(var(--motion-order, 0) * 52ms);
  will-change: clip-path, filter, opacity, transform;
}

.has-local-visual-motion [data-motion="title"] {
  filter: blur(10px);
  opacity: 0;
  transform: translate3d(0, 78px, 0) scale(0.94);
  transition:
    filter 780ms var(--ease-smooth),
    opacity 680ms var(--ease-smooth),
    transform 820ms var(--ease-smooth);
}

.has-local-visual-motion [data-motion="copy"] {
  filter: blur(8px);
  opacity: 0;
  transform: translate3d(42px, 62px, 0);
  transition:
    filter 740ms var(--ease-smooth),
    opacity 660ms var(--ease-smooth),
    transform 800ms var(--ease-smooth);
}

.has-local-visual-motion [data-motion="card"] {
  filter: blur(8px) saturate(0.82);
  opacity: 0;
  transform: translate3d(0, 92px, 0) scale(0.91);
  transition:
    filter 760ms var(--ease-smooth),
    opacity 650ms var(--ease-smooth),
    transform 820ms var(--ease-smooth);
}

.has-local-visual-motion [data-motion="image"] {
  clip-path: inset(18% 0 18% 0);
  filter: blur(8px) saturate(0.78) contrast(0.92);
  opacity: 0;
  transform: translate3d(0, 96px, 0) scale(0.88);
  transition:
    clip-path 860ms var(--ease-smooth),
    filter 780ms var(--ease-smooth),
    opacity 660ms var(--ease-smooth),
    transform 900ms var(--ease-smooth);
}

.has-local-visual-motion [data-motion].motion-in {
  clip-path: inset(0 0 0 0);
  filter: blur(0) saturate(1) contrast(1);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.has-local-visual-motion [data-motion="image"].motion-in {
  transform: translate3d(0, 0, 0) scale(1.01);
}

.page-main {
  background: var(--branco-quente);
  color: var(--preto-quente);
}

.page-hero {
  align-items: end;
  background: var(--verde-profundo);
  color: var(--branco-quente);
  display: grid;
  min-height: min(680px, 78vh);
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(3.5rem, 6vw, 5.5rem)) clamp(1.25rem, 4vw, 4rem) clamp(3.4rem, 5.8vw, 5rem);
  position: relative;
}

.page-hero::before,
.page-hero::after {
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.page-hero::before {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--verde-profundo) 78%, transparent) 0%, color-mix(in srgb, var(--verde-profundo) 48%, transparent) 50%, color-mix(in srgb, var(--verde-profundo) 12%, transparent) 100%),
    var(--page-hero-image, none);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.page-hero::after {
  background: linear-gradient(180deg, color-mix(in srgb, var(--preto-quente) 10%, transparent), color-mix(in srgb, var(--verde-profundo) 30%, transparent));
}

.page-hero__content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.page-hero__content h1 {
  color: var(--branco-quente);
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 4vw, 4.35rem);
  font-weight: 400;
  line-height: 1.04;
  margin-top: 1.2rem;
  max-width: 12.8ch;
}

.page-hero__content p {
  color: var(--pedra-clara);
  font-size: clamp(0.96rem, 1.08vw, 1.06rem);
  font-weight: 300;
  line-height: 1.75;
  margin-top: 1.2rem;
  max-width: 560px;
}

.page-section {
  padding: clamp(4.2rem, 6.8vw, 6.8rem) clamp(1.25rem, 4vw, 4rem);
}

.page-section--dark {
  background: var(--verde-profundo);
  color: var(--branco-quente);
}

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

.page-section__heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2rem, 3.6vw, 3.4rem);
  max-width: 720px;
}

.page-section__heading h2 {
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
}

.page-section__heading p,
.page-copy p {
  color: color-mix(in srgb, currentColor 76%, transparent);
  font-size: clamp(0.94rem, 1vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  max-width: 680px;
}

.page-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-card {
  border: 1px solid color-mix(in srgb, var(--pedra) 28%, transparent);
  display: grid;
  gap: 0.95rem;
  min-height: 100%;
  padding: clamp(1.25rem, 2vw, 1.8rem);
}

.page-card--image {
  background: var(--off-white);
  padding: 0;
}

.page-card__image {
  aspect-ratio: 4 / 3;
  background-image: var(--card-image);
  background-position: center;
  background-size: cover;
}

.page-card__content {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.2rem, 1.8vw, 1.7rem);
}

.page-card span,
.page-eyebrow {
  color: var(--pedra);
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-card h2,
.page-card h3 {
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.9vw, 1.95rem);
  font-weight: 400;
  line-height: 1.14;
}

.page-card p,
.page-card li,
.page-list li {
  color: color-mix(in srgb, currentColor 74%, transparent);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.75;
}

.page-card a {
  margin-top: auto;
}

.page-link {
  margin-top: 1.1rem;
}

.page-split {
  display: grid;
  gap: clamp(1.8rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.64fr);
}

.page-split--text-only {
  grid-template-columns: minmax(0, 0.9fr);
}

.page-media {
  min-height: clamp(320px, 40vw, 560px);
  background-image: var(--media-image);
  background-position: center;
  background-size: cover;
}

.page-list {
  display: grid;
  gap: 0;
  list-style: none;
}

.page-list li {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 24%, transparent);
  padding: 0.85rem 0;
}

.page-list li:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--pedra) 24%, transparent);
}

.investment-hero .page-hero__content h1 {
  max-width: 13.5ch;
}

.investment-section--lead {
  padding-top: clamp(3rem, 5vw, 4.8rem);
}

.investment-article {
  max-width: 900px;
}

.investment-article--lead {
  display: grid;
  gap: 1rem;
}

.investment-article__heading {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.7rem, 3vw, 2.8rem);
  max-width: 780px;
}

.investment-article__heading h2 {
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 3.35rem);
  font-weight: 400;
  line-height: 1.08;
}

.investment-article p,
.investment-list li,
.investment-pillar p,
.investment-faq__item p {
  color: color-mix(in srgb, currentColor 76%, transparent);
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  font-weight: 300;
  line-height: 1.82;
}

.investment-article p + p,
.investment-pillar p + p {
  margin-top: 1rem;
}

.source-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--pedra) 62%, transparent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition:
    color var(--motion-fast) var(--ease-smooth),
    text-decoration-color var(--motion-fast) var(--ease-smooth);
}

.source-link:hover {
  color: var(--pedra);
  text-decoration-color: currentColor;
}

.investment-data-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
}

.investment-data-grid article {
  border: 1px solid color-mix(in srgb, var(--pedra) 32%, transparent);
  display: grid;
  gap: 0.35rem;
  min-height: 8.8rem;
  padding: clamp(1rem, 1.8vw, 1.35rem);
}

.investment-data-grid span,
.investment-pillar span {
  color: var(--pedra);
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.investment-data-grid strong {
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.investment-quote-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: clamp(1.8rem, 3vw, 2.6rem) 0;
}

.investment-quote-grid blockquote {
  border-left: 2px solid var(--pedra);
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  font-weight: 400;
  line-height: 1.12;
  padding: 0.2rem 0 0.2rem clamp(1rem, 2vw, 1.5rem);
}

.investment-pillars {
  display: grid;
  gap: 1rem;
}

.investment-pillar {
  border: 1px solid color-mix(in srgb, var(--pedra) 28%, transparent);
  display: grid;
  gap: 0.95rem;
  padding: clamp(1.35rem, 2.4vw, 2rem);
}

.investment-pillar h3,
.investment-faq__item h3 {
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  font-weight: 400;
  line-height: 1.15;
}

.investment-criteria-card {
  background: color-mix(in srgb, var(--branco-quente) 70%, var(--off-white));
}

.investment-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: clamp(1.4rem, 2.4vw, 2rem) 0;
}

.investment-list li {
  border-top: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  padding: 0.85rem 0;
}

.investment-list li:last-child {
  border-bottom: 1px solid color-mix(in srgb, currentColor 18%, transparent);
}

.investment-faq__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.investment-faq__item {
  border: 1px solid color-mix(in srgb, var(--pedra) 28%, transparent);
  display: grid;
  gap: 0.8rem;
  padding: clamp(1.25rem, 2vw, 1.7rem);
}

.investment-references {
  background: color-mix(in srgb, var(--branco-quente) 82%, var(--off-white));
  padding-top: clamp(3rem, 5vw, 4.5rem);
}

.investment-references .investment-article__heading {
  margin-bottom: clamp(1.8rem, 3vw, 2.4rem);
}

.investment-references .investment-article__heading h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.investment-references .investment-article__heading p {
  color: color-mix(in srgb, var(--preto-quente) 58%, transparent);
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 620px;
}

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

.investment-references__grid article {
  border-top: 1px solid color-mix(in srgb, var(--pedra) 28%, transparent);
  display: grid;
  gap: 1rem;
  padding: clamp(1.1rem, 2vw, 1.45rem) clamp(0.6rem, 1.5vw, 1rem) clamp(1.4rem, 2vw, 1.8rem) 0;
}

.investment-references__grid h3 {
  color: var(--verde-profundo);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.investment-references__grid ul {
  display: grid;
  gap: 0.5rem;
  list-style: none;
}

.investment-references__grid a {
  color: color-mix(in srgb, var(--preto-quente) 68%, transparent);
  display: inline;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.55;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--pedra) 38%, transparent);
  text-underline-offset: 0.18em;
  transition:
    color var(--motion-fast) var(--ease-smooth),
    text-decoration-color var(--motion-fast) var(--ease-smooth);
}

.investment-references__grid a:hover {
  color: var(--verde-profundo);
  text-decoration-color: var(--pedra);
}

.page-facts {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(1.8rem, 3.2vw, 3rem);
}

.page-facts article {
  background: color-mix(in srgb, var(--pedra-clara) 22%, transparent);
  padding: clamp(1.1rem, 1.8vw, 1.7rem);
}

.page-facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  font-weight: 400;
  line-height: 1.08;
  margin-top: 0.7rem;
}

.page-cta {
  align-items: center;
  border-top: 1px solid color-mix(in srgb, var(--pedra) 30%, transparent);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  justify-content: space-between;
  margin-top: clamp(1.8rem, 3.2vw, 3.2rem);
  padding-top: clamp(1.2rem, 2.4vw, 2rem);
}

.page-cta a {
  border: 1px solid currentColor;
  color: inherit;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 0.9rem 1.2rem;
  text-transform: uppercase;
}

.page-cta a:hover {
  background: var(--pedra);
  border-color: var(--pedra);
  color: var(--verde-profundo);
}

/* Site-wide editorial composition pass */
@media (min-width: 1081px) {
  .institucional-fvs,
  .gramado,
  .leitura-mercado,
  .investir-serra,
  .experiencia,
  .empreendimentos,
  .projeto-detalhe,
  .tipologias,
  .decisao,
  .seguranca-decisao,
  .galeria,
  .cta-consultivo {
    padding-block: clamp(4.8rem, 7vw, 7.4rem);
  }

  .gramado {
    padding-block: clamp(4.8rem, 7vw, 7.4rem) clamp(1.2rem, 2vw, 2rem);
  }

  .empreendimentos {
    padding-block: clamp(1.2rem, 2vw, 2rem) clamp(4.8rem, 7vw, 7.4rem);
  }

  .institucional-fvs__intro,
  .gramado__layout,
  .leitura-mercado__inner,
  .investir-serra__inner,
  .experiencia__layout,
  .projeto-detalhe__intro,
  .tipologias__intro,
  .decisao__intro,
  .seguranca-decisao__intro,
  .galeria__intro,
  .cta-consultivo .container {
    gap: clamp(2rem, 5vw, 5.4rem);
  }

  .institucional-fvs__intro h2,
  .gramado__content h2,
  .leitura-mercado__intro h2,
  .investir-serra__intro h2,
  .experiencia h2,
  .section-heading h2,
  .projeto-detalhe__intro h2,
  .tipologias__intro h2,
  .decisao__intro h2,
  .seguranca-decisao__intro h2,
  .galeria__intro h2,
  .cta-consultivo h2 {
    font-size: clamp(1.9rem, 2.8vw, 3.2rem);
    line-height: 1.1;
    max-width: 760px;
  }

  .gramado__block h3,
  .investir-serra__grid h3,
  .empreendimento__content h3,
  .projeto-detalhe__argument h3,
  .produto-especifico__intro h3,
  .localizacao-produto h3,
  .tipologia-card h3,
  .decisao__card h3,
  .seguranca-decisao__grid h3 {
    font-size: clamp(1.25rem, 1.8vw, 1.9rem);
    line-height: 1.16;
  }

  .leitura-mercado__data strong,
  .institucional-fvs__stats strong,
  .produto-especifico__grid strong {
    font-size: clamp(1.7rem, 2.5vw, 2.55rem);
    line-height: 1.08;
  }

  .seguranca-decisao__close {
    font-size: clamp(1.9rem, 3vw, 3.35rem);
    line-height: 1.12;
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  .manifesto__intro,
  .metodo-fvs__intro,
  .confianca-fvs__intro,
  .page-split,
  .page-grid,
  .page-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .manifesto__intro {
    min-height: auto;
  }

  .manifesto__support {
    align-self: start;
    max-width: 40rem;
  }

  .manifesto__points,
  .manifesto__contrast {
    grid-template-columns: minmax(0, 1fr);
  }

  .manifesto__points span {
    border-right: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--pedra) 24%, transparent);
  }

  .manifesto__points span:last-child {
    border-bottom: 0;
  }

  .confianca-fvs__grid,
  .seguranca-decisao__grid,
  .institucional-fvs__stats,
  .institucional-fvs__grid,
  .investir-serra__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

main > section,
.hero-transition {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.hero__title {
  font-size: var(--type-hero);
  line-height: 1;
}

.manifesto__text,
.hero-transition__content > p {
  font-size: var(--type-editorial-large);
  line-height: 1.04;
}

.institucional-fvs__intro h2,
.metodo-fvs__intro h2,
.gramado__content h2,
.leitura-mercado__intro h2,
.investir-serra__intro h2,
.experiencia h2,
.section-heading h2,
.projeto-detalhe__intro h2,
.tipologias__intro h2,
.decisao__intro h2,
.seguranca-decisao__intro h2,
.confianca-fvs__intro h2,
.galeria__intro h2,
.cta-consultivo h2 {
  font-size: var(--type-section-title);
  line-height: 1.08;
  max-width: 760px;
}

.gramado__block h3,
.investir-serra__grid h3,
.metodo-fvs__steps h3,
.empreendimento__content h3,
.projeto-detalhe__argument h3,
.produto-especifico__intro h3,
.localizacao-produto h3,
.tipologia-card h3,
.decisao__card h3,
.seguranca-decisao__grid h3,
.confianca-fvs__grid h3,
.cta-consultivo__panel p {
  font-size: var(--type-section-subtitle);
  line-height: 1.16;
}

.leitura-mercado__data strong,
.institucional-fvs__stats strong,
.produto-especifico__grid strong {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.02;
}

.seguranca-decisao__close,
.footer__lead p {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.08;
}

@media (max-width: 1080px) {
  .header {
    grid-template-columns: auto 1fr auto;
  }

  .header__nav {
    display: flex;
  }

  .header__link {
    display: none;
  }

  .header__logo {
    justify-self: center;
  }

  .menu-panel__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-panel__nav {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-panel__nav a {
    font-size: clamp(1.42rem, 3.4vw, 1.88rem);
  }

  .menu-panel__context {
    margin-top: 1.4rem;
  }

  .hero-transition {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 2rem;
  }

  .hero-transition__media {
    justify-self: start;
    width: min(56vw, 420px);
  }

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

  .gramado__media {
    min-height: 520px;
  }

  .empreendimentos__grid,
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .empreendimento,
  .empreendimento--ernesto {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  }

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

  .projeto-detalhe__intro,
  .projeto-detalhe__layout,
  .produto-especifico__intro,
  .localizacao-produto {
    grid-template-columns: minmax(0, 1fr);
  }

  .metodo-fvs__intro,
  .institucional-fvs__intro,
  .leitura-mercado__intro,
  .investir-serra__intro,
  .confianca-fvs__intro,
  .metodo-fvs__steps article,
  .metodo-fvs__proof {
    grid-template-columns: minmax(0, 1fr);
  }

  .metodo-fvs__intro p,
  .institucional-fvs__intro p,
  .leitura-mercado__intro p,
  .investir-serra__intro p,
  .confianca-fvs__intro p {
    max-width: 680px;
  }

  .leitura-mercado__data,
  .investir-serra__grid,
  .confianca-fvs__grid,
  .institucional-fvs__stats {
    grid-template-columns: minmax(0, 1fr);
  }

  .leitura-mercado__data article,
  .investir-serra__grid article,
  .confianca-fvs__grid article,
  .institucional-fvs__stats article {
    border-bottom: 1px solid color-mix(in srgb, var(--pedra-clara) 18%, transparent);
    border-right: 0;
    min-height: auto;
    padding: 1.55rem 0;
  }

  .leitura-mercado__data article:last-child,
  .investir-serra__grid article:last-child,
  .confianca-fvs__grid article:last-child,
  .institucional-fvs__stats article:last-child {
    border-bottom: 0;
  }

  .leitura-mercado__data span,
  .investir-serra__grid span {
    margin-bottom: 1.2rem;
  }

  .institucional-fvs__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .institucional-fvs__grid article {
    border-bottom: 1px solid color-mix(in srgb, var(--pedra) 28%, transparent);
    border-right: 0;
    min-height: auto;
    padding: 1.5rem 0;
  }

  .institucional-fvs__grid article:last-child {
    border-bottom: 0;
  }

  .institucional-fvs__grid span {
    margin-bottom: 1.1rem;
  }

  .tipologias__intro,
  .tipologias__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .tipologias__intro p {
    max-width: 680px;
  }

  .decisao__intro,
  .decisao__notes,
  .decisao__diagnostic {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .decisao__card + .decisao__card {
    border-left: 0;
  }

  .seguranca-decisao__intro {
    grid-template-columns: minmax(0, 1fr);
  }

  .seguranca-decisao__intro p {
    max-width: 680px;
  }

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

  .seguranca-decisao__grid article:nth-child(2n) {
    border-right: 0;
  }

  .projeto-detalhe__intro p {
    max-width: 680px;
  }

  .projeto-detalhe__layout {
    min-height: auto;
  }

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

  .produto-especifico__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .produto-imagens {
    grid-template-columns: minmax(0, 1fr);
  }

  .produto-imagens__item--manhattan-living,
  .produto-imagens__item--ernesto-estar {
    transform: none;
  }

  .produto-especifico__grid article {
    border-bottom: 1px solid color-mix(in srgb, var(--pedra-clara) 18%, transparent);
    border-right: 0;
    min-height: auto;
    padding: 1.45rem 0;
  }

  .produto-especifico__grid article:last-child {
    border-bottom: 0;
  }

  .produto-especifico__grid span {
    margin-bottom: 1rem;
  }

  .projeto-detalhe__criteria article:nth-child(2n) {
    border-right: 0;
  }

  .galeria__intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.7rem;
  }

  .galeria__intro p {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .section-heading {
    max-width: 18.5rem;
  }

  .section-heading h2 {
    font-size: clamp(2.05rem, 9vw, 2.45rem);
    line-height: 1.06;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .section-heading p {
    max-width: 18rem;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.4rem);
  }

  .header {
    grid-template-columns: 1fr auto;
    height: 68px;
  }

  .header__nav {
    display: flex;
    grid-column: 2;
    grid-row: 1;
  }

  .header__logo {
    grid-column: 1;
    justify-self: start;
  }

  .header__button {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    padding: 0.7rem 0.82rem;
  }

  .hero {
    min-height: 92vh;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 68px;
  }

  .hero__content {
    max-width: 100%;
    padding-bottom: 1rem;
  }

  .hero__title {
    font-size: clamp(2.45rem, 10.4vw, 3.28rem);
    line-height: 1.02;
    max-width: 20rem;
    overflow-wrap: normal;
  }

  .hero__subtitle {
    font-size: 0.98rem;
    line-height: 1.75;
    max-width: 20rem;
  }

  .hero__scene::before {
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--verde-profundo) 38%, transparent) 0%, color-mix(in srgb, var(--verde-profundo) 18%, transparent) 48%, color-mix(in srgb, var(--verde-profundo) 42%, transparent) 100%);
  }

  .hero__image--main {
    height: 100%;
    inset: 0;
    transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.04);
    width: 100%;
  }

  .hero__actions {
    gap: 0.95rem 1.1rem;
  }

  .hero__proof {
    gap: 0.65rem;
    grid-template-columns: 1fr;
    margin-top: 1.8rem;
    max-width: 20rem;
    padding-top: 1rem;
  }

  .hero__proof span {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .header__menu-button {
    font-size: 0;
    gap: 0;
  }
  .menu-panel__inner,
  .menu-panel__top,
  .menu-panel__nav,
  .menu-panel__context {
    max-width: 100%;
    min-width: 0;
  }

  .menu-panel__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
    justify-content: flex-start;
    position: relative;
    z-index: 12;
  }

  .menu-panel__close {
    color: var(--branco-quente);
    display: inline-flex;
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    min-height: 2.25rem;
    padding: 0 0.78rem;
    position: static;
    width: auto;
  }

  .hero-transition {
    gap: 1.6rem;
    min-height: auto;
    padding: 4.5rem 1.25rem;
  }

  .hero-transition__media {
    height: 1px;
    transform: none;
    width: 100%;
  }

  .hero-transition__content {
    max-width: min(20rem, calc(100vw - 2.5rem));
    padding-top: 1.4rem;
  }

  .hero-transition__content p {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.04;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .hero-transition__argument {
    gap: 1rem;
    grid-template-columns: 1fr;
    margin-top: 1.35rem;
    padding-top: 1.15rem;
  }

  .hero-transition__argument p {
    font-size: 0.94rem;
    line-height: 1.75;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .manifesto {
    padding: 5rem 0;
  }

  .manifesto__inner {
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr);
  }

  .manifesto__text {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
    line-height: 1.02;
    max-width: 20rem;
  }

  .manifesto__support {
    font-size: 0.96rem;
    line-height: 1.85;
    max-width: 20rem;
  }

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

  .manifesto__points span {
    border-bottom: 1px solid color-mix(in srgb, var(--pedra) 28%, transparent);
    border-right: 0;
    min-height: auto;
    padding: 1rem 0;
  }

  .manifesto__points span:last-child {
    border-bottom: 0;
  }

  .manifesto__contrast {
    gap: 1.35rem;
    grid-template-columns: 1fr;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .manifesto__contrast p {
    font-size: 0.94rem;
    line-height: 1.78;
  }

  .metodo-fvs {
    padding: 5rem 0 0;
  }

  .institucional-fvs {
    padding: 5rem 0;
  }

  .leitura-mercado {
    padding: 5rem 0;
  }

  .investir-serra,
  .confianca-fvs {
    padding: 1.6rem 0 5rem;
  }

  .institucional-fvs__intro {
    gap: 1.6rem;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .institucional-fvs__intro h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.05;
  }

  .institucional-fvs__intro p,
  .institucional-fvs__grid p {
    font-size: 0.96rem;
    line-height: 1.85;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .leitura-mercado__intro,
  .investir-serra__intro,
  .confianca-fvs__intro {
    gap: 1.6rem;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .leitura-mercado__intro h2,
  .investir-serra__intro h2,
  .confianca-fvs__intro h2 {
    font-size: clamp(2.1rem, 9.5vw, 2.85rem);
    line-height: 1.05;
  }

  .leitura-mercado__intro p,
  .investir-serra__intro p,
  .investir-serra__grid p,
  .confianca-fvs__intro p,
  .confianca-fvs__grid p,
  .leitura-mercado__data p,
  .leitura-mercado__source {
    font-size: 0.94rem;
    line-height: 1.78;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .leitura-mercado__data,
  .investir-serra__grid,
  .confianca-fvs__grid,
  .institucional-fvs__stats {
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .leitura-mercado__data strong {
    font-size: clamp(2.1rem, 10vw, 3.05rem);
  }

  .institucional-fvs__stats strong {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .investir-serra__grid h3,
  .confianca-fvs__grid h3 {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
    margin: 0 0 0.9rem;
  }

  .metodo-fvs__intro {
    gap: 1.6rem;
    margin-bottom: 3rem;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .metodo-fvs__intro h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.05;
  }

  .metodo-fvs__intro p {
    font-size: 0.96rem;
    line-height: 1.85;
  }

  .metodo-fvs__steps article {
    gap: 0.75rem;
    padding: 1.45rem 0;
  }

  .metodo-fvs__steps h3 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .metodo-fvs__steps p {
    font-size: 0.94rem;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .metodo-fvs__proof {
    gap: 1.35rem;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .metodo-fvs__proof p {
    font-size: 0.94rem;
    line-height: 1.78;
  }

  .gramado__media {
    min-height: 420px;
  }

  .gramado__content,
  .gramado__grid,
  .gramado__block,
  .gramado__block h3,
  .gramado__block p {
    max-width: min(19rem, calc(100vw - 2.5rem));
  }

  .gramado__block p {
    font-size: 0.94rem;
  }

  .gramado__thesis,
  .gramado__thesis p {
    max-width: min(19rem, calc(100vw - 2.5rem));
  }

  .gramado__thesis p {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

  .gramado h2 {
    font-size: clamp(2.2rem, 10vw, 2.9rem);
    line-height: 1.06;
    max-width: min(19rem, calc(100vw - 2.5rem));
  }

  .gramado__block {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .experiencia {
    min-height: auto;
  }

  .experiencia__layout {
    gap: 2.2rem;
    grid-template-columns: 1fr;
    padding: 5rem 0;
  }

  .experiencia__content {
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .experiencia h2 {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
    line-height: 1.04;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .experiencia p {
    font-size: 0.96rem;
    line-height: 1.85;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .experiencia__scenes {
    grid-template-columns: 1fr;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .experiencia__scenes span {
    min-height: auto;
    padding: 0.95rem 0;
  }

  .experiencia__moments {
    justify-self: start;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .experiencia__moment {
    aspect-ratio: 1 / 0.82;
    min-height: 0;
    padding: 1rem;
  }

  .experiencia__moment--living {
    transform: none;
  }

  .experiencia__moment figcaption {
    font-size: clamp(1.18rem, 6vw, 1.52rem);
  }

  .experiencia__image {
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--verde-profundo) 82%, transparent), color-mix(in srgb, var(--verde-profundo) 68%, transparent)),
      url("assets/images/experiencia-interior.png") center/cover no-repeat;
  }

  .empreendimentos__grid,
  .footer__grid,
  .galeria__grid {
    grid-template-columns: 1fr;
  }

  .footer__lead {
    gap: 1.8rem;
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__lead p {
    font-size: clamp(2rem, 10vw, 3rem);
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .footer__block p,
  .footer__block a,
  .footer__bottom p {
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .empreendimento {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .empreendimento--ernesto {
    grid-template-columns: minmax(0, 1fr);
  }

  .empreendimento--ernesto .empreendimento__image {
    order: 0;
  }

  .empreendimento__image {
    min-height: 420px;
  }

  .empreendimento__content {
    padding: 2rem 1.25rem;
  }

  .empreendimento__content > * {
    max-width: min(20rem, calc(100vw - 3rem));
  }

  .empreendimento__name {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .empreendimento__facts div {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .projeto-detalhe {
    padding: 5rem 0;
  }

  .projeto-detalhe__intro {
    gap: 1.6rem;
    margin-bottom: 3rem;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .projeto-detalhe__intro h2 {
    font-size: clamp(2.25rem, 10vw, 3.05rem);
    line-height: 1.04;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .projeto-detalhe__intro p {
    font-size: 0.96rem;
    line-height: 1.85;
  }

  .projeto-detalhe__image {
    min-height: 460px;
  }

  .projeto-detalhe__argument {
    padding: 2rem 1.6rem;
  }

  .projeto-detalhe__argument h3,
  .projeto-detalhe__argument p,
  .projeto-detalhe__argument dl {
    max-width: min(20rem, calc(100vw - 3.2rem));
  }

  .projeto-detalhe__argument dl div {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .projeto-detalhe__proofs {
    grid-template-columns: 1fr;
  }

  .projeto-detalhe__proofs figure {
    min-height: 430px;
  }

  .projeto-detalhe__proofs figcaption strong {
    font-size: clamp(1.3rem, 7vw, 1.8rem);
    max-width: min(18rem, 100%);
  }

  .projeto-detalhe__criteria {
    grid-template-columns: 1fr;
  }

  .produto-especifico {
    margin-top: 3rem;
  }

  .produto-especifico__intro,
  .localizacao-produto {
    gap: 1.5rem;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .produto-especifico__intro h3,
  .localizacao-produto h3 {
    font-size: clamp(1.8rem, 8.5vw, 2.45rem);
    line-height: 1.06;
  }

  .produto-especifico__grid,
  .produto-especifico__features,
  .produto-imagens,
  .localizacao-produto dl {
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .produto-imagens__item {
    min-height: 340px;
  }

  .produto-imagens__item figcaption {
    font-size: clamp(1.24rem, 6vw, 1.65rem);
  }

  .produto-especifico__features {
    columns: 1;
  }

  .localizacao-produto {
    padding: 1.6rem 1.25rem;
  }

  .localizacao-produto dl div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .projeto-detalhe__criteria article {
    border-right: 0;
    min-height: auto;
    padding: 1.4rem 0;
  }

  .projeto-detalhe__criteria p {
    margin-top: 2.5rem;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .tipologias {
    padding: 5rem 0;
  }

  .tipologias__intro {
    gap: 1.6rem;
    margin-bottom: 3rem;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .tipologias__intro h2 {
    font-size: clamp(2.1rem, 9.5vw, 2.85rem);
    line-height: 1.06;
  }

  .tipologias__intro p {
    font-size: 0.96rem;
    line-height: 1.85;
  }

  .tipologia-card {
    grid-template-rows: minmax(340px, auto) auto;
    min-height: auto;
  }

  .tipologia-card__image {
    min-height: 340px;
  }

  .tipologia-card__content h3,
  .tipologia-card__content p,
  .tipologia-card__metrics {
    max-width: min(20rem, calc(100vw - 3.2rem));
  }

  .tipologia-card__metrics {
    grid-template-columns: 1fr;
  }

  .tipologia-card__metrics div {
    border-bottom: 1px solid color-mix(in srgb, var(--pedra) 22%, transparent);
    border-right: 0;
    padding: 0.85rem 0;
  }

  .tipologia-card__metrics div:last-child {
    border-bottom: 0;
  }

  .tipologia-card__reading p {
    gap: 0.45rem;
    grid-template-columns: 1fr;
  }

  .decisao {
    padding: 5rem 0;
  }

  .decisao__intro {
    gap: 1.6rem;
    margin-bottom: 3rem;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .decisao__intro h2 {
    font-size: clamp(2.1rem, 9.5vw, 2.85rem);
    line-height: 1.06;
  }

  .decisao__intro p {
    font-size: 0.96rem;
    line-height: 1.85;
  }

  .decisao__card {
    min-height: auto;
    padding: 2rem 1.25rem;
  }

  .decisao__card h3 {
    font-size: clamp(1.8rem, 8.5vw, 2.45rem);
    margin: 3.5rem 0 1.3rem;
  }

  .decisao__card p,
  .decisao__card h3 {
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .decisao__notes {
    gap: 1.2rem;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .decisao__diagnostic {
    gap: 1.4rem;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .decisao__diagnostic p {
    font-size: clamp(1.55rem, 7vw, 2.15rem);
  }

  .decisao__diagnostic li {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .seguranca-decisao {
    padding: 5rem 0;
  }

  .seguranca-decisao__intro {
    gap: 1.6rem;
    margin-bottom: 3rem;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .seguranca-decisao__intro h2 {
    font-size: clamp(2.1rem, 9.5vw, 2.85rem);
    line-height: 1.06;
  }

  .seguranca-decisao__intro p {
    font-size: 0.96rem;
    line-height: 1.85;
  }

  .seguranca-decisao__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .seguranca-decisao__grid article {
    border-right: 0;
    min-height: auto;
    padding: 1.45rem 0;
  }

  .seguranca-decisao__grid h3,
  .seguranca-decisao__grid p {
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .seguranca-decisao__grid h3 {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
    margin: 3rem 0 1rem;
  }

  .seguranca-decisao__close {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
    margin-left: 0;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .galeria {
    padding-top: 5rem;
  }

  .galeria__intro {
    margin-bottom: 3rem;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .galeria__intro h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
    line-height: 1.04;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .galeria__intro p {
    font-size: 0.96rem;
    line-height: 1.85;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .galeria__item,
  .galeria__item--large {
    grid-column: auto;
    grid-row: auto;
    min-height: 420px;
  }

  .galeria__item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .galeria__item figcaption strong {
    font-size: clamp(1.28rem, 7vw, 1.75rem);
    max-width: min(17.5rem, 100%);
  }

  .ernesto-gallery__intro {
    gap: 1.6rem;
    grid-template-columns: 1fr;
    margin-bottom: 2.4rem;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .ernesto-gallery__intro .section-kicker {
    grid-column: auto;
  }

  .ernesto-gallery__intro h2 {
    font-size: clamp(2.05rem, 9.5vw, 2.8rem);
    line-height: 1.06;
  }

  .ernesto-gallery__intro p {
    font-size: 0.96rem;
    line-height: 1.85;
  }

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

  .ernesto-gallery__item--featured,
  .ernesto-gallery__item--wide {
    grid-column: span 2;
  }

  .gallery-lightbox {
    padding: 1rem;
  }

  .gallery-lightbox__dialog {
    gap: 0.75rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    height: calc(100vh - 2rem);
  }

  .gallery-lightbox__figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .gallery-lightbox__image {
    max-height: calc(100vh - 9rem);
  }

  .gallery-lightbox__close {
    right: 0;
    top: 0;
  }

  .gallery-lightbox__control {
    grid-row: 2;
    height: 3rem;
    width: 100%;
  }

  .gallery-lightbox__control--prev {
    grid-column: 1;
    margin: 0;
  }

  .gallery-lightbox__control--next {
    grid-column: 2;
    margin: 0;
  }

  .galeria__proof-strip {
    grid-template-columns: 1fr;
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .galeria-proof {
    aspect-ratio: 1 / 0.92;
    min-height: 0;
  }

  .galeria-proof figcaption {
    font-size: clamp(1.16rem, 6vw, 1.5rem);
  }

  .cta-consultivo .container {
    grid-template-columns: 1fr;
  }

  .cta-consultivo__button {
    width: min(100%, 320px);
  }

  .cta-consultivo h2,
  .cta-consultivo p,
  .cta-consultivo__buttons,
  .cta-consultivo__panel {
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .cta-consultivo p {
    font-size: 0.96rem;
    line-height: 1.85;
  }

  .cta-consultivo__panel p {
    gap: 0.85rem;
    grid-template-columns: 2rem minmax(0, 1fr);
  }
}

@media (max-width: 460px) {
  .header__menu-button {
    font-size: 0;
  }

  .header__menu-button span {
    width: 1.85rem;
  }

  .header__button {
    font-size: 0.64rem;
    min-width: auto;
  }

  .header__logo {
    font-size: 1.34rem;
  }

  .menu-panel__nav a {
    font-size: clamp(1.38rem, 6vw, 1.78rem);
    gap: 0.85rem;
    grid-template-columns: 2rem minmax(0, 1fr);
    line-height: 1.04;
    padding: 0.42rem 0;
  }

  .menu-panel__nav a span {
    font-size: 0.62rem;
  }

  .menu-panel::before {
    inset: 0.78rem;
  }

  .menu-panel__inner,
  .menu-panel__top,
  .menu-panel__nav,
  .menu-panel__context {
    max-width: 100%;
    min-width: 0;
  }

  .menu-panel__close {
    color: var(--branco-quente);
    display: inline-flex;
    font-family: var(--font-body);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    min-height: 2.25rem;
    padding: 0 0.78rem;
    position: static;
    width: auto;
  }

  .menu-panel__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
    justify-content: flex-start;
    position: relative;
    z-index: 12;
  }

  .menu-panel__context {
    padding-top: 1.3rem;
  }

  .menu-panel__context p {
    max-width: min(20rem, calc(100vw - 2.5rem));
  }

  .hero__cta {
    width: auto;
  }

  .section-kicker,
  .hero__eyebrow {
    letter-spacing: 0.14em;
  }

  .manifesto {
    padding: 5rem 0;
  }

  .manifesto__inner {
    gap: 2rem;
    grid-template-columns: minmax(0, 1fr);
  }

  .manifesto__text {
    font-size: clamp(2.35rem, 11vw, 3.55rem);
    line-height: 1.02;
    max-width: 20rem;
  }

  .manifesto__support {
    font-size: 0.96rem;
    line-height: 1.85;
    max-width: 20rem;
  }
}

@media (max-width: 760px) {
  .gramado__block h3,
  .investir-serra__grid h3,
  .metodo-fvs__steps h3,
  .empreendimento__content h3,
  .projeto-detalhe__argument h3,
  .produto-especifico__intro h3,
  .localizacao-produto h3,
  .tipologia-card h3,
  .decisao__card h3,
  .seguranca-decisao__grid h3,
  .confianca-fvs__grid h3,
  .cta-consultivo__panel p {
    font-size: clamp(1.45rem, 6.4vw, 1.75rem);
    line-height: 1.16;
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .hero {
    align-items: flex-end;
    min-height: 100svh;
    padding: calc(var(--header-height) + 1.1rem) clamp(1.25rem, 4vw, 4rem) 1.55rem;
  }

  .hero__content {
    max-width: 760px;
    padding-bottom: 0;
  }

  .hero__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    margin-bottom: 0.72rem;
  }

  .hero__title {
    font-size: clamp(2.55rem, 3.65vw, 3.55rem);
    line-height: 1;
    max-width: 760px;
  }

  .hero__subtitle {
    font-size: clamp(0.96rem, 1.35vw, 1.1rem);
    line-height: 1.68;
    margin: 1rem 0 1.15rem;
    max-width: 560px;
  }

  .hero__actions {
    gap: 0.85rem 1rem;
  }

  .hero__cta {
    padding: 0.72rem 1rem;
  }

  .hero__proof {
    display: none;
  }

  .manifesto {
    padding: calc(var(--header-height) + 1.2rem) 0 clamp(3rem, 5vw, 4.5rem);
  }

  .manifesto__inner {
    gap: 1.35rem clamp(2rem, 5vw, 4rem);
    padding-top: 1.55rem;
  }

  .manifesto__text {
    font-size: clamp(2.25rem, 3.65vw, 3.35rem);
    line-height: 1.08;
    max-width: 680px;
  }

  .manifesto__support {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .manifesto__points span {
    min-height: 76px;
    padding-top: 1.05rem;
  }

  .manifesto__contrast {
    margin-top: 1rem;
    padding-top: 1.25rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
    --type-hero: clamp(2.35rem, 10vw, 3.2rem);
    --type-section-title: clamp(2rem, 8vw, 2.65rem);
    --type-section-subtitle: clamp(1.35rem, 6vw, 1.65rem);
    --type-editorial-large: clamp(2.05rem, 9vw, 3rem);
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 18px);
  }

  body {
    font-size: 15px;
    line-height: 1.72;
  }

  .container {
    width: min(100% - 2rem, 100%);
  }

  .header {
    background: color-mix(in srgb, var(--branco-quente) 98%, transparent);
    border-bottom-color: color-mix(in srgb, var(--pedra) 34%, transparent);
    grid-template-columns: 1fr auto;
    height: var(--header-height);
    padding: 0 1rem;
  }

  .header__nav {
    order: 2;
    justify-content: end;
  }

  .header__logo {
    color: var(--verde-profundo);
    justify-self: start;
    order: 1;
    text-shadow: none;
    width: 4.7rem;
  }

  .header__logo .brand-signature__image--light {
    display: none;
  }

  .header__logo .brand-signature__image--dark {
    display: block;
  }

  .header__menu-button {
    color: var(--verde-profundo);
    font-size: 0;
    gap: 0;
    text-shadow: none;
  }

  .header__menu-button span {
    width: 2.1rem;
  }

  .brand-signature__mark {
    font-size: 1.12rem;
    letter-spacing: 0.15em;
  }

  .brand-signature__rule {
    width: 3.55rem;
  }

  .brand-signature__tagline {
    font-size: 0.36rem;
    letter-spacing: 0.34em;
  }

  .brand-signature__image {
    max-width: 2.8rem;
  }

  .brand-signature__descriptor {
    font-size: 0.34rem;
    letter-spacing: 0.2em;
  }

  .menu-panel__inner {
    align-content: start;
    gap: 1.2rem;
    grid-template-rows: auto auto auto;
    min-height: 100svh;
    padding: 1rem 1rem 1.4rem;
  }

  .menu-panel__nav {
    align-self: start;
    gap: 0.18rem;
    margin-top: clamp(2.4rem, 10svh, 4.6rem);
  }

  .menu-panel__nav a {
    font-size: clamp(1.25rem, 5.4vw, 1.62rem);
    gap: 1rem;
    grid-template-columns: 2.4rem minmax(0, 1fr);
    line-height: 1.06;
    padding: 0.54rem 0;
  }

  .menu-panel__context {
    align-self: start;
    margin-top: 1rem;
    padding-top: 1.15rem;
  }

  .hero {
    align-items: end;
    min-height: 94svh;
    padding: calc(var(--header-height) + 1.3rem) 1rem clamp(2.4rem, 8svh, 4.5rem);
  }

  .hero__image--main {
    bottom: auto;
    height: 84svh;
    left: 0;
    right: auto;
    top: 8svh;
    transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1);
    width: 100vw;
  }

  .hero__image--left,
  .hero__image--right,
  .hero__image--lower {
    display: none;
  }

  .hero__scene::before {
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--verde-profundo) 40%, transparent) 0%, color-mix(in srgb, var(--verde-profundo) 18%, transparent) 42%, color-mix(in srgb, var(--verde-profundo) 44%, transparent) 100%),
      linear-gradient(90deg, color-mix(in srgb, var(--verde-profundo) 38%, transparent) 0%, color-mix(in srgb, var(--verde-profundo) 12%, transparent) 100%);
  }

  .hero__content {
    max-width: 100%;
    padding-bottom: 0;
  }

  .hero__eyebrow {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
    line-height: 1.55;
    margin-bottom: 0.75rem;
    max-width: 19rem;
  }

  .hero__title {
    font-size: var(--type-hero);
    line-height: 1.02;
    max-width: 19rem;
  }

  .hero__subtitle {
    font-size: 0.96rem;
    line-height: 1.68;
    margin: 1rem 0 1.1rem;
    max-width: 19rem;
  }

  .hero__actions {
    align-items: stretch;
    display: grid;
    gap: 0.75rem;
    max-width: 19rem;
  }

  .hero__cta,
  .hero__text-link {
    width: 100%;
  }

  .hero__cta {
    padding: 0.82rem 1rem;
  }

  .hero__proof {
    display: none;
  }

  .hero-transition,
  .manifesto,
  .institucional-fvs,
  .gramado,
  .leitura-mercado,
  .investir-serra,
  .experiencia,
  .empreendimentos,
  .metodo-fvs,
  .projeto-detalhe,
  .tipologias,
  .decisao,
  .seguranca-decisao,
  .confianca-fvs,
  .galeria,
  .cta-consultivo {
    padding-block: 4rem;
  }

  .metodo-fvs {
    padding-bottom: 0;
  }

  .confianca-fvs {
    padding-top: 1.4rem;
  }

  .gramado {
    padding-bottom: 2.6rem;
  }

  .empreendimentos {
    padding-top: 2.6rem;
  }

  .hero-transition,
  .manifesto__inner,
  .institucional-fvs__inner,
  .gramado__layout,
  .leitura-mercado__inner,
  .investir-serra__inner,
  .experiencia__layout,
  .empreendimentos .container,
  .metodo-fvs .container,
  .projeto-detalhe .container,
  .tipologias .container,
  .decisao .container,
  .seguranca-decisao .container,
  .confianca-fvs__inner,
  .cta-consultivo .container {
    max-width: 100%;
  }

  .manifesto__inner,
  .institucional-fvs__intro,
  .gramado__content,
  .leitura-mercado__intro,
  .investir-serra__intro,
  .experiencia__content,
  .section-heading,
  .projeto-detalhe__intro,
  .tipologias__intro,
  .decisao__intro,
  .seguranca-decisao__intro,
  .confianca-fvs__intro,
  .galeria__intro,
  .cta-consultivo__content {
    gap: 1.35rem;
    max-width: 100%;
  }

  .manifesto__text,
  .hero-transition__content > p,
  .institucional-fvs__intro h2,
  .metodo-fvs__intro h2,
  .gramado__content h2,
  .leitura-mercado__intro h2,
  .investir-serra__intro h2,
  .experiencia h2,
  .section-heading h2,
  .projeto-detalhe__intro h2,
  .tipologias__intro h2,
  .decisao__intro h2,
  .seguranca-decisao__intro h2,
  .confianca-fvs__intro h2,
  .galeria__intro h2,
  .cta-consultivo h2 {
    font-size: clamp(1.95rem, 7vw, 2.35rem);
    line-height: 1.08;
    max-width: 100%;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .manifesto__text,
  .hero-transition__content > p {
    font-size: clamp(2.05rem, 8.4vw, 2.8rem);
  }

  .gramado__content {
    order: 1;
  }

  .gramado__media {
    min-height: 280px;
    order: 2;
  }

  .manifesto__support,
  .institucional-fvs__intro p,
  .gramado__block p,
  .gramado__thesis p,
  .leitura-mercado__intro p,
  .leitura-mercado__data p,
  .investir-serra__intro p,
  .investir-serra__grid p,
  .experiencia p,
  .empreendimento__description,
  .projeto-detalhe__intro p,
  .produto-especifico__intro p,
  .tipologias__intro p,
  .decisao__intro p,
  .seguranca-decisao__intro p,
  .confianca-fvs__intro p,
  .confianca-fvs__grid p,
  .galeria__intro p,
  .cta-consultivo__content p {
    max-width: 100%;
  }

  .gramado__grid,
  .manifesto__points,
  .leitura-mercado__data,
  .investir-serra__grid,
  .institucional-fvs__stats,
  .institucional-fvs__grid,
  .produto-especifico__grid,
  .confianca-fvs__grid,
  .seguranca-decisao__grid {
    max-width: 100%;
  }

  .manifesto__points span {
    min-height: auto;
    padding: 1rem 0;
  }

  .leitura-mercado__data strong,
  .institucional-fvs__stats strong,
  .produto-especifico__grid strong {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .produto-especifico__features {
    max-width: 100%;
  }

  .produto-imagens__item,
  .projeto-detalhe__image,
  .tipologia-card__image {
    min-height: 300px;
  }

  .galeria__grid,
  .galeria__proof-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .ernesto-gallery__grid {
    grid-auto-rows: 260px;
    grid-template-columns: minmax(0, 1fr);
  }

  .ernesto-gallery__item,
  .ernesto-gallery__item--featured,
  .ernesto-gallery__item--wide,
  .ernesto-gallery__item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .galeria__item,
  .galeria-proof {
    min-height: 330px;
  }

  .footer__lead,
  .footer__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.cta-consultivo__panel p {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 0.95vw, 0.96rem);
  font-weight: 300;
  line-height: 1.72;
}

.cta-consultivo__note {
  font-size: clamp(1.08rem, 1.55vw, 1.36rem) !important;
  line-height: 1.28 !important;
}

.footer__lead p {
  font-size: clamp(1.38rem, 2.2vw, 2rem);
  line-height: 1.14;
  max-width: 760px;
}

.cta-consultivo p,
.institucional-fvs__intro p,
.leitura-mercado__intro p,
.investir-serra__intro p,
.experiencia p,
.projeto-detalhe__intro p,
.tipologias__intro p,
.decisao__intro p,
.seguranca-decisao__intro p,
.confianca-fvs__intro p,
.galeria__intro p {
  font-size: clamp(0.94rem, 1vw, 1rem);
  line-height: 1.78;
}

@media (max-width: 640px) {
  :root {
    --type-hero: clamp(1.95rem, 7.6vw, 2.35rem);
    --type-section-title: clamp(1.55rem, 6vw, 1.95rem);
    --type-section-subtitle: clamp(1.12rem, 4.8vw, 1.32rem);
    --type-editorial-large: clamp(1.68rem, 6.6vw, 2.05rem);
  }

  .hero__title,
  .manifesto__text,
  .hero-transition__content > p,
  .institucional-fvs__intro h2,
  .metodo-fvs__intro h2,
  .gramado__content h2,
  .leitura-mercado__intro h2,
  .investir-serra__intro h2,
  .experiencia h2,
  .section-heading h2,
  .projeto-detalhe__intro h2,
  .tipologias__intro h2,
  .decisao__intro h2,
  .seguranca-decisao__intro h2,
  .confianca-fvs__intro h2,
  .galeria__intro h2,
  .cta-consultivo h2 {
    letter-spacing: 0;
    line-height: 1.12;
  }

  .cta-consultivo .container {
    gap: 1.5rem;
  }

  .cta-consultivo h2 {
    font-size: clamp(1.58rem, 6.2vw, 1.92rem);
    max-width: 20rem;
  }

  .cta-consultivo p {
    font-size: 0.9rem;
    line-height: 1.68;
    margin-bottom: 1.1rem;
  }

  .cta-consultivo__note {
    font-size: clamp(1rem, 4.5vw, 1.18rem) !important;
    line-height: 1.34 !important;
    margin-bottom: 1.8rem !important;
  }

  .cta-consultivo__panel p {
    font-size: 0.86rem;
    gap: 0.75rem;
    grid-template-columns: 1.7rem minmax(0, 1fr);
    line-height: 1.55;
    padding: 0.85rem 0;
  }

  .empreendimentos {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .empreendimentos .section-heading {
    margin-bottom: 1.45rem;
  }

  .empreendimentos__grid {
    gap: 1.2rem;
  }

  .empreendimento {
    gap: 0;
    padding-top: 0;
  }

  .empreendimento__image {
    min-height: clamp(260px, 72vw, 340px);
  }

  .empreendimento__content {
    align-content: start;
    padding: 1.55rem 1.1rem 1.65rem;
  }

  .empreendimento__content > * {
    max-width: min(19rem, calc(100vw - 3rem));
  }

  .empreendimento__location {
    line-height: 1.45;
    margin-bottom: 0.7rem;
  }

  .empreendimento__name {
    margin-bottom: 0.85rem;
  }

  .empreendimento__concept {
    margin-bottom: 1.2rem;
  }

  .empreendimento__facts {
    margin-bottom: 1.25rem;
  }

  .empreendimento__facts div {
    gap: 0.35rem;
    padding: 0.78rem 0;
  }

  .cta-consultivo {
    padding-top: 3rem;
    padding-bottom: 3.25rem;
  }

  .cta-consultivo__buttons {
    display: grid;
    justify-items: center;
    margin-top: 0.2rem;
  }

  .cta-consultivo__button {
    align-items: center;
    justify-content: center;
    line-height: 1.18;
    min-height: 3.15rem;
    min-width: 0;
    padding: 0.9rem 0.85rem;
    text-align: center;
    white-space: nowrap;
    width: min(100%, 20rem);
    font-size: clamp(0.56rem, 2.35vw, 0.66rem);
    letter-spacing: 0.075em;
  }

  .page-section {
    padding: 2.6rem 1rem;
  }

  .page-card__content,
  .page-card {
    padding: 1.05rem;
  }

  .page-card__content {
    gap: 0.7rem;
  }

  .footer__lead p {
    font-size: clamp(1.18rem, 5.2vw, 1.48rem);
    line-height: 1.2;
    max-width: 18rem;
  }

  .page-hero {
    min-height: clamp(470px, 68svh, 610px);
    padding: calc(var(--header-height) + 2.2rem) 1.1rem 2.7rem;
  }

  .page-hero__content {
    max-width: calc(100vw - 2.2rem);
  }

  .page-hero__content h1 {
    font-size: clamp(1.62rem, 7.5vw, 2.08rem);
    line-height: 1.08;
    max-width: min(9.6em, 19rem);
    overflow-wrap: anywhere;
  }

  .page-hero__content p {
    font-size: 0.94rem;
    line-height: 1.68;
    max-width: 19rem;
    overflow-wrap: anywhere;
  }

  .page-section {
    padding: 3.15rem 1rem;
  }

  .page-section__heading {
    gap: 0.8rem;
    margin-bottom: 1.75rem;
  }

  .page-grid,
  .page-split,
  .page-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .investment-data-grid,
  .investment-quote-grid,
  .investment-faq__grid,
  .investment-references__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .investment-references {
    padding-top: 2.6rem;
  }

  .investment-references__grid article {
    gap: 0.85rem;
    padding: 1rem 0 1.25rem;
  }

  .investment-references__grid a {
    font-size: 0.76rem;
    line-height: 1.55;
  }

  .page-media {
    min-height: 320px;
  }

  .page-card__content,
  .page-card {
    padding: 1.25rem;
  }

  .page-cta {
    align-items: stretch;
    display: grid;
  }

  .page-cta a {
    justify-content: center;
    text-align: center;
  }

  .section-kicker,
  .page-eyebrow,
  .page-card span,
  .empreendimento__facts dt,
  .gramado__thesis span {
    font-family: var(--font-body);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 1.45;
  }

  .hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.15rem, 8.4vw, 2.65rem);
    line-height: 1.04;
    max-width: 20.5rem;
  }

  .manifesto__text,
  .hero-transition__content > p,
  .gramado__thesis p,
  .seguranca-decisao__close,
  .footer__lead p {
    font-family: var(--font-display);
    font-size: clamp(1.72rem, 6.4vw, 2.08rem);
    font-weight: 400;
    line-height: 1.12;
    max-width: 20rem;
  }

  .institucional-fvs__intro h2,
  .metodo-fvs__intro h2,
  .gramado__content h2,
  .leitura-mercado__intro h2,
  .investir-serra__intro h2,
  .experiencia h2,
  .section-heading h2,
  .projeto-detalhe__intro h2,
  .tipologias__intro h2,
  .decisao__intro h2,
  .seguranca-decisao__intro h2,
  .confianca-fvs__intro h2,
  .galeria__intro h2,
  .ernesto-gallery__intro h2,
  .cta-consultivo h2,
  .page-section__heading h2,
  .page-hero__content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.62rem, 6.2vw, 2rem);
    font-weight: 400;
    line-height: 1.12;
    max-width: 20rem;
  }

  .gramado__block h3,
  .investir-serra__grid h3,
  .metodo-fvs__steps h3,
  .empreendimento__content h3,
  .projeto-detalhe__argument h3,
  .produto-especifico__intro h3,
  .localizacao-produto h3,
  .tipologia-card h3,
  .decisao__card h3,
  .seguranca-decisao__grid h3,
  .confianca-fvs__grid h3,
  .page-card h2,
  .page-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.22rem, 4.6vw, 1.46rem);
    font-weight: 400;
    line-height: 1.16;
  }

  .hero__subtitle,
  .manifesto__support,
  .institucional-fvs__intro p,
  .metodo-fvs__intro p,
  .gramado__block p,
  .leitura-mercado__intro p,
  .leitura-mercado__data p,
  .investir-serra__intro p,
  .investir-serra__grid p,
  .experiencia p,
  .empreendimento__concept,
  .empreendimento__description,
  .empreendimento__facts dd,
  .projeto-detalhe__intro p,
  .projeto-detalhe__argument p,
  .produto-especifico__intro p,
  .produto-especifico__grid p,
  .tipologias__intro p,
  .tipologia-card p,
  .decisao__intro p,
  .decisao__card p,
  .seguranca-decisao__intro p,
  .seguranca-decisao__grid p,
  .confianca-fvs__intro p,
  .confianca-fvs__grid p,
  .galeria__intro p,
  .ernesto-gallery__intro p,
  .cta-consultivo__content p,
  .page-section__heading p,
  .page-hero__content p,
  .page-copy p,
  .page-card p,
  .page-card li,
  .page-list li {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.66;
    max-width: 20rem;
  }

  .empreendimento__link,
  .page-card a,
  .page-link,
  .decisao__card a {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    line-height: 1.42;
    max-width: 20rem;
  }

  .has-local-visual-motion [data-motion] {
    transition-delay: calc(var(--motion-order, 0) * 38ms);
  }

  .has-local-visual-motion [data-motion="title"] {
    filter: blur(6px);
    transform: translate3d(0, 48px, 0) scale(0.97);
  }

  .has-local-visual-motion [data-motion="copy"] {
    filter: blur(5px);
    transform: translate3d(0, 42px, 0);
  }

  .has-local-visual-motion [data-motion="card"] {
    filter: blur(5px) saturate(0.88);
    transform: translate3d(0, 52px, 0) scale(0.96);
  }

  .has-local-visual-motion [data-motion="image"] {
    clip-path: inset(10% 0 10% 0);
    filter: blur(5px) saturate(0.84) contrast(0.94);
    transform: translate3d(0, 48px, 0) scale(0.95);
  }

  .has-local-visual-motion [data-motion="image"].motion-in {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

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