```css
:root {
  --black: #070707;
  --cream: #eeeae2;
  --gold: #c9a76b;
  --muted: #a9a49c;
  --line: #ffffff1f;
  --ink: #161513;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: #fff;
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}

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

button,
input {
  font-family: inherit;
}

section {
  position: relative;
  overflow: hidden;
}


/* =========================
   LOADER
========================= */

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;

  display: grid;
  place-items: center;

  background: #070707;

  transition:
    opacity .55s ease,
    visibility .55s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .22em;
}

.loader-brand span,
.brand span {
  color: var(--gold);
}

.loader-line {
  position: absolute;
  bottom: 18%;

  width: min(180px, 45vw);
  height: 1px;

  background: #ffffff22;
}

.loader-line i {
  display: block;
  width: 0;
  height: 100%;

  background: var(--gold);

  animation: loading 1.15s ease forwards;
}

@keyframes loading {
  to {
    width: 100%;
  }
}


/* =========================
   SCROLL PROGRESS
========================= */

.progress {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;

  width: 100%;
  height: 3px;

  pointer-events: none;
}

.progress i {
  display: block;

  width: 0;
  height: 100%;

  background: var(--gold);
}


/* =========================
   NAV
========================= */

.nav {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;

  width: 100%;

  padding:
    max(18px, env(safe-area-inset-top))
    5vw
    18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  mix-blend-mode: screen;
}

.brand {
  font-weight: 700;
  letter-spacing: .2em;
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 24px;

  font-size: 9px;
  letter-spacing: .16em;
}

.nav nav a {
  opacity: .85;
}

.nav-cta {
  padding: 12px 15px;

  border: 1px solid #ffffff33;
  border-radius: 50px;
}

.nav-cta b {
  margin-left: 9px;
  font-size: 14px;
}


/* =========================
   TYPOGRAPHY
========================= */

.eyebrow {
  margin: 0 0 24px;

  color: var(--gold);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
}

.eyebrow.dark {
  color: #957445;
}

h1,
h2 {
  margin: 0;

  font-weight: 500;
  line-height: .94;
  letter-spacing: -.06em;
}

h1 {
  font-size: clamp(58px, 9vw, 132px);
}

h2 {
  font-size: clamp(50px, 7vw, 96px);
}

em {
  color: #dfdcd4;

  font-family: "Playfair Display", serif;
  font-weight: 500;
}

.body {
  max-width: 570px;

  margin: 28px 0;

  font-size: 17px;
  line-height: 1.75;
}

.dark-body {
  color: #625f59;
}


/* =========================
   HERO
========================= */

.hero {
  height: 100svh;
  min-height: 680px;

  display: flex;
  align-items: center;

  padding: 10vw 7vw;
}

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

.hero-media img {
  transform: scale(1.04);

  animation:
    heroZoom 12s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg, #000d 5%, #0005 55%, #0002),
    linear-gradient(0deg, #000b, transparent 50%);
}

@keyframes heroZoom {
  to {
    transform: scale(1.10);
  }
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 800px;
}

.hero-lead {
  max-width: 560px;

  margin: 30px 0;

  color: #c1bcb3;

  font-size: 17px;
  line-height: 1.7;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;

  padding: 17px 22px;

  border: 0;
  border-radius: 50px;

  background: var(--cream);
  color: #111;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;

  cursor: pointer;

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px #0005;
}

.pill span {
  font-size: 17px;
}

.hero-bottom {
  position: absolute;
  z-index: 3;

  right: 7vw;
  bottom: 28px;
  left: 7vw;

  display: flex;
  justify-content: space-between;

  color: #aaa;

  font-size: 9px;
  letter-spacing: .2em;
}

.hero-price {
  position: absolute;
  z-index: 3;

  right: 7vw;
  bottom: 13vh;

  display: flex;
  flex-direction: column;
  gap: 4px;

  padding: 20px 24px;

  border: 1px solid #fff3;

  background: #07070780;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-price small,
.hero-price span {
  color: #aaa;

  font-size: 9px;
  letter-spacing: .15em;
}

.hero-price strong {
  font-size: 34px;
}


/* =========================
   MANIFESTO
========================= */

.manifesto {
  min-height: 100svh;

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 7vw;

  padding: 10vw 7vw;

  background: var(--cream);
  color: var(--ink);
}

.manifesto-copy {
  max-width: 650px;
}

.manifesto h2 {
  color: #111;
}

.manifesto h2 em {
  color: #927344;
}

.manifesto-image {
  position: relative;
  height: 70vh;
}

.manifesto-image img {
  filter: saturate(.9);
}

.manifesto-image span {
  position: absolute;

  left: 18px;
  bottom: 18px;

  padding: 10px 12px;

  color: #fff;
  background: #0008;

  font-size: 9px;
  letter-spacing: .2em;
}


/* =========================================================
   FEATURE
   DESKTOP = TEXTO ESQUERDA + IMAGEM DIREITA
========================================================= */

.feature-scroll {
  height: 180vh;
  background: #111;
}

.feature-sticky {
  position: sticky;
  top: 0;

  display: grid;
  grid-template-columns: .9fr 1.1fr;

  width: 100%;
  height: 100svh;
  min-height: 650px;
}

.feature-copy {
  grid-column: 1;
  grid-row: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 10vw 7vw;

  background: #0e0e0d;

  z-index: 2;
}

.feature-copy h2 {
  margin-bottom: 0;
}

.feature-copy .body {
  color: #aaa;
}

.feature-image {
  position: relative;

  grid-column: 2;
  grid-row: 1;

  width: 100%;
  height: 100%;

  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transform: scale(1.04);

  transition: transform 1s ease;
}

.feature-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg, #0005, transparent 35%),
    linear-gradient(0deg, #0004, transparent 45%);
}

.feature-number {
  position: absolute;
  z-index: 3;

  right: 5vw;
  bottom: 7vh;

  color: #fff8;

  font-family: "Playfair Display", serif;
  font-size: 70px;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;

  margin-top: 25px;
}

.amenities span {
  padding: 10px 12px;

  border: 1px solid #fff2;
  border-radius: 50px;

  color: #aaa;

  font-size: 8px;
  letter-spacing: .14em;
}


/* =========================
   LOCALIZAÇÃO
========================= */

.location {
  min-height: 100svh;

  display: grid;
  grid-template-columns: 1fr 1fr;

  background: var(--cream);
  color: #111;
}

.location-art.real-map {
  width: 100%;
  min-height: 100svh;
  height: 100%;

  padding: 0;

  overflow: hidden;

  background: #ddd;
}

.location-art.real-map iframe {
  display: block;

  width: 100%;
  height: 100%;
  min-height: 100svh;

  border: 0;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 12vw 7vw;
}

.loc-stats {
  display: flex;
  gap: 42px;

  margin: 25px 0;
}

.loc-stats div {
  display: flex;
  flex-direction: column;
}

.loc-stats strong {
  font-size: 48px;
  letter-spacing: -.05em;
}

.loc-stats small {
  color: #777;

  font-size: 8px;
  line-height: 1.4;
  letter-spacing: .12em;
}

.text-link {
  width: max-content;

  padding-bottom: 8px;

  border-bottom: 1px solid #111;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}


/* =========================
   GALERIA
========================= */

.gallery {
  padding: 12vw 7vw;
  background: #080808;
}

.gallery-head {
  margin-bottom: 65px;
}

.gallery-grid {
  display: grid;

  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 45vh 45vh;

  gap: 15px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
}

.gallery-grid img {
  transition: transform .8s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.g1 {
  grid-row: 1 / 3;
}


/* =========================
   INVESTIMENTO
========================= */

.investment {
  padding: 13vw 7vw;

  background: var(--cream);
  color: #111;
}

.investment-head {
  text-align: center;
}

.investment-head .body {
  margin: 28px auto 55px;
}

.investment h2 em {
  color: #957445;
}

.cashflow {
  max-width: 1250px;

  margin: auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid #1112;
  border-bottom: 1px solid #1112;
}

.cash {
  padding: 40px 28px;

  border-right: 1px solid #1112;
}

.cash:last-child {
  border-right: 0;
}

.cash small {
  color: #777;

  font-size: 9px;
  letter-spacing: .18em;
}

.cash strong {
  display: block;

  margin: 12px 0 5px;

  font-size: 30px;
}

.cash span {
  color: #777;
  font-size: 11px;
}

.total-line {
  max-width: 1250px;

  margin: auto;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;

  padding: 28px 0;

  border-bottom: 1px solid #1112;
}

.total-line span {
  color: #777;

  font-size: 9px;
  letter-spacing: .16em;
}

.total-line strong {
  margin-right: 25px;
  font-size: 23px;
}

.fine {
  max-width: 1250px;

  margin: 20px auto 0;

  color: #888;

  font-size: 9px;
}


/* =========================
   ABOUT
========================= */

.about {
  min-height: 100svh;

  display: grid;
  grid-template-columns: .9fr 1.1fr;

  background: #0a0a0a;
}

.about-photo {
  min-height: 100svh;
}

.about-photo img {
  object-position: center top;
  filter: grayscale(1);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 12vw 8vw;
}

.signature {
  display: flex;
  flex-direction: column;

  margin: 22px 0 30px;

  font-weight: 700;
  letter-spacing: .14em;
}

.signature span {
  margin-top: 6px;

  color: #777;

  font-size: 8px;
  font-weight: 400;
}

.pill.light {
  width: max-content;

  background: #fff;
  color: #111;
}


/* =========================
   QUOTE
========================= */

.quote {
  height: 80svh;

  display: grid;
  place-items: center;

  text-align: center;
}

.quote-bg {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    #0a0a0a,
    #29231c
  );
}

.quote-bg::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image: url("https://api.apto.vc/images/realties/13611/vici-faria-lima-condominio-8.jpg");

  background-size: cover;
  background-position: center;

  opacity: .25;
  mix-blend-mode: screen;
}

.quote-inner {
  position: relative;
  z-index: 2;
}

.quote-inner h2 {
  font-size: clamp(48px, 6vw, 85px);
}


/* =========================
   CONTATO
========================= */

.contact {
  min-height: 90svh;

  display: grid;
  place-items: center;

  padding: 12vw 7vw;

  background: var(--cream);
  color: #111;

  text-align: center;
}

.contact-orb {
  position: absolute;

  width: 700px;
  height: 700px;

  background: radial-gradient(
    circle,
    #c9a76a66,
    transparent 64%
  );

  filter: blur(25px);
}

.contact-inner {
  position: relative;
  z-index: 2;

  width: min(900px, 100%);
}

.contact h2 em {
  color: #957445;
}

.contact .body {
  margin: 28px auto;

  color: #625f59;
}

.contact form {
  max-width: 850px;

  margin: 35px auto 15px;

  display: grid;
  grid-template-columns: 1fr 1fr auto;

  gap: 10px;
}

.contact input {
  min-width: 0;

  padding: 18px 20px;

  border: 1px solid #bbb4a9;
  border-radius: 50px;

  background: #fff6;

  font: inherit;

  outline: 0;
}

.contact input:focus {
  border-color: var(--gold);
}

.contact small {
  color: #888;
  font-size: 9px;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 35px 5%;

  background: #070707;
  color: #666;

  font-size: 9px;
  letter-spacing: .1em;
}

.footer-text {
  flex: 1;
}

.selo-his {
  width: 150px;
  height: auto;

  object-fit: contain;

  flex-shrink: 0;
}


/* =========================
   REVEAL
========================= */

.reveal {
  opacity: 0;

  transform: translateY(40px);

  transition:
    opacity .8s ease,
    transform .9s cubic-bezier(.2,.8,.2,1);
}

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


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .nav nav {
    gap: 12px;
  }

  .nav nav a:not(.nav-cta) {
    display: none;
  }

  .manifesto {
    gap: 5vw;
  }

  .feature-sticky {
    grid-template-columns: .95fr 1.05fr;
  }

  .feature-copy {
    padding: 8vw 6vw;
  }

  .feature-copy h2 {
    font-size: clamp(45px, 7vw, 70px);
  }

  .amenities span {
    padding: 8px 10px;
  }

  .cash {
    padding: 30px 20px;
  }

  .cash strong {
    font-size: 25px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .nav {
    padding:
      max(16px, env(safe-area-inset-top))
      5vw
      16px;
  }

  .nav-cta {
    padding: 10px 12px;
  }


  /* HERO */

  .hero {
    min-height: 700px;
    padding: 120px 7vw 100px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-price {
    right: 7vw;
    bottom: 85px;

    padding: 15px 18px;
  }

  .hero-price strong {
    font-size: 27px;
  }

  .hero-bottom {
    bottom: 25px;
  }


  /* MANIFESTO */

  .manifesto {
    grid-template-columns: 1fr;

    padding: 18vw 8vw;
  }

  .manifesto-image {
    height: 65svh;
  }


  /* FEATURE */

  .feature-scroll {
    height: 150vh;
  }

  .feature-sticky {
    height: 100svh;
    min-height: 0;

    grid-template-columns: 1fr;
    grid-template-rows: 48svh 52svh;
  }

  .feature-copy {
    grid-column: 1;
    grid-row: 1;

    padding: 8vw;
  }

  .feature-copy h2 {
    font-size: 46px;
  }

  .feature-copy .body {
    margin: 18px 0;
    font-size: 14px;
  }

  .feature-image {
    grid-column: 1;
    grid-row: 2;
  }

  .feature-number {
    right: 7vw;
    bottom: 3vh;

    font-size: 52px;
  }


  /* LOCATION */

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

  .location-art.real-map {
    min-height: 58svh;
    height: 58svh;
  }

  .location-art.real-map iframe {
    min-height: 58svh;
    height: 100%;
  }

  .location-copy {
    min-height: 70svh;

    padding: 18vw 8vw;
  }

  .loc-stats {
    gap: 20px;
  }

  .loc-stats strong {
    font-size: 36px;
  }


  /* GALLERY */

  .gallery {
    padding: 18vw 7vw;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows:
      55vh
      32vh
      32vh;
  }

  .g1 {
    grid-row: auto;
  }


  /* INVESTMENT */

  .investment {
    padding: 18vw 8vw;
  }

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

  .cash {
    padding: 28px 18px;
  }

  .cash:nth-child(2) {
    border-right: 0;
  }

  .cash:nth-child(-n + 2) {
    border-bottom: 1px solid #1112;
  }

  .cash strong {
    font-size: 22px;
  }

  .total-line {
    gap: 10px;
  }


  /* ABOUT */

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

  .about-photo {
    min-height: 75svh;
  }

  .about-copy {
    padding: 18vw 8vw;
  }


  /* CONTACT */

  .contact {
    padding: 18vw 8vw;
  }

  .contact form {
    grid-template-columns: 1fr;
  }

  .contact .pill {
    width: 100%;
  }


  /* FOOTER */

  .site-footer {
    flex-direction: column;

    padding:
      30px
      8vw
      calc(30px + env(safe-area-inset-bottom));

    text-align: center;
  }

  .selo-his {
    width: 130px;
  }
}


/* =========================================================
   CELULARES PEQUENOS
========================================================= */

@media (max-width: 390px) {

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 44px;
  }

  .hero {
    min-height: 680px;
  }

  .feature-copy {
    padding: 9vw 7vw;
  }

  .feature-copy h2 {
    font-size: 40px;
  }

  .amenities {
    gap: 5px;
    margin-top: 15px;
  }

  .amenities span {
    padding: 7px 9px;
    font-size: 7px;
  }

  .selo-his {
    width: 115px;
  }
}


/* =========================================================
   ACESSIBILIDADE / ECONOMIA DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

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

  .hero-media img {
    transform: none;
  }

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


/* =========================================================
   TELAS GRANDES
========================================================= */

@media (min-width: 1800px) {

  .hero-content,
  .manifesto-copy,
  .location-copy,
  .about-copy,
  .contact-inner {
    max-width: 1200px;
  }

  .manifesto,
  .location-copy,
  .about-copy {
    padding-left: 6vw;
    padding-right: 6vw;
  }

}
```
