:root {
  --cream: #f7efe8;
  --cream-2: #fdf8f4;
  --white: #ffffff;
  --text: #2a2224;
  --muted: #6b5d60;
  --brand: #8f3a44;
  --brand-dark: #6b2a32;
  --brand-deep: #4a1c22;
  --gold: #c9a06a;
  --border: rgba(42, 34, 36, 0.1);
  --shadow: 0 22px 60px rgba(74, 28, 34, 0.12);
  --radius: 16px;
  --radius-lg: 22px;
  --container: 1180px;
  --cta-overlap: 12.5rem;
  --cta-shift: 4rem;
  --cta-footer-space: 8.75rem;
  --focus: 0 0 0 4px rgba(143, 58, 68, 0.25);
  --font-sans: "Source Sans 3", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
}

html.nav-open {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html.page-loading {
  overflow: hidden;
}

/* Pré-carregamento — só visível em carregamentos lentos */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: radial-gradient(120% 90% at 50% 0%, var(--cream) 0%, var(--cream-2) 58%, #f3ebe3 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.page-loader.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  padding: 1.5rem;
}

.page-loader__logo {
  width: clamp(132px, 22vw, 168px);
  height: auto;
  opacity: 0.96;
  animation: page-loader-breathe 1.8s ease-in-out infinite;
}

.page-loader__track {
  width: min(220px, 62vw);
  height: 2px;
  border-radius: 999px;
  background: rgba(143, 58, 68, 0.14);
  overflow: hidden;
}

.page-loader__bar {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--brand));
  animation: page-loader-slide 1.15s ease-in-out infinite;
}

.page-loader__text {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(74, 28, 34, 0.55);
}

@keyframes page-loader-breathe {
  0%,
  100% {
    opacity: 0.88;
    transform: scale(0.985);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes page-loader-slide {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(260%);
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 8px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  clip: auto;
  z-index: 999;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.65rem;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 62ch;
}

/* Buttons */
.btn,
.nav-link,
.room-gallery__thumb,
.lightbox__close,
.lightbox__nav {
  -webkit-tap-highlight-color: rgba(143, 58, 68, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(143, 58, 68, 0.28);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.btn-ghost {
  background: var(--white);
  border-color: var(--border);
  color: var(--text);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(253, 248, 244, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.site-header.is-scrolled .nav-link {
  color: rgba(42, 34, 36, 0.82);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand img {
  width: clamp(120px, 18vw, 155px);
  height: auto;
}

.site-header--solid {
  background: rgba(253, 248, 244, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.site-header--solid .nav-link {
  color: rgba(42, 34, 36, 0.82);
}

.site-header--solid .nav-link:hover {
  background: rgba(143, 58, 68, 0.08);
}

.site-header--solid .nav-link[aria-current="page"] {
  background: rgba(143, 58, 68, 0.12);
  color: var(--brand-deep);
}

.site-header--solid .nav-toggle {
  border-color: var(--border);
  background: var(--white);
}

.site-header--solid .nav-toggle-lines,
.site-header--solid .nav-toggle-lines::before,
.site-header--solid .nav-toggle-lines::after {
  background: var(--text);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.site-header.is-scrolled .nav-toggle {
  border-color: var(--border);
  background: var(--white);
}

.nav-toggle-lines {
  width: 18px;
  height: 2px;
  background: var(--white);
  position: relative;
  display: block;
  margin: 0 auto;
  border-radius: 2px;
}

.site-header.is-scrolled .nav-toggle-lines,
.site-header.is-scrolled .nav-toggle-lines::before,
.site-header.is-scrolled .nav-toggle-lines::after {
  background: var(--text);
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.nav-link[aria-current="page"] {
  background: rgba(255, 255, 255, 0.18);
}

.nav-ctas {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.btn-wa-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
}

/* Hero */
.hero-premium {
  position: relative;
  z-index: 1;
  min-height: clamp(520px, 88vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5.5rem;
  padding-bottom: 3.5rem;
  margin-bottom: -5.5rem;
  overflow: hidden;
}

.hero-premium__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--cream);
}

.hero-premium__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero-premium__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    var(--cream) 0%,
    rgba(247, 239, 232, 0.98) 18%,
    rgba(247, 239, 232, 0.92) 32%,
    rgba(247, 239, 232, 0.72) 46%,
    rgba(247, 239, 232, 0.38) 58%,
    rgba(247, 239, 232, 0.12) 70%,
    transparent 82%
  );
  pointer-events: none;
}

.hero-premium__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(74, 28, 34, 0.08) 0%,
    transparent 35%,
    transparent 70%,
    rgba(42, 34, 36, 0.12) 100%
  );
  pointer-events: none;
}

.hero-premium > .container.hero-premium__inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
  min-height: calc(clamp(520px, 88vh, 920px) - 5.5rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 0 3rem;
  box-sizing: border-box;
}

.hero-premium__copy {
  max-width: 36rem;
  text-align: left;
  margin: 0;
}

.hero-premium__copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.2rem, 5vw, 3.35rem);
  color: var(--brand-deep);
}

.hero-premium__copy--extended {
  max-width: 38rem;
}

.hero-premium__copy--extended .eyebrow {
  margin-bottom: 0.45rem;
}

.hero-premium__copy--extended h1 {
  margin-bottom: 0.5rem;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.hero-premium__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hero-premium__body p {
  margin: 0;
  font-size: clamp(0.92rem, 1.5vw, 1.02rem);
  line-height: 1.42;
  letter-spacing: 0.012em;
  color: var(--muted);
}

.hero-premium__body p:has(br) {
  line-height: 1.32;
}

.hero-premium__tagline {
  margin: 0.1rem 0 0.65rem !important;
  font-size: clamp(0.98rem, 1.55vw, 1.06rem) !important;
  line-height: 1.38 !important;
  color: var(--brand-deep) !important;
  letter-spacing: 0.02em;
}

.hero-premium__copy p {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-premium__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-premium__copy .btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  background: rgba(255, 255, 255, 0.92);
}

.hero-premium__copy .btn-outline:hover {
  background: var(--white);
}

.mini-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  box-shadow: 0 16px 40px rgba(74, 28, 34, 0.08);
}

.mini-card strong {
  display: block;
  font-size: 0.98rem;
  color: var(--brand-deep);
  margin-bottom: 0.2rem;
}

.mini-card span {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Benefits ribbon — card sobrepõe o hero (fundo transparente na faixa) */
.benefits-ribbon {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0.75rem;
  background: transparent;
  pointer-events: none;
}

.benefits-ribbon::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 5.5rem; /* mantém o topo transparente para invadir o hero */
  background: var(--cream);
  z-index: 0;
  pointer-events: none;
}

.benefits-ribbon + .section,
.benefits-ribbon + .home-intro {
  position: relative;
  z-index: 0;
  padding-top: 2.25rem;
  background: var(--cream);
}

/* Home — destaque abaixo da faixa de benefícios */
.home-intro {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}

.home-intro__inner {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto;
}

.home-intro__title {
  margin: 0 0 1.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--brand-deep);
}

.home-intro__rule {
  width: 4.5rem;
  height: 1px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--brand) 50%, var(--gold) 80%, transparent);
  opacity: 0.85;
}

.home-intro__subtitle {
  margin: -0.65rem 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 500;
  font-style: italic;
  color: var(--brand);
}

.home-intro__lead {
  margin: 0;
  font-size: clamp(1.05rem, 1.75vw, 1.2rem);
  line-height: 1.8;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.home-pillars {
  display: grid;
  gap: 1.35rem;
  margin-top: 2.25rem;
}

.home-pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.4rem;
  box-shadow: 0 12px 32px rgba(74, 28, 34, 0.06);
  text-align: center;
}

.home-pillar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.25rem;
  height: 5.25rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(143, 58, 68, 0.07);
  color: var(--brand);
  flex-shrink: 0;
}

.home-pillar__icon svg {
  width: 2.65rem;
  height: 2.65rem;
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-pillar h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brand-deep);
}

.home-pillar p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}

@media (min-width: 900px) {
  .home-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.section-head .lead--sub {
  margin-top: 0.65rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 400;
}

/* Contato — convite após formulário */
.section:has(+ .contact-outro) {
  padding-bottom: 2.25rem;
}

.contact-outro {
  padding-top: 0.5rem;
  padding-bottom: 4rem;
}

.contact-outro__inner {
  text-align: center;
  width: 100%;
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.contact-outro__mark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 3.85rem);
  line-height: 0.85;
  color: var(--brand);
  margin-bottom: 0.65rem;
}

.contact-outro__title {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.85vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.24;
  color: var(--brand-deep);
}

.contact-outro__rule {
  width: 4.5rem;
  height: 1px;
  margin: 0 auto 1.35rem;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--brand) 50%, var(--gold) 80%, transparent);
  opacity: 0.85;
}

.contact-outro__lead {
  margin: 0 auto;
  max-width: 38rem;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.75vw, 1.24rem);
  line-height: 1.72;
  letter-spacing: 0.012em;
  color: rgba(42, 34, 36, 0.78);
}

.benefits-ribbon__inner {
  pointer-events: auto;
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 1.65rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

.benefit-item {
  text-align: center;
  padding: 0.5rem 0.55rem;
  border-right: 1px solid rgba(42, 34, 36, 0.08);
}

.benefit-item:last-child {
  border-right: none;
}

.benefit-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: rgba(143, 58, 68, 0.08);
  color: var(--brand);
}

.benefit-item__icon svg {
  width: 2.75rem;
  height: 2.75rem;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-item__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-deep);
  line-height: 1.45;
  max-width: 8.5rem;
  margin: 0 auto;
}

/* About split */
.section {
  padding: 4.5rem 0;
}

.section--cream {
  background: var(--cream);
}

.section--dark {
  background: linear-gradient(135deg, var(--brand-deep) 0%, #3a1519 100%);
  color: var(--white);
}

.section--dark .lead,
.section--dark p {
  color: rgba(255, 255, 255, 0.78);
}

.section--dark h2 {
  color: var(--white);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
  min-height: 420px;
  position: relative;
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(74, 28, 34, 0.15);
}

.mosaic__main {
  grid-row: 1 / span 2;
}

.mosaic__cafe {
  grid-column: 2;
  grid-row: 2;
}

.mosaic-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  transform: translateY(8px);
  box-shadow: 0 24px 60px rgba(74, 28, 34, 0.18);
}

.about-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: var(--brand-deep);
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.history-intro {
  align-items: start;
}

.history-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: var(--brand-deep);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin: 1.5rem 0;
}

.stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  text-align: center;
}

.stat-box b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brand);
  line-height: 1;
}

.stat-box span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Intro elegante (páginas internas) */
.page-intro {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3.25rem;
  padding: 0.25rem 0 0.5rem;
}

.page-intro__title {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 3.9vw, 2.95rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--brand-deep);
}

.page-intro__rule {
  width: 4.5rem;
  height: 1px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--brand) 50%, var(--gold) 80%, transparent);
  opacity: 0.85;
}

.page-intro__lead {
  margin: 0;
  font-size: clamp(1.12rem, 1.9vw, 1.3rem);
  line-height: 1.75;
  color: rgba(42, 34, 36, 0.78);
  letter-spacing: 0.012em;
  max-width: 40rem;
  margin-inline: auto;
}

/* Section header */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  color: var(--brand-deep);
}

/* Room cards */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.room-card-premium {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 45px rgba(74, 28, 34, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.room-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(74, 28, 34, 0.14);
}

.room-card-premium__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.room-card-premium__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-card-premium__body {
  padding: 1.15rem 1.2rem 1.35rem;
  text-align: center;
}

.room-card-premium__body h3 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
  color: var(--brand-deep);
}

/* Comodidades grid */
.comodidades-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.comodidade-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
  box-shadow: 0 14px 38px rgba(74, 28, 34, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comodidade-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(74, 28, 34, 0.11);
}

.comodidade-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgba(143, 58, 68, 0.08);
  color: var(--brand);
  flex-shrink: 0;
}

.comodidade-card__icon svg {
  width: 2.75rem;
  height: 2.75rem;
  stroke-width: 1.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comodidade-card h3 {
  margin: 0;
  width: 100%;
  font-size: 1.05rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--brand-deep);
  line-height: 1.3;
}

.comodidade-card p {
  margin: 0;
  width: 100%;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Structure split */
.structure-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.structure-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.25rem;
  margin-top: 1.5rem;
}

.structure-icon {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.structure-icon svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--gold);
  margin-top: 0.15rem;
}

.structure-icon b {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.structure-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow);
}

.structure-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

/* Breakfast */
.breakfast-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.breakfast-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
}

.breakfast-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.breakfast-copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: var(--brand-deep);
}

.breakfast-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

/* CTA band — destaque após café, sobrepõe levemente o rodapé */
.cta-band {
  position: relative;
  z-index: 4;
  overflow: visible;
  background: var(--cream-2);
  padding: 2.75rem 0 6rem;
  margin-bottom: 0;
}

.section--cream + .cta-band {
  background: var(--cream);
}

.cta-band__inner {
  position: relative;
  top: var(--cta-shift);
  z-index: 5;
  margin-bottom: calc(var(--cta-overlap) * -1);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(74, 28, 34, 0.16);
  border: 1px solid rgba(143, 58, 68, 0.14);
  padding: 2.35rem 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band__quote {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  flex: 1;
  min-width: 0;
  max-width: 42rem;
}

.cta-band__quote .mark {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 5.5vw, 4.75rem);
  line-height: 0.85;
  color: var(--brand);
  flex-shrink: 0;
}

.cta-band__quote p {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.75vw, 1.22rem);
  line-height: 1.55;
  color: var(--brand-deep);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--brand-deep) 0%, #351216 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 3.75rem 0 1.5rem;
}

/* Espaço extra só quando há faixa CTA sobrepondo o rodapé */
main:has(.cta-band) + .site-footer {
  padding-top: var(--cta-footer-space);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.9fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-contact p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.footer-brand img {
  width: 140px;
  margin-bottom: 0.85rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 28ch;
}

.footer-social {
  display: flex;
  gap: 0.85rem;
  margin-top: 1rem;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-social__link svg {
  width: 1.4rem;
  height: 1.4rem;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social__link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom > small {
  flex: 1 1 auto;
  min-width: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 7rem 0 2.5rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero--photo {
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
  border-bottom: none;
  display: flex;
  align-items: center;
  padding: 7.5rem 0 3.5rem;
  min-height: clamp(520px, 72vh, 780px);
}

.page-hero--photo > .container {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.page-hero-split__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 1.75rem;
  align-items: center;
  justify-items: start;
}

.page-hero-split__inner .page-hero__card {
  display: block;
  width: 100%;
  max-width: 36rem;
}

.page-hero-split__inner .page-hero__card p {
  color: rgba(42, 34, 36, 0.82);
}

.page-hero-split__copy .quote-card p {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.85vw, 1.32rem);
  line-height: 1.52;
  color: rgba(42, 34, 36, 0.82);
}

.page-hero-split__copy {
  align-self: center;
  max-width: 36rem;
}

.page-hero-split.page-hero--photo {
  background: var(--cream);
  border-bottom: none;
  padding-bottom: 2.75rem;
}

.section--cream:has(.page-intro),
.quartos-intro-section {
  padding-top: 2.5rem;
}

body[data-page="quartos"] .page-intro__title {
  font-size: clamp(2.25rem, 4.5vw, 3.15rem);
}

body[data-page="quartos"] .page-intro__lead {
  font-size: clamp(1.18rem, 2.1vw, 1.42rem);
  line-height: 1.72;
  color: rgba(42, 34, 36, 0.82);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(247, 239, 232, 0.985) 0%,
    rgba(247, 239, 232, 0.95) 26%,
    rgba(247, 239, 232, 0.78) 50%,
    rgba(247, 239, 232, 0.42) 68%,
    rgba(247, 239, 232, 0.12) 78%,
    transparent 90%
  );
}

/* Hero interno: imagem discreta ao fundo */
.page-hero-split .page-hero__bg img {
  opacity: 0.48;
  filter: saturate(0.88) brightness(1.02);
}

.page-hero-split .page-hero__bg::after {
  background: linear-gradient(
    100deg,
    rgba(253, 248, 244, 0.72) 0%,
    rgba(247, 239, 232, 0.8) 18%,
    rgba(247, 239, 232, 0.9) 36%,
    rgba(247, 239, 232, 0.94) 52%,
    rgba(247, 239, 232, 0.96) 66%,
    rgba(247, 239, 232, 0.98) 78%,
    var(--cream) 88%,
    var(--cream) 100%
  );
}

.page-hero__card {
  display: inline-block;
  max-width: 44rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.6rem;
  backdrop-filter: blur(10px);
}

/* Hero interno: textos livres sobre a imagem */
.page-hero-split .page-hero__card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
}

.page-hero-split .page-hero__card h1 {
  text-shadow:
    0 1px 0 rgba(253, 248, 244, 0.95),
    0 8px 28px rgba(253, 248, 244, 0.75),
    0 12px 36px rgba(74, 28, 34, 0.1);
}

.page-hero-split .page-hero__card p {
  color: rgba(42, 34, 36, 0.82);
  text-shadow:
    0 1px 0 rgba(253, 248, 244, 0.9),
    0 6px 22px rgba(253, 248, 244, 0.7);
}

.page-hero-split__copy .quote-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
}

.page-hero-split__copy .quote-card p {
  color: rgba(42, 34, 36, 0.88);
  text-shadow: none;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--brand-deep);
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Contact */
.contact-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.contact-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-media img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  font-family: var(--font-sans);
}

.contact-card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font: inherit;
  color: var(--text);
  background: var(--cream-2);
}

.form-status {
  margin: 1.15rem 0 0;
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.form-status[hidden] {
  display: none;
}

.form-status.is-success {
  background: rgba(143, 58, 68, 0.08);
  border: 1px solid rgba(143, 58, 68, 0.22);
  color: var(--brand-deep);
}

.form-status:focus {
  outline: none;
  box-shadow: var(--focus);
}

.form-status.is-error {
  background: rgba(120, 40, 48, 0.08);
  border: 1px solid rgba(120, 40, 48, 0.22);
  color: #5c242c;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: var(--focus);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(74, 28, 34, 0.06);
}

.timeline-card h3 {
  margin: 0 0 0.5rem;
  color: var(--brand-deep);
}

.timeline-card p {
  margin: 0;
  color: var(--muted);
}

.timeline-head {
  margin-top: 1.5rem;
}

/* Timeline (Sobre) */
.timeline {
  margin-top: 1.25rem;
  position: relative;
  display: grid;
  gap: 1.25rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 102px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(143, 58, 68, 0.25);
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.timeline-date {
  position: relative;
  padding-right: 0.25rem;
  text-align: right;
}

.timeline-date::after {
  content: "";
  position: absolute;
  right: -17px;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.25px solid rgba(143, 58, 68, 0.55);
  background: var(--cream-2);
  box-shadow: 0 10px 22px rgba(74, 28, 34, 0.12);
}

.timeline-year {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.05;
  color: var(--brand);
}

.timeline-full {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(42, 34, 36, 0.62);
  margin-top: 0.25rem;
}

.timeline .timeline-card {
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow);
}

.timeline .timeline-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.timeline .timeline-card p {
  font-size: 0.98rem;
  line-height: 1.65;
}

.timeline-details {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.timeline-details li {
  margin-bottom: 0.45rem;
}

.stat-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stat-pill b {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--brand);
  line-height: 1;
}

.stat-pill span {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

.quote-card {
  background: var(--white);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}

.quote-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.quote-card p + p {
  margin-top: 0.75rem;
}

.room-block__copy .eyebrow {
  margin-bottom: 0.4rem;
}

.room-block__copy h2 {
  margin-top: 0;
}

/* Room detail blocks (quartos page) */
.room-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.room-block:nth-child(even) .room-block__media {
  order: 2;
}

.room-block:nth-child(even) .room-block__copy {
  order: 1;
}

.room-block__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.room-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.room-block__copy h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brand-deep);
}

.room-block__copy p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.room-block__copy ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.room-block__copy li {
  margin-bottom: 0.35rem;
}

.room-gallery {
  margin: 1.5rem 0 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(42, 34, 36, 0.08);
}

.room-gallery__label {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}

.room-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.room-gallery__thumb {
  appearance: none;
  border: 1px solid rgba(42, 34, 36, 0.1);
  border-radius: 12px;
  padding: 0;
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(74, 28, 34, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.room-gallery__thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(143, 58, 68, 0.28);
  box-shadow: 0 16px 32px rgba(74, 28, 34, 0.14);
}

.room-gallery__thumb:focus-visible {
  outline: none;
  box-shadow: var(--focus), 0 12px 28px rgba(74, 28, 34, 0.12);
}

.room-gallery__thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(42, 34, 36, 0.82);
  backdrop-filter: blur(6px);
}

.lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  max-height: calc(100vh - 2.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__figure {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lightbox__img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 8rem);
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  background: var(--white);
}

.lightbox__caption {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(74, 28, 34, 0.55);
  color: var(--white);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.65rem;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(143, 58, 68, 0.9);
  transform: scale(1.04);
}

.lightbox__close {
  top: -0.25rem;
  right: 0;
}

.lightbox__nav--prev {
  left: -0.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--next {
  right: -0.25rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--prev:hover,
.lightbox__nav--next:hover {
  transform: translateY(-50%) scale(1.04);
}

html.lightbox-open {
  overflow: hidden;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-in,
.file-static .reveal,
noscript .reveal {
  opacity: 1;
  transform: none;
}

/* Mantém sobreposição do CTA mesmo com animação reveal */
.cta-band__inner.reveal.is-in,
.file-static .cta-band__inner.reveal,
noscript .cta-band__inner.reveal {
  transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .benefits-ribbon__inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit-item:nth-child(3) {
    border-right: none;
  }

  .benefit-item:nth-child(4),
  .benefit-item:nth-child(5),
  .benefit-item:nth-child(6) {
    border-top: 1px solid rgba(42, 34, 36, 0.08);
  }

  .about-split,
  .structure-split,
  .breakfast-split,
  .room-block {
    grid-template-columns: 1fr;
  }

  .room-block:nth-child(even) .room-block__media,
  .room-block:nth-child(even) .room-block__copy {
    order: unset;
  }

  .room-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .lightbox__nav--prev {
    left: 0.25rem;
  }

  .lightbox__nav--next {
    right: 0.25rem;
  }

  .lightbox__close {
    top: 0.25rem;
    right: 0.25rem;
  }

  .rooms-grid,
  .comodidades-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-premium__photo {
    object-position: 65% center;
  }

  .hero-premium__bg::before {
    background: linear-gradient(
      180deg,
      var(--cream) 0%,
      rgba(247, 239, 232, 0.96) 28%,
      rgba(247, 239, 232, 0.55) 52%,
      rgba(247, 239, 232, 0.2) 72%,
      transparent 88%
    );
  }

  .page-hero-split__inner {
    grid-template-columns: 1fr;
  }

  .page-hero--photo {
    align-items: flex-start;
    padding-top: calc(6.75rem + env(safe-area-inset-top, 0));
  }

  .contact-split {
    gap: 1.5rem;
  }

  .breakfast-split {
    gap: 1.5rem;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .section {
    padding: 3.25rem 0;
  }

  .site-header {
    padding-top: env(safe-area-inset-top, 0);
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
  }

  .header-inner {
    padding: 0.7rem 0;
  }

  .brand img {
    width: clamp(108px, 32vw, 138px);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav-panel {
    position: fixed;
    inset: calc(4.35rem + env(safe-area-inset-top, 0)) 0.85rem auto 0.85rem;
    left: max(0.85rem, env(safe-area-inset-left, 0));
    right: max(0.85rem, env(safe-area-inset-right, 0));
    max-height: calc(100dvh - 5.25rem - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: rgba(253, 248, 244, 0.98);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link {
    color: var(--text);
    padding: 0.65rem 0.75rem;
  }

  .nav-ctas {
    flex-direction: column;
    width: 100%;
  }

  .nav-ctas .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .nav-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero-premium {
    min-height: clamp(460px, 88svh, 720px);
    margin-bottom: -3.25rem;
    padding-top: calc(4.85rem + env(safe-area-inset-top, 0));
    padding-bottom: 2.25rem;
  }

  .hero-premium > .container.hero-premium__inner {
    min-height: auto;
    padding: 1rem 0 2.75rem;
    align-items: flex-end;
  }

  .hero-premium__copy h1 {
    font-size: clamp(1.85rem, 7.8vw, 2.35rem);
    line-height: 1.12;
  }

  .hero-premium__copy p {
    font-size: 1rem;
    margin-bottom: 1.1rem;
  }

  .hero-premium__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-premium__actions .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .benefits-ribbon::before {
    top: 3.25rem;
  }

  .benefits-ribbon__inner {
    grid-template-columns: 1fr 1fr;
    padding: 1.2rem 0.75rem;
    gap: 0.5rem;
  }

  .benefit-item {
    border-right: none;
    border-bottom: 1px solid rgba(42, 34, 36, 0.08);
  }

  .benefit-item__icon {
    width: 3.85rem;
    height: 3.85rem;
  }

  .benefit-item__icon svg {
    width: 2.35rem;
    height: 2.35rem;
  }

  .rooms-grid,
  .comodidades-grid {
    grid-template-columns: 1fr;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
    gap: 0.65rem;
  }

  .mosaic__main,
  .mosaic__cafe {
    grid-row: auto;
    grid-column: 1;
  }

  .mosaic img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .stat-box b {
    font-size: 1.65rem;
  }

  .home-intro {
    padding-top: 2rem;
    padding-bottom: 2.75rem;
  }

  .home-intro__title {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .home-intro__subtitle {
    font-size: 1.1rem;
  }

  .home-pillars {
    margin-top: 1.75rem;
  }

  .hero-premium__copy--extended {
    max-width: 100%;
  }

  .stat-box span {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .page-intro {
    margin-bottom: 2.25rem;
  }

  .page-intro__title {
    font-size: clamp(1.75rem, 6.5vw, 2.15rem);
  }

  .page-intro__lead {
    font-size: clamp(1.05rem, 4.2vw, 1.18rem);
  }

  body[data-page="quartos"] .page-intro__title {
    font-size: clamp(1.85rem, 7vw, 2.35rem);
  }

  body[data-page="quartos"] .page-intro__lead {
    font-size: clamp(1.1rem, 4.5vw, 1.28rem);
  }

  .page-hero__card {
    width: 100%;
  }

  .page-hero-split__inner {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .page-hero-split__copy .quote-card {
    background: transparent;
    border: none;
    backdrop-filter: none;
    padding: 0;
  }

  .page-hero-split .page-hero__bg::after {
    background: linear-gradient(
      180deg,
      rgba(253, 248, 244, 0.97) 0%,
      rgba(247, 239, 232, 0.94) 42%,
      rgba(247, 239, 232, 0.96) 68%,
      var(--cream) 88%,
      var(--cream) 100%
    );
  }

  .page-hero--photo {
    align-items: flex-start;
    padding: calc(7.5rem + env(safe-area-inset-top, 0)) 0 2.75rem;
    min-height: 0;
  }

  .page-hero--photo > .container {
    padding-top: 0.25rem;
  }

  .page-hero-split__inner .page-hero__card h1 {
    margin-top: 0;
  }

  .page-hero-split .page-hero__bg img {
    object-position: center 35%;
  }

  .mosaic-badge {
    left: 0.9rem;
    bottom: 0.9rem;
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  :root {
    --cta-overlap: 8rem;
    --cta-shift: 2.75rem;
    --cta-footer-space: 5.75rem;
  }

  .cta-band {
    padding: 2rem 0 4.5rem;
  }

  .cta-band__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 1.65rem 1.15rem;
    top: calc(var(--cta-shift) * 0.9);
  }

  .cta-band__quote {
    min-width: 0;
    max-width: none;
    gap: 0.85rem;
  }

  .cta-band__quote .mark {
    font-size: 2.65rem;
  }

  .cta-band__quote p {
    font-size: clamp(1rem, 4.2vw, 1.12rem);
    line-height: 1.52;
  }

  .cta-band__actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-band__actions .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .site-footer {
    padding-top: 3.25rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0));
  }

  main:has(.cta-band) + .site-footer {
    padding-top: var(--cta-footer-space);
  }

  .room-block {
    margin-bottom: 2.35rem;
    gap: 1.15rem;
  }

  .room-block__media {
    min-height: 220px;
  }

  .room-block__media img {
    min-height: 220px;
  }

  .room-block__copy .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .room-gallery {
    margin: 1.25rem 0 1.5rem;
  }

  .contact-media img {
    min-height: 240px;
  }

  .contact-card,
  .contact-form {
    padding: 1.15rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
    min-height: 48px;
  }

  .form-field textarea {
    min-height: 140px;
  }

  .contact-form .btn-primary {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }

  .contact-outro {
    padding-top: 0.75rem;
    padding-bottom: 2.75rem;
  }

  .contact-outro__mark {
    font-size: 2.35rem;
    margin-bottom: 0.5rem;
  }

  .contact-outro__title {
    font-size: clamp(1.4rem, 5.4vw, 1.85rem);
    line-height: 1.28;
  }

  .contact-outro__lead {
    font-size: clamp(1rem, 4.1vw, 1.1rem);
    line-height: 1.68;
  }

  .lightbox {
    padding: max(0.75rem, env(safe-area-inset-top, 0)) 0.5rem max(0.75rem, env(safe-area-inset-bottom, 0));
  }

  .lightbox__img {
    max-height: calc(100dvh - 6.5rem - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
    border-radius: var(--radius);
  }

  .lightbox__close {
    top: max(0.35rem, env(safe-area-inset-top, 0));
    right: max(0.35rem, env(safe-area-inset-right, 0));
  }

  .lightbox__nav--prev {
    left: max(0.25rem, env(safe-area-inset-left, 0));
  }

  .lightbox__nav--next {
    right: max(0.25rem, env(safe-area-inset-right, 0));
  }

  .footer-bottom {
    align-items: flex-end;
    gap: 0.65rem 1rem;
  }

  .footer-bottom small {
    line-height: 1.55;
    flex: 1 1 auto;
    min-width: min(100%, 14rem);
  }

  .footer-legal {
    flex: 0 1 auto;
    width: auto;
    max-width: 100%;
  }

  .contact-split,
  .form-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    margin-top: 1rem;
    padding-left: 0.15rem;
  }

  .timeline::before {
    left: 7px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding-left: 0;
  }

  .timeline-date {
    position: relative;
    padding-left: 1.85rem;
    padding-right: 0;
    text-align: left;
  }

  .timeline-date::after {
    left: 0;
    right: auto;
    top: 0.42rem;
    transform: none;
  }

  .timeline-year {
    font-size: 1.4rem;
    line-height: 1.15;
  }

  .timeline-full {
    display: block;
    margin-top: 0.2rem;
  }
}

/* Legal / LGPD */
.page-hero--legal {
  min-height: auto;
  padding-block: clamp(7.5rem, 14vw, 9.5rem) clamp(2.5rem, 5vw, 3.5rem);
  background: linear-gradient(180deg, var(--brand-deep) 0%, var(--brand) 100%);
  color: var(--cream);
  text-align: center;
}

.page-hero--legal .lead {
  margin-inline: auto;
  max-width: 36rem;
  opacity: 0.9;
}

.legal-content {
  max-width: 46rem;
  margin-inline: auto;
  color: var(--muted);
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  color: var(--brand);
}

.legal-content h2:first-of-type {
  margin-top: 1.25rem;
}

.legal-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
  line-height: 1.7;
}

.legal-content ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.legal-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-links {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(143, 58, 68, 0.15);
  font-weight: 600;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.25rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.legal-table th,
.legal-table td {
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(143, 58, 68, 0.2);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  background: rgba(143, 58, 68, 0.08);
  color: var(--brand);
  font-weight: 600;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.35rem 1rem;
  margin: 0 0 0 auto;
  padding: 0;
  text-align: right;
}

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-legal a:hover,
.footer-legal a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.form-consent {
  margin-top: 0.25rem;
}

.form-consent__label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  cursor: pointer;
}

.form-consent__label input {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--brand);
}

.form-consent__label a {
  color: var(--brand);
  font-weight: 600;
}

.lgpd-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 1200;
  background-color: var(--cream-2);
  background-image: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  border-top: 2px solid rgba(143, 58, 68, 0.28);
  box-shadow: 0 -14px 48px rgba(42, 34, 36, 0.28);
  padding-block: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

.lgpd-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.lgpd-banner__text {
  flex: 1 1 16rem;
  max-width: 52rem;
}

.lgpd-banner__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brand-dark);
}

.lgpd-banner__body {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
}

.lgpd-banner__body a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.lgpd-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  flex-shrink: 0;
}

.lgpd-banner__btn {
  white-space: nowrap;
}

html.lgpd-banner-open body {
  padding-bottom: var(--lgpd-banner-offset, 7.5rem);
}

@media (max-width: 640px) {
  .lgpd-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .lgpd-banner__actions {
    flex-direction: column;
  }

  .lgpd-banner__btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    align-items: flex-end;
  }

  .footer-legal {
    justify-content: flex-end;
    width: 100%;
    gap: 0.5rem 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .room-card-premium,
  .reveal,
  .nav-panel,
  .room-gallery__thumb,
  .lightbox__close,
  .lightbox__nav,
  .page-loader,
  .page-loader__logo,
  .page-loader__bar {
    transition: none;
    animation: none;
  }

  .btn:hover,
  .room-card-premium:hover {
    transform: none;
  }
}
