:root {
  --cream: #F7F2ED;        /* off-white */
  --beige: #ECDFCA;        /* bege institucional */
  --cream-deep: #F0E8DF;
  --taupe: #B7AB9A;
  --ink: #3A2E23;
  --ink-soft: #856D4F;     /* brown institucional */
  --hairline: rgba(58, 46, 35, 0.16);
  --hairline-soft: rgba(58, 46, 35, 0.09);
  --terra: #C66522;
  --terra-text: #A85312;   /* terracota p/ texto pequeno (contraste AA) */
  --dark: #453324;         /* deep brown — seções escuras */
  --on-dark: #F3EAD9;
  --on-dark-soft: rgba(243, 234, 217, 0.6);
  --hairline-dark: rgba(243, 234, 217, 0.16);
  --serif: "Abhaya Libre", "Bodoni 72", Georgia, serif;
  --sans: "Jost", "Futura PT", Futura, "Avenir Next", sans-serif;
  --mono: "JetBrains Mono", "SF Mono", monospace;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--terra); color: var(--cream); }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

:focus-visible { outline: 2px solid var(--terra); outline-offset: 4px; }

/* ---------- utilities ---------- */

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--terra);
  vertical-align: middle;
  margin-right: 14px;
}

.mono-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding-left: clamp(22px, 6vw, 84px);
  padding-right: clamp(22px, 6vw, 84px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 42px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.btn-solid { background: var(--ink); color: var(--cream); border: 1px solid var(--ink); }
.btn-solid:hover { background: var(--terra); border-color: var(--terra); color: var(--cream); }

.btn-ghost { background: transparent; color: inherit; border: 1px solid currentColor; }
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.dark-section .btn-ghost:hover { background: var(--on-dark); color: var(--dark); border-color: var(--on-dark); }

.text-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 6px;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.text-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- reveals ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--rd, 0s);
}

[data-reveal].is-in { opacity: 1; transform: translateY(0); }

.img-frame {
  overflow: hidden;
  position: relative;
  background: var(--cream-deep);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

a .img-frame img, .card:hover .img-frame img, .img-hover:hover img { transform: scale(1.045); }

[data-curtain] .img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 1.1s var(--ease);
  transition-delay: var(--rd, 0s);
}

.dark-section [data-curtain] .img-frame::after { background: var(--dark); }

[data-curtain].is-in .img-frame::after { transform: scaleY(0); }

/* ---------- grain ---------- */

.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- loader ---------- */

.loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.loader.is-done { opacity: 0; visibility: hidden; }

.loader svg { width: 54px; height: 54px; color: var(--terra); }

.loader-word {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--ink);
  animation: loader-word 1.4s var(--ease) both;
}

@keyframes loader-word {
  from { opacity: 0; letter-spacing: 0.7em; }
  to { opacity: 1; letter-spacing: 0.45em; }
}

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  color: var(--cream);
  transition: background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(247, 242, 237, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--hairline);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 22px clamp(22px, 4.5vw, 64px);
  max-width: 1600px;
  margin: 0 auto;
  transition: padding 0.35s var(--ease);
}

.site-header.is-scrolled .header-inner { padding-top: 14px; padding-bottom: 14px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand svg { width: 30px; height: 30px; color: currentColor; flex: none; }

.brand-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav { display: flex; gap: clamp(20px, 3vw, 42px); }

.main-nav a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

/* underline só nos links diretos do nav — não no botão nem nos itens do dropdown */
.main-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.main-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 22px; }

.lang-switch {
  display: flex;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.lang-switch a { opacity: 0.55; padding-bottom: 3px; transition: opacity 0.3s; }
.lang-switch a:hover { opacity: 1; }
.lang-switch a.is-active { opacity: 1; border-bottom: 1px solid var(--terra); }

/* nav dropdown (Casas) */
.nav-dd { position: relative; display: inline-flex; }

.nav-dd-btn {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: inherit;
  padding: 6px 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dd-btn::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.3s var(--ease);
}

.nav-dd-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 180px;
  background: var(--cream);
  border: 1px solid var(--hairline);
  box-shadow: 0 24px 48px rgba(58, 46, 35, 0.12);
  padding: 10px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  z-index: 20;
}

.nav-dd-menu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-dd:hover .nav-dd-menu,
.nav-dd.is-open .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dd:hover .nav-dd-btn::after,
.nav-dd.is-open .nav-dd-btn::after { transform: rotate(-135deg) translateY(2px); }

.nav-dd-menu a {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--ink);
  padding: 9px 14px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-dd-menu a:hover { background: var(--beige); color: var(--terra-text); }
.nav-dd-menu a[aria-current="page"] { color: var(--terra-text); }

.nav-dd-label {
  display: block;
  padding: 10px 14px 2px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
}

.nav-dd-label:first-child { padding-top: 4px; }

.header-cta {
  padding: 12px 28px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}

.site-header:not(.is-scrolled) .header-cta:hover { background: var(--cream); color: var(--ink); }
.site-header.is-scrolled .header-cta { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.site-header.is-scrolled .header-cta:hover { background: var(--terra); border-color: var(--terra); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  /* área de toque generosa (≈46px) sem mudar o tamanho visual do ícone */
  padding: 14px 10px;
  margin: -14px -10px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 1px;
  background: currentColor;
  transition: transform 0.35s var(--ease), opacity 0.35s;
}

.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* mobile menu */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px clamp(26px, 8vw, 60px) 60px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}

.menu-open .mobile-menu { opacity: 1; visibility: visible; }

.mobile-menu .mobile-nav { display: grid; gap: 6px; }

.mobile-menu .mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(34px, 8vw, 52px);
  line-height: 1.25;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}

.mobile-menu .mobile-nav a.sub {
  font-size: clamp(19px, 4.6vw, 26px);
  /* respiro vertical = alvo de toque confortável na lista de casas */
  padding: 5px 0 5px 0.6em;
  color: var(--ink-soft);
}

.mobile-menu .mobile-nav .mobile-group {
  display: block;
  margin-top: 10px;
  padding-left: 0.6em;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
}

.menu-open .mobile-menu .mobile-nav a { transform: translateY(0); opacity: 1; }
.menu-open .mobile-menu .mobile-nav .mobile-group { transform: translateY(0); opacity: 0.7; }
.menu-open .mobile-menu .mobile-nav > :nth-child(2) { transition-delay: 0.04s; }
.menu-open .mobile-menu .mobile-nav > :nth-child(3) { transition-delay: 0.08s; }
.menu-open .mobile-menu .mobile-nav > :nth-child(4) { transition-delay: 0.12s; }
.menu-open .mobile-menu .mobile-nav > :nth-child(5) { transition-delay: 0.16s; }
.menu-open .mobile-menu .mobile-nav > :nth-child(6) { transition-delay: 0.2s; }
.menu-open .mobile-menu .mobile-nav > :nth-child(7) { transition-delay: 0.24s; }
.menu-open .mobile-menu .mobile-nav > :nth-child(8) { transition-delay: 0.28s; }
.menu-open .mobile-menu .mobile-nav > :nth-child(9) { transition-delay: 0.32s; }
.menu-open .mobile-menu .mobile-nav > :nth-child(10) { transition-delay: 0.36s; }
.menu-open .mobile-menu .mobile-nav > :nth-child(11) { transition-delay: 0.4s; }
.menu-open .mobile-menu .mobile-nav > :nth-child(12) { transition-delay: 0.44s; }
.menu-open .mobile-menu .mobile-nav > :nth-child(13) { transition-delay: 0.48s; }
.menu-open .mobile-menu .mobile-nav > :nth-child(14) { transition-delay: 0.52s; }
.menu-open .mobile-menu .mobile-nav > :nth-child(15) { transition-delay: 0.56s; }
.menu-open .mobile-menu .mobile-nav > :nth-child(16) { transition-delay: 0.6s; }

.mobile-menu-foot {
  margin-top: 56px;
  display: grid;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}

.mobile-menu-foot .mono-meta { opacity: 0.6; }

body.menu-open { overflow: hidden; }
.menu-open .site-header { background: var(--cream); color: var(--ink); box-shadow: none; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26, 19, 13, 0.62) 0%, rgba(26, 19, 13, 0.18) 38%, rgba(26, 19, 13, 0) 62%),
    linear-gradient(to bottom, rgba(26, 19, 13, 0.3) 0%, rgba(26, 19, 13, 0) 24%);
}

.hero-inner {
  width: 100%;
  padding-bottom: clamp(48px, 8vh, 96px);
}

.hero .eyebrow { color: rgba(247, 242, 237, 0.85); }
.hero .eyebrow::before { background: var(--terra); }

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 8.2vw, 108px);
  line-height: 1.04;
  letter-spacing: 0.005em;
  margin: 26px 0 22px;
  max-width: 13ch;
  text-shadow: 0 4px 28px rgba(20, 14, 9, 0.34);
}

.hero .eyebrow, .hero-sub, .hero-foot { text-shadow: 0 2px 14px rgba(20, 14, 9, 0.3); }

.hero h1 em {
  font-style: italic;
  color: #EFD9C4;
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line span {
  display: block;
  transform: translateY(110%);
  transition: transform 1.15s var(--ease);
}

.is-loaded .hero-line span { transform: translateY(0); }
.is-loaded .hero-line:nth-child(2) span { transition-delay: 0.12s; }
.is-loaded .hero-line:nth-child(3) span { transition-delay: 0.24s; }

.hero-sub {
  max-width: 460px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247, 242, 237, 0.9);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease) 0.55s, transform 1s var(--ease) 0.55s;
}

.is-loaded .hero-sub { opacity: 1; transform: translateY(0); }

.hero-sub .en {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 242, 237, 0.55);
}

.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(36px, 6vh, 72px);
  padding-top: 26px;
  border-top: 1px solid rgba(247, 242, 237, 0.22);
  opacity: 0;
  transition: opacity 1.1s var(--ease) 0.85s;
}

.is-loaded .hero-foot { opacity: 1; }

.hero-foot .mono-meta { color: rgba(247, 242, 237, 0.6); }

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 242, 237, 0.6);
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(247, 242, 237, 0.7), rgba(247, 242, 237, 0));
  animation: cue 2.4s var(--ease) infinite;
}

@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- manifesto ---------- */

.manifesto {
  padding: clamp(110px, 16vh, 190px) 0;
  text-align: center;
}

.manifesto .eyebrow::before { display: none; }

.manifesto .eyebrow::after {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  background: var(--terra);
  margin: 26px auto 0;
}

.manifesto blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4.4vw, 54px);
  line-height: 1.28;
  max-width: 21ch;
  margin: 34px auto 40px;
}

.manifesto blockquote em { font-style: italic; color: var(--terra); }

.manifesto p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-soft);
}

.manifesto .en {
  display: block;
  max-width: 560px;
  margin: 26px auto 0;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.75;
}

.manifesto-figures {
  display: flex;
  justify-content: center;
  gap: clamp(36px, 7vw, 96px);
  margin-top: clamp(56px, 9vh, 96px);
  flex-wrap: wrap;
}

.figure { display: grid; gap: 6px; justify-items: center; }

.figure strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1;
}

.figure span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- collection rail ---------- */

.collection {
  background: var(--beige);
  padding: clamp(90px, 12vh, 150px) 0 clamp(100px, 14vh, 170px);
  overflow: hidden;
}

.collection .img-frame { background: var(--cream); }

.collection [data-curtain] .img-frame::after { background: var(--beige); }

.collection-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(40px, 6vh, 64px);
}

.collection-head h2,
.section-h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  margin-top: 18px;
  max-width: 20ch;
}

.rail-controls {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: none;
}

.rail-counter { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--ink-soft); }

.rail-arrows { display: flex; gap: 4px; }

.rail-arrow {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), color 0.35s, opacity 0.3s;
}

.rail-arrow:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.rail-arrow[disabled] { opacity: 0.3; pointer-events: none; }
.rail-arrow svg { width: 22px; height: 10px; }

.rail {
  display: flex;
  gap: clamp(18px, 2.4vw, 34px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: clamp(22px, 6vw, 84px);
  scrollbar-width: none;
  padding-left: clamp(22px, 6vw, 84px);
  padding-right: clamp(22px, 6vw, 84px);
  cursor: grab;
  touch-action: pan-y;
}

.rail::-webkit-scrollbar { display: none; }
.rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.rail.is-dragging .card { pointer-events: none; }

.rail-country {
  flex: none;
  min-width: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline-soft);
  pointer-events: none;
  user-select: none;
}

.rail-country span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.card {
  flex: none;
  width: clamp(252px, 26vw, 356px);
  scroll-snap-align: start;
  display: grid;
  gap: 18px;
}

.card .img-frame { aspect-ratio: 4 / 5; }

.card-caption { display: grid; gap: 3px; }

.card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.card-index { font-family: var(--mono); font-size: 10px; color: var(--ink-soft); letter-spacing: 0.1em; }

.card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 25px;
  line-height: 1.2;
}

.card-place {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.card-line { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; margin-top: 6px; }

.card-status {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.card-status.is-open { color: var(--terra-text); }

.rail-progress {
  height: 1px;
  background: var(--hairline-soft);
  margin: clamp(36px, 5vh, 54px) clamp(22px, 6vw, 84px) 0;
  position: relative;
}

.rail-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 20%;
  background: var(--terra);
  transition: width 0.2s linear;
}

/* ---------- theater (Trancoso) ---------- */

.dark-section {
  background: var(--dark);
  color: var(--on-dark);
}

.theater { padding: clamp(110px, 15vh, 180px) 0; }

.theater .eyebrow { color: var(--on-dark-soft); }

.theater-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(44px, 6vw, 110px);
  align-items: center;
}

.theater h2 { max-width: 14ch; }

.theater .lead {
  margin: 26px 0 38px;
  color: var(--on-dark-soft);
  max-width: 44ch;
}

.theater-meta {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  gap: 14px 56px;
  margin: 0 0 44px;
  padding: 0;
}

.theater-meta li { display: grid; gap: 2px; }

.theater-meta .mono-meta { color: var(--on-dark-soft); }

.theater-meta strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.01em;
}

.theater-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.theater-images .img-a {
  grid-column: 1 / 10;
  aspect-ratio: 4 / 5;
}

.theater-images .img-b {
  grid-column: 7 / 13;
  margin-top: -22%;
  aspect-ratio: 1 / 1;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.theater-images figcaption {
  grid-column: 1 / 13;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}

/* ---------- service ---------- */

.service { padding: clamp(110px, 15vh, 180px) 0; }

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(44px, 6vw, 120px);
  align-items: start;
}

.service-side { position: sticky; top: 120px; }

.service-side p {
  margin-top: 24px;
  color: var(--ink-soft);
  max-width: 38ch;
}

.service-list { display: grid; }

.service-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 34px 0;
  border-top: 1px solid var(--hairline);
}

.service-item:last-child { border-bottom: 1px solid var(--hairline); }

.service-item .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--terra-text);
  padding-top: 7px;
}

.service-item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 23px;
  margin-bottom: 8px;
}

.service-item p { color: var(--ink-soft); font-size: 15.5px; max-width: 52ch; }

/* ---------- quote break ---------- */

.quote-break {
  position: relative;
  padding: clamp(130px, 20vh, 220px) 0;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.quote-break .bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.quote-break .bg img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}

.quote-break .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 242, 237, 0.7);
}

.quote-break blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.8vw, 46px);
  line-height: 1.3;
  max-width: 24ch;
  margin: 0 auto;
}

.quote-break .en {
  display: block;
  margin-top: 24px;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- universo ---------- */

.universe { padding: 0 0 clamp(110px, 15vh, 180px); }

.universe-inner {
  background: var(--beige);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.universe h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.3;
  max-width: 26ch;
  margin-top: 16px;
}

.universe-brands {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.universe-brands a,
.universe-brands span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.universe-brands a { color: var(--ink); }

/* ---------- contact ---------- */

.contact { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }

.contact-copy {
  padding: clamp(90px, 13vh, 160px) clamp(26px, 6vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-copy h2 { max-width: 14ch; }

.contact-copy .lead { margin: 24px 0 42px; color: var(--ink-soft); max-width: 42ch; }

.contact-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }

.contact-meta { display: grid; gap: 8px; }

.contact-media { position: relative; overflow: hidden; min-height: 480px; }

.contact-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}

/* ---------- marquee ---------- */

.marquee {
  border-top: 1px solid var(--hairline-dark);
  overflow: hidden;
  padding: 22px 0;
  background: var(--dark);
  color: var(--on-dark-soft);
}

.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 60s linear infinite;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track em { font-style: normal; color: var(--terra); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--dark);
  color: var(--on-dark);
  padding: clamp(80px, 11vh, 130px) 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 4fr) repeat(3, minmax(0, 2.4fr));
  gap: clamp(36px, 5vw, 80px);
  padding-bottom: clamp(64px, 9vh, 100px);
}

.footer-brand svg { width: 44px; height: 44px; color: var(--terra); }

.footer-brand .tagline {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.35;
  margin-top: 22px;
  max-width: 15ch;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-bottom: 22px;
}

.footer-col ul { display: grid; gap: 11px; }

.footer-col a, .footer-col li > span {
  font-size: 14px;
  font-weight: 300;
  color: var(--on-dark);
  opacity: 0.85;
  transition: opacity 0.3s, color 0.3s;
}

.footer-col li > span { opacity: 0.45; }

.footer-col a:hover { opacity: 1; color: var(--terra); }

.footer-col .soon {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.4;
  margin-left: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--hairline-dark);
  padding: 26px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}

/* ---------- responsive ---------- */

@media (max-width: 1060px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .theater-grid, .service-grid, .universe-inner { grid-template-columns: 1fr; }
  .service-side { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .header-cta { padding: 9px 14px; font-size: 11px; letter-spacing: 0.14em; }
  .brand-name { font-size: 11px; letter-spacing: 0.3em; }
  .contact { grid-template-columns: 1fr; }
  .contact-media { min-height: 380px; order: -1; }
  .collection-head { flex-direction: column; align-items: flex-start; }
  .theater-images .img-b { margin-top: -14%; }
  .footer-top { grid-template-columns: 1fr; gap: 44px; }
  .hero-foot { flex-wrap: wrap; }
  .manifesto-figures { gap: 32px; }
  /* pausa da citação: mantém o respiro sem custar tanto scroll em tela pequena */
  .quote-break { padding: clamp(96px, 14vh, 130px) 0; }
}

/* telefones estreitos: o header precisa caber com folga (marca + reservar + menu) */
@media (max-width: 430px) {
  .header-inner { gap: 12px; padding-left: 18px; padding-right: 18px; }
  .header-actions { gap: 12px; }
  .brand { gap: 10px; }
  .brand svg { width: 26px; height: 26px; }
  .brand-name { font-size: 10px; letter-spacing: 0.26em; }
  .header-cta { padding: 8px 10px; font-size: 10px; letter-spacing: 0.1em; }
}

/* ---------- idiomas em toda página: ícone de tradução + menu ----------
   gatilho é só o ícone (padrão internacional); o menu mostra o código e o
   nome nativo (fácil de reconhecer de qualquer país), idioma atual marcado */
.header-actions .lang-switch { position: relative; display: flex; }
.lang-trigger {
  display: grid; place-items: center;
  width: 44px; height: 40px;
  padding: 0; border: 0; background: none;
  color: inherit; cursor: pointer;
  opacity: 0.82;
  transition: opacity 0.3s;
}
.lang-trigger:hover { opacity: 1; }
.header-actions .lang-switch.is-open .lang-trigger { opacity: 1; color: var(--terra-text, #A85312); }
.header-actions .lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  display: none; flex-direction: column;
  /* fundo claro fixo, então a cor do texto NÃO herda do header
     (nas páginas de hero escuro o header é creme — ficava branco no branco) */
  color: var(--ink);
  background: rgba(251, 247, 242, 0.98);
  border: 1px solid var(--hairline);
  box-shadow: 0 16px 38px rgba(58, 46, 35, 0.16);
  min-width: 148px;
  max-height: min(62vh, 430px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(58, 46, 35, 0.3) transparent;
  z-index: 900;
}
.header-actions .lang-switch.is-open .lang-menu { display: flex; }
.header-actions .lang-menu a {
  display: flex; align-items: baseline; gap: 9px;
  padding: 10px 15px;
  font-size: 10px; letter-spacing: 0.14em;
  opacity: 0.8;
  border-bottom: 1px solid var(--hairline);
}
.header-actions .lang-menu a small {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.7;
}
.header-actions .lang-menu a:last-child { border-bottom: 0; }
.header-actions .lang-menu a:hover { opacity: 1; background: rgba(198, 101, 34, 0.07); }
.header-actions .lang-menu a.is-active {
  opacity: 1;
  border-left: 2px solid var(--terra);
  padding-left: 13px;
  background: rgba(198, 101, 34, 0.06);
}
/* bem estreito: a marca fica só no símbolo e sobra espaço pro idioma + reservar */
@media (max-width: 560px) {
  .brand-name { display: none; }
  .brand svg { width: 30px; height: 30px; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal], .hero-line span, .hero-sub, .hero-foot { opacity: 1 !important; transform: none !important; }
  [data-curtain] .img-frame::after { display: none; }
  .loader { display: none; }
}

/* ---------- hero com globo 3D (homepage) — tema claro, bege com terracota ---------- */
.hero-globe { background: #F7F2ED; color: var(--ink); }
.hero-globe .hero-media { cursor: grab; }
.hero-globe .hero-media:active { cursor: grabbing; }
.hero-globe .eyebrow { color: var(--terra-text, #A85312); }
.hero-globe .eyebrow::before { background: var(--terra); }
.hero-globe .eyebrow, .hero-globe .hero-sub, .hero-globe .hero-foot { text-shadow: none; }
.hero-globe .hero-sub { color: var(--ink-soft, #6b5942); }
.hero-globe .hero-foot .mono-meta { color: var(--ink-soft, #6b5942); }
.hero-globe .hero-media::after {
  pointer-events: none;
  background:
    linear-gradient(to right, rgba(247, 242, 237, 0.82), transparent 46%),
    radial-gradient(125% 95% at 62% 42%, transparent 58%, rgba(236, 223, 202, 0.55) 100%),
    linear-gradient(to top, rgba(247, 242, 237, 0.8), transparent 34%),
    linear-gradient(to bottom, rgba(247, 242, 237, 0.55), transparent 20%);
}
@media (max-width: 900px) {
  .hero-globe .hero-media::after {
    background:
      radial-gradient(125% 95% at 50% 28%, transparent 52%, rgba(236, 223, 202, 0.5) 100%),
      linear-gradient(to top, rgba(247, 242, 237, 0.9) 30%, transparent 60%),
      linear-gradient(to bottom, rgba(247, 242, 237, 0.55), transparent 20%);
  }
}
.hero-globe .maplibregl-ctrl-attrib { font-size: 9px; opacity: 0.55; background: rgba(247, 242, 237, 0.7); }
.hero-globe .maplibregl-ctrl-attrib, .hero-globe .maplibregl-ctrl-attrib a { color: #8A7154; }
.hero-globe .hero-inner { pointer-events: none; position: relative; z-index: 2; transition: opacity 0.8s var(--ease), visibility 0.8s; }
.hero-globe .hero-inner a, .hero-globe .hero-inner button { pointer-events: auto; }
.hero-globe.is-touring .hero-inner { opacity: 0; visibility: hidden; }
.hero-actions { display: flex; gap: 14px; align-items: center; margin-top: 32px; flex-wrap: wrap; }

/* convite pós-apresentação: pulso discreto no botão do tour — chama o olhar sem forçar */
.hero-globe.is-invite [data-globe-tour] {
  border-color: var(--terra);
  color: var(--terra-text, #A85312);
  animation: invitePulse 2.2s var(--ease) 3;
}
@keyframes invitePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(198, 101, 34, 0.32); }
  45% { box-shadow: 0 0 0 9px rgba(198, 101, 34, 0); }
}
.globe-caption {
  position: absolute;
  left: clamp(20px, 5vw, 72px);
  bottom: clamp(84px, 13vh, 120px);
  max-width: min(460px, calc(100vw - 40px));
  z-index: 3;
  color: var(--ink);
  background: rgba(247, 242, 237, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hairline, rgba(58, 46, 35, 0.14));
  border-left: 3px solid var(--terra);
  padding: 20px 24px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  pointer-events: none;
}
.globe-caption.is-in { opacity: 1; transform: none; }
.globe-caption .eyebrow { color: var(--terra-text, #A85312); }
.globe-caption .eyebrow::before { background: var(--terra); }
.globe-caption h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.1;
  margin: 10px 0;
  max-width: 18ch;
}
.globe-caption p { color: var(--ink-soft, #6b5942); max-width: 42ch; margin: 0 0 10px; font-size: 15px; }
.globe-caption .mono-meta { color: var(--terra-text, #A85312); }
.globe-exit {
  position: absolute;
  top: 84px;
  right: clamp(16px, 3vw, 40px);
  z-index: 4;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(247, 242, 237, 0.82);
  border: 1px solid var(--hairline, rgba(58, 46, 35, 0.2));
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.globe-exit:hover { background: var(--terra); border-color: transparent; color: #F7F2ED; }
@media (max-width: 720px) {
  .globe-caption { left: 16px; right: 16px; bottom: 92px; padding: 16px 18px; }
  .globe-caption h2 { font-size: 24px; }
  .globe-caption p { font-size: 14px; }
}

/* o MapLibre põe .maplibregl-map (position:relative) no container — reforça o absoluto do hero */
.hero-globe .hero-media.maplibregl-map { position: absolute; inset: 0; width: 100%; height: 100%; }
[hidden] { display: none !important; }

/* celular: globo grande e imersivo no topo (a apresentação acontece nele),
   texto em fluxo logo abaixo — a base da primeira tela fica em área de texto,
   então sempre há onde apoiar o dedo pra rolar; e o toque sobre o globo
   também rola a página (dragPan desligado fora do modo Explorar) */
@media (max-width: 900px) {
  .hero-globe { flex-direction: column; align-items: stretch; }
  .hero-globe .hero-media,
  .hero-globe .hero-media.maplibregl-map {
    position: relative;
    inset: auto;
    height: 72svh;
    min-height: 420px;
    flex: none;
  }
  .hero-globe .hero-inner { padding-top: 12px; }
  .hero-globe .hero-actions .btn { width: 100%; }
  /* cartelas da apresentação: presas à primeira tela, centradas sobre o globo */
  .hero-globe .globe-cinema { top: 0; bottom: auto; height: 100svh; }
  /* legenda do tour: cola logo abaixo do globo, não no pé da seção */
  .hero-globe .globe-caption { top: calc(72svh + 10px); bottom: auto; }
}

/* header em tinta escura quando o hero é claro (globo na home, mapa em Orlando) */
body.orl-light .site-header { color: var(--ink); }
body.orl-light .site-header:not(.is-scrolled) .header-cta { border-color: var(--terra); color: var(--terra-text, #A85312); }
/* header rolado: botão café com letra e filete em bege, não terracota */
body.orl-light .site-header.is-scrolled .header-cta { border-color: var(--ink); color: var(--cream); }
.hero-globe h1 { text-shadow: none; }
.hero-globe h1 em { color: var(--terra-text, #A85312); }

/* abertura: cartelas de apresentação sobre o globo, com fundo desfocado pra leitura */
.globe-cinema {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 24px;
  pointer-events: none;
  background: rgba(247, 242, 237, 0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}
.hero-globe.is-cinema .globe-cinema { opacity: 1; }
/* cartela editorial: eyebrow tracked, frase em máscara palavra a palavra,
   régua terracota, contador mono e barras de progresso no tempo da leitura */
.gc-frame {
  display: grid;
  gap: 26px;
  justify-items: center;
  text-align: center;
  padding: 24px;
  max-width: min(860px, 92vw);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.gc-frame.is-out { opacity: 0; transform: translateY(-18px); filter: blur(6px); }
.gc-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.62em;
  text-transform: uppercase;
  color: var(--terra-text, #A85312);
  opacity: 0;
  transition: opacity 0.9s var(--ease) 0.05s, letter-spacing 1.1s var(--ease) 0.05s;
}
.gc-frame.is-in .gc-eyebrow { opacity: 1; letter-spacing: 0.32em; }
.gc-line {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4.8vw, 64px);
  line-height: 1.16;
  color: var(--ink);
  max-width: 20ch;
  margin: 0;
  text-wrap: balance;
}
.gc-w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}
.gc-w > span {
  display: inline-block;
  transform: translateY(112%);
  transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.21, 1);
}
.gc-frame.is-in .gc-w > span { transform: translateY(0); }
.gc-rule {
  width: 0;
  height: 1.5px;
  background: var(--terra);
  transition: width 0.9s var(--ease) 0.55s;
}
.gc-frame.is-in .gc-rule { width: 64px; }
.gc-count {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  color: var(--ink-soft, #856D4F);
  opacity: 0;
  transition: opacity 0.8s var(--ease) 0.65s;
}
.gc-frame.is-in .gc-count { opacity: 1; }
/* cartela de marca: símbolo pequeno entrando e saindo por desfoque,
   lead em sans caixa alta espaçada, lockup VOYAGE + Villas colado */
.gc-frame.is-brand { gap: 18px; }
.gc-mark {
  width: clamp(44px, 4.6vw, 60px);
  height: auto;
  color: #B49A6C;
  opacity: 0;
  filter: blur(12px);
  transform: scale(0.92);
  transition: opacity 1.2s var(--ease) 0.1s, filter 1.3s var(--ease) 0.1s, transform 1.3s var(--ease) 0.1s;
}
.gc-frame.is-in .gc-mark { opacity: 1; filter: blur(0); transform: none; }
.gc-frame.is-out .gc-mark { opacity: 0; filter: blur(12px); transition-duration: 0.5s; transition-delay: 0s; }
.gc-lead {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(12px, 1.35vw, 17px);
  line-height: 1.5;
  letter-spacing: 0.34em;
  padding-left: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft, #856D4F);
  margin: 0;
}
.gc-lockup {
  display: grid;
  gap: 2px;
  justify-items: center;
  margin-top: -4px;
}
/* lockup fiel à logo oficial: VOYAGE dourado em geométrica leve,
   VILLAS serifado escuro cujo espaçamento abre suavemente até assentar */
.gc-voyage {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0.13em;
  padding-left: 0.13em;
  text-transform: uppercase;
  color: #B49A6C;
}
.gc-villas {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(17px, 2.2vw, 27px);
  line-height: 1.2;
  text-transform: uppercase;
  color: #4A4036;
  opacity: 0;
  letter-spacing: 0.1em;
  padding-left: 0.1em;
  transition:
    opacity 1.4s var(--ease) 0.65s,
    letter-spacing 2.1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.65s,
    padding-left 2.1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.65s;
}
.gc-frame.is-in .gc-villas { opacity: 1; letter-spacing: 0.52em; padding-left: 0.52em; }
.gc-progress {
  position: absolute;
  bottom: clamp(30px, 6vh, 56px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.gc-progress i {
  width: 30px;
  height: 2px;
  background: rgba(58, 46, 35, 0.16);
  position: relative;
  overflow: hidden;
}
.gc-progress i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
}
.gc-progress i.is-on::after { transform: scaleX(1); transition: transform var(--hold, 3.4s) linear; }
.gc-progress i.is-done::after { transform: scaleX(1); }
.hero-globe.is-cinema .hero-inner { opacity: 0; visibility: hidden; }

/* exploração livre do globo: hero limpo, cartão de localização clicável */
.hero-globe.is-exploring .hero-inner { opacity: 0; visibility: hidden; }
.hero-globe.is-exploring .globe-caption { pointer-events: auto; }
.globe-caption .text-link { margin-top: 4px; display: inline-block; color: var(--terra-text, #A85312); }

/* Lenis smooth scroll */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ===== Formatos de Experiência ===== */
.formatos { padding: clamp(72px,10vw,140px) 0; background: var(--cream); }
.formatos .fmt-head { max-width: 720px; margin-bottom: clamp(40px,6vw,72px); }
.formatos .fmt-intro { color: var(--ink-soft); font-size: clamp(15px,1.6vw,18px); margin-top: 16px; line-height: 1.6; }
.fmt-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--beige); border: 1px solid var(--beige); }
.fmt-card { background: var(--cream); padding: clamp(28px,3.4vw,44px); display: flex; flex-direction: column; gap: 12px; min-height: 220px; }
.fmt-card .eyebrow { color: var(--terra-text); }
.fmt-card h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(21px,2.4vw,28px); line-height: 1.15; color: var(--ink); }
.fmt-card p { color: var(--ink-soft); font-size: clamp(14px,1.4vw,16px); line-height: 1.55; }
.fmt-card .fmt-ex { margin-top: auto; font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); opacity: .8; }
.fmt-note { margin-top: clamp(28px,3.4vw,44px); max-width: 640px; color: var(--ink); font-size: clamp(15px,1.6vw,18px); line-height: 1.6; }
@media (max-width: 720px) { .fmt-grid { grid-template-columns: 1fr; } }

/* ===== Cuidado Voyage ===== */
.cuidado { padding: clamp(72px,10vw,140px) 0; background: var(--cream-deep); }
.cuidado .cuidado-head { max-width: 680px; margin-bottom: clamp(40px,6vw,72px); }
.cuidado .cuidado-sub { color: var(--ink-soft); font-size: clamp(15px,1.6vw,18px); margin-top: 16px; line-height: 1.6; }
.cuidado-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: clamp(20px,2.4vw,32px); }
.cuidado-step { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid var(--beige); }
.cuidado-step .step-n { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; color: var(--terra-text); }
.cuidado-step h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(18px,2vw,22px); color: var(--ink); }
.cuidado-step p { color: var(--ink-soft); font-size: clamp(13px,1.35vw,15px); line-height: 1.5; }
@media (max-width: 900px) { .cuidado-steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .cuidado-steps { grid-template-columns: 1fr; } }

/* ===== Hero claro (proposta instantânea) ===== */
.hero-clear { position: relative; min-height: 92svh; display: flex; align-items: flex-end; color: var(--cream); }
.hero-clear .hero-photo { position: absolute; inset: 0; overflow: hidden; }
.hero-clear .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-clear .hero-photo::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,.34) 0%, rgba(20,16,12,.34) 45%, rgba(20,16,12,.78) 100%); }
.hero-clear .hero-inner { position: relative; z-index: 2; padding-top: 110px; padding-bottom: clamp(40px, 6vh, 80px); }
.hero-clear .hero-title { font-family: var(--serif); font-weight: 400; line-height: 1.02;
  font-size: clamp(36px, 5.6vw, 78px); margin: 14px 0 18px; opacity: 1; transform: none; }
.hero-clear .hero-sub { opacity: 1 !important; transform: none !important; color: rgba(247,242,237,.92);
  max-width: 560px; font-size: clamp(16px, 1.8vw, 20px); line-height: 1.55; }
.hero-clear .eyebrow { color: var(--beige); }
.hero-clear .hero-actions { margin-top: 28px; }
.hero-clear .btn-solid { background: var(--terra); border-color: var(--terra); }
.hero-clear .btn-solid:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.hero-clear .hero-ghost { color: var(--cream); }
.hero-proofs { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 26px; padding-top: 18px;
  border-top: 1px solid rgba(247,242,237,.25); }
.hero-proofs .mono-meta { color: rgba(247,242,237,.75); }
@media (max-width: 760px) {
  .hero-clear { min-height: 88svh; }
  .hero-clear .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-clear .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-proofs { flex-direction: column; gap: 8px; }
}

/* ===== Globo como seção de exploração ===== */
.globe-section .globe-title { font-size: clamp(34px, 4.6vw, 64px); opacity: 1; transform: none; }
.globe-section .hero-sub { opacity: 1 !important; transform: none !important; }

/* ===== Faixa de contraste (diferencial na primeira dobra) ===== */
.hero-contrast { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; margin-top: 22px;
  background: rgba(247,242,237,.22); border: 1px solid rgba(247,242,237,.22); max-width: 760px; }
.hc-item { background: rgba(20,16,12,.55); padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.hc-item.is-voyage { background: rgba(198,101,34,.92); }
.hc-k { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: rgba(247,242,237,.75); }
.hc-item.is-voyage .hc-k { color: rgba(255,248,239,.95); }
.hc-v { font-size: 13.5px; line-height: 1.35; color: rgba(247,242,237,.92); }
@media (max-width: 760px) {
  .hero-contrast { grid-template-columns: 1fr; max-width: none; }
  .hc-item { flex-direction: row; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 14px; }
  .hc-v { text-align: right; font-size: 12.5px; }
}
