:root {
  --ink: #0b1320;
  --ink-soft: #142236;
  --blue: #1b4b78;
  --blue-bright: #2b6fa8;
  --paper: #f4f3ef;
  --white: #ffffff;
  --sand: #d6c2a4;
  --muted: #66707c;
  --line: rgba(11, 19, 32, 0.14);
  --page: min(1240px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.site-header {
  width: 100%;
  min-height: 82px;
  padding: 0 max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  background: rgba(244, 243, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  line-height: 1;
}

.brand-name {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.brand-detail {
  margin-top: 7px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 0.87rem;
  font-weight: 500;
}

.desktop-nav a,
.header-cta {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--blue-bright);
}

.header-cta {
  justify-self: end;
  border-bottom: 1px solid var(--ink);
  padding: 9px 0 5px;
  font-size: 0.87rem;
  font-weight: 600;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--blue-bright);
  border-color: var(--blue-bright);
}

.hero {
  min-height: calc(100svh - 82px);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 11, 21, 0.95) 0%, rgba(4, 11, 21, 0.72) 44%, rgba(4, 11, 21, 0.16) 75%),
    linear-gradient(0deg, rgba(4, 11, 21, 0.68) 0%, transparent 48%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  width: min(790px, calc(100% - 64px));
  margin-left: max(48px, calc((100vw - 1240px) / 2));
  padding: 100px 0 104px;
  color: var(--white);
}

.eyebrow,
.kicker {
  margin: 0 0 24px;
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--sand);
}

.hero h1 {
  margin: 0;
  max-width: 780px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(3rem, 6.4vw, 6.25rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 610px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--white);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #e5e7e9;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-index {
  position: absolute;
  right: max(52px, calc((100vw - 1240px) / 2));
  bottom: 50px;
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.73rem;
  letter-spacing: 0.18em;
}

.credibility {
  width: var(--page);
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.credibility div {
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.credibility div:first-child {
  padding-left: 0;
}

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

.credibility strong {
  display: block;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.credibility span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 132px 0;
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: center;
}

.about-portrait {
  position: relative;
  min-height: 690px;
  background: var(--ink-soft);
  overflow: hidden;
}

.about-portrait::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  z-index: 2;
  pointer-events: none;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  display: block;
  object-fit: cover;
  object-position: center 20%;
}

.portrait-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(5, 11, 18, 0.82);
  color: var(--white);
  backdrop-filter: blur(10px);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portrait-caption span:first-child {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.about-content {
  max-width: 730px;
}

.section-number {
  color: var(--blue-bright);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.kicker {
  color: var(--blue);
}

.about h2,
.catalog h2,
.service h2,
.final-cta h2 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2.35rem, 4.4vw, 4.7rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.about-copy {
  margin-top: 38px;
  padding-top: 0;
  color: #46515d;
  font-size: 1rem;
}

.about-copy p {
  margin: 0 0 22px;
}

.text-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-weight: 600;
}

.catalog {
  border-top: 1px solid var(--line);
}

.catalog-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 64px;
  align-items: end;
}

.catalog-intro {
  margin: 0 0 7px;
  color: var(--muted);
}

.filters {
  margin-top: 62px;
  display: grid;
  grid-template-columns: minmax(300px, 1.3fr) minmax(210px, 0.7fr) minmax(210px, 0.7fr);
  gap: 12px;
}

.filters input,
.filters select {
  width: 100%;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 18px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.filters input:focus,
.filters select:focus {
  border-color: var(--blue-bright);
  background: rgba(255, 255, 255, 0.48);
}

.search-field {
  position: relative;
}

.search-field input {
  padding-right: 46px;
}

.search-field > span:last-child {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--muted);
  pointer-events: none;
}

.catalog-meta {
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.84rem;
}

.catalog-meta p {
  margin: 0;
}

.catalog-meta button,
.load-more {
  border: 0;
  background: none;
  color: var(--blue);
  font-weight: 600;
  cursor: pointer;
}

.catalog-meta button:hover,
.catalog-meta button:focus-visible {
  color: var(--blue-bright);
}

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

.project-card {
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(11, 19, 32, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(11, 19, 32, 0.09);
}

.project-visual {
  min-height: 172px;
  position: relative;
  overflow: hidden;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 50%),
    linear-gradient(145deg, var(--ink-soft), var(--card-tone, #24577f));
}

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.project-visual::before {
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  right: -52px;
  top: -76px;
  transform: rotate(34deg);
}

.project-visual::after {
  left: 24px;
  right: 24px;
  bottom: 46px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.project-index,
.project-place {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-index {
  color: rgba(255, 255, 255, 0.56);
}

.project-place {
  max-width: 90%;
  font-weight: 600;
}

.project-body {
  flex: 1;
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
}

.status {
  width: fit-content;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-body h3 {
  min-height: 2.65em;
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.33rem;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.project-specs {
  margin: 20px 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.project-specs div {
  min-width: 0;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.project-specs span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-specs strong {
  display: block;
  margin-top: 4px;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.project-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.project-contact,
.project-official {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  font-size: 0.79rem;
  font-weight: 600;
}

.project-contact {
  padding: 0 16px;
  background: var(--ink);
  color: var(--white);
}

.project-contact:hover,
.project-contact:focus-visible {
  background: var(--blue);
}

.project-official {
  color: var(--muted);
  border-bottom: 1px solid transparent;
}

.project-official:hover,
.project-official:focus-visible {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.load-more {
  width: 100%;
  min-height: 56px;
  margin-top: 24px;
  border: 1px solid var(--line);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.load-more:hover,
.load-more:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.empty-state {
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
  border: 1px solid var(--line);
}

.service {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 96px;
}

.service h2 {
  font-size: clamp(2.35rem, 4vw, 4.15rem);
}

.service-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.service-steps li {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.service-steps > li > span {
  color: var(--blue-bright);
  font-size: 0.73rem;
  letter-spacing: 0.12em;
}

.service-steps h3 {
  margin: 0 0 5px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.2rem;
}

.service-steps p {
  margin: 0;
  color: var(--muted);
}

.final-cta {
  min-height: 620px;
  padding: 120px max(32px, calc((100vw - 1240px) / 2));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background:
    radial-gradient(circle at 84% 12%, rgba(59, 113, 157, 0.58), transparent 32%),
    linear-gradient(145deg, #14273c, #07101c 72%);
  color: var(--white);
}

.final-cta h2 {
  max-width: 890px;
}

.final-cta > p:not(.kicker) {
  max-width: 570px;
  margin: 28px 0 38px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

footer {
  padding: 58px max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 54px;
  background: #050b12;
  color: var(--white);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand > span:last-child,
.footer-contact p,
.legal {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
}

.footer-contact {
  text-align: right;
}

.footer-contact p {
  margin: 0 0 5px;
}

.footer-contact a {
  font-size: 0.95rem;
}

.legal {
  grid-column: 1 / -1;
  max-width: 900px;
  margin: 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.55;
}

.floating-whatsapp {
  display: none;
}

/* Página interna de empreendimento */

.detail-page {
  background: #eef0f2;
}

.detail-header {
  background: rgba(238, 240, 242, 0.94);
}

.detail-back {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
}

.detail-back:hover,
.detail-back:focus-visible {
  color: var(--blue);
}

.detail-hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.detail-hero-copy {
  padding: 120px max(56px, calc((100vw - 1240px) / 2));
  padding-right: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.detail-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(3.25rem, 6.6vw, 6.7rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.06em;
  overflow-wrap: anywhere;
}

.detail-location {
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.detail-art {
  min-height: 690px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(48, 93, 126, 0.55), rgba(9, 20, 33, 0.2)),
    radial-gradient(circle at 80% 10%, rgba(214, 194, 164, 0.28), transparent 38%),
    #17314a;
}

.detail-art::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.detail-art > span {
  position: absolute;
  top: 52px;
  right: 52px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.26);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.08em;
}

.detail-building {
  position: absolute;
  bottom: -14%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background:
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255,255,255,.1) 34px 35px),
    repeating-linear-gradient(0deg, transparent 0 48px, rgba(255,255,255,.1) 48px 49px),
    linear-gradient(160deg, rgba(255,255,255,.16), rgba(255,255,255,.03));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.building-one {
  left: 10%;
  width: 29%;
  height: 62%;
  transform: perspective(600px) rotateY(7deg);
}

.building-two {
  left: 35%;
  width: 38%;
  height: 88%;
}

.building-three {
  right: -5%;
  width: 34%;
  height: 54%;
  transform: perspective(600px) rotateY(-8deg);
}

.detail-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: 96px;
  align-items: start;
}

.detail-summary h2,
.detail-advisory h2,
.related h2 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(2.35rem, 4.2vw, 4.4rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.detail-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.detail-facts div {
  min-height: 126px;
  padding: 24px 20px 24px 0;
  border-bottom: 1px solid var(--line);
}

.detail-facts div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.detail-facts div:nth-child(even) {
  padding-left: 24px;
}

.detail-facts span,
.advisor-role,
.related-card > span {
  display: block;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-facts strong {
  display: block;
  margin-top: 12px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.12rem;
  line-height: 1.35;
}

.detail-advisory {
  padding: 120px max(32px, calc((100vw - 1240px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 104px;
  align-items: center;
  background: var(--white);
}

.detail-advisory-copy {
  max-width: 680px;
}

.detail-advisory-copy > p:not(.kicker) {
  margin: 30px 0 26px;
  color: var(--muted);
  font-size: 1.05rem;
}

.detail-advisory-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.detail-advisory-copy li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

.advisor-card {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 30px 80px rgba(11, 19, 32, 0.16);
}

.advisor-card img {
  width: 100%;
  height: 390px;
  display: block;
  object-fit: cover;
  object-position: center 20%;
}

.advisor-card-body {
  padding: 28px;
}

.advisor-card h3 {
  margin: 8px 0 12px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 500;
}

.advisor-card p:not(.advisor-role) {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.advisor-card-body > span {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.advisor-button {
  width: 100%;
  margin-top: 24px;
  background: var(--white);
  color: var(--ink);
}

.related {
  border-top: 1px solid var(--line);
}

.related-heading {
  margin-bottom: 52px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
}

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

.related-card {
  min-height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
  transition: transform 180ms ease, background 180ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-4px);
  background: var(--white);
}

.related-card h3 {
  margin: 24px 0 12px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.25;
}

.related-card p {
  margin: 0;
  color: var(--muted);
}

.related-card strong {
  margin-top: auto;
  padding-top: 28px;
  color: var(--blue);
  font-size: 0.82rem;
}

.detail-final-cta {
  min-height: 560px;
}

.detail-not-found {
  min-height: calc(100vh - 82px);
  padding: 120px max(32px, calc((100vw - 1240px) / 2));
  background: var(--ink);
  color: var(--white);
}

.detail-not-found h1 {
  max-width: 800px;
  margin: 0 0 40px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 40px, 780px);
  }

  .site-header {
    min-height: 72px;
    padding: 0 20px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: calc(100% - 72px);
    margin-left: 36px;
    padding-bottom: 84px;
  }

  .hero-index {
    display: none;
  }

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

  .credibility div {
    padding: 26px;
    border-bottom: 1px solid var(--line);
  }

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

  .credibility div:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .about {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
    gap: 48px;
  }

  .about-portrait,
  .about-portrait img {
    min-height: 590px;
  }

  .catalog-top,
  .service {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .search-field {
    grid-column: 1 / -1;
  }

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

  .detail-header {
    grid-template-columns: 1fr auto;
  }

  .detail-back {
    display: none;
  }

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

  .detail-hero-copy {
    min-height: 620px;
    padding: 100px 40px 72px;
  }

  .detail-art {
    min-height: 420px;
  }

  .detail-summary,
  .detail-advisory {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .advisor-card {
    max-width: 480px;
  }
}

@media (max-width: 640px) {
  :root {
    --page: calc(100% - 32px);
  }

  .brand-detail {
    display: none;
  }

  .header-cta {
    font-size: 0.8rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero::after {
    inset: 14px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 11, 21, 0.94) 0%, rgba(4, 11, 21, 0.62) 86%),
      linear-gradient(0deg, rgba(4, 11, 21, 0.8) 0%, transparent 58%);
  }

  .hero-content {
    width: calc(100% - 56px);
    margin-left: 28px;
    padding: 88px 0 60px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
    line-height: 1.01;
  }

  .hero-copy {
    margin-top: 24px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 30px;
    display: grid;
  }

  .button {
    width: 100%;
  }

  .credibility {
    width: calc(100% - 32px);
    padding: 20px 0;
  }

  .credibility div,
  .credibility div:first-child {
    padding: 20px 15px;
  }

  .credibility strong {
    font-size: 1.7rem;
  }

  .section {
    padding: 88px 0;
  }

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

  .about-copy {
    margin-top: 30px;
  }

  .section-number {
    display: none;
  }

  .about h2,
  .catalog h2,
  .service h2,
  .final-cta h2 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
    line-height: 1.08;
  }

  .catalog-top {
    gap: 28px;
  }

  .filters {
    margin-top: 42px;
    grid-template-columns: 1fr;
  }

  .search-field {
    grid-column: auto;
  }

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

  .about-portrait,
  .about-portrait img {
    min-height: 520px;
  }

  .portrait-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .project-visual {
    min-height: 145px;
  }

  .project-body h3 {
    min-height: auto;
  }

  .catalog-meta {
    align-items: flex-start;
    padding: 16px 0;
  }

  .service {
    gap: 36px;
  }

  .detail-hero-copy {
    min-height: 560px;
    padding: 88px 24px 64px;
  }

  .detail-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.3rem);
  }

  .detail-art {
    min-height: 330px;
  }

  .detail-summary {
    gap: 40px;
  }

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

  .detail-facts div:nth-child(odd) {
    border-right: 0;
  }

  .detail-facts div:nth-child(even) {
    padding-left: 0;
  }

  .detail-advisory {
    padding: 88px 24px;
  }

  .related-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .advisor-card img {
    height: 360px;
  }

  .final-cta {
    min-height: 560px;
    padding: 90px 24px;
  }

  footer {
    padding: 48px 24px 100px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-contact {
    text-align: left;
  }

  .floating-whatsapp {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 60;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f7a4d;
    color: var(--white);
    box-shadow: 0 12px 34px rgba(5, 11, 18, 0.28);
    font-size: 0.88rem;
    font-weight: 600;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Direção visual 2026 — curadoria imobiliária premium */

.brand {
  flex-direction: row;
  align-items: center;
  gap: 11px;
}

.brand-symbol {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.brand-word,
.footer-wordmark {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.brand-word > span,
.footer-wordmark > span {
  color: var(--blue-bright);
}

.brand-detail {
  margin-top: 5px;
  color: var(--muted);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.hero {
  min-height: calc(100svh - 82px);
  align-items: flex-end;
  background: #07101a;
}

.hero-slides,
.hero-slide,
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slides {
  z-index: -4;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1.1s ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 8, 14, 0.9) 0%, rgba(3, 8, 14, 0.61) 43%, rgba(3, 8, 14, 0.16) 72%),
    linear-gradient(0deg, rgba(3, 8, 14, 0.84) 0%, transparent 55%);
}

.hero::after {
  display: none;
}

.hero-content {
  width: min(790px, calc(100% - 64px));
  padding: 110px 0 112px;
}

.hero h1,
.about h2,
.catalog h2,
.service h2,
.final-cta h2,
.detail-hero h1,
.detail-summary h2,
.detail-advisory h2,
.related h2,
.gallery-heading h2,
.project-body h3,
.service-steps h3,
.advisor-card h3,
.related-card h3 {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.hero h1 {
  font-size: clamp(3.2rem, 6.2vw, 6.6rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.hero-feature {
  position: absolute;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 42px;
  width: min(360px, calc(100vw - 64px));
  padding: 24px;
  display: grid;
  gap: 20px;
  color: var(--white);
  background: rgba(6, 13, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
}

.hero-feature > div:first-child {
  display: grid;
  gap: 5px;
}

.hero-feature-label {
  color: var(--sand);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-feature strong {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-feature > div:first-child > span:last-child {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.hero-feature > a {
  width: fit-content;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-controls {
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-controls button {
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

.hero-controls span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.hero-controls b {
  color: var(--white);
  font-weight: 600;
}

.project-visual {
  min-height: 246px;
  padding: 20px;
  isolation: isolate;
  background: linear-gradient(145deg, var(--ink-soft), var(--card-tone, #24577f));
}

.project-visual > img,
.project-visual-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-visual > img {
  z-index: -3;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.project-card:hover .project-visual > img {
  transform: scale(1.045);
}

.project-visual-shade {
  z-index: -2;
  background: linear-gradient(180deg, rgba(3, 8, 14, 0.32), rgba(3, 8, 14, 0.04) 42%, rgba(3, 8, 14, 0.76));
}

.project-visual::before,
.project-visual::after {
  display: none;
}

.project-card {
  overflow: hidden;
}

.project-body {
  padding: 26px;
}

.project-body h3 {
  min-height: 0;
  font-size: 1.2rem;
}

.detail-hero {
  min-height: min(820px, calc(100svh - 82px));
  position: relative;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.detail-cover,
.detail-cover-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.detail-cover {
  z-index: -3;
  display: block;
  object-fit: cover;
  object-position: center;
}

.detail-cover-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 8, 14, 0.89), rgba(3, 8, 14, 0.32) 65%, rgba(3, 8, 14, 0.1)),
    linear-gradient(0deg, rgba(3, 8, 14, 0.82), transparent 58%);
}

.detail-hero-copy {
  width: min(900px, calc(100% - 64px));
  min-height: 0;
  padding: 110px 0 92px;
  margin-left: max(32px, calc((100vw - 1240px) / 2));
  position: relative;
  z-index: 2;
}

.detail-hero h1 {
  max-width: 940px;
  font-size: clamp(3.3rem, 7vw, 7.5rem);
  line-height: 0.94;
}

.detail-hero-index {
  position: absolute;
  right: max(32px, calc((100vw - 1240px) / 2));
  bottom: 72px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: rgba(255,255,255,.52);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.detail-hero-index span:last-child {
  color: rgba(255,255,255,.82);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.detail-summary {
  align-items: center;
}

.detail-description {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.project-gallery {
  padding-top: 0;
  border-top: 1px solid var(--line);
}

.gallery-heading {
  padding-top: 88px;
  margin-bottom: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 64px;
  align-items: end;
}

.gallery-heading h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.2vw, 4.4rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.gallery-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
}

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

.gallery-item {
  grid-column: span 4;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(.2,.7,.2,1);
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  padding: 10px 12px;
  color: rgba(255,255,255,.86);
  background: rgba(3,8,14,.62);
  backdrop-filter: blur(8px);
  font-size: 0.68rem;
  line-height: 1.3;
}

.related-card {
  min-height: 340px;
  position: relative;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: var(--ink-soft);
  border: 0;
}

.related-card > img,
.related-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.related-card > img {
  z-index: -3;
  object-fit: cover;
  transition: transform 650ms ease;
}

.related-card:hover > img {
  transform: scale(1.04);
}

.related-card-shade {
  z-index: -2;
  background: linear-gradient(0deg, rgba(3, 8, 14, 0.88), rgba(3, 8, 14, 0.08) 72%);
}

.related-card-copy {
  min-height: 340px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.related-card-copy > span {
  color: var(--sand);
}

.related-card-copy h3 {
  margin-top: auto;
  color: var(--white);
}

.related-card-copy p {
  color: rgba(255,255,255,.66);
}

.related-card-copy strong {
  margin-top: 20px;
  color: var(--white);
}

@media (max-width: 1120px) {
  .hero-content {
    max-width: 650px;
    padding-bottom: 290px;
  }

  .hero-feature {
    left: 36px;
    right: auto;
    bottom: 36px;
  }
}

@media (max-width: 980px) {
  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .gallery-item {
    grid-column: span 6;
  }

  .gallery-item-large {
    grid-column: span 12;
  }

  .detail-hero-index {
    display: none;
  }
}

@media (max-width: 640px) {
  .brand-symbol {
    width: 30px;
    height: 30px;
    font-size: 0.82rem;
  }

  .brand-word {
    font-size: 1.08rem;
  }

  .brand-detail {
    display: block;
    font-size: 0.48rem;
  }

  .hero {
    min-height: 820px;
  }

  .hero-slide img {
    object-position: 58% center;
  }

  .hero-content {
    width: calc(100% - 40px);
    margin-left: 20px;
    padding: 78px 0 310px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .hero-feature {
    left: 20px;
    right: 20px;
    bottom: 20px;
    width: auto;
    padding: 20px;
  }

  .project-visual {
    min-height: 235px;
  }

  .detail-hero {
    min-height: 690px;
  }

  .detail-hero-copy {
    width: calc(100% - 40px);
    margin-left: 20px;
    padding: 96px 0 56px;
  }

  .detail-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .project-gallery {
    padding-top: 0;
  }

  .gallery-heading {
    padding-top: 64px;
    margin-bottom: 28px;
  }

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

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

  .related-card,
  .related-card-copy {
    min-height: 310px;
  }
}
