/* =========================================================
   Pousada Paraíso do Calango Azul
   Tokens extraídos do mockup original (PDF vetorial):
   - Playfair Display (títulos serifados)
   - Poppins (menu, labels, botões)
   - Open Sans Italic (parágrafos)
   - League Spartan (logotipo)
   ========================================================= */

:root {
  /* Cores */
  --cream: #fefff6;
  --cream-dark: #fdf6d9;
  --brown: #6c573e;
  --brown-deep: #4a3a28;
  --gold: #ecad62;
  --gold-bright: #ffbd59;
  --terracotta: #c9723f;
  --accent-orange: #d16615;
  --utility-bg: #c06730;
  --cta-lime: #c8d02d;
  --gecko-blue: #005b9a;
  --white: #ffffff;
  --overlay-strong: rgba(20, 15, 8, 0.62);
  --overlay-soft: rgba(20, 15, 8, 0.32);

  /* Tipografia */
  --font-serif: "Playfair Display", serif;
  --font-sans: "Poppins", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --font-logo: "League Spartan", sans-serif;
  --font-script: "Sacramento", cursive;

  /* Layout */
  --container-w: 1300px;
  --side-pad: clamp(20px, 6vw, 100px);
  --section-pad-y: clamp(48px, 6vw, 88px);
}

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#pousada,
#acomodacoes,
#nossas-acomodacoes,
#restaurante,
#reservar,
#faq,
#localizacao,
#cachoeiras,
#birdwatching,
#avaliacoes,
#loja {
  scroll-margin-top: 90px;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.15em;
}

body {
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.25;
}

.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--side-pad);
}

/* ---------- Elementos reutilizáveis ---------- */

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow--muted { color: var(--gold); }
.eyebrow--bright { color: var(--gold-bright); }

.divider {
  width: 64px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 18px 0 22px;
}

.divider--sm {
  width: 40px;
  height: 2px;
  margin: 12px auto 16px;
}

.body-copy {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  color: var(--brown);
  text-align: justify;
  max-width: 54ch;
}

.body-copy--light { color: var(--white); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2.5px;
  color: var(--gold);
  transition: gap 0.25s ease, opacity 0.25s ease;
}

.link-arrow:hover {
  gap: 12px;
  opacity: 0.8;
}

.link-arrow .arrows {
  letter-spacing: 0;
}

.btn-outline {
  display: inline-block;
  padding: 18px 44px;
  border: 1px solid var(--gold-bright);
  color: var(--gold-bright);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background: var(--gold-bright);
  color: var(--brown-deep);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-header.is-scrolled {
  background: var(--cream);
  padding: 12px 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.logo {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 92px;
  height: 92px;
  transition: width 0.35s ease, height 0.35s ease;
}

.site-header.is-scrolled .logo {
  width: 68px;
  height: 68px;
}

.logo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.35s ease;
}

.logo-img--dark { opacity: 0; }

.site-header.is-scrolled .logo-img--light { opacity: 0; }
.site-header.is-scrolled .logo-img--dark { opacity: 1; }

.nav-desktop ul {
  display: flex;
  gap: clamp(18px, 2.6vw, 40px);
}

.nav-desktop a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.35s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.nav-desktop a:hover { opacity: 0.75; }

.site-header.is-scrolled .nav-desktop a {
  color: var(--brown);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-scrolled .nav-toggle span,
.nav-toggle.is-open span {
  background: var(--brown);
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 5, 0.68) 0%, rgba(10, 8, 5, 0.42) 38%, rgba(10, 8, 5, 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 140px var(--side-pad) 60px;
  max-width: 900px;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hero-divider {
  position: relative;
  width: 340px;
  max-width: 60vw;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  margin: 22px auto 30px;
}

.hero-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-bright);
  transform: translate(-50%, -50%);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5.1rem);
  letter-spacing: 1px;
  margin-bottom: 26px;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  max-width: 40ch;
  margin: 0 auto 36px;
}

/* ---------- Seções genéricas de 2 colunas ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 90px) var(--side-pad);
}

.split-media {
  position: relative;
  min-height: 420px;
}

.split-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: var(--brown);
  max-width: 12ch;
}

/* Essência: fundo claro */
.essencia {
  background: var(--cream);
}

/* Acomodações: imagem à esquerda */
.acomodacoes {
  background: var(--cream);
}

.acomodacoes .split-media { order: -1; }

/* ---------- Ícone decorativo de seção ---------- */

.section-icon {
  display: flex;
  justify-content: center;
  color: var(--accent-orange);
  margin-bottom: 10px;
}

.section-icon .icon {
  width: 40px;
  height: 40px;
}

/* ---------- Nossa História (timeline) ---------- */

.historia {
  background: var(--cream);
  padding: var(--section-pad-y) 0;
  text-align: center;
}

.historia-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--brown);
  margin-bottom: clamp(30px, 5vw, 60px);
}

.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.timeline-item {
  flex: 1 1 0;
  max-width: 360px;
  padding: 0 20px;
}

.timeline-year {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 14px;
}

.timeline-connector {
  flex: 0 0 auto;
  width: clamp(40px, 8vw, 120px);
  margin-top: 15px;
  border-top: 2px dotted var(--accent-orange);
  position: relative;
}

.timeline-connector::before,
.timeline-connector::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
}

.timeline-connector::before { left: -2px; }
.timeline-connector::after { right: -2px; }

.timeline-item h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.timeline-item p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brown);
}

/* ---------- Birdwatching ---------- */

.birdwatching {
  background: var(--cream);
  padding: var(--section-pad-y) 0;
}

.birdwatching .container {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.4fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

.birdwatching h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  max-width: 11ch;
}

.bird-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.bird-photos .photo {
  aspect-ratio: 5 / 7;
  border-radius: 18px;
  overflow: hidden;
}

.bird-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Loja do Calango ---------- */

.loja {
  background: var(--cream);
  padding: var(--section-pad-y) 0 calc(var(--section-pad-y) + 20px);
  text-align: center;
}

.loja-icon {
  color: var(--terracotta);
  margin-bottom: 10px;
}

.loja-icon svg { height: 44px; width: auto; }

.loja h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--brown);
  margin-bottom: 16px;
}

.loja-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: clamp(36px, 6vw, 64px);
}

.loja-subtitle .sep {
  color: var(--gold);
  margin: 0 10px;
}

.loja-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}

.loja-card {
  background: var(--white);
  border: 1px solid #ece3cf;
  border-radius: 22px;
  padding-bottom: 34px;
  text-align: center;
}

.loja-card-media {
  position: relative;
  margin: 14px 14px 46px;
  border-radius: 16px;
  overflow: visible;
}

.loja-card-media .photo-clip {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.loja-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loja-card-badge {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 14px rgba(90, 50, 20, 0.25);
}

.loja-card-badge svg { width: 30px; height: 30px; }

.loja-card h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--brown);
  padding: 0 24px;
}

.loja-card p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brown);
  padding: 0 28px;
}

/* ---------- Formulário de reserva ---------- */

.reserva-form {
  background: var(--cream);
  padding: clamp(40px, 6vw, 64px) 0;
}

.reserva-form-inner {
  border: 2px solid var(--brown);
  border-radius: 14px;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 52px);
}

.reserva-fields {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
}

.reserva-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reserva-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brown);
}

.reserva-field input,
.reserva-field select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brown);
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 6px;
  padding: 15px 20px;
  min-width: 210px;
}

.reserva-field input:focus,
.reserva-field select:focus {
  outline: 2px solid var(--gold-bright);
}

.btn-reservar {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brown-deep);
  background: var(--gold-bright);
  border: none;
  border-radius: 6px;
  padding: 16px 36px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.btn-reservar:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-1px);
}

/* ---------- Nossas Acomodações ---------- */

.nossas-acomodacoes {
  background: var(--cream);
  padding: var(--section-pad-y) 0;
}

.acomod-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.acomod-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--brown);
  margin-bottom: 16px;
}

.acomod-lead {
  margin-inline: auto;
  text-align: center;
  max-width: 60ch;
}

.acomod-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

.acomod-card {
  display: block;
  grid-column: span 2;
  background: var(--cream);
  border: 1px solid #ece3cf;
  border-radius: 22px;
  padding: 14px 14px 28px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.acomod-card:hover {
  box-shadow: 0 14px 28px rgba(90, 60, 20, 0.12);
  transform: translateY(-3px);
}

/* Última linha com apenas 2 cards (7º e 8º): centralizados */
.acomod-card:nth-child(7) { grid-column: 2 / 4; }
.acomod-card:nth-child(8) { grid-column: 4 / 6; }

.acomod-card-media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
}

.acomod-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acomod-card h3 {
  font-size: 1.4rem;
  color: var(--brown);
  padding: 0 10px;
}

.acomod-card .divider--sm {
  margin: 12px 10px 16px;
}

.acomod-amenities {
  padding: 0 10px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.acomod-amenities li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brown);
}

.acomod-amenities .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--brown);
}

.acomod-card .link-arrow {
  padding: 0 10px;
}

/* ---------- Carrossel ---------- */

.carousel {
  position: relative;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  aspect-ratio: 16 / 9;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.carousel-dot.is-active {
  background: var(--white);
  transform: scale(1.15);
}

/* ---------- Seções temáticas (Cachoeira / Restaurante / Café) ---------- */

.theme-section {
  background: var(--cream);
  padding: var(--section-pad-y) 0;
  text-align: center;
}

.theme-header {
  margin-bottom: clamp(24px, 4vw, 40px);
}

.theme-section h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  color: var(--brown);
  margin-bottom: 12px;
}

.theme-sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
}

.theme-lead {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  color: var(--brown);
  max-width: 62ch;
  margin: clamp(24px, 4vw, 40px) auto 0;
  text-align: center;
}

.theme-lead strong {
  font-weight: 700;
  font-style: normal;
}

.mini-cards-title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--brown);
  margin: clamp(30px, 4vw, 44px) 0 clamp(24px, 3vw, 34px);
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 30px);
  margin-bottom: clamp(30px, 4vw, 44px);
}

.mini-card-media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
}

.mini-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-card h4 {
  font-size: 1.4rem;
  color: var(--brown);
}

.mini-card .divider--sm { margin-top: 10px; }

/* ---------- Localização ---------- */

.localizacao {
  background: var(--cream);
  padding: var(--section-pad-y) 0;
  text-align: center;
}

.localizacao-title {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  color: var(--brown);
  margin-bottom: clamp(20px, 3vw, 32px);
}

.localizacao-map {
  border-radius: 20px;
  overflow: hidden;
  margin: clamp(24px, 4vw, 36px) 0;
  aspect-ratio: 16 / 8;
}

.localizacao-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.localizacao-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(24px, 4vw, 36px);
}

.loc-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.loc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Perguntas Frequentes ---------- */

.faq {
  background: var(--cream);
  padding: var(--section-pad-y) 0;
}

.faq-title {
  text-align: center;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  color: var(--brown);
  margin-bottom: clamp(30px, 4vw, 44px);
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #ece3cf;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 22px 4px;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--brown);
}

.faq-chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--accent-orange);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  overflow: hidden;
}

.faq-item.is-open .faq-answer-wrap {
  grid-template-rows: 1fr;
}

.faq-answer {
  min-height: 0;
}

.faq-answer p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--brown);
  padding: 0 4px 20px;
}

.faq-answer strong {
  font-weight: 700;
  font-style: normal;
}

/* ---------- CTA final ---------- */

.cta {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-media {
  position: absolute;
  inset: 0;
}

.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 5, 0.35) 0%, rgba(10, 8, 5, 0.6) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 var(--side-pad);
}

.cta-content .eyebrow {
  color: var(--gold-bright);
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin: 14px 0 30px;
}

.btn-cta {
  display: inline-block;
  padding: 16px 42px;
  background: var(--cta-lime);
  color: var(--brown-deep);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

/* ---------- Avaliações ---------- */

.reviews {
  background: var(--cream);
  padding: var(--section-pad-y) 0;
}

.reviews-title {
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--brown);
  margin-bottom: clamp(30px, 4vw, 48px);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.review-card {
  background: var(--white);
  border: 1px solid #ece3cf;
  border-radius: 20px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars {
  color: var(--gold-bright);
  font-size: 1.1rem;
  letter-spacing: 3px;
}

.review-text {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--brown);
  flex-grow: 1;
}

.review-author {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid #ece3cf;
  padding-top: 14px;
}

.review-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--brown);
}

.review-platform {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Rodapé ---------- */

.site-footer {
  background: var(--utility-bg);
  color: var(--cream);
  padding-top: clamp(48px, 6vw, 72px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.9fr 2fr;
  gap: clamp(30px, 5vw, 60px);
  padding-bottom: clamp(40px, 6vw, 64px);
}

.footer-logo {
  width: 92px;
  height: 92px;
  margin-bottom: 16px;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  line-height: 1.3;
}

.footer-divider {
  position: relative;
  width: 160px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 16px 0 10px;
}

.footer-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  transform: translate(-50%, -50%);
}

.footer-script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--cream);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a,
.footer-address li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--cream);
  opacity: 0.9;
}

.footer-col a:hover { opacity: 1; text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px var(--side-pad);
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  color: var(--cream);
  opacity: 0.85;
}

/* =========================================================
   Página de acomodação (ex.: acomodacoes/suite.html)
   ========================================================= */

.acomod-hero {
  position: relative;
  padding-top: 0;
}

.carousel--hero .carousel-track {
  aspect-ratio: 16 / 8;
}

.carousel--hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 12, 8, 0.55) 0%, rgba(15, 12, 8, 0.05) 22%, rgba(15, 12, 8, 0.05) 60%, rgba(15, 12, 8, 0.65) 100%);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(15, 12, 8, 0.35);
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.carousel-arrow .icon { width: 22px; height: 22px; }
.carousel-arrow:hover { opacity: 0.85; background: rgba(15, 12, 8, 0.55); }
.carousel-arrow:disabled { opacity: 0.35; cursor: default; }
.carousel-arrow--prev { left: clamp(10px, 3vw, 40px); }
.carousel-arrow--next { right: clamp(10px, 3vw, 40px); }

.acomod-hero-caption {
  position: absolute;
  left: var(--side-pad);
  bottom: 30px;
  z-index: 2;
  color: var(--white);
}

.acomod-hero-caption h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

.acomod-hero-caption p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.1rem;
}

.carousel-counter {
  position: absolute;
  right: var(--side-pad);
  bottom: 30px;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
}

.carousel--hero .carousel-track {
  cursor: default;
}

.carousel--hero .carousel-slide img {
  cursor: zoom-in;
  pointer-events: auto;
  -webkit-user-drag: none;
  user-select: none;
}

/* ---------- Lightbox de fotos ---------- */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 8, 5, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.25); }

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-arrow:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-arrow .icon { width: 24px; height: 24px; }
.lightbox-arrow--prev { left: clamp(10px, 3vw, 40px); }
.lightbox-arrow--next { right: clamp(10px, 3vw, 40px); }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.acomod-detail {
  background: var(--cream);
  padding: clamp(40px, 6vw, 70px) 0 var(--section-pad-y);
}

.acomod-detail-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.acomod-capacity {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 18px;
}

.acomod-capacity .icon { width: 22px; height: 22px; }

.acomod-detail-main .body-copy {
  text-align: left;
  max-width: none;
  margin-bottom: 34px;
}

.acomod-detail-subtitle {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 20px;
}

.acomod-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 30px;
}

.acomod-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--brown);
  padding: 9px 0;
}

.acomod-features .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent-orange);
}

.acomod-features + .acomod-detail-subtitle {
  margin-top: 40px;
}

.acomod-floors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 10px;
}

.acomod-floor {
  background: #faf6ea;
  border: 1px solid #ece3cf;
  border-radius: 14px;
  padding: 18px 22px;
}

.acomod-floor h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 10px;
}

.acomod-floor ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.acomod-floor li {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--brown);
  padding-left: 15px;
  position: relative;
}

.acomod-floor li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-style: normal;
}

.acomod-sidebar {
  position: sticky;
  top: 110px;
  background: var(--cream);
  border: 1px solid #ece3cf;
  border-radius: 20px;
  padding: 34px 30px;
  text-align: center;
}

.acomod-sidebar-gecko {
  position: absolute;
  top: -30px;
  right: 14px;
  width: 92px;
  height: auto;
}

.acomod-sidebar-icon {
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.acomod-sidebar-icon .icon { width: 34px; height: 34px; }

.acomod-sidebar h3 {
  font-size: 1.8rem;
  color: var(--brown);
}

.acomod-highlights {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 26px;
}

.acomod-highlights li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--brown);
}

.acomod-highlights .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent-orange);
}

.btn-reservar-full {
  display: block;
  text-align: center;
  background: var(--accent-orange);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px;
  border-radius: 10px;
  transition: background 0.25s ease;
}

.btn-reservar-full:hover { background: var(--brown-deep); }

.acomod-hero-caption p.hero-gallery-label {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: underline;
  margin-bottom: 6px;
}

/* =========================================================
   Página "A Pousada" (pousada.html)
   ========================================================= */

.pousada-about {
  position: relative;
  background: var(--cream);
  padding: clamp(50px, 7vw, 80px) 0;
  overflow: hidden;
}

.pousada-about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
}

.pousada-about-bg svg {
  width: 100%;
  height: 100%;
}

.pousada-about-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pousada-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: clamp(24px, 4vw, 36px);
}

.pousada-lead {
  text-align: justify;
  max-width: 900px;
  margin: 0 auto clamp(20px, 3vw, 30px);
}

.pousada-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: clamp(30px, 5vw, 50px) 0;
}

.pousada-feature {
  padding: 0 18px;
  border-left: 1px solid #e6dcc0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pousada-feature:first-child { border-left: none; }

.pousada-feature .icon {
  width: 52px;
  height: 52px;
  color: var(--accent-orange);
}

.pousada-feature p {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--brown);
}

.btn-reserve-aqui {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: clamp(20px, 3vw, 30px);
  padding: 22px 60px;
  background: var(--cream-dark);
  box-shadow: 6px 8px 0 rgba(108, 87, 62, 0.08);
  border-radius: 4px;
}

.btn-reserve-aqui:hover { background: #f9efc9; }

.reserve-gecko {
  position: absolute;
  left: -34px;
  top: -30px;
  width: 110px;
  height: auto;
}

.btn-reserve-aqui {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-orange);
}

/* =========================================================
   Responsivo
   ========================================================= */

@media (max-width: 960px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }

  .nav-desktop.is-open {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 105;
    background: var(--cream);
    padding: 140px 40px 40px;
  }

  .nav-desktop.is-open ul {
    flex-direction: column;
    gap: 28px;
  }

  .nav-desktop.is-open a {
    color: var(--brown);
    font-size: 1.1rem;
  }

  .split,
  .birdwatching .container {
    grid-template-columns: 1fr;
  }

  .acomodacoes .split-media { order: 0; }

  .split-media { min-height: 320px; }

  .timeline {
    flex-direction: column;
    align-items: center;
    gap: 36px;
  }

  .timeline-connector { display: none; }

  .timeline-item { max-width: 420px; }

  .loja-cards,
  .acomod-grid,
  .mini-cards,
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .acomod-card,
  .acomod-card:nth-child(7),
  .acomod-card:nth-child(8) {
    grid-column: auto;
  }

  .mini-cards { margin-bottom: 30px; }

  .reserva-fields {
    flex-direction: column;
    align-items: stretch;
  }

  .reserva-field input,
  .reserva-field select {
    min-width: 0;
  }

  .localizacao-gallery {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin-inline: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand { text-align: center; }
  .footer-divider { margin-inline: auto; }

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

  .acomod-detail-grid {
    grid-template-columns: 1fr;
  }

  .acomod-sidebar {
    position: relative;
    top: auto;
    max-width: 460px;
    margin-inline: auto;
  }

  .carousel--hero .carousel-track { aspect-ratio: 4 / 3; }

  .pousada-features {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }

  .pousada-feature:nth-child(4) { border-left: none; }
}

@media (max-width: 560px) {
  .bird-photos { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-content { padding-top: 120px; }
  .body-copy { text-align: left; }
  .theme-lead { text-align: left; }
  .footer-columns { grid-template-columns: 1fr; gap: 28px; }
  .cta { min-height: 460px; }
  .acomod-features { grid-template-columns: 1fr; }
  .acomod-floors { grid-template-columns: 1fr; }
  .acomod-hero-caption h1 { font-size: 2.2rem; }

  .pousada-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .pousada-feature:nth-child(3) { border-left: none; }
  .btn-reserve-aqui { padding: 18px 34px; }

  .localizacao-gallery {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}
