/* Réplica estrutural do vita-travel.webflow.io — mesma paleta (bg #091B20 / surface #0D2E37,
   idêntica aos tokens do brand book Maison Mundi), radius 0, botões pill 80px.
   Tipografia do brand book: Bodoni Moda (títulos e corpo) + IBM Plex Mono (labels/detalhes).
   Accent dourado Maison no papel do laranja do original. */

:root {
  --bg: #091b20;
  --surface: #0d2e37;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #d8b45e;
  --gold-soft: #d8b45e33;
  --white: #f2f2f2;
  --white-60: rgba(242, 242, 242, 0.6);
  --white-50: rgba(242, 242, 242, 0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.mono {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
}

h1, h2, h3, p, ul { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; }

/* ---- Escala tipográfica (espelha h1/h2/h4/body-* do vita, com Bodoni Moda do brand book) ---- */
.h2 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); font-weight: 600; line-height: 1.12; }
.h4 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); font-weight: 600; line-height: 1.2; }
.h1-sm { font-size: clamp(2.6rem, 5.5vw, 4.5rem); font-weight: 600; line-height: 1.08; }
.body-xxl { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 500; line-height: 1.4; }
.body-xl { font-size: clamp(1.15rem, 1.8vw, 1.45rem); font-weight: 500; line-height: 1.5; }
.body-lg-semibold { font-size: 1.1rem; font-weight: 600; }
.body-md { font-size: 1rem; }
.body-sm { font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 0.8rem; }
.title-xs { font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 0.8rem; }
.muted { color: var(--white-60); }
.semibold { font-weight: 600; }

.container { max-width: 90rem; margin: 0 auto; padding: 0 clamp(1.25rem, 3vw, 2.5rem); }

section { padding: clamp(4rem, 7vw, 6.5rem) 0; }

/* ---- Head das seções (logo-mini + label | h2 grande — padrão vita) ---- */
.head {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.head__title { display: flex; align-items: center; gap: 0.6rem; }
.head__title .body-md {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.logo-mini { width: 1.25rem; height: 1.25rem; }
.head--split { grid-template-columns: 1fr 1fr; align-items: end; }
.head--split p { text-align: left; }
.head__sub { margin-top: 1rem; }

/* ---- Botões (pill 80px — primário branco como o vita, secundário surface) ---- */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 80px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.55rem 0.55rem 0.55rem 1.4rem;
  transition: opacity 0.2s ease;
}
.btn-primary { background: #ffffff; color: var(--surface); }
.btn-secondary { background: var(--surface); color: var(--white); width: 100%; justify-content: space-between; }
.btn-primary:hover, .btn-secondary:hover { opacity: 0.85; }
.btn-icon {
  width: 2rem; height: 2rem;
  border-radius: 50%;
  background: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-icon--dark { background: var(--gold); }

/* ---- NAV (células com bordas verticais como o vita) ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: stretch;
  background: rgba(9, 27, 32, 0.85);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem clamp(1.25rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
  font-weight: 600;
}
.nav__brand img { height: 1.5rem; width: 1.5rem; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  padding: 0 2rem;
}
.nav__links a {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  display: flex;
  align-items: center;
  padding: 1.1rem clamp(1.5rem, 3vw, 2.5rem);
  border-left: 1px solid var(--line);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav__cta:hover { color: var(--gold); }

/* ---- 1. INTRO/HERO (conteúdo centrado, h1 gigante — padrão vita) ---- */
.intro {
  min-height: 96vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-size: cover;
  background-position: center;
  padding: 6rem 1.5rem 7rem;
}
.intro__text { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.intro__headline {
  font-size: clamp(4.5rem, 14vw, 12rem);
  font-weight: 600;
  line-height: 1;
}

/* ---- 2. STATISTIC (3 itens com bordas, foto quadrada — padrão vita) ---- */
.statistic__wrapper {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.statistic-item { padding: 2rem; border-right: 1px solid var(--line); }
.statistic-item:last-child { border-right: none; }
.statistic-item__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1.5rem;
}
.statistic-item__visual { aspect-ratio: 1 / 1; overflow: hidden; background: var(--surface); position: relative; }
.statistic-item__visual img { width: 100%; height: 100%; object-fit: cover; }
.statistic-item__visual.placeholder { border: 1px dashed var(--gold-soft); }

/* ---- 3. ABOUT (foto esquerda / texto indentado + stats — padrão vita) ---- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.about__visual { aspect-ratio: 1 / 1; overflow: hidden; background: var(--surface); }
.about__visual img { width: 100%; height: 100%; object-fit: cover; }
.about__content { display: flex; flex-direction: column; min-height: 100%; }
.indent { display: inline-block; width: 3.5rem; }
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.stat-number { display: block; font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 600; line-height: 1.1; margin-bottom: 0.6rem; }
.about__trust { margin-top: auto; padding-top: 3rem; }

/* ---- 4. FEATURED (cards 2-col: texto+meta+botão | foto — padrão vita) ---- */
.featured__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.featured-item {
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.featured-item__text { display: flex; flex-direction: column; gap: 1.5rem; }
.featured-item__cost { margin-top: 0.8rem; display: flex; gap: 0.5rem; align-items: baseline; }
.featured-item__properties { display: flex; flex-direction: column; gap: 0.7rem; margin-top: auto; }
.featured-item-property {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.prop-icon { width: 1rem; height: 1rem; opacity: 0.35; stroke-width: 1.2; flex-shrink: 0; }
.prop-icon.gold { color: var(--gold); opacity: 0.9; }
.featured-item__visual { overflow: hidden; background: var(--surface); }
.featured-item__visual img { width: 100%; height: 100%; object-fit: cover; }

/* ---- 5. COMBINE (full-bleed + h1 + lista "+" + strip 4 steps — padrão vita) ---- */
.combine-section {
  background-size: cover;
  background-position: center;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 92vh;
}
.combine__head { padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 3vw, 2.5rem); }
.combine__list { list-style: none; padding: 0; margin-top: 1.5rem; }
.combine__list li { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; line-height: 1.35; }
.plus { color: var(--white-50); margin-right: 0.2rem; font-weight: 400; }
.combine__strip {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 27, 32, 0.55) 30%);
}
.combine__cell {
  padding: 2.5rem 2rem 3rem;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.combine__cell:first-child { border-left: none; }
.combine__cell--text { justify-content: flex-end; }
.step-num { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; line-height: 1; }
.combine__cell .body-sm { margin: 0.4rem 0 3.5rem; }
.combine__cell p.body-md { margin-top: auto; }

/* ---- 6. DESTINATION (5 frentes no padrão destination-item) ---- */
.destination__items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.destination-item { padding: 1.5rem; border-right: 1px solid var(--line); }
.destination-item:last-child { border-right: none; }
.destination-item .statistic-item__head { margin-bottom: 1.2rem; }
.destination-item .statistic-item__visual { aspect-ratio: 3 / 4; }
.tag-provisoria {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(9, 27, 32, 0.75);
  border: 1px dashed var(--gold-soft);
  padding: 0.25rem 0.5rem;
}
.destination-item .statistic-item__visual { position: relative; }

/* ---- 7. HOW-WORKS (colunas: ícone + count | título | descrição — padrão vita) ---- */
.how-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.how-works-item { padding: 2.5rem 2rem 3rem; border-right: 1px solid var(--line); }
.how-works-item:last-child { border-right: none; }
.how-works-item__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4.5rem;
}
.hw-icon { width: 2rem; height: 2rem; color: var(--white); }
.how-works-item .semibold { margin-bottom: 0.5rem; }

/* ---- 8. PRACTITIONERS (fotos com overlay + coluna texto — padrão vita) ---- */
.practitioners-section { padding-bottom: 0; }
.practitioners {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  border-top: 1px solid var(--line);
}
.coach-card {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--surface);
  border-right: 1px solid var(--line);
}
.coach-card img { width: 100%; height: 100%; object-fit: cover; }
.coach-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed var(--gold-soft);
  font-size: 0.8rem;
  color: var(--white-50);
  text-align: center;
  letter-spacing: 0.08em;
}
.coach-card__info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 27, 32, 0.85) 100%);
}
.practitioners__text {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.practitioners__text .h2 { margin-top: 0.5rem; }

/* ---- FOOTER (banner + logo | links "+" | contato | legal — padrão vita) ---- */
.footer-banner { max-height: 26rem; overflow: hidden; }
.footer-banner img { width: 100%; height: 26rem; object-fit: cover; opacity: 0.75; }
footer { border-top: 1px solid var(--line); }
.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: clamp(3rem, 5vw, 4.5rem) clamp(1.25rem, 3vw, 2.5rem);
}
.footer__brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; }
.footer__brand img { height: 1.6rem; width: 1.6rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.4rem; align-items: center; }
.footer__links a { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 600; }
.footer__links a:hover { color: var(--gold); }
.footer__contact { display: flex; flex-direction: column; gap: 0.5rem; text-align: right; }
.footer__contact a {
  color: var(--white-60);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.85rem;
}
.footer__contact a:hover { color: var(--gold); }
.footer__legal {
  border-top: 1px solid var(--line);
  padding: 1.2rem clamp(1.25rem, 3vw, 2.5rem);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  color: var(--white-50);
}

/* ---- Pendências de copy/foto ---- */
.pending { outline: 1px dashed var(--gold-soft); outline-offset: 5px; }

/* ---- Responsivo ---- */
@media (max-width: 64em) {
  .featured__items { grid-template-columns: 1fr; }
  .destination__items { grid-template-columns: repeat(3, 1fr); }
  .destination-item:nth-child(3n) { border-right: none; }
  .combine__strip { grid-template-columns: 1fr 1fr; }
  .combine__cell--text { grid-column: 1 / -1; }
}
@media (max-width: 40em) {
  .head, .head--split, .about, .featured-item, .practitioners, .footer__main { grid-template-columns: 1fr; }
  .statistic__wrapper, .destination__items, .how-works { grid-template-columns: 1fr; }
  .statistic-item, .destination-item, .how-works-item, .coach-card { border-right: none; border-bottom: 1px solid var(--line); }
  .nav__links { display: none; }
  .footer__contact { text-align: left; }
  .footer__links { align-items: flex-start; }
}
