/* ============================================================
   KN VILLAGE POUSADA — style.css
   Identidade visual boutique: verde escuro #29473A · verde oliva
   #5C7462 · dourado fosco #B78A4A · bege areia #E8DCC8 ·
   off-white #F8F6F2 · grafite #252525
   ============================================================ */

:root {
  --forest:      #29473A;
  --forest-deep: #14241D;
  --olive:       #5C7462;
  --gold:        #B78A4A;
  --gold-dark:   #9C7239;
  --sand:        #E8DCC8;
  --off-white:   #F8F6F2;
  --white:       #FFFFFF;
  --green-wa:    #25D366;
  --green-wa-dk: #128C7E;
  --gray-50:     #F8F6F2;
  --gray-100:    #ECE6DC;
  --gray-200:    #DCCBAE;
  --gray-400:    #A79E92;
  --gray-600:    #6B6B64;
  --gray-800:    #1A1A1A;
  --text:        #252525;

  --radius-sm:  6px;
  --radius:     14px;
  --radius-lg:  22px;
  --shadow-sm:  0 1px 3px rgba(37,37,37,.07), 0 1px 2px rgba(37,37,37,.04);
  --shadow:     0 4px 20px rgba(37,37,37,.07);
  --shadow-lg:  0 10px 40px rgba(37,37,37,.10);
  --shadow-xl:  0 20px 60px rgba(37,37,37,.14);

  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── Utilities ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.gradient-text {
  color: var(--gold);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .03em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn--primary {
  background: var(--gold);
  color: var(--text);
  box-shadow: 0 4px 20px rgba(183,138,74,.28);
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(183,138,74,.38);
}
.btn--outline {
  border: 1.5px solid rgba(255,255,255,.55);
  color: var(--white);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
}
.btn--outline:hover {
  background: rgba(255,255,255,.14);
  border-color: var(--white);
}
.btn--green {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn--green:hover {
  background: var(--green-wa-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(37,211,102,.4);
}
.btn--gold {
  background: var(--gold);
  color: var(--text);
  box-shadow: 0 4px 20px rgba(183,138,74,.28);
}
.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(183,138,74,.38);
}
.btn--full { width: 100%; justify-content: center; }
.btn--lg { padding: 18px 38px; font-size: 1rem; }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal--delay  { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }

/* ── Section scaffold ── */
.section { padding: 128px 0; }
.section__header { text-align: center; margin-bottom: 72px; }
.section__eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 14px;
}
.section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}
.section__desc {
  margin-top: 18px;
  color: var(--gray-600);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(41,71,58,.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,.16);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav__link {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .02em;
  transition: color var(--transition);
}
.nav__link:hover { color: var(--gold); }
.nav__whatsapp { padding: 10px 20px; font-size: .85rem; }
.nav__cta { padding: 10px 20px; font-size: .85rem; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(41,71,58,.97);
  backdrop-filter: blur(16px);
  padding: 16px 24px 24px;
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 400;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--transition);
}
.nav__mobile-link:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Vinheta radial centralizada (reforça contraste atrás do texto,
     que agora fica no centro) + o degradê diagonal original. */
  background:
    radial-gradient(ellipse 60% 55% at 50% 48%, rgba(8,16,12,.58) 0%, rgba(8,16,12,.28) 45%, transparent 75%),
    linear-gradient(
      135deg,
      rgba(15,26,21,.86) 0%,
      rgba(41,71,58,.62) 55%,
      rgba(92,116,98,.42) 100%
    );
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 96px;
  padding-bottom: 56px;
}
/* Composição centralizada, coluna com respiro nas laterais —
   se adapta sozinha via max-width/margin auto, sem precisar de
   breakpoints extras para a largura. */
.hero__text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0,0,0,.5), 0 1px 3px rgba(0,0,0,.55);
}
.hero__badge {
  display: inline-block;
  background: rgba(183,138,74,.16);
  border: 1px solid rgba(183,138,74,.4);
  color: var(--gold);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 26px;
}
.hero__h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.24;
  letter-spacing: -.005em;
  margin-bottom: 24px;
}
/* "Lagoa do Cassó" nunca se separa em duas linhas — o resto do
   título quebra livremente conforme o espaço disponível. */
.hero__h1 .gradient-text { white-space: nowrap; }
.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 220px;
  margin: 0 auto 24px;
}
.hero__divider-line {
  flex: 1;
  height: 1px;
  background: rgba(183,138,74,.5);
}
.hero__divider-icon { color: var(--gold); font-size: .8rem; line-height: 1; }
.hero__sub {
  font-size: 1.04rem;
  font-weight: 300;
  color: rgba(255,255,255,.85);
  max-width: 620px;
  line-height: 1.7;
  margin: 0 auto 22px;
}
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .84rem;
  color: rgba(255,255,255,.68);
  margin-bottom: 22px;
}
.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.hero__highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,.92);
  font-size: .85rem;
  font-weight: 400;
}

/* Hero Form Card (reaproveitado pelo formulário da seção #contato) */
.hero__form-wrap { flex-shrink: 0; }
.hero__form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  box-shadow: var(--shadow-xl);
}
.hero__form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}
.hero__form-sub {
  color: var(--gray-600);
  font-size: .87rem;
  font-weight: 300;
  margin-bottom: 26px;
}

/* ── Forms ── */
.form { display: flex; flex-direction: column; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form__label { font-size: .78rem; font-weight: 500; color: var(--gray-600); letter-spacing: .02em; }
.form__input {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: inherit;
  font-weight: 400;
  color: var(--text);
  background: var(--gray-50);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(183,138,74,.14);
  background: var(--white);
}
.form__input::placeholder { color: var(--gray-400); }
.form__hint { font-size: .72rem; color: var(--gray-400); margin-top: -2px; }
.form__privacy {
  font-size: .74rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 4px;
}
.btn__loading { font-size: .9rem; }

/* Hero scroll arrow */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.5);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════
   BENEFÍCIOS
══════════════════════════════════════════ */
.beneficios { background: var(--off-white); }
.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.beneficio-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}
.beneficio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.beneficio-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(41,71,58,.07), rgba(183,138,74,.12));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--forest);
}
.beneficio-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.beneficio-card__text {
  font-size: .87rem;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   ACOMODAÇÕES
══════════════════════════════════════════ */
.passeios { background: var(--white); }
.passeios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.passeio-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.passeio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.passeio-card--featured {
  border: 1.5px solid var(--gold);
}
.passeio-card__img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.passeio-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.passeio-card:hover .passeio-card__img-wrap img { transform: scale(1.05); }
.passeio-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(20,36,29,.72);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .7rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .04em;
}
.passeio-card__badge--gold {
  background: var(--gold);
  color: var(--text);
}
.passeio-card__body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.passeio-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}
.passeio-card__text {
  font-size: .88rem;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
}
.passeio-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}
.passeio-card__price { display: flex; flex-direction: column; }
.price__from { font-size: .72rem; color: var(--gray-400); }
.price__value {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1.2;
}
.price__value small { font-size: .75rem; font-weight: 400; }
.price__mode { font-size: .72rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gray-400); }

/* ══════════════════════════════════════════
   VALORES DE DIÁRIA
══════════════════════════════════════════ */
.valores { background: var(--off-white); }
.valores__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 820px;
  margin: 0 auto;
}
.valores-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 32px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.valores-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.valores-card--featured { border: 1.5px solid var(--gold); }
.valores-card__badge {
  position: absolute;
  top: -13px;
  right: 28px;
  background: var(--gold);
  color: var(--text);
  font-size: .7rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: .04em;
}
.valores-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 20px;
  text-align: center;
}
.valores-card__list { display: flex; flex-direction: column; gap: 14px; }
.valores-card__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-100);
  font-size: .92rem;
}
.valores-card__list li:last-child { border-bottom: none; padding-bottom: 0; }
.valores-card__list span { color: var(--gray-600); font-weight: 300; }
.valores-card__list strong { color: var(--gold-dark); font-weight: 600; font-size: 1.02rem; white-space: nowrap; }
.valores__note {
  text-align: center;
  max-width: 560px;
  margin: 36px auto 0;
  font-size: .88rem;
  color: var(--gray-600);
}
.valores__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   AVISO — MANUAL DO HÓSPEDE
══════════════════════════════════════════ */
.manual-banner {
  background: var(--forest);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 40px 0;
}
.manual-banner__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.manual-banner__icon {
  flex: 0 0 auto;
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: rgba(183,138,74,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
}
.manual-banner__text { flex: 1; }
.manual-banner__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.manual-banner__desc {
  font-size: 1.02rem;
  font-weight: 300;
  color: rgba(255,255,255,.72);
  max-width: 560px;
}
.manual-banner__btn { flex: 0 0 auto; white-space: nowrap; }

/* Botão amarelo pulsante para chamar mais atenção (Manual PDF, Ver no Mapa, etc.) */
.btn--pulse-yellow {
  background: #F4C430;
  color: var(--forest-deep);
  border-color: transparent;
  box-shadow: 0 0 0 0 rgba(244,196,48,.55);
  animation: pulseYellow 1.8s ease-in-out infinite;
}
.btn--pulse-yellow:hover {
  background: #E0AE1F;
  color: var(--forest-deep);
  transform: translateY(-2px);
}
@keyframes pulseYellow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(244,196,48,.55);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 14px rgba(244,196,48,0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn--pulse-yellow { animation: none; }
}

/* ══════════════════════════════════════════
   GALERIA
══════════════════════════════════════════ */
.galeria { background: var(--forest-deep); }
.galeria .section__eyebrow { color: var(--gold); }
.galeria .section__title { color: var(--white); }
.galeria .section__desc { color: rgba(255,255,255,.6); }
.galeria__carousel { position: relative; }
.galeria__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.galeria__track::-webkit-scrollbar { display: none; }
.galeria__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 2*16px) / 3);
  aspect-ratio: 4/3;
}
.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.galeria__item:hover img { transform: scale(1.06); }
.galeria__overlay {
  position: absolute;
  inset: 0;
  background: rgba(41,71,58,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.galeria__item:hover .galeria__overlay { opacity: 1; }
.galeria__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248,246,242,.92);
  color: var(--forest);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), transform var(--transition);
  z-index: 5;
}
.galeria__nav:hover { background: var(--gold); color: var(--text); transform: translateY(-50%) scale(1.06); }
.galeria__nav--prev { left: -22px; }
.galeria__nav--next { right: -22px; }
.galeria__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.galeria__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
}
.galeria__dot.active { background: var(--gold); transform: scale(1.25); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8,10,8,.96);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox__caption { color: rgba(255,255,255,.65); font-size: .9rem; text-align: center; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: fixed;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: background var(--transition);
  z-index: 10000;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.2); }
.lightbox__close { top: 20px; right: 20px; font-size: 2rem; }
.lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); }

/* ══════════════════════════════════════════
   AVALIAÇÕES
══════════════════════════════════════════ */
.depoimentos { background: var(--sand); }
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.depoimento-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid rgba(37,37,37,.06);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.depoimento-card__stars { font-size: 1rem; letter-spacing: 2px; color: var(--gold); }
.depoimento-card__text {
  font-size: .95rem;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.depoimento-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.depoimento-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--olive));
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.depoimento-card__author strong { display: block; font-size: .93rem; font-weight: 500; color: var(--text); }
.depoimento-card__author span { font-size: .78rem; color: var(--gray-400); }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq { background: var(--white); }
.faq__container { max-width: 780px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; margin-top: 0; }
.faq__item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item.open { border-color: var(--gold); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: .94rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.faq__item.open .faq__question { color: var(--gold-dark); }
.faq__icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq__item.open .faq__icon { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding var(--transition);
}
.faq__item.open .faq__answer { max-height: 400px; }
.faq__answer p {
  padding: 0 24px 20px;
  font-size: .91rem;
  font-weight: 300;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   CONTATO / CTA FINAL
══════════════════════════════════════════ */
.contato {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
}
.contato__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contato__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.contato__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(15,26,21,.88), rgba(41,71,58,.72));
}
.contato__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--forest-deep);
  color: rgba(255,255,255,.7);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 48px;
}
.footer__tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer__address { font-size: .85rem; font-weight: 300; }
.footer__links h4 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: .87rem;
  font-weight: 300;
  color: rgba(255,255,255,.62);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__contact h4 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-wa);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .89rem;
  font-weight: 500;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.footer__wa:hover { background: var(--green-wa-dk); }
.footer__legal { font-size: .8rem; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.65; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p { font-size: .8rem; font-weight: 300; color: rgba(255,255,255,.4); }
.footer__bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer__bottom a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   MODAL
══════════════════════════════════════════ */
.modal__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(10,10,8,.65);
  backdrop-filter: blur(4px);
}
.modal__backdrop.open { display: block; }
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 8001;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 38px;
  max-width: 440px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transition: transform .3s ease;
}
.modal.open {
  display: block;
  transform: translate(-50%, -50%);
}
.modal__icon { font-size: 3rem; margin-bottom: 16px; }
.modal__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.modal__text { font-size: .94rem; font-weight: 300; color: var(--gray-600); line-height: 1.65; }
.modal__close {
  display: block;
  margin: 14px auto 0;
  color: var(--gray-400);
  font-size: .84rem;
  text-decoration: underline;
  cursor: pointer;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .beneficios__grid { grid-template-columns: repeat(3, 1fr); }
  .beneficio-card:nth-child(4), .beneficio-card:nth-child(5) { }
  .passeios__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero__text { max-width: 90%; }
  .hero__sub { max-width: 480px; }
  .hero__form-wrap { max-width: 480px; }
  .contato__inner { grid-template-columns: 1fr; }
  .contato .hero__form-wrap { max-width: 480px; }
  .depoimentos__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .galeria__item { flex: 0 0 calc((100% - 16px) / 2); }
  .galeria__nav--prev { left: 4px; }
  .galeria__nav--next { right: 4px; }
  .nav__right { display: none; }
  .nav__toggle { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .section__header { margin-bottom: 48px; }
  .hero { min-height: 100svh; }
  .hero__content { padding-top: 88px; }
  .hero__h1 { font-size: 2rem; }

  /* Avaliações + destaques viram um único painel organizado em lista,
     em vez de itens soltos com "|" e badges de larguras desiguais
     (que davam aquele efeito de "funil" empilhado). */
  .hero__trust,
  .hero__highlights {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-width: 300px;
    margin: 0 auto;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    padding: 4px 18px;
  }
  .hero__trust { border-radius: 14px 14px 0 0; border-bottom: none; margin-bottom: 0; }
  .hero__highlights { border-radius: 0 0 14px 14px; margin-bottom: 22px; }
  .hero__trust > span { padding: 9px 0; text-align: left; }
  .hero__trust > span:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero__trust > span:nth-child(even) { display: none; } /* remove os separadores "|" */
  .hero__highlight {
    width: 100%;
    justify-content: flex-start;
    padding: 9px 0;
    background: none;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
  }
  .hero__highlight:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.1); }

  .hero__form-card { padding: 24px 20px; }
  .form__row { grid-template-columns: 1fr; }
  .beneficios__grid { grid-template-columns: repeat(2, 1fr); }
  .beneficio-card:last-child { grid-column: span 2; }
  .passeios__grid { grid-template-columns: 1fr; }
  .valores__grid { grid-template-columns: 1fr; }
  .manual-banner__inner { flex-direction: column; text-align: center; }
  .manual-banner__title { font-size: 1.5rem; }
  .manual-banner__desc { max-width: none; }
  .galeria__item { flex: 0 0 86%; }
  .galeria__nav { width: 38px; height: 38px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; padding-top: 40px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
  .lightbox__prev { left: 4px; }
  .lightbox__next { right: 4px; }
}

/* ── Logo círculo — nav ── */
.nav__logo-circle {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}
.nav__logo-circle img {
  width: 56px;
  height: 56px;
}

/* ── Logo círculo — footer ── */
.footer__logo-circle {
  display: block;
  margin-bottom: 16px;
  line-height: 0;
}
.footer__logo-circle img {
  width: 96px;
  height: 96px;
}

/* ── EXPERIMENTO TEMPORÁRIO (alta temporada): esconde os botões de WhatsApp
   visíveis antes do preenchimento do formulário (nav, valores, CTA final,
   rodapé), para filtrar o atendimento pelo formulário. O WhatsApp do modal
   de sucesso (pós-envio) NÃO é afetado por esta regra e continua visível.
   Para reverter ao estado normal, apague este bloco (ou a classe
   "experiment-wa-form-only" no <body> do index.html). ── */
body.experiment-wa-form-only .nav__whatsapp,
body.experiment-wa-form-only #valores-whatsapp,
body.experiment-wa-form-only #cta-whatsapp,
body.experiment-wa-form-only .footer__wa {
  display: none !important;
}
