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

:root {
  --ivory:   #F9F6F0;
  --ivory2:  #F0EBE0;
  --ivory3:  #E5DDD0;
  --linen:   #D8CFC0;
  --ash:     #9A9488;
  --charcoal:#2C2B27;
  --ink:     #141310;
  --gold:    #A8894A;
  --gold2:   #C9A96E;
  --sage:    #5B7152;
  --sage2:   #8FAF83;
  --wine:    #6E3226;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
}

/* ── LOADING VEIL ── */
.veil {
  position: fixed; inset: 0; z-index: 999;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 1;
  transition: opacity 0.45s ease;
  /* No-JS / fallback safety: even if the JS below never runs,
     the veil clears itself quickly instead of blocking the page. */
  animation: veilOut 0.4s 0.35s ease forwards;
}
/* JS adds this as soon as the page is ready → instant, snappy reveal */
.veil.veil--out {
  opacity: 0;
  pointer-events: none;
  animation: none;
}
.veil-logo {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--ivory);
  opacity: 0; animation: veilLogoIn 0.4s 0.05s ease forwards;
}
@keyframes veilLogoIn { to { opacity: 1; } }
@keyframes veilOut { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.8rem 5rem;
  background: rgba(249,246,240,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--linen);
  transition: background 0.5s, border-color 0.5s;
}
nav.scrolled {
  background: rgba(249,246,240,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--linen);
}
.logo {
  font-family: 'Jost', sans-serif;
  font-size: 1rem; letter-spacing: 0.42em;
  text-transform: uppercase; color: var(--ink);
}
nav ul { list-style: none; display: flex; gap: 3rem; }
nav ul li a {
  font-size: 0.65rem; font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ash);
  text-decoration: none; transition: color 0.3s;
}
nav ul li a:hover { color: var(--gold); }
nav ul li a.active { color: var(--gold); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--ink); transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-reserve {
  font-size: 0.62rem; font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold) !important;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 55% 45%;
  position: relative;
}
.hero-left {
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 0 7rem 5rem;
  position: relative; overflow: hidden;
}
/* Atmosfera gastronômica abstrata em CSS — vinho, dourado, sálvia */
.hero-nature {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(110,50,38,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(201,169,110,0.1) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(91,113,82,0.08) 0%, transparent 70%);
}
/* Linhas finas decorativas */
.hero-lines {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-lines::before {
  content: '';
  position: absolute;
  top: 15%; left: 60%;
  width: 1px; height: 55%;
  background: linear-gradient(to bottom, transparent, rgba(168,137,74,0.15), transparent);
}
.hero-lines::after {
  content: '';
  position: absolute;
  top: 40%; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 55%, rgba(168,137,74,0.1), transparent);
}

.hero-vol {
  position: absolute; top: 9rem; right: 4rem;
  font-family: 'EB Garamond', serif;
  font-size: 0.7rem; font-style: italic; letter-spacing: 0.12em;
  color: rgba(249,246,240,0.15);
  writing-mode: vertical-rl; text-orientation: mixed;
  transform: rotate(180deg);
}
.hero-tag {
  font-size: 0.6rem; font-weight: 300; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 2.8rem;
  display: flex; align-items: center; gap: 1.2rem;
  opacity: 0; animation: fadeUp 0.8s 0.1s ease forwards;
}
.hero-tag-line { width: 48px; height: 1px; background: var(--gold); opacity: 0.5; }
h1.hero-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 400; line-height: 1.06;
  color: var(--ivory);
  letter-spacing: -0.01em;
  margin-bottom: 3.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards;
}
h1.hero-title em { font-style: italic; color: var(--gold2); }
.hero-meta {
  display: flex; align-items: flex-end; gap: 3.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s ease forwards;
}
.hero-meta-num {
  font-family: 'EB Garamond', serif;
  font-size: 2.2rem; font-weight: 400; color: var(--ivory);
  line-height: 1;
}
.hero-meta-num sup {
  font-size: 0.9rem; font-style: italic; color: var(--gold2);
}
.hero-meta-label {
  font-size: 0.58rem; font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(249,246,240,0.3);
  margin-top: 0.4rem;
}
.hero-meta-div {
  width: 1px; height: 40px;
  background: rgba(249,246,240,0.1);
}

.hero-right {
  background: var(--ivory2);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 4rem 7rem;
  position: relative;
}
.hero-right-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.hero-right-image {
  flex: 1;
  aspect-ratio: 3 / 2;
  border-radius: 2px;
  overflow: hidden;
  opacity: 0; animation: fadeUp 0.9s 0.15s ease forwards;
}
.hero-right-image picture,
.hero-right-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
}
.hero-right-badge {
  flex-shrink: 0;
  width: 96px; height: 96px; border-radius: 50%;
  border: 1px solid var(--linen);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  animation: rotateBadge 30s linear infinite;
}
@keyframes rotateBadge { to { transform: rotate(360deg); } }
.badge-num {
  font-family: 'EB Garamond', serif;
  font-size: 1.6rem; font-weight: 400; color: var(--charcoal);
  line-height: 1;
}
.badge-label {
  font-size: 0.48rem; font-weight: 300; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ash);
}


.hero-right-content {
  position: relative; z-index: 2;
  opacity: 0; animation: fadeUp 0.8s 0.35s ease forwards;
}
.hero-right-intro {
  font-size: 0.78rem; font-weight: 200; line-height: 2;
  color: var(--ash); margin-bottom: 3rem;
  max-width: 300px;
}
.hero-right-intro strong {
  font-weight: 400; color: var(--charcoal);
}
.hero-cta-stack { display: flex; flex-direction: column; gap: 1rem; }
.btn-primary {
  display: block; text-align: center;
  background: var(--charcoal); color: var(--ivory);
  padding: 1.05rem 2rem; text-decoration: none;
  font-size: 0.62rem; font-weight: 300; letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background 0.4s;
}
.btn-primary:hover { background: var(--gold); }
.btn-secondary {
  display: block; text-align: center;
  background: transparent; color: var(--charcoal);
  padding: 1.05rem 2rem; text-decoration: none;
  font-size: 0.62rem; font-weight: 300; letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid var(--linen);
  transition: border-color 0.4s, color 0.4s;
}
.btn-secondary:hover { border-color: var(--charcoal); color: var(--charcoal); }

.hero-scroll-cue {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  opacity: 0; animation: fadeIn 0.8s 0.5s ease forwards;
}
.scroll-word {
  font-size: 0.55rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--ash); writing-mode: vertical-rl;
}
.scroll-bar {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2s 0.6s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── FAIXA ── */
.band {
  display: flex; align-items: center; justify-content: center; gap: 3rem;
  padding: 1.6rem 5rem; flex-wrap: wrap;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.band-item {
  font-size: 0.58rem; font-weight: 300; letter-spacing: 0.32em;
  text-transform: uppercase; color: rgba(249,246,240,0.3);
}
.band-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: 0.4; }

/* ── MANIFESTO ── */
.manifesto {
  padding: 10rem 5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8rem; align-items: center;
}
.manifesto-label {
  font-size: 0.58rem; font-weight: 300; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 3rem;
  display: flex; align-items: center; gap: 1rem;
}
.manifesto-label::before { content: '01'; font-family: 'EB Garamond', serif; font-style: italic; font-size: 0.9rem; color: var(--linen); }
.manifesto-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400; line-height: 1.2;
  color: var(--ink);
}
.manifesto-title em { font-style: italic; color: var(--sage); }
.manifesto-body {
  font-size: 0.88rem; font-weight: 200; line-height: 2.1;
  color: var(--ash); margin-bottom: 2.5rem;
}
.manifesto-body strong { font-weight: 400; color: var(--charcoal); }
.manifesto-divider {
  width: 40px; height: 1px; background: var(--gold); margin-bottom: 2.5rem;
}
.manifesto-quote {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem; font-style: italic; font-weight: 400;
  line-height: 1.65; color: var(--charcoal);
}

/* ── MÉTRICAS ── */
.metrics {
  background: var(--ivory2);
  border-top: 1px solid var(--ivory3);
  border-bottom: 1px solid var(--ivory3);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.metric {
  padding: 4rem 3rem;
  border-right: 1px solid var(--ivory3);
  position: relative;
}
.metric:last-child { border-right: none; }
.metric::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.8s ease;
}
.metric:hover::after { width: 100%; }
.metric-index {
  font-family: 'EB Garamond', serif;
  font-size: 0.7rem; font-style: italic;
  color: var(--linen); margin-bottom: 1.8rem;
}
.metric-num {
  font-family: 'EB Garamond', serif;
  font-size: 3.4rem; font-weight: 400; color: var(--ink); line-height: 1;
}
.metric-sup {
  font-size: 1rem; font-style: italic; color: var(--gold);
}
.metric-label {
  font-size: 0.6rem; font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ash);
  margin-top: 0.7rem;
}

/* ── A SELEÇÃO (pilares → restaurantes) ── */
.pilares {
  padding: 10rem 5rem;
}
.pilares-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 6rem;
  border-bottom: 1px solid var(--ivory3);
  padding-bottom: 3rem;
}
.pilares-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400; line-height: 1.2; color: var(--ink);
}
.pilares-title em { font-style: italic; color: var(--sage); }
.pilares-intro {
  max-width: 340px;
  font-size: 0.8rem; font-weight: 200; line-height: 1.9; color: var(--ash);
}
.pilares-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pilar {
  padding: 3.5rem 3rem;
  border-right: 1px solid var(--ivory3);
  border-bottom: 1px solid var(--ivory3);
  transition: background 0.4s;
  position: relative;
}
.pilar:hover { background: var(--ivory2); }
.pilar:nth-child(3n) { border-right: none; }
.pilar:nth-child(7), .pilar:nth-child(8), .pilar:nth-child(9) { border-bottom: none; }
.pilar-num {
  font-family: 'EB Garamond', serif;
  font-size: 0.75rem; font-style: italic;
  color: var(--gold); margin-bottom: 2rem; display: block;
}
.pilar-rule {
  width: 24px; height: 1px; background: var(--gold);
  margin-bottom: 2rem; opacity: 0.5;
}
.pilar-cuisine {
  font-size: 0.55rem; font-weight: 300; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 0.7rem;
}
.pilar-name {
  font-family: 'EB Garamond', serif;
  font-size: 1.45rem; font-weight: 400; color: var(--ink);
  margin-bottom: 1rem; line-height: 1.25;
}
.pilar-desc {
  font-size: 0.8rem; font-weight: 200; line-height: 1.85; color: var(--ash);
}
.pilar-bairro {
  margin-top: 1.6rem;
  font-family: 'EB Garamond', serif;
  font-size: 0.78rem; font-style: italic;
  color: var(--gold);
}
.pilar-price {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--ivory3);
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
}
.pilar-price-label {
  font-size: 0.55rem; font-weight: 300; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--sage);
}
.pilar-price-value {
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem; font-weight: 500; color: var(--ink);
  white-space: nowrap;
}
.pilar-price-value.pilar-price-consult { font-style: italic; font-weight: 400; color: var(--ash); }
.pilares-note {
  margin-top: 4rem;
  font-size: 0.68rem; font-weight: 200; line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--ash); max-width: 560px;
}

/* ── REGIÕES ── */
.localizacao {
  background: var(--ink);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}
.loc-left {
  padding: 8rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.loc-tag {
  font-size: 0.58rem; font-weight: 300; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 3rem;
  display: flex; align-items: center; gap: 1rem;
}
.loc-tag::before { content: '03'; font-family: 'EB Garamond', serif; font-style: italic; font-size: 0.9rem; color: rgba(255,255,255,0.1); }
.loc-city {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 400; line-height: 1.05;
  color: var(--ivory); margin-bottom: 1rem;
}
.loc-city em { font-style: italic; color: var(--gold2); }
.loc-state {
  font-size: 0.62rem; font-weight: 200; letter-spacing: 0.32em;
  text-transform: uppercase; color: rgba(249,246,240,0.25);
  margin-bottom: 5rem;
}
.loc-distances { list-style: none; }
.loc-dist {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.loc-dist:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.loc-dist-name { font-size: 0.78rem; font-weight: 200; color: rgba(249,246,240,0.4); }
.loc-dist-val {
  font-family: 'EB Garamond', serif;
  font-size: 1.25rem; font-weight: 400; font-style: italic;
  color: var(--ivory); text-align: right;
}

.loc-right {
  padding: 8rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.loc-visual-ring {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(168,137,74,0.08);
}
.ring1 { width: 420px; height: 420px; }
.ring2 { width: 300px; height: 300px; border-color: rgba(168,137,74,0.12); }
.ring3 { width: 180px; height: 180px; border-color: rgba(168,137,74,0.18); }

.loc-card-set { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 1.2rem; }
.loc-card-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.8rem 2.2rem;
  transition: background 0.3s, border-color 0.3s;
}
.loc-card-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(168,137,74,0.2);
}
.loc-card-top {
  font-size: 0.58rem; font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.loc-card-val {
  font-family: 'EB Garamond', serif;
  font-size: 1.2rem; font-weight: 400; color: var(--ivory);
}

/* ── CTA FINAL ── */
.cta-final {
  padding: 12rem 5rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'EB Garamond', serif;
  font-size: 28vw; font-style: italic; font-weight: 400;
  color: rgba(168,137,74,0.04);
  line-height: 1; white-space: nowrap; pointer-events: none;
  letter-spacing: -0.04em; user-select: none;
}
.cta-tag {
  font-size: 0.58rem; font-weight: 300; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 3rem; display: block;
}
.cta-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 400; line-height: 1.1;
  color: var(--ink); margin-bottom: 2rem;
}
.cta-title em { font-style: italic; color: var(--sage); }
.cta-sub {
  font-size: 0.85rem; font-weight: 200; line-height: 2;
  color: var(--ash); max-width: 480px;
  margin: 0 auto 4.5rem;
}
.cta-actions { display: flex; gap: 1.2rem; justify-content: center; }
.cta-line-detail {
  display: flex; align-items: center; justify-content: center; gap: 2rem;
  margin-top: 4rem;
}
.cld-rule { width: 60px; height: 1px; background: var(--linen); }
.cld-text {
  font-size: 0.58rem; font-weight: 300; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--linen);
}

/* ── FOOTER ── */
footer {
  background: var(--ivory2);
  border-top: 1px solid var(--ivory3);
  padding: 3.5rem 5rem;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.foot-logo {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem; letter-spacing: 0.42em;
  text-transform: uppercase; color: var(--charcoal);
}
.foot-center {
  font-size: 0.58rem; font-weight: 200; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--linen); text-align: center;
}
.foot-links { display: flex; gap: 2.5rem; justify-content: flex-end; }
.foot-links a {
  font-size: 0.58rem; font-weight: 300; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ash);
  text-decoration: none; transition: color 0.3s;
}
.foot-links a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* Reveal-on-scroll is a progressive enhancement: the hidden start state
   only applies when JS is present (html.js). Without JS, content stays visible. */
html.js .reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
html.js .reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .veil { animation: none; transition: none; opacity: 0; visibility: hidden; pointer-events: none; }
  .hero-tag, h1.hero-title, .hero-meta, .hero-right-content,
  .hero-scroll-cue, .hero-right-badge, .hero-right-image, .scroll-bar { animation: none; opacity: 1; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── RESPONSIVO ── */
@media (max-width: 1024px) {
  nav { padding: 1.4rem 2rem; }
  .nav-hamburger { display: flex; }
  nav ul {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 340px);
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2.2rem;
    padding: 3rem;
    box-shadow: -8px 0 30px rgba(0,0,0,0.12);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 150;
  }
  nav ul.open { transform: translateX(0); }
  nav ul li a { font-size: 0.85rem; }
  .nav-overlay {
    position: fixed; inset: 0; background: rgba(20,19,16,0.4);
    z-index: 140; opacity: 0; pointer-events: none; transition: opacity 0.4s;
  }
  .nav-overlay.open { opacity: 1; pointer-events: auto; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 9rem 2rem 5rem; min-height: 70vh; }
  .hero-right { padding: 4rem 2rem 5rem; }
  .hero-right-top {
    flex-direction: column; align-items: flex-start;
    margin-bottom: 2.5rem; gap: 1.4rem;
  }
  .hero-right-image {
    width: 100%; height: 220px; aspect-ratio: auto;
    opacity: 1; animation: none;
  }
  .hero-vol { display: none; }
  .hero-scroll-cue { display: none; }
  .band { gap: 1.4rem; padding: 1.4rem 2rem; }
  .manifesto { padding: 5rem 2rem; grid-template-columns: 1fr; gap: 3rem; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric { padding: 2.5rem 2rem; border-bottom: 1px solid var(--ivory3); }
  .pilares { padding: 5rem 2rem; }
  .pilares-header { flex-direction: column; align-items: flex-start; gap: 2rem; margin-bottom: 3rem; }
  .pilares-grid { grid-template-columns: 1fr; }
  .pilar { border-right: none !important; border-bottom: 1px solid var(--ivory3) !important; padding: 2.5rem 0; }
  .pilar:last-child { border-bottom: none !important; }
  .localizacao { grid-template-columns: 1fr; }
  .loc-left, .loc-right { padding: 5rem 2rem; border-right: none; }
  .cta-final { padding: 7rem 2rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions a { min-width: 260px; }
  footer { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; padding: 3rem 2rem; }
  .foot-links { justify-content: center; flex-wrap: wrap; }
}

/* ── EXTRA: PAGE HERO (páginas internas) ── */
.page-hero {
  padding: 11rem 4rem 4rem;
  border-bottom: 1px solid var(--ivory3);
  position: relative;
}
.page-hero-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.page-hero-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.page-hero-title {
  font-family: 'EB Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  max-width: 800px;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--charcoal);
  max-width: 620px;
  margin-top: 1.5rem;
}

/* ── EXTRA: PROPERTY TYPE BADGE ── */
.pilar-badge {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 2px;
  margin-bottom: 0.9rem;
}
.pilar-badge.apto { border-color: var(--sage); color: var(--sage); }

.catalog-section-title {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--ink);
  padding: 3.5rem 4rem 0;
}
.catalog-section-rule {
  height: 1px; background: var(--ivory3);
  margin: 1.5rem 4rem 0;
}

.broker-wrap {
  display: grid;
  grid-template-columns: 1fr;
  padding: 5rem 4rem;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .broker-wrap { grid-template-columns: 1fr; padding: 3rem 2rem; }
  .page-hero { padding: 9rem 2rem 3rem; }
  .catalog-section-title, .catalog-section-rule { padding-left: 2rem; padding-right: 2rem; margin-left: 2rem; margin-right: 2rem; }
}

/* ── EXTRA: CONTACT ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-card {
  border: 1px solid var(--ivory3);
  padding: 2.2rem;
  margin-bottom: 1.2rem;
}
.contact-card-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.contact-card-val {
  font-family: 'EB Garamond', serif;
  font-size: 1.3rem;
}
.contact-form label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
  margin: 1.3rem 0 0.5rem;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--ivory3);
  background: transparent;
  padding: 0.7rem 0.2rem;
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
/* Impede o navegador de pintar o campo de azul/amarelo no autofill */
.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form input:-webkit-autofill:active {
  -webkit-text-fill-color: var(--ink);
  caret-color: var(--ink);
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0 1000px var(--ivory) inset;
}
.contact-form input:autofill {
  -webkit-text-fill-color: var(--ink);
  box-shadow: 0 0 0 1000px var(--ivory) inset;
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form button {
  margin-top: 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--ivory);
  border: none;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-form button:hover { background: var(--gold); }
@media (max-width: 860px) {
  .contact-wrap { grid-template-columns: 1fr; padding: 3rem 2rem; }
}

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-float-label {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.9rem;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.whatsapp-float:hover .whatsapp-float-label { opacity: 1; }
@media (max-width: 640px) {
  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-float-label { display: none; }
}

/* ── BACK TO TOP BUTTON ── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 500;
  width: 52px;
  height: 52px;
  background: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s, visibility 0.3s;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--gold); }
.back-to-top svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; transition: stroke 0.3s; }
.back-to-top:hover svg { stroke: var(--ink); }
@media (max-width: 640px) {
  .back-to-top { bottom: 18px; left: 18px; width: 46px; height: 46px; }
  .back-to-top svg { width: 18px; height: 18px; }
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 6rem 5rem;
  background: var(--ink);
  color: var(--ivory);
}
.testimonials-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.testimonials-label::before { content: ''; width: 30px; height: 1px; background: var(--gold2); }
.testimonials-title {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 3rem;
  max-width: 560px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.testimonial-card {
  border-top: 1px solid rgba(249,246,240,0.18);
  padding-top: 1.6rem;
}
.testimonial-quote {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ivory2);
  margin-bottom: 1.4rem;
}
.testimonial-author {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold2);
}
.testimonial-context {
  font-size: 0.78rem;
  color: var(--ash);
  margin-top: 0.2rem;
}
@media (max-width: 860px) {
  .testimonials { padding: 4rem 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── FORM FEEDBACK ── */
.form-success {
  display: none;
  border: 1px solid var(--sage);
  background: rgba(91,113,82,0.08);
  color: var(--sage);
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}
.form-success.visible { display: block; }
.form-success.error {
  border-color: var(--wine);
  background: rgba(110,50,38,0.08);
  color: var(--wine);
}
