/*
Theme Name: Vila Natureza — Estilo Zaya
Theme URI: https://vilanatureza.com.br
Author: Vila Natureza Pousada
Description: Tema elegante inspirado na Pousada Zaya. Tons claros, tipografia refinada, layout de pousada boutique.
Version: 2.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: vila-natureza
*/

/* ════════════════════════════════════════════
   VARIÁVEIS — PALETA CLARA ESTILO ZAYA
   ════════════════════════════════════════════ */
:root {
  /* Cores principais */
  --branco:        #FFFFFF;
  --off-white:     #FAFAF8;
  --creme:         #F5F0E8;
  --bege:          #EDE4D3;
  --bege-escuro:   #D9CCBA;

  /* Tons de texto */
  --texto:         #1A1410;
  --texto-medio:   #4A3E33;
  --texto-suave:   #8A7B6A;
  --texto-claro:   #B5A898;

  /* Acento */
  --marrom:        #6B4C35;
  --marrom-escuro: #4A3020;
  --marrom-claro:  #C4A882;
  --verde:         #4E5E40;

  /* UI */
  --borda:         #E8E0D4;
  --sombra:        0 2px 20px rgba(50, 35, 20, 0.08);
  --sombra-hover:  0 8px 40px rgba(50, 35, 20, 0.15);
  --raio:          2px;
  --transicao:     all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Tipografia */
  --fonte-titulo:  'Playfair Display', Georgia, serif;
  --fonte-corpo:   'Lato', 'Gill Sans', sans-serif;
}

/* ════════════════════════════════════════════
   RESET & BASE
   ════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--fonte-corpo);
  color: var(--texto);
  background: var(--branco);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transicao); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ════════════════════════════════════════════
   TIPOGRAFIA
   ════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--fonte-titulo);
  font-weight: 400;
  line-height: 1.15;
  color: var(--texto);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }

.kicker {
  font-family: var(--fonte-corpo);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--marrom);
  display: block;
  margin-bottom: 1rem;
}

/* ════════════════════════════════════════════
   LAYOUT
   ════════════════════════════════════════════ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 7rem 0; }
.section-creme { background: var(--creme); }
.section-bege  { background: var(--bege); }
.section-dark  { background: var(--marrom-escuro); }

/* ════════════════════════════════════════════
   BOTÕES
   ════════════════════════════════════════════ */
.btn {
  display: inline-block;
  font-family: var(--fonte-corpo);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.9rem 2.8rem;
  border: 1px solid transparent;
  transition: var(--transicao);
  cursor: pointer;
}
.btn-dark {
  background: var(--marrom-escuro);
  color: var(--branco);
  border-color: var(--marrom-escuro);
}
.btn-dark:hover {
  background: var(--marrom);
  border-color: var(--marrom);
  transform: translateY(-1px);
  box-shadow: var(--sombra-hover);
}
.btn-outline {
  background: transparent;
  color: var(--branco);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--branco);
}
.btn-light {
  background: var(--branco);
  color: var(--marrom-escuro);
  border-color: var(--branco);
}
.btn-light:hover {
  background: var(--creme);
  transform: translateY(-1px);
}

/* ════════════════════════════════════════════
   HEADER — ESTILO ZAYA
   ════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transicao);
}

/* Header transparente sobre o hero */
#site-header.hero-mode {
  background: transparent;
  padding: 1.5rem 0;
}

/* Header sólido ao rolar */
#site-header.scrolled {
  background: var(--branco);
  padding: 1rem 0;
  border-bottom: 1px solid var(--borda);
  box-shadow: var(--sombra);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo img {
  height: 56px;
  width: auto;
  transition: var(--transicao);
}

/* Logo: mostra branca no hero, colorida ao rolar */
.logo-branca { display: block; }
.logo-colorida { display: none; }
#site-header.scrolled .logo-branca { display: block; }
#site-header.scrolled .logo-colorida { display: none; }

/* Nav links */
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.site-nav a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding-bottom: 3px;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: rgba(255,255,255,0.8);
  transition: width 0.3s ease;
}
.site-nav a:hover::after { width: 100%; }

#site-header.scrolled .site-nav a {
  color: var(--texto-medio);
}
#site-header.scrolled .site-nav ul li:last-child a {
  color: var(--branco) !important;
}
#site-header.scrolled .site-nav a::after {
  background: var(--marrom);
}

.nav-reservar {
  background: var(--marrom-escuro) !important;
  color: var(--branco) !important;
  padding: 0.75rem 2rem !important;
  font-size: 0.63rem !important;
  letter-spacing: 0.22em !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 38px !important;
}
.nav-reservar:hover {
  background: var(--marrom) !important;
}
.nav-reservar::after { display: none !important; }

#site-header.scrolled .nav-reservar {
  color: var(--branco) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--branco);
  transition: var(--transicao);
}
#site-header.scrolled .hamburger span { background: var(--texto); }

/* ════════════════════════════════════════════
   HERO — SLIDER FULLSCREEN (ESTILO ZAYA)
   ════════════════════════════════════════════ */
#hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }

/* Overlay suave — bem mais claro que antes */
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 10, 5, 0.18) 0%,
    rgba(15, 10, 5, 0.35) 50%,
    rgba(15, 10, 5, 0.55) 100%
  );
}

/* Placeholders de cor para slides sem foto */
.hero-slide:nth-child(1) { background-color: #8B7355; }
.hero-slide:nth-child(2) { background-color: #6B7A5A; }
.hero-slide:nth-child(3) { background-color: #7A6248; }
.hero-slide:nth-child(4) { background-color: #556048; }
.hero-slide:nth-child(5) { background-color: #8A7060; }

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  animation: heroFadeUp 1.4s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content .kicker {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.2rem;
}

.hero-content h1 {
  color: var(--branco);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  letter-spacing: 0.08em;
  max-width: 440px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Dots do slider */
.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: var(--transicao);
}
.hero-dot.active {
  background: var(--branco);
  width: 20px;
  border-radius: 3px;
}

/* ════════════════════════════════════════════
   BARRA DE RESERVA — ESTILO ZAYA (logo abaixo do hero)
   ════════════════════════════════════════════ */
#reserva-bar {
  background: var(--branco);
  border-bottom: 1px solid var(--borda);
  box-shadow: var(--sombra);
  position: relative;
  z-index: 10;
}

.reserva-bar-inner {
  display: flex;
  align-items: stretch;
}

.rb-campo {
  flex: 1;
  padding: 1.4rem 2rem;
  border-right: 1px solid var(--borda);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.rb-campo label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--texto-suave);
}

.rb-campo input,
.rb-campo select {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--fonte-corpo);
  font-size: 0.92rem;
  color: var(--texto);
  cursor: pointer;
  width: 100%;
}
.rb-campo input::placeholder { color: var(--texto-claro); }
.rb-campo select option { background: white; }

.rb-hospedes {
  display: flex;
  gap: 2rem;
}
.rb-grupo label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--texto-suave);
  display: block;
  margin-bottom: 0.25rem;
}
.rb-contador {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--texto);
}
.rb-contador button {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--borda-escuro, var(--borda));
  background: transparent;
  color: var(--texto-medio);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transicao);
}
.rb-contador button:hover {
  background: var(--marrom-escuro);
  color: white;
  border-color: var(--marrom-escuro);
}

.rb-btn {
  background: var(--marrom-escuro);
  color: var(--branco);
  border: none;
  padding: 0 3rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transicao);
  white-space: nowrap;
}
.rb-btn:hover {
  background: var(--marrom);
}

/* ════════════════════════════════════════════
   SEÇÃO — A POUSADA (SOBRE)
   ════════════════════════════════════════════ */
.sobre-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-fotos {
  position: relative;
  height: 600px;
}

.sobre-foto-1 {
  position: absolute;
  top: 0; left: 0;
  width: 78%; height: 82%;
  object-fit: cover;
}

.sobre-foto-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 54%; height: 50%;
  object-fit: cover;
  border: 8px solid var(--branco);
  box-shadow: var(--sombra-hover);
}

.sobre-texto h2 { margin-bottom: 0.5rem; }
.sobre-texto h2 em {
  font-style: italic;
  color: var(--marrom);
}

.sobre-texto p {
  color: var(--texto-medio);
  font-size: 1.02rem;
  margin-bottom: 1.4rem;
  line-height: 1.85;
}

.sobre-linha {
  width: 48px; height: 1px;
  background: var(--marrom-claro);
  margin: 2rem 0;
}

/* ════════════════════════════════════════════
   SEÇÃO — ACOMODAÇÕES (ESTILO ZAYA: texto à esq, foto à dir)
   ════════════════════════════════════════════ */
.acomodacoes-header {
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--borda);
}

.acomodacoes-header p {
  max-width: 580px;
  margin: 1rem auto 0;
  color: var(--texto-suave);
  font-size: 0.95rem;
}

.acomodacao-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-bottom: 1px solid var(--borda);
}

.acomodacao-item:nth-child(even) .acomodacao-texto {
  order: 2;
}
.acomodacao-item:nth-child(even) .acomodacao-foto {
  order: 1;
}

.acomodacao-foto {
  position: relative;
  overflow: hidden;
  background: var(--bege);
  min-height: 420px;
	max-height: 480px;
}
.acomodacao-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.acomodacao-item:hover .acomodacao-foto img {
  transform: scale(1.04);
}

.acomodacao-foto-placeholder {
  width: 100%; height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: var(--bege);
}

.acomodacao-texto {
  padding: 4rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--branco);
}

.acomodacao-texto h3 { margin-bottom: 1.2rem; }
.acomodacao-texto h3 strong {
  color: var(--marrom);
  font-weight: 700;
}

.acomodacao-texto p {
  color: var(--texto-medio);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.comodidades-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.comodidade {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--marrom);
  border: 1px solid var(--bege-escuro);
  padding: 0.3rem 0.75rem;
  background: var(--creme);
}

/* ════════════════════════════════════════════
   SEÇÃO — VÍDEO / GASTRONOMIA (ESTILO ZAYA)
   ════════════════════════════════════════════ */
.video-section {
  position: relative;
  height: 560px;
  overflow: hidden;
  cursor: pointer;
}

.video-bg {
  position: absolute;
  inset: 0;
  background: var(--marrom-escuro);
  background-size: cover;
  background-position: center;
}

.video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,12,5,0.45);
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--branco);
  padding: 2rem;
}

.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transicao);
  background: rgba(255,255,255,0.1);
}
.play-btn:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
  transform: scale(1.08);
}
.play-btn svg { margin-left: 4px; }

.video-overlay .kicker { color: rgba(255,255,255,0.6); }
.video-overlay h2 { color: var(--branco); margin-bottom: 1rem; }
.video-overlay h2 em { font-style: italic; color: var(--marrom-claro); }
.video-overlay p {
  max-width: 500px;
  color: rgba(255,255,255,0.75);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ════════════════════════════════════════════
   SEÇÃO — EXPERIÊNCIAS (MOSAICO ESTILO ZAYA)
   ════════════════════════════════════════════ */
.experiencias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 300px;
  gap: 3px;
}

.exp-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.exp-item:first-child {
  grid-row: span 2;
}

.exp-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.exp-item:hover .exp-bg { transform: scale(1.06); }

/* Placeholders */
.exp-item:nth-child(1) .exp-bg { background-color: #7A6248; }
.exp-item:nth-child(2) .exp-bg { background-color: #4E5E40; }
.exp-item:nth-child(3) .exp-bg { background-color: #8B7B65; }
.exp-item:nth-child(4) .exp-bg { background-color: #6B5840; }
.exp-item:nth-child(5) .exp-bg { background-color: #5A6B4A; }

.exp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,8,2,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.8rem;
  transition: var(--transicao);
}

.exp-item:hover .exp-overlay {
  background: linear-gradient(to top, rgba(15,8,2,0.85) 0%, rgba(15,8,2,0.2) 100%);
}

.exp-overlay .kicker { color: rgba(255,255,255,0.65); margin-bottom: 0.4rem; }
.exp-overlay h3 {
  color: var(--branco);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.exp-overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.exp-item:hover .exp-overlay p {
  max-height: 100px;
  opacity: 1;
}

/* ════════════════════════════════════════════
   SEÇÃO — LOCALIZAÇÃO (MAPA FULL WIDTH)
   ════════════════════════════════════════════ */
.localizacao-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 500px;
}

.localizacao-texto {
  padding: 5rem 4rem;
  background: var(--creme);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.localizacao-texto h2 { margin-bottom: 0.5rem; }
.localizacao-texto p {
  color: var(--texto-medio);
  font-size: 0.97rem;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}

.info-lista { display: flex; flex-direction: column; gap: 1.4rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-icone {
  width: 38px; height: 38px;
  border: 1px solid var(--bege-escuro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--marrom);
}
.info-item strong {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--marrom);
  margin-bottom: 0.2rem;
}
.info-item span { font-size: 0.92rem; color: var(--texto-medio); }

.localizacao-mapa {
  position: relative;
  background: var(--bege);
  min-height: 500px;
}
.localizacao-mapa iframe {
  width: 100%; height: 100%;
  border: none;
  filter: sepia(15%) contrast(95%);
}

/* ════════════════════════════════════════════
   SEÇÃO — FALE CONOSCO
   ════════════════════════════════════════════ */
.contato-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contato-info h2 { margin-bottom: 1rem; }
.contato-info > p {
  color: var(--texto-medio);
  margin-bottom: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-grupo { margin-bottom: 1.2rem; }
.form-grupo label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--marrom);
  margin-bottom: 0.5rem;
}
.form-grupo input,
.form-grupo textarea,
.form-grupo select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--borda);
  background: var(--off-white);
  font-family: var(--fonte-corpo);
  font-size: 0.95rem;
  color: var(--texto);
  outline: none;
  border-radius: var(--raio);
  transition: var(--transicao);
}
.form-grupo input:focus,
.form-grupo textarea:focus {
  border-color: var(--marrom-claro);
  background: var(--branco);
  box-shadow: 0 0 0 3px rgba(107, 76, 53, 0.08);
}
.form-grupo textarea { min-height: 130px; resize: vertical; }

/* ════════════════════════════════════════════
   MODAL DE RESERVA
   ════════════════════════════════════════════ */
#modal-reserva {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
#modal-reserva.open {
  opacity: 1;
  pointer-events: all;
}

.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(15, 8, 2, 0.7);
  backdrop-filter: blur(6px);
}

.modal-box {
  position: relative;
  background: var(--branco);
  max-width: 660px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 3.5rem;
  transform: translateY(20px);
  transition: transform 0.35s ease;
}
#modal-reserva.open .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1.5rem; right: 1.8rem;
  background: none; border: none;
  font-size: 1.8rem;
  color: var(--texto-claro);
  line-height: 1;
  cursor: pointer;
  transition: var(--transicao);
}
.modal-close:hover { color: var(--marrom); transform: rotate(90deg); }

.modal-box h2 { margin-bottom: 0.4rem; }
.modal-box .kicker { margin-bottom: 2rem; }

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.reserva-estimativa {
  background: var(--creme);
  border: 1px solid var(--borda);
  padding: 1.4rem 1.6rem;
  margin: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: none;
}
.est-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--texto-suave);
}
.est-valor {
  font-family: var(--fonte-titulo);
  font-size: 2rem;
  color: var(--marrom);
}

#reserva-sucesso {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
#reserva-sucesso .check { font-size: 3rem; margin-bottom: 1rem; }
#reserva-sucesso h3 { margin-bottom: 0.5rem; }
#reserva-sucesso p { color: var(--texto-medio); }

/* ════════════════════════════════════════════
   FOOTER — ESTILO ZAYA (escuro)
   ════════════════════════════════════════════ */
#site-footer {
  background: var(--marrom-escuro);
  color: rgba(214, 196, 160, 0.75);
  padding: 4.5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-brand img { height: 55px; margin-bottom: 1.4rem; filter: brightness(0) invert(1) opacity(0.9); }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 260px;
  color: rgba(255,255,255,0.5);
}

.footer-redes {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.8rem;
}
.rede-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transicao);
}
.rede-link:hover {
  border-color: var(--marrom-claro);
  color: var(--marrom-claro);
}

.footer-col h4 {
  font-family: var(--fonte-corpo);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.4rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transicao);
}
.footer-col ul li a:hover { color: var(--marrom-claro); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ════════════════════════════════════════════
   WHATSAPP FLUTUANTE
   ════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  z-index: 998;
  transition: var(--transicao);
}
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

/* ════════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  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; }

/* ════════════════════════════════════════════
   RESPONSIVO
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sobre-wrap,
  .contato-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-fotos { height: 400px; }
  .acomodacao-item { grid-template-columns: 1fr; }
  .acomodacao-item:nth-child(even) .acomodacao-texto,
  .acomodacao-item:nth-child(even) .acomodacao-foto { order: unset; }
  .localizacao-wrap { grid-template-columns: 1fr; }
  .localizacao-mapa { min-height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reserva-bar-inner { flex-wrap: wrap; }
  .rb-campo { flex: 1 1 45%; }
  .rb-btn { width: 100%; padding: 1.2rem; }
}

@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .site-nav { display: none; }
 .site-nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: #4E5E40;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding-top: 80px;
    overflow-y: auto;
    z-index: 999;
  }
  .site-nav.open li {
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .site-nav.open a {
    display: block;
    font-size: 0.85rem;
    color: var(--branco) !important;
    letter-spacing: 0.2em;
    padding: 1.2rem 2rem;
    width: 100%;
  }
  .site-nav.open a:hover {
    background: rgba(255,255,255,0.08);
  }
  .hamburger { display: flex; }
  .experiencias-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .exp-item:first-child { grid-row: span 1; height: 300px; }
  .exp-item { height: 260px; }
  .video-section { height: 400px; }
  .acomodacao-texto { padding: 2.5rem 1.5rem; }
  .modal-box { padding: 2rem 1.5rem; }
  .modal-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .reserva-bar-inner { flex-direction: column; }
  .rb-campo { border-right: none; border-bottom: 1px solid var(--borda); }
}
@media (max-width: 768px) {
  .site-nav.open {
    background: #4E5E40 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding-top: 80px !important;
  }
  .site-nav.open li {
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .site-nav.open a {
    display: block !important;
    padding: 1.2rem 2rem !important;
    font-size: 0.85rem !important;
    width: 100% !important;
  }
}
#site-header.scrolled .site-nav a.nav-reservar,
#site-header.scrolled .site-nav li.nav-reservar a,
#site-header.scrolled .site-nav ul li:last-child a {
  color: var(--branco) !important;
  background: var(--marrom-escuro) !important;
}