/* ============================================================
   MORÊ NATURE SPA — main stylesheet
   Sections: utilities · loader · nav · hero · manifesto · location
   about · facade · leisure · rooftop · amenities · plans · invest
   cta · footer · responsive
   ============================================================ */


/* ============================================================
   1. UTILITIES & TYPOGRAPHY
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-deep);
  color: var(--c-cream);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 10000;
}
.skip:focus { left: 1rem; top: 1rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: clamp(1.25rem, 2vw, 2rem);
}
.eyebrow--light { color: var(--c-gold-light); }

.display {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: var(--fs-display);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--c-deep);
  font-variation-settings: "opsz" 144;
}
.display--light { color: var(--c-cream); }
.display em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}

h2.display, h3.display { margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem); }

p { color: var(--c-ink-soft); max-width: 64ch; }
.display--light + p, .display--light ~ p { color: rgba(245, 239, 230, 0.78); }

.num {
  font-family: var(--f-display);
  font-weight: 300;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.1em;
  font-variation-settings: "opsz" 144;
}
.num--gold { color: var(--c-gold); }
.num i {
  font-style: normal;
  font-size: 0.4em;
  font-family: var(--f-body);
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--c-muted);
  margin-left: 0.15em;
}

:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 4px;
  border-radius: 2px;
}

img { -webkit-user-drag: none; user-select: none; }


/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  --bg: var(--c-gold);
  --fg: var(--c-deep);
  --bd: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.95rem 1.5rem;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bd);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  min-height: 44px;
  transition: background-color 0.4s var(--ease-out), color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  will-change: transform;
}
.btn:disabled { opacity: 0.6; cursor: wait; }
.btn span { display: inline-block; will-change: transform; }
.btn:hover { --bg: var(--c-gold-light); }
.btn--gold { --bg: var(--c-gold); --fg: var(--c-deep); }
.btn--ghost-light { --bg: transparent; --fg: var(--c-cream); --bd: rgba(245,239,230,0.4); }
.btn--ghost-light:hover { --bg: rgba(245,239,230,0.08); }
.btn--lg { padding: 1.15rem 2rem; font-size: 1rem; }


/* ============================================================
   2. LOADER
   ============================================================ */

.loader {
  position: fixed; inset: 0;
  background: var(--c-deep);
  z-index: 9999;
  display: grid; place-items: center;
  will-change: clip-path, opacity;
}
.loader__inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
  color: var(--c-cream);
}
.loader__logo {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--c-gold);
  letter-spacing: -0.02em;
}
.loader__bar {
  width: clamp(180px, 24vw, 280px);
  height: 1px;
  background: rgba(196, 168, 117, 0.25);
  overflow: hidden;
}
.loader__bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--c-gold);
  transition: width 0.2s linear;
}
.loader__pct {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--c-gold-light);
}


/* ============================================================
   3. SCROLL PROGRESS + CURSOR
   ============================================================ */

.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 1px;
  background: transparent;
  z-index: 200;
  pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%;
  width: 0%;
  background: var(--c-gold);
  transition: width 0.05s linear;
}

.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9000;
  mix-blend-mode: difference;
}
.cursor__dot,
.cursor__ring {
  position: absolute;
  top: 0; left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cursor__dot {
  width: 6px; height: 6px;
  background: var(--c-gold);
}
.cursor__ring {
  width: 32px; height: 32px;
  border: 1px solid var(--c-gold);
  transition: opacity 0.3s var(--ease-out);
}
@media (pointer: coarse), (max-width: 1024px) {
  .cursor { display: none; }
}


/* ============================================================
   4. NAVBAR
   ============================================================ */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--pad-x);
  z-index: 100;
  color: var(--c-cream);
  transition: background-color 0.5s var(--ease-out),
              color 0.5s var(--ease-out),
              backdrop-filter 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              padding 0.4s var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  box-shadow: var(--shadow-sm);
  color: var(--c-deep);
  padding-top: 0.7rem; padding-bottom: 0.7rem;
}
.nav__logo {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
  color: inherit;
  letter-spacing: -0.02em;
}
.nav__links {
  display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.4rem);
}
.nav__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 0.6rem 0.2rem;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.nav__links a::after {
  content: ""; position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s var(--ease-out);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: inline-flex; }

.nav__hamburger {
  display: none;
  width: 44px; height: 44px;
  padding: 8px;
  position: relative;
}
.nav__hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: currentColor;
  margin: 5px 0;
  transition: transform 0.4s var(--ease-out), opacity 0.3s var(--ease-out);
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { transform: translateY(-6.5px) rotate(-45deg); }


/* MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--c-deep);
  color: var(--c-cream);
  z-index: 95;
  padding: calc(var(--nav-h) + 2rem) var(--pad-x) 2rem;
  display: flex; flex-direction: column; justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__links {
  display: flex; flex-direction: column; gap: 1.2rem;
}
.mobile-menu__links a {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 9vw, 4rem);
  line-height: 1;
  color: var(--c-cream);
  transition: color 0.3s var(--ease-out);
}
.mobile-menu__links a:hover { color: var(--c-gold); }
.mobile-menu__cta { align-self: flex-start; margin-top: 1.5rem; }


/* ============================================================
   5. HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  color: var(--c-cream);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--pad-x);
  padding-bottom: clamp(2rem, 5vw, 4rem);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center;
  will-change: transform, clip-path;
}
.hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 58, 71, 0.25) 0%,
    rgba(14, 58, 71, 0.05) 35%,
    rgba(14, 58, 71, 0.55) 80%,
    rgba(14, 58, 71, 0.85) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 1100px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.hero__eyebrow {
  color: var(--c-gold-light);
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(3rem, 9vw, 9rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--c-cream);
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
  font-variation-settings: "opsz" 144;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-gold-light);
}
.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(245, 239, 230, 0.85);
  max-width: 56ch;
  margin-bottom: 2rem;
  line-height: 1.55;
}
.hero__sub strong { color: var(--c-cream); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__meta {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr;
  align-items: end;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(245, 239, 230, 0.18);
}
.hero__meta > div {
  display: flex; flex-direction: column;
  gap: 0.25rem;
}
.hero__meta strong {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1;
  color: var(--c-gold-light);
}
.hero__meta span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.6);
}
.hero__scroll {
  justify-self: end;
  text-align: right;
}
.hero__scroll-line {
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--c-gold) 0%, transparent 100%);
  margin-left: auto; margin-top: 0.5rem;
  animation: scrollLine 2s var(--ease-in-out) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ============================================================
   6. MANIFESTO
   ============================================================ */

.manifesto {
  background: var(--c-cream);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.manifesto .container { max-width: 1100px; }
.manifesto__title { margin-bottom: 2rem; }
.manifesto__text {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.65;
  color: var(--c-ink-soft);
  max-width: 60ch;
}
.manifesto__text strong { color: var(--c-deep); font-weight: 500; }


/* ============================================================
   7. LOCATION
   ============================================================ */

.location {
  position: relative;
  background: var(--c-deep);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  overflow: hidden;
  color: var(--c-cream);
}
.location__bg {
  position: absolute; inset: 0;
  z-index: 0;
  will-change: transform;
}
.location__bg img {
  width: 100%; height: 110%;
  object-fit: cover;
  filter: saturate(0.85);
}
.location__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 58, 71, 0.85) 0%,
    rgba(14, 58, 71, 0.65) 50%,
    rgba(14, 58, 71, 0.95) 100%
  );
  z-index: 1;
}
.location__content { position: relative; z-index: 2; }
.location__lead {
  max-width: 60ch;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(245, 239, 230, 0.78);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  line-height: 1.6;
}
.location__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  border-top: 1px solid rgba(245, 239, 230, 0.18);
  padding-top: clamp(2rem, 4vw, 3rem);
}
.location__stats li {
  display: flex; flex-direction: column;
  gap: 0.5rem;
}
.location__stats .num {
  font-size: clamp(2.5rem, 6vw, 5rem);
}
.location__stats .num i { color: rgba(217, 194, 159, 0.6); font-size: 0.32em; }
.location__stats span:not(.num) {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(245, 239, 230, 0.6);
}


/* ============================================================
   8. ABOUT — empreendimento
   ============================================================ */

.about {
  background: var(--c-cream-2);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.about__copy p {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 50ch;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.65;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem) clamp(1.25rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(14, 58, 71, 0.12);
  padding-top: clamp(2rem, 3vw, 2.5rem);
}
.about__stats li {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.about__stats .num {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--c-gold);
}
.about__stats span:not(.num) {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.about__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.about__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}


/* ============================================================
   9. FACADE — galeria horizontal
   ============================================================ */

.facade {
  background: var(--c-cream-2);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  overflow: hidden;
}
.facade__head { margin-bottom: clamp(3rem, 5vw, 5rem); max-width: 900px; }
.facade__rail-wrap { width: 100%; overflow: hidden; }
.facade__rail {
  display: flex;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
  padding: 0 var(--pad-x);
  will-change: transform;
}
.facade__rail figure {
  flex: 0 0 auto;
  width: clamp(280px, 38vw, 540px);
  aspect-ratio: 4 / 5;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-deep);
  box-shadow: var(--shadow-md);
}
.facade__rail img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.facade__rail figcaption {
  position: absolute;
  left: 1.25rem; bottom: 1.25rem;
  color: var(--c-cream);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.facade__rail figcaption span {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.15rem;
  text-transform: none;
  margin-right: 0.5rem;
  color: var(--c-gold-light);
}


/* ============================================================
   10. LEISURE — térreo
   ============================================================ */

.leisure {
  background: var(--c-cream);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.leisure__head { max-width: 900px; margin-bottom: clamp(3rem, 5vw, 5rem); }
.leisure__head p {
  margin-top: 1.5rem;
  max-width: 56ch;
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  line-height: 1.65;
}
.leisure__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  grid-template-rows: clamp(280px, 36vw, 460px);
  gap: clamp(1rem, 1.8vw, 1.5rem);
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.leisure__card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-deep);
  box-shadow: var(--shadow-md);
}
.leisure__card img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 1s var(--ease-out);
}
.leisure__card:hover img { transform: scale(1.04); }
.leisure__card figcaption {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: rgba(245, 239, 230, 0.9);
  color: var(--c-deep);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-weight: 500;
}


/* ============================================================
   11. ROOFTOP — pinned
   ============================================================ */

.rooftop {
  position: relative;
  background: var(--c-deep);
  color: var(--c-cream);
}
.rooftop__sticky {
  position: relative;
  height: 100vh; height: 100svh;
  width: 100%;
  overflow: hidden;
}
.rooftop__bgs {
  position: absolute; inset: 0;
  z-index: 0;
}
.rooftop__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: opacity, transform;
}
.rooftop__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 58, 71, 0.92) 0%,
    rgba(14, 58, 71, 0.55) 50%,
    rgba(14, 58, 71, 0.20) 100%
  );
  z-index: 1;
}
.rooftop__content {
  position: relative; z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: var(--nav-h);
  padding-bottom: 2rem;
}
.rooftop__copy { max-width: 560px; }
.rooftop__copy p {
  color: rgba(245, 239, 230, 0.78);
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  max-width: 50ch;
}
.rooftop__list {
  display: flex; flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.8rem);
}
.rt-item {
  position: relative;
  display: flex; align-items: baseline;
  gap: 1.2rem;
  padding: 0.6rem 0 0.6rem 2.5rem;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  color: rgba(245, 239, 230, 0.45);
  transition: color 0.5s var(--ease-out), padding-left 0.6s var(--ease-out);
}
.rt-item::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 0; height: 1px;
  background: var(--c-gold);
  transform: translateY(-50%);
  transition: width 0.6s var(--ease-out);
}
.rt-item i {
  font-style: normal;
  font-family: var(--f-display);
  font-size: 0.78em;
  color: rgba(245, 239, 230, 0.4);
  transition: color 0.5s var(--ease-out);
}
.rt-item.is-active {
  color: var(--c-gold-light);
  padding-left: 3.5rem;
}
.rt-item.is-active::before { width: 2.5rem; }
.rt-item.is-active i { color: var(--c-gold); }

.rooftop__mobile {
  display: none;
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  gap: 1.5rem;
}
.rooftop__mobile article {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-deep-2);
}
.rooftop__mobile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.rooftop__mobile h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.4rem;
  padding: 1rem 1.25rem 1.25rem;
  color: var(--c-cream);
}


/* ============================================================
   12. AMENITIES
   ============================================================ */

.amenities {
  background: var(--c-cream-2);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.amenities .display { margin-bottom: clamp(3rem, 5vw, 5rem); max-width: 800px; }
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.amenity {
  background: var(--c-cream);
  padding: clamp(2rem, 3vw, 3rem) clamp(1.5rem, 2.5vw, 2.5rem);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  gap: 1rem;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.amenity:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.amenity svg {
  width: 36px; height: 36px;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}
.amenity h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  color: var(--c-deep);
}
.amenity p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--c-ink-soft);
}


/* ============================================================
   13. PLANS — tabs
   ============================================================ */

.plans {
  background: var(--c-cream);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.plans__head { max-width: 800px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.plans__head p { margin-top: 1.25rem; }
.plans__tabs {
  display: flex; flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(14, 58, 71, 0.12);
}
.plans__tab {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-ink-soft);
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease-out);
}
.plans__tab:hover { color: var(--c-deep); }
.plans__tab.is-active {
  background: var(--c-deep);
  color: var(--c-cream);
}
.plans__panel-wrap { position: relative; min-height: 420px; }
.plans__panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.plans__panel.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.plans__copy h3 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  color: var(--c-deep);
}
.plans__area {
  font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
  display: block;
  margin-bottom: 1.5rem;
}
.plans__copy p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 40ch;
}
.plans__panel figure {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--c-cream-2);
}
.plans__panel figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}


/* ============================================================
   14. INVEST (AFT)
   ============================================================ */

.invest {
  background: var(--c-deep);
  color: var(--c-cream);
  padding-top: var(--section-y);
  padding-bottom: 0;
  overflow: hidden;
}
.invest__head { max-width: 1000px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.invest__lead {
  max-width: 64ch;
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(245, 239, 230, 0.78);
  line-height: 1.65;
}
.invest__lead strong { color: var(--c-gold-light); font-weight: 500; }

.invest__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 1.8vw, 1.5rem);
  margin-bottom: clamp(4rem, 7vw, 6rem);
}
.invest__card {
  background: var(--c-deep-2);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  gap: 1.25rem;
  border: 1px solid rgba(245, 239, 230, 0.06);
  transition: border-color 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.invest__card:hover {
  border-color: rgba(196, 168, 117, 0.3);
  transform: translateY(-3px);
}
.invest__card svg {
  width: 28px; height: 28px;
  color: var(--c-gold);
}
.invest__card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--c-cream);
  line-height: 1.25;
}

/* MARQUEE */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(245, 239, 230, 0.12);
  border-bottom: 1px solid rgba(245, 239, 230, 0.12);
  padding: clamp(2rem, 3.5vw, 3rem) 0;
  margin-top: 2rem;
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--c-cream);
  will-change: transform;
}
.marquee__track span:nth-child(even) { color: var(--c-gold); font-style: normal; }


/* ============================================================
   15. INVISTTA — CTA editorial (Paula Pedrosa)
   ============================================================ */

.invistta {
  background: var(--c-cream);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  overflow: hidden;
  position: relative;
}

/* Detalhe decorativo — linha dourada vertical no topo central */
.invistta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 80px;
  background: var(--c-gold);
  opacity: 0.5;
}

.invistta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  align-items: start;
}

/* === COLUNA ESQUERDA — PORTRAIT === */
.invistta__portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(196, 168, 117, 0.3);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.invistta__portrait::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
  z-index: 2;
  border-radius: 4px;
}

.invistta__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 1.2s var(--ease-out), transform 1.6s var(--ease-out);
}

.invistta__portrait:hover img {
  filter: grayscale(60%) contrast(1.05);
  transform: scale(1.03);
}

.invistta__portrait-caption {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 3;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cream);
  background: rgba(14, 58, 71, 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-left: 1px solid var(--c-gold);
}

/* === COLUNA DIREITA — CONTEÚDO === */
.invistta__copy {
  padding-top: clamp(0.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 2rem);
}

.invistta__copy .display {
  font-size: var(--fs-h1);
  line-height: 1.05;
  margin: 0;
}

.invistta__copy .display em {
  color: var(--c-gold);
}

/* Brand block: INVISTTA wordmark */
.invistta__brand {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(14, 58, 71, 0.12);
  border-bottom: 1px solid rgba(14, 58, 71, 0.12);
}

.invistta__wordmark {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: 0.18em;
  color: var(--c-deep);
}

.invistta__wordmark-sub {
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* Lead + texto */
.invistta__lead,
.invistta__text {
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--c-ink-soft);
  max-width: 56ch;
}

.invistta__lead strong,
.invistta__text strong {
  color: var(--c-deep);
  font-weight: 600;
}

/* Pillars — 3 valores */
.invistta__pillars {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  border-top: 1px solid rgba(14, 58, 71, 0.12);
  padding-top: 1.5rem;
}

.invistta__pillars li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: start;
  font-family: var(--f-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--c-ink-soft);
}

.invistta__pillars li > span {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  color: var(--c-gold);
  font-size: 1.5rem;
  line-height: 1;
  padding-top: 4px;
}

.invistta__pillars li strong {
  display: block;
  color: var(--c-deep);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 1rem;
}

/* Signature block */
.invistta__signature {
  margin-top: 1rem;
  padding: 2rem 0;
  position: relative;
}

.invistta__sig-line {
  width: 60px;
  height: 1px;
  background: var(--c-gold);
  margin-bottom: 1.25rem;
}

.invistta__sig-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.5;
  color: var(--c-deep);
  margin: 0 0 1.5rem 0;
  max-width: 50ch;
}

.invistta__sig-name strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--c-deep);
  letter-spacing: -0.01em;
}

.invistta__sig-name span {
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* CTA */
.invistta__cta {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(14, 58, 71, 0.12);
}

.invistta__cta .btn {
  box-shadow: 0 12px 30px rgba(196, 168, 117, 0.30);
  transition: box-shadow 0.5s var(--ease-out),
              background-color 0.4s var(--ease-out),
              transform 0.4s var(--ease-out);
}
.invistta__cta .btn:hover {
  box-shadow: 0 18px 42px rgba(196, 168, 117, 0.5);
}

.invistta__cta-sub {
  margin-top: 0.85rem;
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
}


/* ============================================================
   16. FOOTER
   ============================================================ */

.footer {
  background: var(--c-deep);
  color: var(--c-cream);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(245, 239, 230, 0.12);
}
.footer__col p {
  color: rgba(245, 239, 230, 0.7);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.footer__col .eyebrow { color: var(--c-gold-light); margin-bottom: 1.2rem; }
.footer__logo {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2.6rem;
  color: var(--c-gold);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.footer__nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a {
  font-size: 0.95rem;
  color: rgba(245, 239, 230, 0.7);
  transition: color 0.3s var(--ease-out);
}
.footer__nav a:hover { color: var(--c-gold); }
.footer__base {
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(245, 239, 230, 0.45);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}


/* ============================================================
   17. RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: block; }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { aspect-ratio: 16 / 11; max-width: 600px; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }

  .leisure__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: clamp(220px, 50vw, 380px) clamp(220px, 50vw, 380px);
  }

  .rooftop__sticky { display: none; }
  .rooftop__mobile { display: grid; }

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

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

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

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

  .invistta__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .invistta__portrait { aspect-ratio: 4 / 5; max-width: 520px; }
}

@media (max-width: 768px) {
  .hero__meta { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .hero__scroll { grid-column: 1 / -1; justify-self: start; text-align: left; }
  .hero__scroll-line { margin-left: 0; }

  .location__stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

  .leisure__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 240px);
  }

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

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

  .invistta__portrait { aspect-ratio: 3 / 4; max-width: 100%; }
  .invistta__portrait::after { inset: 8px; }
  .invistta__brand { flex-direction: column; align-items: flex-start; gap: 0.4rem; }
}

@media (max-width: 480px) {
  .hero { padding-bottom: 2rem; }
  .hero__meta { grid-template-columns: 1fr 1fr; }
  .about__stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
}


/* ============================================================
   18. NO-MOTION fallback
   ============================================================ */

.no-motion *,
.no-motion *::before,
.no-motion *::after {
  animation: none !important;
  transition: none !important;
}
.no-motion .loader { display: none; }
.no-motion .hero__img { transform: none !important; }
