/* Hotel Atlanta — Ourilândia do Norte, PA
   Design editorial, sóbrio, hospitality-first. */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap');

:root {
  --color-bg: #FAF7F1;
  --color-surface: #FFFFFF;
  --color-surface-2: #F3EEE5;
  --color-text: #2A2621;
  --color-muted: #6E665A;
  --color-border: #E4DCCC;
  --color-accent: #3F6B23;
  --color-accent-dark: #2B5510;
  --color-ink: #1C1914;
  --color-danger: #A5402F;
  --color-danger-bg: #FBEDE9;
  --color-success: #3F6B4B;
  --color-success-bg: #EEF4EF;

  --font-sans: 'Manrope', 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(28, 25, 20, .08);
  --shadow-md: 0 8px 24px rgba(28, 25, 20, .10);
  --shadow-lg: 0 24px 64px rgba(28, 25, 20, .16);

  --ease: cubic-bezier(.32, .72, 0, 1);
  --container: 1240px;
  --logo-height: 40px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Grão fino sobre toda a página — a textura que separa "papel" de "tela". */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { body::after { display: none; } }

h1, h2, h3, h4 { margin: 0; font-weight: 400; color: var(--color-ink); }
p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
}

/* Numeração editorial que acompanha o rótulo de cada seção — a assinatura
   visual de catálogo/boutique que diferencia isto de um template genérico. */
.section-kicker { display: flex; align-items: baseline; gap: .85rem; margin-bottom: 1rem; }
.section-kicker__number {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--color-accent);
  opacity: .65;
  line-height: 1;
}
.section-kicker .eyebrow { margin-bottom: 0; }
.section-kicker::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
  min-width: 2rem;
  align-self: center;
}
.feature-banner__content .section-kicker__number { color: rgba(255,255,255,.7); }
.feature-banner__content .eyebrow { color: rgba(255,255,255,.8); }
.feature-banner__content .section-kicker::after { background: rgba(255,255,255,.25); }

/* Numeral gigante — a marca d'água editorial atrás do título de cada seção. */
.giant-number {
  position: absolute;
  top: -3.5rem;
  left: -.25rem;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 14vw, 11rem);
  line-height: 1;
  color: var(--color-ink);
  opacity: .05;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.feature-banner__content .giant-number { color: #fff; opacity: .12; }
.split__text, .section-head, .feature-banner__content { position: relative; z-index: 1; }
.split__text > *, .section-head > *, .feature-banner__content > * { position: relative; z-index: 1; }
@media (max-width: 640px) { .giant-number { font-size: clamp(4.5rem, 22vw, 7rem); top: -2.25rem; } }

.title-serif {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--color-ink);
}

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head p.lede { margin-top: 1rem; color: var(--color-muted); font-size: 1.0625rem; max-width: 60ch; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

section { padding: 5rem 0; }
@media (max-width: 640px) { section { padding: 3.25rem 0; } }

/* Compensa o cabeçalho fixo ao rolar até uma seção pelo menu ou por um
   CTA — sem isto, o topo da seção fica escondido atrás do cabeçalho. */
section[id], #reservar { scroll-margin-top: 6.25rem; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-ink);
  color: #fff;
  padding: .75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.35rem 0;
  transition: background-color 300ms var(--ease), padding 300ms var(--ease), box-shadow 300ms var(--ease), border-color 300ms var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.site-header.is-solid {
  background: rgba(250, 247, 241, .92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: .85rem 0;
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: .02em;
  color: var(--color-ink);
}
.brand-logo { height: var(--logo-height); width: auto; max-width: 240px; object-fit: contain; display: none; border-radius: var(--radius-sm); transition: background-color 300ms var(--ease), padding 300ms var(--ease), box-shadow 300ms var(--ease), height 300ms var(--ease); }
.brand-logo.has-src { display: block; }
.site-header:not(.is-solid) .brand-logo {
  background: rgba(255,255,255,.92);
  padding: .4rem .65rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.site-header.is-solid .brand-logo { height: calc(var(--logo-height) * 0.85); }
.brand.has-logo .brand-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.site-header:not(.is-solid) .brand,
.site-header:not(.is-solid) .nav-link { color: #fff; }
.site-header:not(.is-solid) .nav-link { opacity: .92; }

.nav-primary { display: none; align-items: center; gap: 2.25rem; }
@media (min-width: 900px) { .nav-primary { display: flex; } }
.nav-link {
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--color-text);
  padding: .25rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 150ms var(--ease), opacity 150ms var(--ease);
}
.nav-link:hover { border-color: currentColor; }

.header-actions { display: flex; align-items: center; gap: .75rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 150ms var(--ease), background-color 150ms var(--ease), border-color 150ms var(--ease), color 150ms var(--ease), box-shadow 150ms var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.98); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.22), transparent);
  transform: skewX(-20deg);
  transition: left 550ms var(--ease);
  pointer-events: none;
}
.btn-primary:hover:not(:disabled)::before { left: 130%; }
.btn-primary:hover:not(:disabled) { background: #000; box-shadow: 0 6px 16px rgba(28,25,20,.22); transform: translateY(-1px); }
.btn-primary:active:not(:disabled) { transform: translateY(0) scale(.98); box-shadow: none; }
@media (prefers-reduced-motion: reduce) { .btn-primary::before { display: none; } }

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--color-ink);
}
.site-header:not(.is-solid) .btn-outline { color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline:hover:not(:disabled) { background: rgba(28,25,20,.06); }
.site-header:not(.is-solid) .btn-outline:hover:not(:disabled) { background: rgba(255,255,255,.14); }

.btn-block { width: 100%; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--color-ink);
}
.site-header:not(.is-solid) .menu-toggle { color: #fff; border-color: rgba(255,255,255,.7); }
@media (min-width: 900px) { .menu-toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem 2rem;
  transform: translateX(100%);
  transition: transform 300ms var(--ease);
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 3rem; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.75rem; margin-bottom: 2.5rem; }
.mobile-menu .nav-link { font-size: 1.5rem; font-family: var(--font-serif); }
.mobile-menu__close { width: 44px; height: 44px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: none; display: inline-flex; align-items: center; justify-content: center; transition: border-color 150ms var(--ease), background-color 150ms var(--ease); }
.mobile-menu__close:hover { border-color: var(--color-accent); background: var(--color-surface-2); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: -8% 0; z-index: -1; will-change: transform; }
.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1600ms ease;
}
.hero__slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero__slide { transition: none; } }
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,17,13,.55) 0%, rgba(20,17,13,.25) 32%, rgba(20,17,13,.55) 78%, rgba(20,17,13,.82) 100%);
}
.hero__content { position: relative; padding: 9rem 0 2.5rem; width: 100%; }
.hero__locale {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7.2vw, 5.5rem);
  line-height: .98;
  letter-spacing: -0.02em;
  max-width: 16ch;
  color: #fff;
}
.hero__sub {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,.86);
  max-width: 44ch;
  line-height: 1.6;
}
.hero__cta { margin-top: 2.25rem; }

@keyframes hero-rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.hero__locale, .hero h1, .hero__sub, .hero .booking {
  opacity: 0;
  animation: hero-rise 1000ms var(--ease) forwards;
}
.hero__locale { animation-delay: 120ms; }
.hero h1 { animation-delay: 260ms; }
.hero__sub { animation-delay: 440ms; }
.hero .booking { animation-delay: 600ms; }
@media (prefers-reduced-motion: reduce) {
  .hero__locale, .hero h1, .hero__sub, .hero .booking { opacity: 1; animation: none; }
}

.hero__scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.75);
  opacity: 0;
  animation: hero-rise 900ms var(--ease) 1100ms forwards;
}
.hero__scroll-cue span {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), transparent);
  animation: scroll-cue-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-cue-pulse { 0%, 100% { transform: scaleY(1); opacity: .6; } 50% { transform: scaleY(1.4); opacity: 1; } }
@media (min-width: 640px) and (min-height: 700px) { .hero__scroll-cue { display: flex; } }
@media (prefers-reduced-motion: reduce) { .hero__scroll-cue, .hero__scroll-cue span { animation: none; opacity: .7; } }

/* ---------- Booking bar ---------- */
.booking {
  position: relative;
  margin-top: 2.75rem;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  color: var(--color-text);
}
.booking__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .booking__grid { grid-template-columns: repeat(2, minmax(0,1fr)); align-items: end; gap: 1.25rem 1.5rem; }
  .booking__grid .btn-primary { grid-column: 1 / -1; }
}
@media (min-width: 1120px) {
  .booking__grid { grid-template-columns: repeat(5, minmax(0,1fr)) auto; }
  .booking__grid .btn-primary { grid-column: auto; }
}
.field label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: .5rem;
}
.field input[type="date"] {
  width: 100%;
  padding: .8rem .9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text);
}
.field input:focus { border-color: var(--color-accent); }

.guest-field { position: relative; }
.guest-field__control {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .8rem .9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text);
  text-align: left;
  transition: border-color 150ms var(--ease);
}
.guest-field__control span { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.guest-field__control svg { flex-shrink: 0; color: var(--color-muted); transition: transform 150ms var(--ease); }
.guest-field__control:hover { border-color: var(--color-accent); }
.guest-field.is-open .guest-field__control { border-color: var(--color-accent); }
.guest-field.is-open .guest-field__control svg { transform: rotate(180deg); }
.guest-field__popover {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1rem;
}
.guest-field__popover .stepper { border: none; padding: 0; }
.guest-field__popover .stepper__value { min-width: 2.5rem; text-align: center; }

.stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: .3rem .3rem .3rem .9rem;
}
.stepper__value { font-size: 1rem; font-weight: 600; min-width: 5.5rem; }
.stepper__controls { display: flex; gap: .35rem; }
.stepper__btn {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 1.15rem;
  line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-ink);
  transition: background-color 150ms var(--ease);
}
.stepper__btn:hover:not(:disabled) { background: var(--color-surface-2); }
.stepper__btn:disabled { opacity: .4; cursor: not-allowed; }

.booking .btn-primary { height: 100%; min-height: 3.35rem; padding-inline: 1.75rem; }

.field-error {
  display: none;
  font-size: .8125rem;
  color: var(--color-danger);
  margin-top: .5rem;
}
.field-error.is-visible { display: block; }
.field.has-error input, .field.has-error .stepper { border-color: var(--color-danger); }

/* ---------- Availability / booking results ---------- */
.booking-results {
  display: none;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.booking-results.is-visible { display: block; animation: fade-up 400ms var(--ease); }

.booking-results__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.booking-results__summary h3 { font-size: 1.0625rem; font-weight: 700; }
.booking-results__summary .meta { font-size: .875rem; color: var(--color-muted); }

.state-line {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 0;
  color: var(--color-muted);
  font-size: .9375rem;
}
.state-line[hidden] { display: none; }
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse { 0%, 100% { opacity: .35; transform: scale(.85); } 50% { opacity: 1; transform: scale(1); } }

.skeleton-row { display: flex; flex-direction: column; gap: .75rem; }
.skeleton {
  height: 72px;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, var(--color-surface-2) 25%, #ece5d6 37%, var(--color-surface-2) 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
}
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }

.notice {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  font-size: .9375rem;
  line-height: 1.55;
}
.notice-error { background: var(--color-danger-bg); color: var(--color-danger); }
.notice-empty { background: var(--color-surface-2); color: var(--color-muted); }
.notice svg { flex-shrink: 0; margin-top: .15rem; }

.room-option {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: .85rem;
  transition: border-color 150ms var(--ease), box-shadow 150ms var(--ease), transform 150ms var(--ease);
}
.room-option:hover { border-color: var(--color-accent); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.room-option__info { min-width: 0; }
.room-option__name { font-weight: 700; font-size: 1.0625rem; margin-bottom: .3rem; }
.room-option__meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; font-size: .8438rem; color: var(--color-muted); }
.room-option__desc { margin-top: .5rem; font-size: .875rem; color: var(--color-muted); max-width: 60ch; }
.room-option__action { display: flex; flex-direction: column; align-items: flex-end; gap: .75rem; }
.room-option__price { font-weight: 700; font-size: 1.0625rem; color: var(--color-ink); white-space: nowrap; }
.room-option__price small { display: block; font-weight: 500; font-size: .75rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: .04em; }

@media (max-width: 560px) {
  .room-option { grid-template-columns: 1fr; }
  .room-option__action { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; }
  .room-option__action .btn { flex-shrink: 0; }
}
@media (max-width: 400px) {
  .room-option__action { flex-direction: column; align-items: stretch; }
  .room-option__action .btn { width: 100%; }
}

/* ---------- Guest details ---------- */
.guest-form { margin-top: 1.25rem; }
.guest-form__grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 640px) { .guest-form__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.guest-form__grid .field-full { grid-column: 1 / -1; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"] {
  width: 100%;
  padding: .85rem .9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--color-surface);
  color: var(--color-text);
}
.field input:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(63,107,35,.18); }
.guest-form__actions { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.link-btn { background: none; border: none; padding: .8rem 0; font-size: .8125rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--color-muted); }
.link-btn:hover { color: var(--color-ink); }

/* ---------- O Hotel ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0,.85fr) minmax(0,1fr); gap: 4rem; }
  .split.is-reverse { grid-template-columns: minmax(0,1fr) minmax(0,.85fr); }
  .split.is-reverse .split__media { order: 2; }
}
.split__media { position: relative; }
.split__text h2 { font-size: clamp(1.85rem, 3vw, 2.5rem); margin-bottom: 1.25rem; line-height: 1.15; }
.split__text .lede { color: var(--color-muted); font-size: 1.0625rem; max-width: 52ch; margin-bottom: 1rem; }
.split__text .lede + .lede { margin-top: -.25rem; }

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.photo-frame:hover img { transform: scale(1.035); }
@media (prefers-reduced-motion: reduce) { .photo-frame:hover img { transform: none; } }
.photo-frame__placeholder {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .6rem;
  padding: 1.5rem;
  color: var(--color-muted);
}
.photo-frame__placeholder svg { opacity: .5; }
.photo-frame__placeholder span { font-weight: 700; font-size: .9375rem; color: var(--color-text); }
.photo-frame__placeholder small { font-size: .8125rem; line-height: 1.5; max-width: 28ch; }
.photo-frame.is-empty img { display: none; }
.photo-frame.is-empty .photo-frame__placeholder { display: flex; }

.photo-frame__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.25rem .9rem;
  background: linear-gradient(0deg, rgba(20,17,13,.65) 0%, transparent 100%);
  color: #fff;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  pointer-events: none;
}
.photo-frame.is-empty .photo-frame__caption { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Acomodações ---------- */
.rooms-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 900px) { .rooms-editorial { grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr); gap: 3rem; align-items: stretch; } }
.rooms-editorial .photo-frame { aspect-ratio: 4/5; }
@media (min-width: 900px) { .rooms-editorial .photo-frame { aspect-ratio: auto; height: 100%; min-height: 480px; } }

.category-list { display: flex; flex-direction: column; border-top: 1px solid var(--color-border); }
.category-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.4rem .25rem;
  border-bottom: 1px solid var(--color-border);
  transition: background-color 200ms var(--ease), padding-left 200ms var(--ease);
}
.category-card:hover { background: var(--color-surface); padding-left: .85rem; }
.category-card__index {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.375rem;
  color: var(--color-accent);
  opacity: .6;
  line-height: 1.3;
  flex-shrink: 0;
  min-width: 1.6rem;
}
.category-card__body { flex: 1; min-width: 0; }
.category-card__top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: .3rem 1rem; margin-bottom: .5rem; }
.category-card__name { font-family: var(--font-serif); font-size: 1.375rem; }
.category-card__price { font-weight: 700; color: var(--color-accent-dark); white-space: nowrap; }
.category-card__desc { color: var(--color-muted); font-size: .9375rem; margin-bottom: .75rem; }
.category-card__meta { display: flex; flex-wrap: wrap; gap: .4rem .9rem; font-size: .8125rem; color: var(--color-muted); }
.category-card__meta span { display: inline-flex; align-items: center; gap: .35rem; }

/* ---------- Conforto ---------- */
.feature-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.feature-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,17,13,.72) 0%, rgba(20,17,13,.1) 55%, transparent 100%); }
.feature-banner__content { position: relative; padding: 3rem; max-width: 34rem; }
.feature-banner__content h2 { font-family: var(--font-serif); font-size: clamp(1.75rem, 3.2vw, 2.5rem); margin-bottom: .9rem; color: #fff; }
.feature-banner__content p { color: rgba(255,255,255,.86); font-size: 1.0625rem; }
@media (max-width: 640px) { .feature-banner__content { padding: 2rem 1.5rem; } }

/* ---------- Café da manhã ---------- */
.breakfast {
  background: linear-gradient(180deg, #FBF3E8 0%, var(--color-bg) 100%);
}

/* ---------- Localização ---------- */
.location__wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 900px) { .location__wrap { grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 3rem; align-items: stretch; } }
.location__info { display: flex; flex-direction: column; justify-content: center; gap: 1.25rem; }
.location__address { font-size: 1.0625rem; color: var(--color-muted); line-height: 1.7; }
.location__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  min-height: 340px;
  background: var(--color-surface-2);
}
.location__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; filter: grayscale(.15) contrast(1.02); }

/* ---------- CTA final ---------- */
.final-cta {
  background: var(--color-ink);
  color: #fff;
  text-align: center;
}
.final-cta h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.85rem); margin-bottom: 1rem; color: #fff; }
.final-cta p { color: rgba(255,255,255,.78); font-size: 1.0625rem; max-width: 46ch; margin: 0 auto 2rem; }
.final-cta .btn-primary { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.final-cta .btn-primary:hover { background: #4A7328; }

/* ---------- Footer ---------- */
.site-footer { padding: 3.5rem 0 2.25rem; border-top: 1px solid var(--color-border); }
.site-footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.5rem; margin-bottom: 2.5rem; }
.site-footer__brand .brand { font-size: 1.375rem; margin-bottom: .6rem; }
.site-footer__brand p { color: var(--color-muted); font-size: .9375rem; }
.site-footer nav { display: flex; flex-direction: column; gap: .75rem; }
.site-footer nav a { color: var(--color-muted); font-size: .9375rem; }
.site-footer nav a:hover { color: var(--color-ink); }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.75rem; border-top: 1px solid var(--color-border); font-size: .8125rem; color: var(--color-muted); }

@media (max-width: 560px) {
  .site-footer__top { flex-direction: column; gap: 2rem; }
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: .75rem 1.25rem calc(.75rem + env(safe-area-inset-bottom));
  background: rgba(250,247,241,.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  transform: translateY(100%);
  transition: transform 250ms var(--ease);
}
.mobile-cta.is-visible { transform: translateY(0); }
@media (min-width: 900px) { .mobile-cta { display: none; } }

/* ---------- Modal (confirmation) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,17,13,.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.modal-overlay.is-open { display: flex; }
.modal {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  max-width: 32rem;
  width: 100%;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: scale(.95);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}
@media (max-width: 420px) {
  .modal { padding: 2rem 1.35rem; }
  .modal h3 { font-size: 1.375rem; }
}
.modal__dismiss {
  position: absolute;
  top: .9rem;
  right: .9rem;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  transition: background-color 150ms var(--ease), color 150ms var(--ease);
}
.modal__dismiss:hover { background: var(--color-surface-2); color: var(--color-ink); }
.modal-overlay.is-open .modal { opacity: 1; transform: scale(1); }
.modal__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-success-bg);
  color: var(--color-success);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.modal h3 { font-family: var(--font-serif); font-size: 1.625rem; margin-bottom: .75rem; }
.modal p { color: var(--color-muted); margin-bottom: .35rem; }
.modal__code {
  display: inline-block;
  margin: 1.25rem 0;
  padding: .75rem 1.5rem;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-serif);
  font-size: 1.375rem;
  letter-spacing: .04em;
  color: var(--color-ink);
}
.modal__meta { font-size: .9375rem; color: var(--color-muted); margin-bottom: .25rem; }
.modal .btn { margin-top: 1.5rem; }

@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- CARROSSEL DE IMAGENS ---------- */
.carousel-section {
  padding: 3rem 0;
  background: var(--color-surface);
}

.carousel-section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 2.5rem;
}

.carousel-container {
  position: relative;
}

.carousel-wrapper {
  position: relative;
}

.carousel {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel__track {
  display: flex;
  gap: 1rem;
  transition: transform 400ms var(--ease);
}

.carousel__slide {
  flex-shrink: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface-2);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease);
}

.carousel__slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .9);
  border: none;
  border-radius: 50%;
  color: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 200ms var(--ease), transform 200ms var(--ease);
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.carousel__button svg {
  width: 24px;
  height: 24px;
}

.carousel__button:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-50%) scale(1.05);
}

.carousel__button--prev {
  left: 1rem;
}

.carousel__button--next {
  right: 1rem;
}

@media (max-width: 640px) {
  .carousel__button {
    width: 38px;
    height: 38px;
  }
  .carousel__button svg {
    width: 20px;
    height: 20px;
  }
  .carousel__button--prev {
    left: .5rem;
  }
  .carousel__button--next {
    right: .5rem;
  }
}

.carousel-indicators {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  transition: all 300ms var(--ease);
  padding: 0;
}

.carousel-indicator.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  width: 32px;
  border-radius: 4px;
}

.carousel-indicator:hover {
  border-color: var(--color-accent);
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms var(--ease);
  pointer-events: none;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 20, .92);
  backdrop-filter: blur(4px);
}

.lightbox__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 90vh;
  width: 100%;
  height: 100%;
}

.lightbox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: var(--radius-lg);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms var(--ease);
  z-index: 10;
}

.lightbox__close svg {
  width: 24px;
  height: 24px;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .4);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 200ms var(--ease);
  z-index: 10;
}

.lightbox__nav svg {
  width: 28px;
  height: 28px;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .4);
}

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

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

.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, .6);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  backdrop-filter: blur(4px);
}

@media (max-width: 640px) {
  .lightbox__close {
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
  }
  .lightbox__close svg {
    width: 20px;
    height: 20px;
  }
  .lightbox__nav {
    width: 42px;
    height: 42px;
  }
  .lightbox__nav svg {
    width: 24px;
    height: 24px;
  }
  .lightbox__nav--prev {
    left: 1rem;
  }
  .lightbox__nav--next {
    right: 1rem;
  }
  .lightbox__counter {
    bottom: 1rem;
    padding: .4rem .8rem;
    font-size: .8125rem;
  }
}

/* ---------- GALERIA ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
