/* =============================================================
   VILLAGE HOTEL CONTAINER · Stylesheet
   Industrial-cinematic with vibrant orange accent
   ============================================================= */

:root {
  /* Colors */
  --orange: #F25C05;
  --orange-deep: #C84500;
  --orange-glow: #FF7A2A;
  --ink: #0C0C0E;
  --graphite: #161618;
  --steel: #232327;
  --steel-line: #2F2F34;
  --bone: #F2EDE4;
  --paper: #E8E1D3;
  --paper-deep: #D9CFBC;
  --text: #1A1A1C;
  --text-mute: rgba(26, 26, 28, 0.62);
  --text-on-dark: #F2EDE4;
  --text-mute-on-dark: rgba(242, 237, 228, 0.62);

  /* Type */
  --display: "Archivo", system-ui, sans-serif;
  --body: "Manrope", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --gutter: clamp(20px, 4vw, 64px);
  --max: 1480px;
  --radius: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;
}

/* =============================================================
   BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

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

body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bone);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--orange); color: var(--bone); }

.grain {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  display: inline-block;
}
.eyebrow--light { color: var(--text-mute-on-dark); }

.accent { color: var(--orange); }

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px 18px 30px;
  border-radius: var(--radius-pill);
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .25s ease, color .25s ease;
  will-change: transform;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--solid {
  background: var(--orange);
  color: var(--ink);
}
.btn--solid:hover { background: var(--orange-glow); }

.btn--ghost {
  background: transparent;
  border: 1.5px solid currentColor;
  color: var(--text-on-dark);
}
.btn--ghost:hover { background: var(--text-on-dark); color: var(--ink); }

.btn--block {
  width: 100%;
  justify-content: space-between;
}

.btn--xl {
  font-size: 19px;
  padding: 24px 32px;
  gap: 18px;
}

.btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bone);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.btn__arrow svg { width: 14px; height: 14px; }
.btn:hover .btn__arrow { transform: translateX(4px) rotate(-8deg); }

.btn__wa { width: 22px; height: 22px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 8px 14px 24px;
  border: 1.5px solid var(--text);
  border-radius: var(--radius-pill);
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all .3s ease;
}
.pill:hover { background: var(--text); color: var(--bone); }
.pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bone);
  transition: transform .3s ease;
}
.pill__icon svg { width: 14px; height: 14px; }
.pill:hover .pill__icon { background: var(--orange); color: var(--ink); transform: rotate(-45deg); }

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px var(--gutter);
  background: linear-gradient(to bottom, rgba(12,12,14,0.7), rgba(12,12,14,0));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text-on-dark);
  transition: background .3s ease, padding .3s ease;
}
.nav.is-scrolled {
  background: rgba(12,12,14,0.92);
  padding: 12px var(--gutter);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}
.nav__mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}
.nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--display);
}
.nav__wordmark strong {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.nav__wordmark em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 4px;
  color: var(--text-mute-on-dark);
}

.nav__links {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  opacity: 0.85;
  transition: opacity .25s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 8px 12px 22px;
  background: var(--bone);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: background .3s ease;
}
.nav__cta:hover { background: var(--orange); }
.nav__cta svg {
  width: 14px;
  height: 14px;
  padding: 9px;
  background: var(--ink);
  color: var(--bone);
  border-radius: 50%;
  box-sizing: content-box;
  transition: transform .3s ease;
}
.nav__cta:hover svg { transform: rotate(15deg); }

.nav__burger { display: none; }

@media (max-width: 900px) {
  .nav { grid-template-columns: auto auto; }
  .nav__links {
    position: fixed;
    inset: 76px 16px auto 16px;
    background: rgba(12,12,14,0.96);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--steel-line);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .nav__links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav__cta { display: none; }
  .nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
  }
  .nav__burger span {
    width: 22px;
    height: 1.5px;
    background: var(--bone);
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--text-on-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px var(--gutter) 0;
}

.hero__image {
  position: absolute;
  inset: 0;
  background-image: url('assets/hero-vista-4.jpg?v=8');
  background-size: cover;
  /* desktop/tablet: enquadra mais para baixo (sacada laranja + andar inferior + jardim),
     já que a foto é retrato e o cover só mostra ~47% da altura central. Ajustável: 68–84%. */
  background-position: center 74%;
  transform: scale(1.05);
  animation: heroKenBurns 9s ease-out forwards;
}
@media (max-width: 768px) {
  .hero__image {
    background-image: url('assets/hero-vista-4.jpg?v=8');
    background-position: center center;
  }
}
@keyframes heroKenBurns {
  from { transform: scale(1.12); }
  to { transform: scale(1.02); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(12,12,14,0.55) 0%, rgba(12,12,14,0.1) 35%, rgba(12,12,14,0.85) 100%),
    radial-gradient(ellipse at top left, rgba(242,92,5,0.18) 0%, transparent 55%);
}
@media (max-width: 768px) {
  /* headline no topo (sobre o céu); botões empurrados para o rodapé,
     deixando livre a faixa do meio com o letreiro "VILLAGE HOTEL CONTAINER".
     NOTE: margin-top:auto e padding-bottom ficam no @media mais abaixo
     (depois das regras-base), senão a cascata sobrescreve. */
  .hero { justify-content: flex-start; }
  .hero__content {
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - 120px);
  }

  /* degradê: escuro no topo (texto) e no rodapé (botões), claro no meio (foto) */
  .hero__veil {
    background:
      linear-gradient(to bottom,
        rgba(12,12,14,0.78) 0%,
        rgba(12,12,14,0.5) 28%,
        rgba(12,12,14,0.15) 50%,
        rgba(12,12,14,0.12) 70%,
        rgba(12,12,14,0.55) 100%);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding-bottom: 90px;
}

.hero__top { margin-bottom: 24px; }
.hero__eyebrow {
  position: relative;
  display: inline-block;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 12px 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.hero__eyebrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0) 65%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}

.hero__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(34px, 7.4vw, 116px);
  line-height: 0.88;
  letter-spacing: -0.05em;
  margin: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: none;
}
.hero__title span { display: block; }
.hero__title span:nth-child(1) { animation: heroSlideUp 1s .2s both cubic-bezier(.2,.8,.2,1); }
.hero__title span:nth-child(2) { animation: heroSlideUp 1s .35s both cubic-bezier(.2,.8,.2,1); }
.hero__title span:nth-child(3) { animation: heroSlideUp 1s .5s both cubic-bezier(.2,.8,.2,1); }
@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 48px;
  animation: heroSlideUp 1s .7s both cubic-bezier(.2,.8,.2,1);
}
.hero__lead {
  max-width: 480px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--bone);
  opacity: 0.92;
  margin: 0;
  padding-left: 8px;
  font-weight: 400;
}
.hero__lead strong {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--bone);
  opacity: 1;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

@media (max-width: 800px) {
  .hero__meta { grid-template-columns: 1fr; gap: 28px; }
  .hero__actions { justify-content: flex-start; }
}

@media (max-width: 768px) {
  /* lead escondido no hero mobile — aparece só na seção Intro */
  .hero__lead { display: none; }

  /* empurra os botões para o rodapé do hero, liberando a faixa do meio
     (letreiro "VILLAGE HOTEL CONTAINER"). Precisa estar aqui — depois das
     regras-base de .hero__content / .hero__meta — para vencer a cascata. */
  .hero__content { padding-bottom: 44px; }
  .hero__meta { margin-top: auto; }

  /* ordem no mobile: headline primeiro, eyebrow logo abaixo dela, botões no rodapé.
     (só vale aqui porque .hero__content é flex-column no mobile; no desktop é block,
     o order é ignorado e a pílula continua acima da headline.) */
  .hero__title { order: 1; }
  .hero__top   { order: 2; }
  .hero__meta  { order: 3; }

  /* desce a headline para começar na altura do topo do "quadrado" marcado pelo
     usuário (sobre a parede escura do container, abaixo do letreiro HOTEL). */
  .hero__title { margin-top: 52px; }

  /* compact buttons side-by-side */
  .hero__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
  }
  .hero__actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 13px 16px;
    font-size: 13px;
    gap: 8px;
    justify-content: center;
  }
  .hero__actions .btn--solid { padding-right: 8px; }
  .btn__suffix { display: none; }
  .hero__actions .btn__arrow {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
  }
  .hero__actions .btn__arrow svg { width: 12px; height: 12px; }
  .btn--ghost {
    background: rgba(12, 12, 14, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  /* eyebrow reposicionado abaixo da headline → espaço vai acima dele */
  .hero__top { margin-top: 22px; margin-bottom: 0; }

  /* eyebrow: more presence, thicker border; pill aligned to the title's left edge */
  .hero__eyebrow {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    padding: 11px 22px;
    margin-left: 0;
  }

  /* "Economia" + "Conforto e" bigger; "Sustentabilidade" stays smaller so it fits */
  .hero__title span:not(.accent) {
    font-size: clamp(46px, 13.5vw, 70px);
    line-height: 0.85;
  }
  .hero__title .accent {
    font-size: clamp(34px, 10vw, 56px);
    line-height: 0.9;
  }
}

/* Floating review card */
.review-card {
  position: absolute;
  top: 130px;
  right: var(--gutter);
  z-index: 3;
  width: 360px;
  padding: 26px 26px 22px;
  border-radius: 22px;
  background: rgba(242, 237, 228, 0.96);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  color: var(--ink);
  animation: heroSlideUp 1s .9s both cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.5);
}
.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.review-card__score-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--orange);
}
.review-card__score {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.review-card__outof {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}
.review-card__stars {
  display: flex;
  gap: 2px;
  color: var(--orange);
}
.review-card__stars svg { width: 17px; height: 17px; }
.review-card__count {
  font-family: var(--body);
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--text-mute);
  margin: 0 0 16px;
}
.review-card__foot {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card__platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.review-card__platform svg { width: 14px; height: 14px; }

@media (max-width: 900px) {
  .review-card { display: none; }
}

/* Hero bottom */
.hero__bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 52px;
  width: calc(100% - 2 * var(--gutter));
  max-width: var(--max);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  opacity: 0.7;
  font-family: var(--mono);
  z-index: 2;
}
.hero__location { padding-left: 8px; }
.hero__location { display: flex; align-items: center; gap: 8px; }
.hero__location svg { width: 14px; height: 14px; }

@media (max-width: 600px) {
  .hero__bottom { display: none; }
}

/* =============================================================
   INTRO
   ============================================================= */
.intro {
  background: var(--bone);
  padding: 120px var(--gutter) 100px;
}
.intro__head {
  max-width: var(--max);
  margin: 0 auto 64px;
}
.intro__head .eyebrow { margin-bottom: 16px; }
.intro__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0;
  max-width: 1100px;
  text-wrap: balance;
}
.intro__perks {
  margin: 28px 0 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 1000px;
}
.intro__tagline {
  margin: 28px 0 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--orange);
}

.intro__cta-row {
  max-width: var(--max);
  margin: 0 auto 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.glimpse {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}
.glimpse__card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--paper);
  position: relative;
}
.glimpse__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.glimpse__card:hover img { transform: scale(1.05); }
.glimpse__card--1,
.glimpse__card--2,
.glimpse__card--3 { transform: none; aspect-ratio: 3/4; }

.stats {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  padding: 0;
}
.stats__intro {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.5;
  margin: 0;
}
.stats__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stats__list li { border-top: 1px solid rgba(0,0,0,0.1); padding-top: 14px; }
.stats__value {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--text);
}
.stats__value em {
  font-style: normal;
  color: var(--orange);
  margin-left: 2px;
}
.stats__label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mute);
}

@media (max-width: 900px) {
  .glimpse { grid-template-columns: 1fr 1fr; }
  .stats { grid-column: span 2; flex-direction: row; align-items: stretch; gap: 16px; }
  .stats__intro { display: none; }
  .stats__list { flex-direction: row; flex: 1; gap: 12px; }
  .stats__list li { flex: 1; }
  .glimpse__card--1, .glimpse__card--3 { transform: none; }
}
@media (max-width: 560px) {
  .glimpse { grid-template-columns: 1fr; }
  .stats { grid-column: span 1; flex-direction: column; }
  .stats__list { flex-direction: column; }
}

/* === Por que o Village (grade de comodidades) === */
.why {
  max-width: var(--max);
  margin: 88px auto 0;
}
.why__kicker {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.why__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
}
.why__title .accent { color: var(--orange); }
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 44px;
}
.why__card {
  display: flex;
  gap: 16px;
  padding: 24px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(12, 12, 14, 0.07);
  box-shadow: 0 2px 12px rgba(12, 12, 14, 0.03);
}
.why__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(242, 92, 5, 0.12);
  color: var(--orange);
}
.why__icon svg { width: 23px; height: 23px; }
.why__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 2px 0 8px;
  color: var(--ink);
}
.why__badge {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-left: 6px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  background: var(--orange);
  padding: 3px 9px;
  border-radius: 999px;
}
.why__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(173, 96, 54, 0.95);
}
@media (max-width: 768px) {
  .why { margin-top: 56px; }
  .why__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   ROOMS
   ============================================================= */
.rooms {
  background: var(--bone);
  color: var(--text);
  padding: 140px var(--gutter) 120px;
  position: relative;
}
/* mobile: reduz o "respiro" do topo (140px era muito no celular) */
@media (max-width: 768px) {
  .rooms { padding-top: 72px; }
}
.rooms__head {
  max-width: var(--max);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: auto 1fr 1.2fr;
  gap: 40px;
  align-items: end;
}
.rooms__head .eyebrow { color: var(--orange); }
.rooms__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin: 0;
}
.rooms__lead {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 400px;
  margin: 0 0 12px;
  justify-self: end;
}
@media (max-width: 900px) {
  .rooms__head { grid-template-columns: 1fr; gap: 20px; }
  .rooms__lead { justify-self: start; }
}

.rooms__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
}
.room {
  background: #ffffff;
  border: 1px solid rgba(12, 12, 14, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 44px rgba(12, 12, 14, 0.07);
  transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .3s ease;
}
.room:hover { transform: translateY(-6px); border-color: var(--orange); box-shadow: 0 26px 64px rgba(12, 12, 14, 0.13); }
.room--featured { border-color: rgba(242,92,5,0.45); }

.room__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.room__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--bone);
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.room__featured {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 14px;
  background: var(--orange);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.room__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1;
}
.room__body header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.room__body h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 0;
}
.room__body h3 em { font-style: normal; }
.room__tagline {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-mute);
}

/* preços por ocupação */
.room__rates-caption {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  margin-bottom: 12px;
}
.room__rates-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.room__rates-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(12, 12, 14, 0.08);
}
.room__rates-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.room__rates-list span {
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-mute);
}
.room__rates-list strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* nota de tarifas abaixo dos cards */
.rooms__note {
  max-width: var(--max);
  margin: 36px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-mute);
}
.rooms__note svg { width: 19px; height: 19px; flex-shrink: 0; color: var(--orange); }
.rooms__note strong { color: var(--text); font-weight: 700; }

.room__amenities {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(12, 12, 14, 0.10);
}
.room__amenities li {
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 11px 2px;
  border-bottom: 1px solid rgba(12, 12, 14, 0.08);
}
.room__amenity-ico {
  display: inline-flex;
  color: var(--ink);
}
.room__amenity-ico svg { width: 22px; height: 22px; }
.room__amenity-name {
  font-family: var(--body);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.room__amenity-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  flex-shrink: 0;
}
.room__amenity-mark--yes {
  background: rgba(242, 92, 5, 0.12);
  color: var(--orange);
}
.room__amenity-mark--yes svg { width: 15px; height: 15px; }
.room__amenity-mark--no {
  color: rgba(12, 12, 14, 0.25);
  font-size: 17px;
  line-height: 1;
}
.room__amenities li.is-off .room__amenity-ico,
.room__amenities li.is-off .room__amenity-name {
  color: rgba(12, 12, 14, 0.32);
}

@media (max-width: 800px) {
  .rooms__grid { grid-template-columns: 1fr; }
}

.rooms__policy {
  max-width: var(--max);
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.rooms__rule {
  max-width: var(--max);
  margin: 44px auto 0;
  border-top: 1px solid rgba(12, 12, 14, 0.12);
}
.rooms__policy > div .eyebrow {
  color: var(--orange);
  margin-bottom: 10px;
}
.rooms__policy p {
  font-size: 15px;
  margin: 0;
  color: var(--text-mute);
}
.rooms__policy p strong { color: var(--text); }
@media (max-width: 700px) {
  .rooms__policy { grid-template-columns: 1fr; gap: 18px; }
}

/* --- Capa + "Ver quartos" + galeria --- */
.room__cover { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.room:hover .room__cover { transform: scale(1.04); }
/* Standard: enquadra a capa pelo topo p/ mostrar a TV (diferencial vs. Econômico) */
.room--featured .room__cover { object-position: center top; }

.room__see {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: rgba(12, 12, 14, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--bone);
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background .25s ease, transform .25s ease, color .25s ease;
}
.room__see svg { width: 16px; height: 16px; }
.room__see:hover { background: var(--orange); color: var(--ink); transform: translateY(-2px); }

/* galeria em MODAL (lightbox) — foto INTEIRA, sem corte */
.room__gallery {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 8, 10, 0.94);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: galleryFade .25s ease both;
}
.room__gallery[hidden] { display: none; }
@keyframes galleryFade { from { opacity: 0; } to { opacity: 1; } }

.room__gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.room__gallery-track::-webkit-scrollbar { display: none; }
.room__gallery-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  scroll-snap-align: center;
  padding: clamp(20px, 6vh, 72px) clamp(16px, 5vw, 96px);
}

.room__nav,
.room__close {
  position: fixed;
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  line-height: 1;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.room__nav:hover,
.room__close:hover { background: var(--orange); border-color: var(--orange); color: var(--ink); }
.room__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 30px;
  padding-bottom: 4px;
}
.room__nav--prev { left: clamp(12px, 3vw, 32px); }
.room__nav--next { right: clamp(12px, 3vw, 32px); }
.room__close {
  top: clamp(14px, 3vh, 28px);
  right: clamp(12px, 3vw, 32px);
  width: 46px;
  height: 46px;
  font-size: 18px;
}
.room__count {
  position: fixed;
  z-index: 1001;
  left: 50%;
  bottom: clamp(16px, 4vh, 32px);
  transform: translateX(-50%);
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--bone);
}
.room__count b { color: var(--orange); font-weight: 700; }

/* trava o scroll do fundo enquanto o modal está aberto */
body.is-gallery-open { overflow: hidden; }

@media (max-width: 560px) {
  .room__see { left: 16px; bottom: 16px; padding: 10px 14px; font-size: 11px; }
  .room__nav { width: 44px; height: 44px; font-size: 24px; }
  .room__close { width: 42px; height: 42px; }
}

/* =============================================================
   SUSTAIN
   ============================================================= */
.sustain {
  position: relative;
  padding: 160px var(--gutter);
  background: var(--ink);
  color: var(--text-on-dark);
  overflow: hidden;
}
.sustain__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: grayscale(0.3) contrast(1.1);
}
.sustain::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--ink), transparent 25%, transparent 75%, var(--ink)),
    radial-gradient(circle at 80% 20%, rgba(242,92,5,0.18) 0%, transparent 50%);
}
.sustain__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
}
.sustain__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  margin: 16px 0 80px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  padding: 36px 28px;
  background: rgba(35, 35, 39, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--steel-line);
  border-radius: var(--radius-lg);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), background .3s ease;
}
.pillar:hover {
  transform: translateY(-8px);
  background: rgba(242,92,5,0.12);
  border-color: var(--orange);
}
.pillar__num {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 32px;
}
.pillar h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 14px;
}
.pillar h3 em { font-style: normal; }
.pillar p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-mute-on-dark);
  margin: 0;
}
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }

/* =============================================================
   AMENITIES
   ============================================================= */
.amenities {
  background: var(--paper);
  padding: 140px var(--gutter);
}
.amenities__split {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.amenities__photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--paper-deep);
}
.amenities__photo img { width: 100%; height: 100%; object-fit: cover; }
.amenities__content .eyebrow { margin-bottom: 16px; }
.amenities__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}
.amenities__lead {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0 0 28px;
  max-width: 520px;
}
.amenities__dinner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 520px;
  margin: 0 0 40px;
  padding: 16px 20px;
  border: 1px solid rgba(242,92,5,0.28);
  border-radius: 14px;
  background: rgba(242,92,5,0.06);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
}
.amenities__dinner svg {
  width: 22px;
  height: 22px;
  flex: none;
  margin-top: 1px;
  color: var(--orange);
}
.amenities__dinner strong { font-weight: 700; }
.amenities__dinner a {
  color: var(--orange-deep);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.amenities__dinner a:hover { text-decoration: underline; }
.amenities__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.amenities__list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  font-size: 17px;
  font-weight: 500;
  border-top: 1px solid rgba(0,0,0,0.12);
  transition: padding .25s ease, color .25s ease;
}
.amenities__list li:last-child { border-bottom: 1px solid rgba(0,0,0,0.12); }
.amenities__list li:hover { padding-left: 8px; color: var(--orange-deep); }
.amenities__list li span {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.06em;
  min-width: 28px;
}
@media (max-width: 900px) {
  .amenities__split { grid-template-columns: 1fr; gap: 40px; }
  .amenities__photo { aspect-ratio: 4/3; }
}

/* =============================================================
   ABOUT
   ============================================================= */
.about {
  background: var(--bone);
  padding: 140px var(--gutter);
}
.about__grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
}
.about__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo--main {
  grid-column: 1;
  grid-row: 1 / span 2;
  aspect-ratio: 4/5;
}
.about__photo--small {
  grid-column: 2;
  grid-row: 1;
  aspect-ratio: 1/1;
}
.about__body {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
}
.about__lockup {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin-bottom: 36px;
  opacity: 0.95;
}
.about__body .eyebrow { margin-bottom: 16px; }
.about__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
}
.about__body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-mute);
  margin: 0 0 16px;
}
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr 1fr; }
  .about__photo--main { grid-column: 1 / span 2; grid-row: auto; aspect-ratio: 16/10; }
  .about__photo--small { grid-column: 1; grid-row: auto; aspect-ratio: 4/3; }
  .about__body { grid-column: 1 / span 2; grid-row: auto; }
}

/* =============================================================
   CTA BAND
   ============================================================= */
.cta-band {
  background: var(--orange);
  color: var(--ink);
  padding: 140px var(--gutter);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,42,0.5), transparent 60%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.cta-band .eyebrow { color: rgba(12,12,14,0.7); margin-bottom: 24px; }
.cta-band__title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin: 0 0 24px;
}
.cta-band__title .accent { color: var(--bone); }
.cta-band p {
  font-size: 18px;
  margin: 0 auto 40px;
  max-width: 520px;
  opacity: 0.85;
}
.cta-band .btn--solid { background: var(--ink); color: var(--bone); }
.cta-band .btn--solid:hover { background: var(--bone); color: var(--ink); }
.cta-band .btn--solid .btn__arrow { background: var(--orange); color: var(--ink); }

.cta-band__contacts {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(12,12,14,0.2);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band__contacts > * {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.cta-band__contacts strong { font-size: 16px; font-weight: 600; }
.cta-band__contacts a:hover strong { text-decoration: underline; }
@media (max-width: 700px) {
  .cta-band__contacts { grid-template-columns: 1fr; }
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--ink);
  color: var(--text-on-dark);
  padding: 100px var(--gutter) 40px;
}
.footer__top {
  max-width: var(--max);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr 1fr;
  gap: 60px;
}
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__mark {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}
.footer__brand h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0;
}
.footer__brand h3 em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute-on-dark);
}
.footer__brand p {
  font-size: 13px;
  color: var(--text-mute-on-dark);
  margin: 8px 0 0;
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col .eyebrow {
  color: var(--orange);
  margin-bottom: 8px;
}
.footer__col a, .footer__col p {
  font-size: 14px;
  color: var(--text-on-dark);
  opacity: 0.78;
  transition: opacity .2s ease, color .2s ease;
  margin: 0;
}
.footer__col a:hover { opacity: 1; color: var(--orange); }

.footer__bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--steel-line);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute-on-dark);
}
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: left; }
}

/* =============================================================
   SCROLL REVEAL
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
