/* ============================================================
   HOTEL BEGE OURO — IDENTIDADE VISUAL v2
   Paleta: marrom + dourado + creme + preto sofisticado
   ============================================================ */

:root {
  /* Creme & bege */
  --creme: #FAF6EE;
  --creme-medio: #F1EADD;
  --bege: #E8DDC8;
  --bege-escuro: #C9B89A;

  /* Dourado */
  --dourado-claro: #DBC082;
  --dourado: #C9A961;
  --dourado-escuro: #A8842E;
  --dourado-deep: #8A6A1F;

  /* Marrom */
  --marrom-claro: #8B6F4E;
  --marrom: #5C3D2E;
  --marrom-escuro: #3E2A20;

  /* Preto sofisticado */
  --escuro: #1A130D;
  --escuro-suave: #2C2018;
  --grafite: #3D3026;

  /* Neutros */
  --branco: #FFFFFF;
  --offwhite: #FBF8F2;
  --cinza-texto: #6B5C4A;
  --cinza-borda: #E5DFD0;

  --sombra: 0 12px 40px rgba(60, 40, 25, 0.08);
  --sombra-forte: 0 24px 70px rgba(60, 40, 25, 0.18);
  --transicao: all .35s cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--escuro-suave);
  background: var(--offwhite);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
/* Efeito de ruído/textura luxuosa no fundo */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  color: var(--escuro);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); line-height: 1.2; }
h3 { font-size: 1.4rem; }
a { color: inherit; text-decoration: none; transition: var(--transicao); }
img { 
  max-width: 100%; 
  display: block; 
  /* Filtro editorial: leve aquecimento e dessaturação */
  filter: sepia(0.15) contrast(1.05) saturate(0.9);
  transition: var(--transicao);
}
img:hover { filter: sepia(0) contrast(1) saturate(1); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  background: transparent;
  transition: var(--transicao);
}
.navbar.scrolled {
  background: rgba(251, 248, 242, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 14px 0;
}
.navbar.solid {
  background: var(--offwhite);
  box-shadow: 0 1px 0 var(--cinza-borda);
}
/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dourado) 0%, var(--dourado-claro) 100%);
  width: 0%;
  z-index: 1000;
  transition: width 0.1s ease-out;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--escuro);
  display: flex; align-items: center; gap: 12px;
}
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-escuro) 100%);
  color: var(--escuro);
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(168, 132, 46, 0.35);
}
.logo span { color: var(--dourado-escuro); font-style: italic; }

.navbar.scrolled .logo, .navbar.solid .logo { color: var(--escuro); }
/* Quando hero (transparente), logo branco */
.navbar:not(.scrolled):not(.solid) .logo { color: var(--creme); }
.navbar:not(.scrolled):not(.solid) .logo span { color: var(--dourado-claro); }

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--escuro-suave);
  position: relative;
  padding: 6px 0;
}
.navbar:not(.scrolled):not(.solid) .nav-links a {
  color: rgba(250, 246, 238, 0.92);
}
.nav-links a:hover { color: var(--dourado-escuro); }
.navbar:not(.scrolled):not(.solid) .nav-links a:hover { color: var(--dourado-claro); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px;
  background: var(--dourado);
}
.nav-cta {
  background: var(--dourado);
  color: var(--escuro) !important;
  padding: 13px 32px !important;
  border-radius: 0;
  font-size: 0.85rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  font-weight: 600 !important;
  box-shadow: 0 6px 22px rgba(201, 169, 97, 0.35);
}
.nav-cta:hover {
  background: var(--escuro) !important;
  color: var(--dourado) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}
.navbar:not(.scrolled):not(.solid) .nav-cta { background: var(--dourado); color: var(--escuro) !important; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: inherit; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--creme);
  overflow: hidden;
  background: var(--escuro);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(26,19,13,0.92) 0%, rgba(60,40,25,0.55) 60%, rgba(26,19,13,0.45) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 70px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--dourado-claro);
  margin-bottom: 28px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 28px; height: 1px; background: var(--dourado);
}
.hero h1 {
  color: var(--creme);
  font-weight: 400;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1s cubic-bezier(0.2, 0, 0.2, 1) forwards 0.3s;
}
.hero h1 em {
  font-style: italic;
  color: var(--dourado-claro);
  display: block;
}
.hero p {
  font-size: 1.2rem;
  color: rgba(250, 246, 238, 0.85);
  max-width: 560px;
  margin-bottom: 42px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1s cubic-bezier(0.2, 0, 0.2, 1) forwards 0.6s;
}
@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-meta {
  position: absolute;
  bottom: 50px;
  right: 28px;
  z-index: 3;
  display: flex; gap: 30px;
  background: rgba(26, 19, 13, 0.65);
  backdrop-filter: blur(10px);
  padding: 22px 32px;
  border-left: 3px solid var(--dourado);
}
.hero-meta div { color: var(--creme); }
.hero-meta .num { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--dourado-claro); display: block; line-height: 1; }
.hero-meta .lbl { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(250, 246, 238, 0.7); margin-top: 6px; display: block; }

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 38px;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transicao);
  font-family: inherit;
  background: none;
}
.btn-primary {
  background: var(--dourado);
  color: var(--escuro);
  border-color: var(--dourado);
  box-shadow: 0 8px 26px rgba(201, 169, 97, 0.35);
}
.btn-primary:hover {
  background: var(--dourado-deep);
  border-color: var(--dourado-deep);
  color: var(--creme);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(168, 132, 46, 0.5);
}
.btn-outline {
  border-color: var(--creme);
  color: var(--creme);
}
.btn-outline:hover { background: var(--creme); color: var(--escuro); border-color: var(--creme); }
.btn-dark {
  background: var(--escuro);
  color: var(--creme);
  border-color: var(--escuro);
}
.btn-dark:hover { background: var(--marrom); border-color: var(--marrom); color: var(--dourado-claro); }
.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-sm { padding: 11px 22px; font-size: 0.78rem; }

/* ===== SEÇÕES ===== */
.section { padding: 120px 0; }
.section-tight { padding: 80px 0; }
.section.creme { background: var(--creme); }
.section.dark { background: var(--escuro); color: var(--creme); }

.section-head { text-align: center; margin-bottom: 80px; max-width: 780px; margin-left: auto; margin-right: auto; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--dourado-escuro);
  margin-bottom: 22px;
  position: relative;
  padding: 0 30px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  position: absolute; top: 50%;
  width: 22px; height: 1px;
  background: var(--dourado);
}
.section-eyebrow::before { left: 0; }
.section-eyebrow::after { right: 0; }

.section-head h2 { margin-bottom: 22px; }
.section-head p { color: var(--cinza-texto); font-size: 1.08rem; line-height: 1.7; }
.section.dark h2, .section.dark .section-eyebrow { color: var(--creme); }
.section.dark .section-head p { color: rgba(250, 246, 238, 0.8); }
.section.dark .section-eyebrow { color: var(--dourado-claro); }
.section.dark .section-eyebrow::before, .section.dark .section-eyebrow::after { background: var(--dourado-claro); }

/* ===== SCROLL REVEAL EFFECTS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Parallax suave no Hero */
.hero-bg {
  will-change: transform;
  transform: scale(1.05);
  transition: transform 0.5s ease-out;
}

/* ===== INTRO / SOBRE BREVE ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.intro-photo {
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: var(--sombra-forte);
}
.intro-photo::after {
  content: '';
  position: absolute;
  bottom: -22px; right: -22px;
  width: 60%; height: 60%;
  border: 2px solid var(--dourado);
  z-index: -1;
}
.intro-text .section-eyebrow { padding: 0; }
.intro-text .section-eyebrow::before, .intro-text .section-eyebrow::after { display: none; }
.intro-text h2 { margin-bottom: 26px; }
.intro-text p { color: var(--cinza-texto); margin-bottom: 18px; font-size: 1.05rem; line-height: 1.8; }

/* ===== DIFERENCIAIS ===== */
.dif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.dif-card {
  background: var(--branco);
  padding: 48px 30px;
  text-align: center;
  border: 1px solid var(--cinza-borda);
  transition: var(--transicao);
  position: relative;
}
.dif-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra);
  border-color: var(--dourado);
}
.dif-icon {
  width: 70px; height: 70px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--bege), var(--creme));
  border: 1px solid var(--dourado);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dourado-deep);
  font-size: 1.8rem;
}
.dif-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.dif-card p { font-size: 0.95rem; color: var(--cinza-texto); line-height: 1.7; }

/* ===== ROOM CARDS ===== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.room-card {
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  overflow: hidden;
  transition: var(--transicao);
  display: flex; flex-direction: column;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sombra);
  border-color: var(--dourado);
}
.room-photo {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* Inline Carousel inside Room Photo */
.inline-carousel { padding: 0; margin: 0; }
.inline-track { width: 100%; height: 100%; position: absolute; inset: 0; }
.inline-slide { width: 100%; height: 100%; background-size: cover; background-position: center; position: absolute; inset: 0; transition: opacity 0.3s; }
.inline-prev, .inline-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
}
.room-photo:hover .inline-prev, .room-photo:hover .inline-next { opacity: 1; }
.inline-prev:hover, .inline-next:hover { background: var(--dourado); color: var(--escuro); }
.inline-prev { left: 12px; }
.inline-next { right: 12px; }

.room-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,0) 60%, rgba(26,19,13,0.4));
  pointer-events: none;
}
.room-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: rgba(26, 19, 13, 0.85);
  backdrop-filter: blur(6px);
  color: var(--dourado-claro);
  padding: 8px 16px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 10;
}
.room-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.room-body h3 { margin-bottom: 8px; font-size: 1.3rem; }
.room-meta {
  display: flex; gap: 18px;
  font-size: 0.85rem;
  color: var(--cinza-texto);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.room-desc { color: var(--cinza-texto); font-size: 0.95rem; margin-bottom: 22px; flex: 1; line-height: 1.7; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.amenity {
  font-size: 0.72rem;
  padding: 5px 11px;
  background: var(--creme);
  color: var(--marrom);
  letter-spacing: 0.04em;
  border: 1px solid var(--bege);
  font-weight: 500;
}
.room-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--cinza-borda);
}
.price {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--marrom);
  font-weight: 500;
}
.price small { font-size: 0.78rem; color: var(--cinza-texto); font-family: 'Inter', sans-serif; font-weight: 400; }

/* ===== TESTIMONIALS ===== */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.test-card {
  background: var(--branco);
  padding: 38px 32px;
  border: 1px solid var(--cinza-borda);
  position: relative;
}
.test-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--marrom-escuro);
  margin: 18px 0 26px;
  line-height: 1.7;
}
.test-stars {
  display: flex; gap: 4px;
  color: var(--dourado);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
}
.test-author { display: flex; gap: 14px; align-items: center; padding-top: 22px; border-top: 1px solid var(--cinza-borda); }
.test-avatar {
  width: 48px; height: 48px;
  background: var(--bege);
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}
.test-name { font-weight: 600; color: var(--escuro); font-size: 0.95rem; }
.test-loc { font-size: 0.78rem; color: var(--cinza-texto); letter-spacing: 0.04em; margin-top: 2px; }

/* ===== STATS ===== */
.stats-strip {
  background: linear-gradient(135deg, var(--escuro) 0%, var(--marrom-escuro) 100%);
  color: var(--creme);
  padding: 80px 0;
}
.stats-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-strip .num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: var(--dourado-claro);
  display: block;
  line-height: 1;
}
.stats-strip .lbl {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.75);
  display: block;
  margin-top: 12px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.gallery-item {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transicao);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,0) 50%, rgba(26,19,13,0.75));
  opacity: 0;
  transition: var(--transicao);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .label {
  position: absolute;
  bottom: 18px; left: 22px;
  color: var(--creme);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transicao);
}
.gallery-item:hover .label { opacity: 1; transform: translateY(0); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background:
    linear-gradient(rgba(26,19,13,0.85), rgba(60,40,25,0.85)),
    url('https://images.unsplash.com/photo-1551776235-dde6d4829808?ixlib=rb-4.0.3&auto=format&fit=crop&w=1800&q=80') center/cover;
  color: var(--creme);
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.cta-banner h2 { color: var(--creme); margin-bottom: 20px; }
.cta-banner h2 em { color: var(--dourado-claro); font-style: italic; }
.cta-banner p { color: rgba(250, 246, 238, 0.85); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; font-size: 1.1rem; }

/* ===== CONTATO ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
.contact-info { padding: 50px; background: var(--creme); border: 1px solid var(--bege); }
.contact-info h3 { margin-bottom: 28px; }
.contact-row {
  display: flex; gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--bege);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row .ico {
  width: 42px; height: 42px;
  background: var(--branco);
  border: 1px solid var(--dourado);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dourado-deep);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-row strong { display: block; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cinza-texto); margin-bottom: 4px; font-weight: 600; }
.contact-row a, .contact-row span.value { color: var(--escuro); font-size: 1rem; }
.contact-row a:hover { color: var(--dourado-deep); }

.contact-map {
  aspect-ratio: 1;
  background: var(--bege);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ===== FORMS ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-row.full { grid-column: 1 / -1; }
label.field {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cinza-texto);
  margin-bottom: 8px;
  font-weight: 600;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="date"], input[type="number"], input[type="password"], select, textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--cinza-borda);
  background: var(--branco);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--escuro);
  transition: var(--transicao);
}
input:focus, select:focus, textarea:focus {
  outline: 0;
  border-color: var(--dourado);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.18);
}
input.invalid, select.invalid, textarea.invalid { border-color: #B83A3A; box-shadow: 0 0 0 3px rgba(184, 58, 58, 0.1); }
.field-error { color: #B83A3A; font-size: 0.78rem; margin-top: -10px; margin-bottom: 14px; display: none; }
.field-error.show { display: block; }
textarea { resize: vertical; min-height: 100px; }

/* ===== RESERVA / BOOKING ===== */
.book-shell {
  padding-top: 130px;
  padding-bottom: 80px;
  background: var(--creme);
  min-height: 100vh;
}
.book-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.book-card {
  background: var(--branco);
  box-shadow: var(--sombra);
}
.book-head { padding: 36px 44px; border-bottom: 1px solid var(--cinza-borda); }
.book-head h2 { margin-bottom: 6px; font-size: 1.8rem; }
.book-head p { color: var(--cinza-texto); }
.steps { display: flex; border-bottom: 1px solid var(--cinza-borda); }
.step {
  flex: 1;
  padding: 20px 12px;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cinza-texto);
  position: relative;
  font-weight: 600;
}
.step.active { color: var(--escuro); }
.step.done { color: var(--dourado-deep); }
.step.active::after, .step.done::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--dourado);
}
.step .num { display: block; font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--dourado-escuro); margin-bottom: 4px; }
.book-body { padding: 44px; }
.book-foot {
  padding: 26px 44px;
  border-top: 1px solid var(--cinza-borda);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--offwhite);
}

.room-pick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.pick-card {
  border: 2px solid var(--cinza-borda);
  background: var(--branco);
  cursor: pointer;
  transition: var(--transicao);
  overflow: hidden;
}
.pick-card:hover { border-color: var(--dourado-claro); transform: translateY(-3px); box-shadow: var(--sombra); }
.pick-card.selected { border-color: var(--dourado); box-shadow: 0 0 0 4px rgba(201,169,97,0.4); background: rgba(201,169,97,0.05); transform: translateY(-4px); }
.pick-card.selected::after { content: '✓ Selecionado'; position: absolute; top: 12px; right: 12px; background: var(--dourado); color: var(--branco); font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; z-index: 5; }
.pick-card .pick-photo {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.pick-card .pick-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(0,0,0,0) 50%, rgba(26,19,13,0.5));
}
.pick-card .pick-body { padding: 18px 22px 22px; }
.pick-card h4 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 4px; }
.pick-card .pick-info { display: flex; justify-content: space-between; align-items: end; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--cinza-borda); }
.pick-card .pick-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--marrom); }

.payment-options { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pay-opt {
  padding: 22px 14px;
  border: 2px solid var(--cinza-borda);
  text-align: center;
  cursor: pointer;
  transition: var(--transicao);
  background: var(--branco);
}
.pay-opt:hover { border-color: var(--dourado-claro); }
.pay-opt.selected { border-color: var(--dourado); background: var(--creme); }
.pay-opt .ico { font-size: 1.7rem; margin-bottom: 6px; }
.pay-opt span { display: block; font-size: 0.88rem; letter-spacing: 0.04em; font-weight: 600; }

/* Resumo lateral */
.book-summary {
  background: var(--branco);
  position: sticky;
  top: 100px;
  align-self: start;
  box-shadow: var(--sombra);
}
.book-summary-photo {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-image: url('https://images.unsplash.com/photo-1611892440504-42a792e24d32?ixlib=rb-4.0.3&auto=format&fit=crop&w=900&q=80');
}
.book-summary-body { padding: 28px 30px; }
.book-summary h3 { margin-bottom: 4px; font-size: 1.3rem; }
.book-summary .stay { color: var(--cinza-texto); font-size: 0.85rem; margin-bottom: 22px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 0.92rem; border-bottom: 1px solid var(--cinza-borda); }
.summary-row:last-of-type { border-bottom: 0; }
.summary-row.total {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  padding-top: 18px; margin-top: 12px;
  border-top: 1px solid var(--bege-escuro);
  border-bottom: 0;
  color: var(--dourado-deep);
  font-weight: 500;
}
.policies {
  background: var(--creme);
  padding: 22px 26px;
  margin-top: 22px;
  border-left: 3px solid var(--dourado);
}
.policies h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--marrom);
  margin-bottom: 14px;
  font-weight: 600;
}
.policies ul { list-style: none; }
.policies li { font-size: 0.85rem; color: var(--cinza-texto); padding: 5px 0; padding-left: 22px; position: relative; line-height: 1.6; }
.policies li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--dourado-deep);
  font-weight: 700;
}

.confirm-icon {
  width: 96px; height: 96px;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-deep));
  color: var(--branco);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
  margin: 0 auto 28px;
  box-shadow: 0 14px 40px rgba(168, 132, 46, 0.45);
}
.confirm-block { text-align: center; max-width: 540px; margin: 0 auto; }
.code-box {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: 0.22em;
  background: var(--escuro);
  color: var(--dourado-claro);
  padding: 16px 36px;
  margin: 22px 0;
}

/* ===== FLOATING WHATSAPP PREMIUM ===== */
.float-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 64px;
  height: 64px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: waEntrance 0.8s ease-out backwards, waPulse 2s infinite;
}

.float-wa:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: #128C7E;
  box-shadow: 0 15px 35px rgba(18, 140, 126, 0.5), 0 6px 15px rgba(0, 0, 0, 0.15);
  animation-play-state: paused;
}

.float-wa svg {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.wa-tooltip {
  position: absolute;
  right: 80px;
  background: var(--escuro);
  color: var(--dourado-claro);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(15px);
  transition: all 0.3s ease;
  box-shadow: var(--sombra);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--escuro);
}

.float-wa:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@keyframes waEntrance {
  0% { transform: scale(0) rotate(-45deg); opacity: 0; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0 10px 25px rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 10px 25px rgba(37, 211, 102, 0.4); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 25px rgba(37, 211, 102, 0.4); }
}

/* Ajustes mobile para o botão */
@media (max-width: 560px) {
  .float-wa {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }
  .float-wa svg { width: 28px; height: 28px; }
  .wa-tooltip { display: none; } /* Oculta tooltip no mobile por falta de hover */
}

/* ===== FOOTER ===== */
.footer {
  background: var(--escuro);
  color: rgba(250, 246, 238, 0.75);
  padding: 90px 0 30px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--dourado) 50%, transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer h4 {
  color: var(--dourado-claro);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.footer .logo { color: var(--creme); margin-bottom: 18px; display: inline-flex; }
.footer p, .footer a { font-size: 0.92rem; line-height: 1.9; color: rgba(250, 246, 238, 0.7); }
.footer a:hover { color: var(--dourado-claro); }
.footer ul { list-style: none; }

.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--dourado-claro) !important;
  transition: var(--transicao);
}
.footer-social a:hover { background: var(--dourado); color: var(--escuro) !important; border-color: var(--dourado); transform: translateY(-2px); }

.footer-wa-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff !important;
  padding: 12px 22px !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.08em !important;
  font-weight: 600;
  margin-top: 14px;
  transition: var(--transicao);
}
.footer-wa-btn:hover { background: #128C7E; transform: translateY(-2px); }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(201, 169, 97, 0.15);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(250, 246, 238, 0.45);
  letter-spacing: 0.04em;
}
.footer-bottom a { color: var(--dourado-claro); }

/* ===== RESPONSIVO ===== */
@media (max-width: 980px) {
  .nav-toggle { display: block; color: var(--escuro); }
  .navbar:not(.scrolled):not(.solid) .nav-toggle { color: var(--creme); }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 82%; max-width: 340px;
    height: 100vh;
    background: var(--creme);
    flex-direction: column;
    padding: 100px 36px;
    gap: 22px;
    transition: var(--transicao);
    box-shadow: var(--sombra-forte);
    align-items: flex-start;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--escuro) !important; font-size: 1.05rem; }
  .nav-cta { padding: 14px 28px !important; }
  .intro-grid, .contact-grid, .form-grid, .room-pick, .payment-options, .book-layout { grid-template-columns: 1fr; gap: 40px; }
  .book-summary { position: static; }
  .dif-grid, .test-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-item.wide { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .book-body, .book-head, .book-foot { padding: 28px; }
  .steps .step { font-size: 0.66rem; padding: 14px 6px; }
  .step .num { font-size: 0.85rem; }
  .section { padding: 80px 0; }
  .payment-options { grid-template-columns: repeat(2, 1fr); }
  .hero-meta { display: none; }
}
@media (max-width: 560px) {
  .footer-grid, .test-grid, .dif-grid, .stats-strip-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .float-wa { width: 54px; height: 54px; bottom: 18px; right: 18px; font-size: 1.5rem; }
  .float-wa::after { display: none; }
}

/* ===== GALLERY MODAL ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 24px;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1);
}
.modal.open .modal-content {
  transform: scale(1);
}
.modal-content img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  background: #111;
}
.modal-close {
  position: fixed;
  top: 24px;
  right: 32px;
  font-size: 36px;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
  transition: var(--transicao);
}
.modal-close:hover { color: var(--dourado); transform: rotate(90deg); }

.contador-fotos {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.65);
  color: var(--dourado-claro);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10000;
  letter-spacing: 0.1em;
}

.seta-galeria {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  color: white;
  border: none;
  font-size: 42px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transicao);
}
.seta-galeria:hover {
  background: var(--dourado);
  color: var(--escuro);
  transform: translateY(-50%) scale(1.1);
}
.seta-esquerda { left: 32px; }
.seta-direita { right: 32px; }

@media (max-width: 768px) {
  .modal { padding: 12px; }
  .modal-content img { max-width: 96vw; max-height: 80vh; }
  .modal-close { top: 12px; right: 18px; font-size: 32px; }
}
/* ===== VIEW TRANSITIONS ===== */
::view-transition-group(*),
::view-transition-old(*),
::view-transition-new(*) {
  animation-duration: 0.25s;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
