/* ============================================================
   PALÁCIO OÁSIS — identidade: fonte do logo + Montserrat
   ============================================================ */

@font-face {
  font-family: "Haigrast";
  src: url("../assets/Haigrast.ttf") format("truetype");
  font-display: swap;
}

:root {
  /* paleta navy — guia: cardápio oficial Palácio (azul profundo + dourado) */
  --bg: #0a1128;
  --bg-2: #0d1633;
  --card: #111d3d;
  --ink: #f5f1e6;
  --ink-dim: #c9cbda;
  --gold: #d4af6a;
  --gold-strong: #e9c887;
  --gold-deep: #a8843f;
  --bordo: #3a1518;            /* tom quente — usado só em Promoções */
  --line: rgba(212, 175, 106, 0.28);
  --brand: "Prata", Georgia, serif;       /* serifa do cardápio oficial */
  --script: "Ms Madi", cursive;           /* script dourado do cardápio */
  --sans: "Montserrat", "Helvetica Neue", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 14px;
  --nav-h: 72px;              /* altura do header — usada em scroll-margin */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* grain sutil sobre o fundo */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.section { padding: clamp(4.2rem, 8vw, 7rem) 0; scroll-margin-top: var(--nav-h); }
.only-desktop { display: none; }
@media (min-width: 900px) { .only-desktop { display: inline-flex; } }

/* ---------- typography ---------- */
.eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.display {
  font-family: var(--brand);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.display em { font-style: normal; color: var(--gold-strong); }
.script-sub {
  font-family: var(--script);
  font-weight: 400;
  color: var(--gold-strong);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1;
  margin-top: -0.35em;
  display: block;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.4rem;
}
.section-head__note { font-size: 0.88rem; font-weight: 300; color: var(--ink-dim); max-width: 24em; text-align: right; }
.section-head__note strong { font-weight: 600; color: var(--gold-strong); }
@media (max-width: 780px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .section-head__note { text-align: left; }
}

.section-sep {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: min(1180px, 92vw);
  margin-inline: auto;
}
.section-sep::before, .section-sep::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(212, 175, 106, 0.22);
}
.section-sep img { height: 18px; opacity: 0.9; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #191307;
  box-shadow: 0 8px 28px rgba(212, 175, 106, 0.22);
}
.btn--gold:hover {
  background: var(--gold-strong);
  border-color: var(--gold-strong);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(212, 175, 106, 0.4);
}
.btn--outline { color: var(--gold-strong); background: transparent; border-color: var(--gold-deep); }
.btn--outline:hover { background: rgba(212, 175, 106, 0.12); border-color: var(--gold); }
.btn--ghost { border-color: rgba(245, 241, 230, 0.4); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--big { font-size: 0.95rem; padding: 1.15rem 2.5rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-strong);
}
.link-arrow i {
  width: 2.4rem; height: 1px;
  background: var(--gold);
  position: relative;
  transition: width 0.3s var(--ease);
}
.link-arrow i::after {
  content: "";
  position: absolute; right: 0; top: -3.5px;
  width: 7px; height: 7px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}
.link-arrow:hover i { width: 3.6rem; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 1.1rem clamp(1.1rem, 4vw, 2.6rem);
  transition: background 0.35s, border-color 0.35s, padding 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 17, 40, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding-block: 0.7rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.7rem; }
.nav__symbol { height: 2.2rem; }
.nav__wordmark {
  font-family: var(--brand);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__wordmark em { font-style: normal; color: var(--gold-strong); }
.nav__links { display: flex; gap: 1.9rem; }
.nav__links a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.25s;
  padding-bottom: 4px;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover { color: var(--gold-strong); }
.nav__links a.is-active { color: var(--gold-strong); }
.nav__links a.is-active::after { width: 100%; }
.nav__cta { padding: 0.65rem 1.5rem; }
.nav__burger {
  display: none;
  background: none; border: none;
  flex-direction: column; gap: 6px;
  cursor: pointer; padding: 8px;
}
.nav__burger span { width: 26px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: 0.3s; }
.nav__burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

.mobile-menu {
  position: fixed; inset: 0;
  z-index: 55;
  background: rgba(10, 17, 40, 0.97);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu a:not(.btn) {
  font-family: var(--brand);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,11,9,0.62) 0%, rgba(13,11,9,0.32) 45%, rgba(13,11,9,0.95) 100%);
}
.hero__content {
  position: relative; z-index: 2;
  width: min(1180px, 92vw);
  margin-inline: auto;
  padding-top: 6rem;
}
.hero__eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-strong);
  margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--brand);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
}
.hero__title em {
  font-style: normal;
  font-family: var(--script);
  color: var(--gold-strong);
  text-shadow: 0 2px 24px rgba(6, 10, 24, 0.9), 0 1px 4px rgba(6, 10, 24, 0.8);
}
.hero__sub {
  margin-top: 1.3rem;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 300;
  color: rgba(245, 241, 230, 0.92);
  max-width: 32em;
}
.hero__actions {
  margin-top: 2.4rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* barra de âncoras */
.anchorbar {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}
.anchorbar__row {
  display: flex;
  justify-content: center;
  gap: clamp(1.4rem, 5vw, 3.5rem);
}
.anchorbar a {
  padding: 0.95rem 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.25s;
}
.anchorbar a:hover { color: var(--gold-strong); }

/* ---------- suítes mestres ---------- */
.mestres {
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: 2.2rem 0 1.4rem;
  margin-bottom: 3rem;
  overflow: hidden;
}
.mestres__head { padding: 0 2.2rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.6rem 2rem; margin-bottom: 1.6rem; }
.mestres__head h3 {
  font-family: var(--brand);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}
.mestres__head h3 span { color: var(--gold-strong); }
.mestres__head p { color: var(--ink-dim); font-size: 0.92rem; font-weight: 300; max-width: 42em; }
.mestres__head p strong { font-weight: 600; color: var(--gold-strong); }
.mestres__track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 2.2rem 0.8rem;
  scrollbar-width: none;
}
.mestres__track::-webkit-scrollbar { display: none; }
.mestre-card {
  flex: 0 0 clamp(270px, 30vw, 380px);
  scroll-snap-align: start;
  position: relative;
  border-radius: 20px 20px var(--radius) var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 3.8;
  cursor: pointer;
}
.mestre-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.mestre-card:hover img { transform: scale(1.03); }
.mestre-card__grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(6, 10, 24, 0.95) 100%);
}
.mestre-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.4rem;
}
.mestre-card__body h4 {
  font-family: var(--brand);
  font-weight: 400;
  font-size: 1.6rem;
}
.mestre-card__body p { font-size: 0.84rem; font-weight: 300; color: var(--ink-dim); margin: 0.3rem 0 0.9rem; }
.mestre-card__row { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.mestre-card .btn { padding: 0.55rem 1.2rem; font-size: 0.72rem; }
.mestres__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2.2rem 0;
}
.mestres__dots { display: flex; gap: 0.45rem; }
.mestres__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(212, 175, 106, 0.25);
  transition: all 0.3s;
}
.mestres__dots span.is-on { background: var(--gold); width: 22px; border-radius: 6px; }
.mestres__nav { display: flex; gap: 0.7rem; }
.mestres__nav button {
  width: 3.2rem; height: 3.2rem;
  border-radius: 50%;
  background: none;
  border: 1px solid var(--gold-deep);
  color: var(--gold-strong);
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.25s;
}
.mestres__nav button:hover { background: var(--gold); color: #191307; border-color: var(--gold); }
@media (max-width: 640px) {
  .mestres__head, .mestres__track, .mestres__foot { padding-inline: 1.2rem; }
}

/* ---------- pills / tabs ---------- */
.tabs {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  margin-bottom: 1.6rem;
  scrollbar-width: none;
  position: sticky;
  top: 64px;
  z-index: 5;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  border: 1px solid var(--gold-deep);
  background: var(--bg);
  color: var(--ink-dim);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s;
}
.tab:hover { color: var(--ink); border-color: var(--gold); }
.tab.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #191307;
}

/* ---------- suites grid ---------- */
.suites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.suite-card {
  background: var(--card);
  border: 1px solid rgba(212, 175, 106, 0.13);
  border-radius: 20px 20px var(--radius) var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.suite-card:hover { transform: translateY(-4px); border-color: var(--gold-deep); box-shadow: 0 18px 44px rgba(0,0,0,0.4); }
.suite-card__imgwrap { overflow: hidden; }
.suite-card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; transition: transform 0.5s var(--ease); }
.suite-card:hover img { transform: scale(1.03); }
.suite-card__body { padding: 1.15rem 1.25rem 1.3rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.suite-card__cat {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.suite-card__body h4 {
  font-family: var(--brand);
  font-weight: 400;
  font-size: 1.4rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.suite-card__pne {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-strong);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.1rem 0.45rem;
}
.suite-card__body > p { font-size: 0.84rem; font-weight: 300; color: var(--ink-dim); flex: 1; }
.suite-card__price { font-size: 0.8rem; font-weight: 600; color: var(--gold-strong); margin-top: 0.5rem; }
.suite-card__price small { font-weight: 300; color: var(--ink-dim); }
.suite-card__row {
  display: flex; gap: 0.6rem;
  margin-top: 0.7rem;
}
.suite-card__row .btn { flex: 1; padding: 0.6rem 0.6rem; font-size: 0.72rem; }
@media (max-width: 980px) { .suites-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .suites-grid { grid-template-columns: 1fr; } }

/* ---------- guia da suíte (bottom-sheet / modal) ---------- */
.sheet[hidden] { display: none; }
.sheet {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 20, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.sheet__panel {
  position: relative;
  width: min(1020px, 100vw);
  max-height: 92svh;
  background: var(--card);
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 22px 22px 0 0;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  animation: sheetup 0.35s var(--ease);
}
@keyframes sheetup { from { transform: translateY(40px); opacity: 0; } }
.sheet__close {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  z-index: 3;
  width: 2.6rem; height: 2.6rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(10, 17, 40, 0.7);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.25s;
}
.sheet__close:hover { background: var(--gold); color: #191307; }
.sheet__media { padding: 1.2rem; }
.sheet__main { border-radius: 16px; overflow: hidden; }
.sheet__main img, .sheet__main video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.sheet__main img { filter: saturate(0.82) contrast(0.97) sepia(0.1); }
.sheet__thumbs {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}
.sheet__thumbs button {
  width: 74px; height: 56px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: none;
  position: relative;
}
.sheet__thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.sheet__thumbs button.is-on { border-color: var(--gold); }
.sheet__thumbs button .play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.45);
  color: var(--gold-strong);
  font-size: 1.1rem;
}
.sheet__info { padding: 1.6rem 1.6rem 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.sheet__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.sheet__nome {
  font-family: var(--brand);
  font-weight: 400;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.1;
}
.sheet__desc { font-size: 0.92rem; font-weight: 300; color: var(--ink-dim); }
.sheet__amen { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.3rem; }
.sheet__amen span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
}
.sheet__precos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 0.6rem;
}
.sheet__precos .preco {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.6rem;
  text-align: center;
}
.sheet__precos .preco em {
  display: block;
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 0.25rem;
}
.sheet__precos .preco strong {
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold-strong);
}
.sheet__precos .preco small { display: block; font-size: 0.64rem; font-weight: 300; color: var(--ink-dim); }
.sheet__nota { font-size: 0.74rem; font-weight: 300; color: var(--ink-dim); }
.sheet__cta { margin-top: 0.5rem; }
@media (max-width: 860px) {
  .sheet__panel { grid-template-columns: 1fr; max-height: 94svh; }
  .sheet__media { padding-bottom: 0; }
}
@media (min-width: 861px) {
  .sheet { align-items: center; }
  .sheet__panel { border-radius: 22px; border-bottom: 1px solid var(--line); max-height: 88svh; }
}

/* ---------- cardápio ---------- */
.cardapio__info { color: var(--ink-dim); font-weight: 300; max-width: 52em; margin-bottom: 1.8rem; }
.menu { display: grid; gap: 1rem; }
.menu-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1.1rem;
  align-items: center;
  background: var(--card);
  border: 1px solid rgba(212, 175, 106, 0.12);
  border-radius: var(--radius);
  padding: 0.9rem;
  transition: border-color 0.25s;
}
.menu-item:hover { border-color: var(--gold-deep); }
.menu-item--noimg { grid-template-columns: 1fr; padding: 1.1rem 1.3rem; }
.menu-item img {
  width: 96px; height: 96px;
  object-fit: cover;
  border-radius: 10px;
}
.menu-item h4 {
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.menu-item h4::after {
  content: "";
  flex: 1;
  border-bottom: 1px dotted var(--gold-deep);
  opacity: 0.5;
}
.menu-item .preco { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--gold-strong); font-size: 0.95rem; white-space: nowrap; }
.menu-item p { font-size: 0.86rem; font-weight: 300; color: var(--ink-dim); margin-top: 0.2rem; }
.menu__selo {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-strong);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
}

/* ---------- promos (tom bordô) ---------- */
.promos {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bordo) 18%, var(--bg-2) 100%);
  border-block: 1px solid var(--line);
}
.promos__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.promo-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  transition: all 0.3s var(--ease);
}
.promo-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.promo-card img { width: 100%; height: 100%; object-fit: cover; }
.promo-card__badge {
  position: absolute; top: 1rem; left: 1rem;
  z-index: 2;
  background: var(--gold);
  color: #191307;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}
.promo-card__body { padding: 1.6rem; display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-start; }
.promo-card h3 { font-family: var(--brand); font-weight: 400; font-size: 1.55rem; }
.promo-card p { color: var(--ink-dim); font-weight: 300; font-size: 0.88rem; flex: 1; }
.promo-card p strong { font-weight: 600; color: var(--gold-strong); }
.promo-card .btn { margin-top: 0.6rem; padding: 0.6rem 1.4rem; font-size: 0.74rem; }
@media (max-width: 980px) { .promos__grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .promo-card { grid-template-columns: 1fr; }
  .promo-card img { aspect-ratio: 16 / 8; }
}

/* ---------- sobre ---------- */
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.sobre__media { border-radius: 20px 20px var(--radius) var(--radius); overflow: hidden; }
.sobre__media img { aspect-ratio: 4 / 4.2; object-fit: cover; }
.sobre__text > p { color: var(--ink-dim); font-weight: 300; margin-top: 1.2rem; }
.sobre__text > p strong { font-weight: 600; color: var(--gold-strong); }
.sobre__stats {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.sobre__stats li { font-size: 0.78rem; color: var(--ink-dim); font-weight: 600; }
.sobre__stats strong {
  display: block;
  font-family: var(--brand);
  font-weight: 400;
  font-size: 2rem;
  color: var(--ink);
  line-height: 1.15;
}
@media (max-width: 900px) { .sobre__grid { grid-template-columns: 1fr; } }

/* ---------- cta ---------- */
.cta { padding: clamp(5rem, 10vw, 8rem) 0; text-align: center; }
.cta__inner { display: grid; justify-items: center; gap: 1.6rem; }
.cta__symbol { height: 3.4rem; opacity: 0.92; }
.cta .display { max-width: 16em; }

/* ---------- footer ---------- */
.footer { background: #070c1e; border-top: 1px solid var(--line); padding-top: 3.6rem; padding-bottom: 4.6rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr auto auto;
  gap: 2.6rem;
  align-items: start;
  padding-bottom: 2.6rem;
}
.footer__brand img { height: 4.2rem; }
.footer__brand p { margin-top: 1rem; color: var(--ink-dim); font-size: 0.86rem; font-weight: 300; }
.footer__brand a { text-decoration: underline; text-underline-offset: 3px; }
.footer__brand a:hover { color: var(--gold-strong); }
.footer__horarios { font-size: 0.8rem !important; }
.footer__nav { display: grid; gap: 0.8rem; }
.footer__nav a {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-dim);
  transition: color 0.25s;
}
.footer__nav a:hover { color: var(--gold-strong); }
.footer__social { display: flex; gap: 0.9rem; }
.footer__social a {
  width: 2.7rem; height: 2.7rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all 0.25s;
}
.footer__social img { height: 1.05rem; filter: brightness(1.7); }
.footer__social a:hover { border-color: var(--gold); background: rgba(212, 175, 106, 0.1); }
.footer__base { border-top: 1px solid rgba(212, 175, 106, 0.1); padding-top: 1.4rem; }
.footer__base p { font-size: 0.75rem; font-weight: 300; color: var(--ink-dim); }
@media (max-width: 780px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- quickbar (mobile) ---------- */
.quickbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 50;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(10, 17, 40, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 0.55rem 0.4rem calc(0.55rem + env(safe-area-inset-bottom));
}
.quickbar a {
  display: flex; flex-direction: column; align-items: center; gap: 0.22rem;
  font-size: 0.64rem; font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.quickbar a svg { width: 1.35rem; height: 1.35rem; color: var(--gold); }
.quickbar__wa { color: var(--gold-strong) !important; }
@media (max-width: 900px) {
  .quickbar { display: grid; }
  body { padding-bottom: 66px; }
  .concierge-fab { bottom: 86px !important; }
  .concierge { bottom: 86px !important; }
  .wa-fab { bottom: 86px !important; }
  .topo { bottom: 150px !important; }
}

/* ---------- whatsapp flutuante ---------- */
.wa-fab {
  position: fixed;
  right: 1.4rem; bottom: 1.4rem;
  z-index: 58;
  width: 3.6rem; height: 3.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold-deep));
  display: grid; place-items: center;
  box-shadow: 0 10px 32px rgba(212, 175, 106, 0.4);
  transition: transform 0.25s var(--ease);
}
.wa-fab img { height: 1.8rem; filter: brightness(0) saturate(100%) invert(8%) sepia(24%) saturate(2600%) hue-rotate(207deg) brightness(0.9); }
.wa-fab:hover { transform: translateY(-3px) scale(1.05); }

/* ---------- voltar ao topo ---------- */
.topo {
  position: fixed;
  right: 1.7rem; bottom: 6rem;
  z-index: 57;
  width: 2.7rem; height: 2.7rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(10, 17, 40, 0.85);
  color: var(--gold-strong);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.topo.is-visible { opacity: 1; pointer-events: auto; }
.topo:hover { background: var(--gold); color: #191307; }

/* ---------- concierge ---------- */
.concierge-fab {
  position: fixed;
  right: 1.4rem; bottom: 1.4rem;
  z-index: 58;
  display: flex; align-items: center; gap: 0.55rem;
  background: var(--gold);
  color: #191307;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 32px rgba(212, 175, 106, 0.35);
  transition: all 0.25s var(--ease);
}
.concierge-fab:hover { transform: translateY(-3px); background: var(--gold-strong); }
.concierge-fab__icon { font-size: 1rem; }
.concierge[hidden] { display: none; }
.concierge {
  position: fixed;
  right: 1.4rem; bottom: 1.4rem;
  z-index: 59;
  width: min(380px, calc(100vw - 2rem));
  height: min(540px, calc(100svh - 7rem));
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}
.concierge__head {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: rgba(212, 175, 106, 0.08);
  border-bottom: 1px solid var(--line);
}
.concierge__head img { height: 1.9rem; }
.concierge__head div { flex: 1; display: flex; flex-direction: column; line-height: 1.25; }
.concierge__head strong { font-family: var(--brand); font-weight: 400; font-size: 1.05rem; }
.concierge__head span { font-size: 0.7rem; font-weight: 300; color: var(--ink-dim); }
.concierge__head button {
  background: none; border: none;
  color: var(--ink-dim);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.concierge__msgs {
  flex: 1;
  overflow-y: auto;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.msg {
  max-width: 88%;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.55;
}
.msg--bot { background: rgba(212, 175, 106, 0.1); border: 1px solid rgba(212, 175, 106, 0.16); align-self: flex-start; }
.msg--user { background: rgba(245, 241, 230, 0.1); align-self: flex-end; }
.msg a { color: var(--gold-strong); text-decoration: underline; }
.concierge__chips {
  display: flex;
  gap: 0.45rem;
  padding: 0.6rem 1.1rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.concierge__chips::-webkit-scrollbar { display: none; }
.chip {
  border: 1px solid var(--line);
  background: none;
  color: var(--ink-dim);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.chip:hover { color: #191307; background: var(--gold); border-color: var(--gold); }
.concierge__input {
  display: flex;
  gap: 0.5rem;
  padding: 0.8rem 1.1rem 1rem;
  border-top: 1px solid var(--line);
}
.concierge__input input {
  flex: 1;
  background: rgba(245, 241, 230, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.86rem;
  padding: 0.65rem 1.1rem;
  outline: none;
}
.concierge__input input:focus { border-color: var(--gold); }
.concierge__input button {
  width: 2.7rem; height: 2.7rem;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: #191307;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .mestre-card img, .suite-card img { transition: none; }
  .cat-card__slides img { transition: none; }   /* congela slideshow no 1º slide */
}

/* ============================================================
   LP DO CARDÁPIO (cardapio.html) — guia: PDF oficial
   ============================================================ */
.lp-cardapio { background: radial-gradient(120% 90% at 50% 0%, #12204a 0%, var(--bg) 55%); }
.lp-hero {
  padding: 9rem 0 3.4rem;
  text-align: center;
}
.lp-hero__symbol { height: 3.2rem; margin: 0 auto 1.6rem; opacity: 0.95; }
.lp-hero__title {
  font-family: var(--brand);
  font-weight: 400;
  font-size: clamp(3.4rem, 9vw, 6rem);
  line-height: 1;
}
.lp-hero__title .script-sub { font-size: clamp(1.9rem, 4.5vw, 3rem); margin-top: -0.25em; }
.lp-hero__sinfonia {
  max-width: 44em;
  margin: 1.8rem auto 0;
  color: var(--ink-dim);
  font-weight: 300;
  font-size: 0.98rem;
}
.lp-hero__selo {
  margin-top: 1.6rem;
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-strong);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
}
.lp-pills {
  position: sticky;
  top: 60px;
  z-index: 40;
  background: rgba(10, 17, 40, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-block: 1px solid var(--line);
  padding: 0.65rem 0;
}
.lp-pills__row {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 max(4vw, (100vw - 1180px) / 2);
}
.lp-pills__row::-webkit-scrollbar { display: none; }
.lp-pills .tab { flex: 0 0 auto; }
.lp-menu { padding: 2.5rem 0 4rem; display: grid; gap: 3rem; }
.lp-cat { scroll-margin-top: 130px; }
.lp-cat__head { text-align: center; margin-bottom: 2rem; }
.lp-cat__title {
  font-family: var(--brand);
  font-weight: 400;
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: 1.05;
}
.lp-cat__title small {
  display: block;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
}
.lp-cat__nota {
  margin-top: 1.2rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--ink-dim);
}
.lp-itens {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.lp-item {
  background: rgba(17, 29, 61, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}
.lp-item:hover { border-color: var(--gold); transform: translateY(-2px); }
.lp-item--img {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 1.1rem;
  align-items: center;
}
.lp-item--img img {
  width: 108px; height: 108px;
  object-fit: contain;
  border-radius: 10px;
}
.lp-item h3 {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lp-item h3 i {
  flex: 1;
  border-bottom: 1px dotted rgba(212, 175, 106, 0.45);
  transform: translateY(-3px);
}
.lp-item h3 em {
  font-style: normal;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--gold-strong);
  white-space: nowrap;
}
.lp-item p { margin-top: 0.5rem; font-size: 0.85rem; font-weight: 300; color: var(--ink-dim); }
.lp-compact {
  columns: 2;
  column-gap: 2.6rem;
  background: rgba(17, 29, 61, 0.75);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
}
.lp-compact__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  break-inside: avoid;
  padding: 0.42rem 0;
}
.lp-compact__thumb {
  width: 40px; height: 40px;
  object-fit: contain;
  flex: 0 0 40px;
}
.lp-compact__nome {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lp-compact__fio { flex: 1; border-bottom: 1px dotted rgba(212, 175, 106, 0.4); transform: translateY(-3px); }
.lp-compact__preco {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold-strong);
  white-space: nowrap;
}
.lp-compact__desc { font-size: 0.76rem; font-weight: 300; color: var(--ink-dim); margin: -0.2rem 0 0.4rem; break-inside: avoid; }
@media (max-width: 860px) {
  .lp-itens { grid-template-columns: 1fr; }
  .lp-compact { columns: 1; }
  .lp-pills { top: 52px; }
}

/* teaser de cardápio na home */
.cardapio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.dish-card {
  position: relative;
  border-radius: 20px 20px var(--radius) var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
}
.dish-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.dish-card:hover img { transform: scale(1.04); }
.dish-card__grad {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(6, 10, 24, 0.95) 100%);
}
.dish-card__body { position: absolute; inset: auto 0 0 0; padding: 1.4rem; }
.dish-card__body h4 {
  font-family: var(--brand);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.15;
  display: flex;
  align-items: baseline;
  gap: 0.3rem 0.8rem;
}
.dish-card__body h4 .dish-card__nome { flex: 1; min-width: 0; }
.dish-card__body h4 em {
  flex-shrink: 0;
  white-space: nowrap;
  font-style: normal;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-strong);
}
.dish-card__body p { font-size: 0.83rem; font-weight: 300; color: var(--ink-dim); margin-top: 0.3rem; }
.cardapio__cta { margin-top: 1.8rem; text-align: center; }
@media (max-width: 900px) { .cardapio__grid { grid-template-columns: 1fr; } .dish-card { aspect-ratio: 16 / 9; } }

/* ============================================================
   MOSAICO DE CATEGORIAS (home) + PÁGINA DE SUÍTES
   ============================================================ */
.cat-mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.1rem;
}
.cat-card {
  position: relative;
  border-radius: 20px 20px var(--radius) var(--radius);
  overflow: hidden;
  min-height: 320px;
  grid-column: span 3;
  display: block;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.cat-card--destaque { grid-column: span 6; min-height: 420px; }
.cat-card:hover { transform: translateY(-5px); box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5); }
.cat-card__slides { position: absolute; inset: 0; }
.cat-card__slides img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
  filter: saturate(0.78) contrast(0.96) sepia(0.14) brightness(0.97);
}
.cat-card__slides img.is-on { opacity: 1; }
.cat-card__grad {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(10, 17, 40, 0.14), rgba(10, 17, 40, 0.14)),
    linear-gradient(180deg, rgba(6, 10, 24, 0.12) 30%, rgba(6, 10, 24, 0.95) 100%);
}
.cat-card__star {
  position: absolute;
  top: 1.1rem; left: 1.1rem;
  z-index: 2;
  background: var(--gold);
  color: #191307;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}
.cat-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1.6rem;
  z-index: 2;
}
.cat-card__body h3 {
  font-family: var(--brand);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
}
.cat-card__tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-strong);
  margin-top: 0.25rem;
}
.cat-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}
.cat-card__preco { font-size: 0.82rem; font-weight: 300; color: var(--ink-dim); }
.cat-card__preco strong { font-weight: 700; font-size: 1.35rem; color: var(--gold-strong); padding: 0 0.15em; }
.cat-card__ver {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-strong);
}
.cat-mosaic__row { display: contents; }   /* desktop: cards fluem direto no grid */
@media (max-width: 900px) {
  .cat-mosaic { display: block; }
  .cat-card--destaque { min-height: 300px; margin-bottom: 0.9rem; }
  /* 4 categorias restantes: carrossel horizontal com snap (encurta a página) */
  .cat-mosaic__row {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    margin-inline: -4vw;
    padding-inline: 4vw;
  }
  .cat-mosaic__row::-webkit-scrollbar { display: none; }
  .cat-mosaic__row .cat-card {
    flex: 0 0 78vw;
    scroll-snap-align: start;
    min-height: 210px;
  }
}

/* página suites.html */
.cat-hero {
  padding: 8.4rem 0 2.2rem;
  background: radial-gradient(120% 90% at 50% 0%, #12204a 0%, var(--bg) 60%);
}
.cat-hero__inner .eyebrow a:hover { color: var(--gold-strong); }
.cat-hero__title {
  font-family: var(--brand);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 1.05;
}
.cat-hero__title .script-sub { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
.cat-hero__desc { color: var(--ink-dim); font-weight: 300; max-width: 44em; margin-top: 1rem; }
.cat-hero__preco {
  margin-top: 1.2rem;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
}
.cat-hero__preco strong { font-weight: 700; color: var(--gold-strong); }

.suites-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.mosaic-card {
  position: relative;
  border-radius: 20px 20px var(--radius) var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.mosaic-card--hero { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; min-height: 420px; }
.mosaic-card:hover { transform: translateY(-4px); box-shadow: 0 20px 54px rgba(0, 0, 0, 0.5); }
.mosaic-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: saturate(0.78) contrast(0.96) sepia(0.14) brightness(0.97);
}
.mosaic-card:hover img { transform: scale(1.04); }
.mosaic-card__grad {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(10, 17, 40, 0.14), rgba(10, 17, 40, 0.14)),
    linear-gradient(180deg, transparent 40%, rgba(6, 10, 24, 0.95) 100%);
}
.mosaic-card__body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.3rem 1.4rem;
}
.mosaic-card__body h3 {
  font-family: var(--brand);
  font-weight: 400;
  font-size: 1.6rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.mosaic-card__body p {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--ink-dim);
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mosaic-card__ver {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-strong);
}
@media (max-width: 900px) {
  .suites-mosaic { grid-template-columns: 1fr 1fr; }
  .mosaic-card--hero { grid-column: span 2; grid-row: auto; min-height: 300px; }
}
@media (max-width: 560px) {
  .suites-mosaic { grid-template-columns: 1fr; }
  .mosaic-card--hero { grid-column: span 1; }
}


/* ============================================================
   VALORES — resumo na home (feedback v2 · P1)
   ============================================================ */
.precos { background: var(--bg-2); border-block: 1px solid var(--line); }
.precos__seg {
  display: inline-flex;
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
  padding: 0.25rem;
  gap: 0.2rem;
}
.precos__seg button {
  border: none;
  background: none;
  color: var(--ink-dim);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}
.precos__seg button.is-active { background: var(--gold); color: #191307; }
.precos__cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.preco-card {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(212, 175, 106, 0.16);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: all 0.3s var(--ease);
}
.preco-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.preco-card--destaque { border-color: var(--gold-deep); background: linear-gradient(180deg, rgba(212, 175, 106, 0.08), var(--card)); }
.preco-card__star {
  position: absolute;
  top: 1rem; right: 1.1rem;
  color: var(--gold-strong);
  font-size: 1rem;
}
.preco-card h3 {
  font-family: var(--brand);
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1.1;
}
.preco-card__tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.preco-card__valor { margin-top: 0.9rem; display: flex; flex-direction: column; }
.preco-card__valor span { font-size: 0.72rem; font-weight: 300; color: var(--ink-dim); }
.preco-card__valor strong {
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--gold-strong);
  line-height: 1.15;
}
.preco-card__valor em { font-style: normal; font-size: 0.7rem; font-weight: 300; color: var(--ink-dim); }
.preco-card__ver {
  margin-top: 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-strong);
}
.precos__nota { margin-top: 1.2rem; font-size: 0.8rem; font-weight: 300; color: var(--ink-dim); }
.precos__nota strong { font-weight: 600; color: var(--gold-strong); }
@media (max-width: 1020px) { .precos__cards { grid-template-columns: repeat(2, 1fr); } .preco-card--destaque { grid-column: span 2; } }
@media (max-width: 520px) { .precos__cards { grid-template-columns: 1fr; } .preco-card--destaque { grid-column: span 1; } }
@media (max-width: 780px) { .precos .section-head { align-items: flex-start; } .precos__seg { overflow-x: auto; max-width: 100%; } }

/* todos os períodos (guia da suíte) */
.sheet__todos { grid-column: 1 / -1; margin-top: 0.2rem; }
.sheet__todos summary {
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-strong);
  padding: 0.5rem 0;
  list-style: none;
}
.sheet__todos summary::before { content: "+ "; }
.sheet__todos[open] summary::before { content: "− "; }
.sheet__todos summary::-webkit-details-marker { display: none; }
.sheet__todos ul { list-style: none; padding: 0.2rem 0 0.4rem; display: grid; gap: 0.3rem; }
.sheet__todos li { display: flex; align-items: baseline; gap: 0.6rem; font-size: 0.85rem; }
.sheet__todos li span { font-weight: 300; color: var(--ink-dim); }
.sheet__todos li i { flex: 1; border-bottom: 1px dotted rgba(212, 175, 106, 0.35); transform: translateY(-3px); }
.sheet__todos li strong { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--gold-strong); }

/* ============================================================
   TRANSIÇÃO HERO → NAVY + SEÇÃO PERNOITE
   ============================================================ */
.transicao {
  position: relative;
  height: clamp(240px, 46vh, 460px);
  overflow: hidden;
  margin-top: -1px;
}
.transicao video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) sepia(0.08);
}
.transicao::before, .transicao::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 42%;
  z-index: 1;
  pointer-events: none;
}
.transicao::before { top: 0; background: linear-gradient(180deg, var(--bg) 0%, transparent 100%); }
.transicao::after { bottom: 0; background: linear-gradient(0deg, var(--bg) 0%, transparent 100%); }
/* o hero termina fundindo no navy para casar com a faixa */
.hero { min-height: 86svh; }

.pernoite {
  background: radial-gradient(90% 120% at 85% 50%, #16255299 0%, transparent 60%), var(--bg);
}
.pernoite__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.pernoite__sub {
  color: var(--ink-dim);
  font-weight: 300;
  font-size: 1.02rem;
  margin-top: 1rem;
  max-width: 34em;
}
.pernoite__sub strong { font-weight: 600; color: var(--gold-strong); }
.pernoite__escolha {
  margin-top: 1.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.pernoite__cats {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.pernoite-cat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  background: var(--card);
  border: 1px solid rgba(212, 175, 106, 0.16);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  transition: all 0.25s var(--ease);
}
.pernoite-cat:hover { border-color: var(--gold); transform: translateY(-2px); }
.pernoite-cat__nome { font-family: var(--brand); font-size: 1.05rem; white-space: nowrap; }
.pernoite-cat__preco { font-size: 0.7rem; font-weight: 300; color: var(--ink-dim); text-align: right; }
.pernoite-cat__preco strong { display: block; font-size: 1.05rem; font-weight: 700; color: var(--gold-strong); font-variant-numeric: tabular-nums; }
.pernoite__media {
  border-radius: 20px 20px var(--radius) var(--radius);
  overflow: hidden;
  max-width: 380px;
  justify-self: center;
}
.pernoite__media video {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) sepia(0.08);
}
@media (max-width: 900px) {
  .pernoite__grid { grid-template-columns: 1fr; }
  .pernoite__media { max-width: 100%; }
  .pernoite__media video { aspect-ratio: 4 / 3; }
  .pernoite__cats { grid-template-columns: 1fr; }
}

/* vídeos no lugar de fotos */
.dish-card video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.sobre__media video {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
  display: block;
  filter: saturate(0.85) sepia(0.08);
}


/* capa em vídeo do cardápio */
.lp-hero--video { position: relative; overflow: hidden; }
.lp-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}
.lp-hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 70% at 50% 40%, rgba(10, 17, 40, 0.55) 0%, rgba(10, 17, 40, 0.82) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 30%);
}
.lp-hero--video .lp-hero__inner { position: relative; z-index: 2; }
.lp-hero--video .lp-hero__title,
.lp-hero--video .lp-hero__sinfonia { text-shadow: 0 2px 24px rgba(6, 10, 24, 0.8); }

/* ============================================================
   LOGO ORIGINAL NO MENU + VALORES CLARO + CTA COM VÍDEO
   ============================================================ */
.nav__lettering { height: 1.15rem; filter: brightness(0) invert(1); }
.nav__symbol { height: 2rem; }

/* CTA final com vídeo horizontal (sem filtro de cor) */
.cta--video { position: relative; overflow: hidden; }
.cta__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(10, 17, 40, 0.62) 28%, rgba(10, 17, 40, 0.62) 72%, var(--bg) 100%);
}
.cta--video .cta__inner { position: relative; z-index: 2; }
.cta--video .display { text-shadow: 0 2px 24px rgba(6, 10, 24, 0.8); }

/* Valores em fundo claro — inverte as cores, detalhes em azul */
.precos--light {
  background: #f1ecdf;                 /* creme levemente aquecido — reduz o salto */
  border-block: none;
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.6rem, 6.5vw, 5.8rem);  /* interlúdio: mais leve que as faixas escuras */
}
/* zonas de transição navy → creme (topo) e creme → navy (base) */
.precos--light::before, .precos--light::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 96px;
  z-index: 0;
  pointer-events: none;
}
.precos--light::before { top: 0; background: linear-gradient(180deg, var(--bg) 0%, rgba(10, 17, 40, 0) 100%); }
.precos--light::after { bottom: 0; background: linear-gradient(0deg, var(--bg) 0%, rgba(10, 17, 40, 0) 100%); }
.precos--light > .container { position: relative; z-index: 1; }
.precos--light .eyebrow { color: #8a6a2e; }  /* dourado mais profundo p/ contraste no creme (WCAG AA) */
.precos--light .display { color: #101b3a; }
.precos--light .precos__seg { border-color: rgba(16, 27, 58, 0.25); background: #fff; }
.precos--light .precos__seg button { color: #4a5068; }
.precos--light .precos__seg button.is-active { background: #101b3a; color: #f4f0e7; }
.precos--light .preco-card {
  background: #fff;
  border-color: rgba(16, 27, 58, 0.1);
  box-shadow: 0 6px 22px rgba(16, 27, 58, 0.07);
}
.precos--light .preco-card:hover { border-color: var(--gold-deep); }
.precos--light .preco-card h3 { color: #101b3a; }
.precos--light .preco-card__tag { color: #6a7089; }
.precos--light .preco-card__valor span, .precos--light .preco-card__valor em { color: #6a7089; }
.precos--light .preco-card__valor strong { color: #101b3a; }
.precos--light .preco-card__ver { color: var(--gold-deep); }
.precos--light .preco-card__star { color: var(--gold-deep); }
.precos--light .preco-card--destaque {
  background: linear-gradient(180deg, #101b3a, #1a2a55);
  border-color: #101b3a;
}
.precos--light .preco-card--destaque h3,
.precos--light .preco-card--destaque .preco-card__valor strong { color: #fff; }
.precos--light .preco-card--destaque .preco-card__tag,
.precos--light .preco-card--destaque .preco-card__valor span,
.precos--light .preco-card--destaque .preco-card__valor em { color: #c9cbda; }
.precos--light .preco-card--destaque .preco-card__ver,
.precos--light .preco-card--destaque .preco-card__star { color: var(--gold-strong); }
.precos--light .precos__nota { color: #5a5f76; }
.precos--light .precos__nota strong { color: var(--gold-deep); }

/* lockup horizontal fiel à logo original */
.nav__lockup { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.nav__lettering { height: 1.05rem; filter: brightness(0) invert(1); }
.nav__oasis {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.6em;
  margin-right: -0.6em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}

/* gastronomia com imagem de fundo (prato oficial) */
.cardapio--bg { position: relative; overflow: hidden; }
.cardapio__bgimg {
  position: absolute; inset: 0;
  background: url("../assets/gastronomia-bg.jpg") center 40% / cover no-repeat;
}
.cardapio__bgscrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(10, 17, 40, 0.88) 22%, rgba(10, 17, 40, 0.88) 78%, var(--bg) 100%);
}
.cardapio--bg .container { position: relative; z-index: 2; }

/* ============================================================
   LAPIDAÇÃO v11 — transições, mobile, papéis das seções
   ============================================================ */

/* --- Pernoite: âncora única de preço + CTA (item 3) --- */
.pernoite__anchor {
  margin-top: 1.8rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.2rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-dim);
}
.pernoite__anchor strong {
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-strong);
}
.pernoite__anchor span { font-size: 0.8rem; }
.pernoite__actions { margin-top: 1.6rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }
@media (max-width: 480px) {
  .pernoite__actions { flex-direction: column; align-items: stretch; }
  .pernoite__actions .btn { text-align: center; }
}

/* --- Anti layout-shift: reserva de altura nos blocos injetados (item 2.3) --- */
#catMosaic { min-height: 720px; }
#precosCards { min-height: 260px; }
#cardapioGrid { min-height: 300px; }
@media (min-width: 901px) {
  #catMosaic { min-height: 860px; }
  #precosCards { min-height: 210px; }
  #cardapioGrid { min-height: 380px; }
}

/* --- Cardápio: botão mais próximo do grid (item 4) --- */
.cardapio__cta { margin-top: 1.1rem; }

/* --- Valores: separadores em versão clara ao redor da faixa creme (item 1.1) --- */
.section-sep--light::before, .section-sep--light::after { background: rgba(16, 27, 58, 0.16); }
.section-sep--light img { filter: brightness(0) saturate(100%) invert(12%) sepia(30%) saturate(1600%) hue-rotate(200deg); opacity: 0.5; }

/* --- Miudezas mobile (item 2.5) --- */
@media (max-width: 560px) {
  #precosSeg button { padding: 0.5rem 0.85rem; font-size: 0.72rem; }
}
@media (max-width: 640px) {
  .footer__grid { text-align: center; justify-items: center; }
  .footer__nav { justify-items: center; }
  .footer__social { justify-content: center; }
  .footer__brand p { text-align: center; }
}
/* WhatsApp + voltar-ao-topo não cobrem o "Ver suítes →" dos cards empilhados */
@media (max-width: 900px) {
  #catMosaic { min-height: 560px; }
  .cat-card__foot { padding-right: 3.2rem; }
}
