:root {
  --bg: #fffdf6;
  --bg-soft: #fff6d9;
  --text: #1f1f1f;
  --muted: #605a45;
  --primary: #f7c400;
  --primary-dark: #e0a800;
  --whatsapp: #21c063;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(10, 40, 90, 0.12);
  --radius: 16px;
  --card-includes-spacing-top: 6px;
  --card-includes-spacing-bottom: 10px;
  --card-includes-row-gap: 10px;
  /*
   * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   * HOME INDEX — CABEÇALHO + LOGO (TRAVADO — NÃO ALTERAR SEM REVISÃO COMPLETA)
   * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   * --header-bar-modern           = altura da FAIXA do nav (88px fixo; nunca calc() com logo)
   * --header-nav-desktop-nudge-y = só desktop ≥981px: translateY no .nav-wrap (alinha linha ótica)
   * --logo-home-*                 = só a marca; pode ser maior que a faixa (overflow visível no CSS)
   * #passeios                     = scroll-margin-top: calc(var(--header-bar-modern) + 12px)
   * <img width/height>            = index.html deve manter proporção com --logo-home-h / w-cap
   * Mobile ≤980: .header-actions / .mobile-menu-toggle com top:50% + translateY(-50%) na barra
   * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   */
  --logo-home-h: 117px;
  --logo-home-w-cap: 420px;
  --logo-home-vw: 46vw;
  --logo-home-h-sm: 90px;
  --logo-home-w-cap-sm: 354px;
  --logo-home-vw-sm: 62vw;
  --header-bar-modern: 88px;
  --header-nav-desktop-nudge-y: -12px;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(100deg, #ffffff 0 calc(100% - 460px), #f7c400 calc(100% - 460px) 100%);
  border-bottom: 1px solid #d6a90a;
  backdrop-filter: blur(8px);
}

.top-contact-bar {
  display: none;
  background: #0f1e30;
  color: #d7e7ff;
  font-size: 0.92rem;
}

.top-contact-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 6px 0;
}

.top-contact-link {
  color: #d7e7ff;
  font-weight: 500;
}

.top-contact-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 88px !important;
  height: 88px !important;
  max-height: 88px !important;
  position: relative;
}

.site-header .container.nav-wrap {
  width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 4%;
}

.detail-page .nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.detail-page .brand {
  justify-self: start;
}

.detail-page .main-nav {
  justify-self: center;
}

.detail-page .btn-whatsapp {
  justify-self: end;
}

.brand {
  display: block;
  width: 260px;
  height: 88px;
  justify-self: start;
  transform: none;
  background-image: url("logo.png");
  background-repeat: no-repeat;
  background-position: 34% center;
  background-size: 170% auto;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-weight: 500;
  justify-self: center;
  justify-content: center;
  min-width: 0;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 390px;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #ffffff;
  border-radius: 10px;
  background: #f7c400;
  padding: 9px 8px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.mobile-menu-toggle span + span {
  margin-top: 6px;
}

.language-dropdown {
  position: relative;
  transform: translateX(-20px);
}

.language-toggle {
  border: none;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 0;
  font-weight: 600;
  width: 46px;
  height: 46px;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.language-toggle:focus-visible {
  outline: 2px solid #f7c400;
  outline-offset: 3px;
}

.language-toggle::before {
  content: "";
  width: 21px;
  height: 21px;
  display: block;
  background-color: #ffffff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10.01 10.01 0 0 0 12 2Zm7.93 9h-3.09a15.9 15.9 0 0 0-1.26-5A8.02 8.02 0 0 1 19.93 11ZM12 4.07c.89 1.2 1.85 3.33 2.22 6.93H9.78C10.15 7.4 11.11 5.27 12 4.07ZM4.07 13h3.09a15.9 15.9 0 0 0 1.26 5A8.02 8.02 0 0 1 4.07 13ZM7.16 11H4.07a8.02 8.02 0 0 1 4.35-5 15.9 15.9 0 0 0-1.26 5Zm2.62 2h4.44c-.37 3.6-1.33 5.73-2.22 6.93-.89-1.2-1.85-3.33-2.22-6.93Zm5.8 5a15.9 15.9 0 0 0 1.26-5h3.09a8.02 8.02 0 0 1-4.35 5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10.01 10.01 0 0 0 12 2Zm7.93 9h-3.09a15.9 15.9 0 0 0-1.26-5A8.02 8.02 0 0 1 19.93 11ZM12 4.07c.89 1.2 1.85 3.33 2.22 6.93H9.78C10.15 7.4 11.11 5.27 12 4.07ZM4.07 13h3.09a15.9 15.9 0 0 0 1.26 5A8.02 8.02 0 0 1 4.07 13ZM7.16 11H4.07a8.02 8.02 0 0 1 4.35-5 15.9 15.9 0 0 0-1.26 5Zm2.62 2h4.44c-.37 3.6-1.33 5.73-2.22 6.93-.89-1.2-1.85-3.33-2.22-6.93Zm5.8 5a15.9 15.9 0 0 0 1.26-5h3.09a8.02 8.02 0 0 1-4.35 5Z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 148px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 6px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 40;
}

.language-dropdown.is-open .language-menu {
  display: flex;
}

.language-option {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  text-align: center;
  font: inherit;
  font-size: 1.3rem;
  line-height: 1;
  padding: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.language-option:hover {
  background: #f4f4f4;
}

.flag-icon {
  font-size: 1.25rem;
  line-height: 1;
}

#google_translate_element,
.goog-logo-link,
.goog-te-gadget {
  display: none !important;
}

body {
  top: 0 !important;
}

.nav-wrap .btn-whatsapp {
  justify-self: end;
  margin-left: 0;
  transform: none;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid #d8d8d8;
}

.nav-wrap .btn-whatsapp:hover {
  background: #f3f3f3;
  color: #111111;
}

.main-nav a:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  color: var(--white);
}

.btn-whatsapp {
  background: var(--whatsapp);
  gap: 0.5em;
}

.btn-whatsapp:hover {
  background: #17964b;
}

.btn-whatsapp::before {
  content: "";
  width: 1.125em;
  height: 1.125em;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.881 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.881 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.btn-small {
  padding: 10px 16px;
  font-size: 0.92rem;
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 84px 0 70px;
  position: relative;
  overflow: hidden;
  background-color: #10263f;
}

.hero--empty {
  position: relative;
  isolation: isolate;
  padding: 0;
  height: 620px;
  background-image: url("hero-lencois-degrade.png");
  background-size: cover;
  background-position: center 52%;
  background-repeat: no-repeat;
  background-color: var(--bg);
}

.hero--empty::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 0.16) 56%,
    rgba(0, 0, 0, 0) 82%
  );
  pointer-events: none;
}

.hero--empty::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(255, 253, 246, 0.92) 0%,
    rgba(255, 253, 246, 0.72) 14%,
    rgba(255, 253, 246, 0.44) 28%,
    rgba(255, 253, 246, 0.2) 42%,
    rgba(255, 253, 246, 0) 58%
  );
  pointer-events: none;
}

@media (min-width: 981px) {
  .hero--desktop-split {
    background-image: none;
    background-color: var(--bg);
  }

  .hero--desktop-split::before,
  .hero--desktop-split::after {
    display: none;
  }

  .hero-desktop-split__photo {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    pointer-events: none;
    transform: translateX(calc(-1 * min(11vw, 160px)));
  }

  .hero-desktop-split__photo img {
    height: 100%;
    width: auto;
    max-width: none;
    display: block;
  }

  .hero-desktop-split__gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
      to right,
      var(--bg) 0%,
      rgba(255, 253, 246, 0.98) 8%,
      rgba(255, 253, 246, 0.88) 18%,
      rgba(255, 253, 246, 0.45) 34%,
      rgba(255, 253, 246, 0.12) 46%,
      rgba(255, 253, 246, 0) 58%
    );
  }

  .hero--desktop-split .hero-title-wrap {
    z-index: 3;
  }

  .hero--desktop-split .hero-title {
    color: var(--text);
    text-shadow: none;
  }

  .hero--desktop-split .hero-subtitle {
    color: var(--muted);
    text-shadow: none;
  }

  .hero--desktop-split .hero-highlight {
    color: var(--primary-dark);
  }
}

.hero-title-wrap {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 0;
}

.hero-title {
  margin: 0;
  color: #ffffff;
  text-align: left;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  line-height: 1.18;
  max-width: 18ch;
}

.hero-copy {
  max-width: min(620px, 92%);
}

.hero-subtitle {
  margin-top: 14px;
  color: #ffffff;
  text-align: left;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1.5;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.38);
  max-width: 54ch;
}

.btn-hero-scroll {
  margin-top: 18px;
  background: rgba(247, 196, 0, 0.95);
  color: #ffffff;
}

.btn-hero-scroll:hover {
  background: #e0a800;
  color: #ffffff;
}

.hero-reserve-wrap {
  display: flex;
  justify-content: center;
  margin-top: -12px;
  margin-bottom: 20px;
  position: relative;
  z-index: 5;
}

.hero-reserve-btn {
  gap: 8px;
  background: #f7c400;
  color: #ffffff;
}

.hero-reserve-btn:hover {
  background: #e0a800;
  color: #ffffff;
}

.hero-reserve-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero-highlight {
  color: var(--primary);
}


.hero-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide-layer.is-visible {
  opacity: 1;
}

.hero-slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(9, 26, 48, 0.12) 0%, rgba(10, 30, 58, 0.08) 60%, rgba(10, 26, 46, 0.12) 100%);
}

.badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #dff0ff;
  color: #0d58ae;
  font-weight: 600;
  font-size: 0.9rem;
}

h1 {
  font-size: clamp(1.9rem, 3.5vw, 3.15rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  margin-bottom: 12px;
}

h3 {
  font-size: 1.2rem;
}

.hero p {
  color: #e7f0ff;
  max-width: 62ch;
}

.hero h1 {
  color: #ffffff;
}

.hero .badge {
  background: var(--primary);
  color: #ffffff;
}

.hero .badge a {
  color: #ffffff;
}

.hero .btn-outline {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: #ffffff;
}

.hero .btn-outline:hover {
  background: #17964b;
  border-color: #17964b;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card ul {
  margin: 14px 0 18px;
  padding-left: 18px;
}

.hero-card li {
  margin-bottom: 6px;
}

.section {
  padding: 72px 0;
}

.section-text {
  color: var(--muted);
  margin-bottom: 26px;
}

.cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card img {
  height: 320px;
  object-fit: cover;
  border-radius: 0;
}

.card--media-natural .card-media {
  background: #f0ebe3;
}

.card--media-natural .card-media img {
  height: auto;
  width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}

.card-media {
  position: relative;
}

.card-media::after {
  content: none;
  display: none;
}

.card-media-title {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  color: #ffffff;
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.75), 0 8px 22px rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-content p {
  color: var(--muted);
  margin: 10px 0 18px;
}

.card-content p.card-price {
  margin: 4px 0 6px;
}

.card-price {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
  max-width: 315px;
  margin: 4px 0 6px;
  padding: 10px 22px 10px 14px;
  border: 1px solid #e0a800;
  border-radius: 12px;
  background: linear-gradient(135deg, #f7c400 0%, #ffd84a 100%);
}

.card-price-label {
  font-size: 0.7rem;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a5c00;
  font-weight: 600;
}

.card-price-value {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 700;
  color: #2c2200;
}

.card-price-unit {
  font-size: 0.72rem;
  color: #7a5c00;
  font-weight: 500;
}

.card-price-badge {
  position: absolute;
  top: -12px;
  right: -10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #ffffff;
  font-size: 0.63rem;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.card-price-badge-secondary {
  top: 14px;
}

.card-price-badge-tertiary {
  top: 40px;
}

.card-price-badge-icon {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  color: currentColor;
}

.card-content > a.btn {
  margin-top: auto;
}

.card-includes {
  list-style: none;
  padding: 0;
  margin: var(--card-includes-spacing-top) 0 var(--card-includes-spacing-bottom);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--card-includes-row-gap);
}

.card-includes li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  gap: 8px;
  min-height: 72px;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--muted);
}

.card-include-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #21c063;
}

.card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  flex-wrap: nowrap;
}

.card-actions .btn {
  flex: 1;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
}

.lagoa-mobile-periodo {
  display: none;
}



.section-soft {
  background: var(--bg-soft);
}

.cta-box {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.cta-box p {
  max-width: 68ch;
  color: var(--muted);
  margin: 0 auto 20px;
}

.site-footer {
  padding: 56px 0 0;
  background: linear-gradient(to bottom, #2c2200 0%, #161100 22%, #070707 55%, #000000 100%);
  color: #f5e7b3;
}

.footer-main-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  padding-bottom: 34px;
}

.footer-main-grid > .footer-col:nth-child(1) {
  justify-self: center;
}

.footer-social-col {
  justify-self: center;
  text-align: left;
}

.footer-social-col .social-links {
  margin-left: 0;
  align-items: flex-start;
}

.footer-col h3 {
  color: #ffffff;
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 0.4px;
}

.footer-links,
.footer-contacts {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-contacts a,
.footer-contacts li {
  color: #f5e7b3;
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-contacts a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #2a2208;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #6a5520;
  transition: 0.2s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  background: #4b3b0d;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.social-link-instagram,
.social-link-facebook,
.social-link-tiktok {
  width: auto;
  padding: 0 10px;
  gap: 8px;
  border-radius: 999px;
}

.social-link-instagram span,
.social-link-facebook span,
.social-link-tiktok span {
  color: #ffffff;
  font-size: 0.88rem;
  line-height: 1;
}

.footer-bottom {
  border-top: 1px solid #6a5520;
  padding: 14px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-bottom-inner p {
  color: #d9c98b;
  font-size: 0.86rem;
}

.footer-policies {
  display: flex;
  gap: 16px;
}

.footer-policies a {
  color: #d9c98b;
  font-size: 0.86rem;
}

.footer-policies a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.subpage-hero {
  padding: 68px 0 40px;
}

.parallax-hero {
  height: 280px;
  background-image: var(--parallax-image);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 20, 40, 0.35), rgba(10, 20, 40, 0.6));
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 24px;
}

.parallax-overlay h2 {
  color: #fff;
  text-align: center;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.subpage-hero p {
  color: var(--muted);
  max-width: 72ch;
}

.detail-page .subpage-hero {
  padding: clamp(22px, 3.5vw, 36px) 0 10px;
}

.detail-page .subpage-hero h1 {
  margin: 0;
}

.detail-page main > .subpage-hero + .section {
  padding-top: 24px;
}

.itinerary {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.itinerary li {
  margin: 8px 0 8px 18px;
}

.detail-page .section-itinerary-below {
  padding-top: 4px;
}

.detail-page .itinerary--detail {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(247, 196, 0, 0.4);
  background: linear-gradient(
    165deg,
    #ffffff 0%,
    rgba(255, 253, 246, 1) 45%,
    rgba(232, 255, 241, 0.45) 100%
  );
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 36px) clamp(22px, 4vw, 40px);
  overflow: hidden;
}

.detail-page .itinerary--detail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(
    180deg,
    var(--primary) 0%,
    var(--primary-dark) 45%,
    var(--whatsapp) 100%
  );
}

.detail-page .itinerary--detail h2 {
  margin: 0 0 14px;
  padding-left: 6px;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--text);
  letter-spacing: -0.02em;
}

.itinerary-body + .itinerary-private,
.itinerary-bring + .itinerary-private {
  margin-top: 18px;
}

.detail-page .itinerary--detail .itinerary-private {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  padding: 16px 18px 17px;
  border-radius: 14px;
  border: 2px solid rgba(224, 168, 0, 0.55);
  background: linear-gradient(
    135deg,
    rgba(255, 248, 220, 0.98) 0%,
    rgba(255, 255, 255, 0.96) 42%,
    rgba(232, 255, 244, 0.78) 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 12px 30px rgba(10, 40, 60, 0.08);
  overflow: hidden;
}

.detail-page .itinerary--detail .itinerary-private::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 80% at 100% 0%,
    rgba(247, 196, 0, 0.2),
    transparent 55%
  );
  pointer-events: none;
}

.detail-page .itinerary--detail .itinerary-private-badge {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #124a36;
  background: rgba(33, 192, 99, 0.22);
  border: 1px solid rgba(33, 192, 99, 0.38);
}

.detail-page .itinerary--detail .itinerary-private-title {
  position: relative;
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.detail-page .itinerary--detail .itinerary-private-text {
  position: relative;
  margin: 0 0 12px;
  max-width: 70ch;
  font-size: 0.9rem;
  line-height: 1.58;
  color: var(--muted);
}

.detail-page .itinerary--detail .itinerary-private-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #128c7e;
  text-decoration: none;
  border-bottom: 2px solid rgba(18, 140, 126, 0.35);
  padding-bottom: 2px;
}

.detail-page .itinerary--detail .itinerary-private-cta:hover {
  color: #075e54;
  border-bottom-color: rgba(7, 94, 84, 0.55);
}

.detail-page .itinerary--detail ul {
  margin: 0;
  padding: 0 0 0 6px;
  list-style: none;
}

.detail-page .itinerary--detail li {
  margin: 0 0 14px;
  padding-left: 24px;
  position: relative;
  color: var(--muted);
  line-height: 1.55;
}

.detail-page .itinerary--detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-dark);
  box-shadow: 0 0 0 3px rgba(247, 196, 0, 0.28);
}

.detail-page .itinerary--detail li:last-child {
  margin-bottom: 0;
}

.itinerary-body {
  padding-left: 6px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.itinerary-kicker {
  margin: -4px 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.itinerary-block + .itinerary-block {
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
}

.itinerary-section-title {
  margin: 0 0 10px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.itinerary-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.itinerary-text + .itinerary-text {
  margin-top: 12px;
}

.itinerary-subhead {
  margin: 0 0 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.85;
}

.detail-page .itinerary--detail ul.itinerary-includes {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.detail-page .itinerary--detail ul.itinerary-includes li {
  margin: 0;
  padding: 12px 14px 12px 40px;
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.detail-page .itinerary--detail ul.itinerary-includes li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(37, 211, 102, 0.18);
  border: 1px solid rgba(37, 211, 102, 0.35);
  box-shadow: none;
}

.detail-page .itinerary--detail ul.itinerary-includes li::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 50%;
  width: 5px;
  height: 9px;
  margin-top: -1px;
  transform: translateY(-50%) rotate(45deg);
  border: solid #1fa855;
  border-width: 0 2px 2px 0;
}

.itinerary-times {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  max-width: 420px;
}

.itinerary-time-card {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(247, 196, 0, 0.12);
  border: 1px solid rgba(247, 196, 0, 0.35);
  text-align: center;
}

.itinerary-time-card span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.itinerary-time-card strong {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.itinerary-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}

.itinerary-lead {
  margin: 0;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.45;
}

.itinerary-bring {
  margin: 6px 0 20px;
  padding: 20px 18px 20px 22px;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(232, 248, 255, 0.65) 0%,
    rgba(255, 252, 235, 0.9) 55%,
    rgba(232, 255, 241, 0.5) 100%
  );
  border: 1px solid rgba(10, 60, 100, 0.1);
  box-shadow: 0 8px 24px rgba(10, 40, 90, 0.06);
}

.itinerary-bring-title {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.itinerary-bring-title::before {
  content: "◎";
  font-size: 0.95rem;
  opacity: 0.75;
  color: var(--primary-dark);
}

.itinerary-bring-tag {
  display: inline-block;
  margin: 0 0 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a5c7a;
  background: rgba(26, 92, 122, 0.1);
}

.itinerary-bring-intro {
  margin: 0 0 14px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 62ch;
}

.itinerary-bring-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.itinerary-bring-list li {
  margin: 0;
  padding: 0 0 0 22px;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.itinerary-bring-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--whatsapp) 100%);
  box-shadow: 0 0 0 2px rgba(247, 196, 0, 0.35);
}

.itinerary-route-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.itinerary-route-list li {
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 20, 40, 0.06);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
}

.detail-page .itinerary--detail ul.itinerary-route-list li::before {
  display: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.detail-page .section > .gallery:first-child {
  margin-top: 0;
}

.gallery-zoomable {
  cursor: zoom-in;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 22, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

body.lightbox-open {
  overflow: hidden;
}

.reservation-bar {
  margin-top: 30px;
  padding: 18px;
  border-radius: 14px;
  background: #e8fff1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.service-item p {
  color: var(--muted);
  margin: 6px 0;
}

.service-item .btn {
  margin-top: 14px;
}

.service-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.service-actions .btn {
  margin-top: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.video-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.video-card p {
  color: var(--muted);
  margin-top: 8px;
}

.faq-section {
  background: #f2f8ff;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px 18px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-item p {
  color: var(--muted);
  margin-top: 10px;
}

.faq-more-cta {
  margin-top: 22px;
  text-align: center;
}

.section-title {
  margin-top: 20px;
  margin-bottom: 8px;
}

.reviews-section {
  background: #ffffff;
}

.instagram-section {
  background: linear-gradient(180deg, #fff9e8 0%, #ffffff 100%);
}

.instagram-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.insta-outline-btn {
  color: #1f1f1f;
  border-color: #d8d8d8;
}

.insta-outline-btn:hover {
  color: #1f1f1f;
}

.instagram-widget-wrap {
  margin-top: 8px;
}

.instagram-embed {
  width: 100%;
  min-height: 520px;
  border: 0;
  border-radius: 14px;
  box-shadow: var(--shadow);
  background: #ffffff;
}

.instagram-embed-fallback {
  margin-top: 12px;
}

.instagram-placeholder {
  background: #ffffff;
  border: 1px dashed #d7a300;
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.instagram-placeholder p {
  color: var(--muted);
  margin: 4px 0;
}

.reviews-widget-wrap {
  margin-top: 12px;
}

.reviews-placeholder {
  background: var(--bg-soft);
  border: 1px dashed #9bbce4;
  border-radius: 14px;
  padding: 20px;
}

.reviews-placeholder p {
  color: var(--muted);
  margin: 4px 0;
}

.map-embed-wrap {
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-embed-wrap iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.page-fotografias .subpage-hero {
  padding: clamp(22px, 3.5vw, 36px) 0 10px;
}

.page-fotografias .subpage-hero h1 {
  margin: 0;
}

.page-fotografias main > .subpage-hero + .section {
  padding-top: 24px;
}

.photo-region {
  scroll-margin-top: 100px;
}

.photo-region h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  margin: 0 0 14px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 0;
}

.photo-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.photo-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

@keyframes mobile-nav-link-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .site-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 30;
    background: #ffffff !important;
    background-image: none !important;
    border-bottom: 0;
    backdrop-filter: none;
    overflow: visible;
  }

  .site-header::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 176px;
    height: 100%;
    background: #f7c400;
    clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
    z-index: 1;
  }

  .site-header::before {
    content: none;
  }

  .site-header .container.nav-wrap {
    width: 100%;
    margin: 0;
    background: transparent;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    position: relative;
    z-index: 50;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(10, 18, 32, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }

  .site-header.is-mobile-menu-open .mobile-menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.mobile-menu-open {
    overflow: hidden;
    touch-action: none;
  }

  .hero-grid,
  .cards,
  .service-list,
  .video-grid,
  .footer-main-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 45;
    flex-direction: column;
    gap: 0;
    width: min(250px, 86vw);
    height: 100vh;
    height: 100dvh;
    padding: 88px 14px 22px;
    border: 0;
    border-radius: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.35);
    background: #f7c400;
    box-shadow: -12px 0 34px rgba(0, 0, 0, 0.22);
    transform: translate3d(100%, 0, 0);
    pointer-events: none;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .site-header.is-mobile-menu-open {
    z-index: 1300;
  }

  .site-header.is-mobile-menu-open .main-nav {
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  .site-header.is-mobile-menu-open .main-nav a {
    color: #ffffff;
    font-size: 0.98rem;
    line-height: 1.35;
    font-weight: 600;
    padding: 11px 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    opacity: 0;
    animation: mobile-nav-link-in 0.45s ease forwards;
    animation-delay: calc(0.12s + (var(--mobile-nav-i, 0) * 0.06s));
  }

  .site-header.is-mobile-menu-open .main-nav a:nth-child(1) {
    --mobile-nav-i: 0;
  }
  .site-header.is-mobile-menu-open .main-nav a:nth-child(2) {
    --mobile-nav-i: 1;
  }
  .site-header.is-mobile-menu-open .main-nav a:nth-child(3) {
    --mobile-nav-i: 2;
  }
  .site-header.is-mobile-menu-open .main-nav a:nth-child(4) {
    --mobile-nav-i: 3;
  }
  .site-header.is-mobile-menu-open .main-nav a:nth-child(5) {
    --mobile-nav-i: 4;
  }
  .site-header.is-mobile-menu-open .main-nav a:nth-child(6) {
    --mobile-nav-i: 5;
  }
  .site-header.is-mobile-menu-open .main-nav a:nth-child(7) {
    --mobile-nav-i: 6;
  }
  .site-header.is-mobile-menu-open .main-nav a:nth-child(8) {
    --mobile-nav-i: 7;
  }
  .site-header.is-mobile-menu-open .main-nav a:nth-child(9) {
    --mobile-nav-i: 8;
  }
  .site-header.is-mobile-menu-open .main-nav a:nth-child(10) {
    --mobile-nav-i: 9;
  }

  .site-header.is-mobile-menu-open .main-nav a:last-child {
    border-bottom: 0;
  }

  .site-header.is-mobile-menu-open .main-nav a:hover {
    color: #fff8d8;
  }

  .site-header.is-mobile-menu-open.is-mobile-menu-closing .main-nav {
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
  }

  .header-actions {
    display: block;
    position: absolute;
    top: 52px;
    right: 84px;
    width: auto;
    z-index: 70;
  }

  .header-actions .btn-whatsapp {
    display: none;
  }

  .header-actions .language-dropdown {
    transform: none;
    position: relative;
  }

  .header-actions .language-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    font-size: 0;
    border-radius: 8px;
    border: 1px solid #ffffff;
    background: #f7c400;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions .language-toggle::before {
    content: "";
    width: 19px;
    height: 19px;
    display: block;
    background-color: #ffffff;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10.01 10.01 0 0 0 12 2Zm7.93 9h-3.09a15.9 15.9 0 0 0-1.26-5A8.02 8.02 0 0 1 19.93 11ZM12 4.07c.89 1.2 1.85 3.33 2.22 6.93H9.78C10.15 7.4 11.11 5.27 12 4.07ZM4.07 13h3.09a15.9 15.9 0 0 0 1.26 5A8.02 8.02 0 0 1 4.07 13ZM7.16 11H4.07a8.02 8.02 0 0 1 4.35-5 15.9 15.9 0 0 0-1.26 5Zm2.62 2h4.44c-.37 3.6-1.33 5.73-2.22 6.93-.89-1.2-1.85-3.33-2.22-6.93Zm5.8 5a15.9 15.9 0 0 0 1.26-5h3.09a8.02 8.02 0 0 1-4.35 5Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10.01 10.01 0 0 0 12 2Zm7.93 9h-3.09a15.9 15.9 0 0 0-1.26-5A8.02 8.02 0 0 1 19.93 11ZM12 4.07c.89 1.2 1.85 3.33 2.22 6.93H9.78C10.15 7.4 11.11 5.27 12 4.07ZM4.07 13h3.09a15.9 15.9 0 0 0 1.26 5A8.02 8.02 0 0 1 4.07 13ZM7.16 11H4.07a8.02 8.02 0 0 1 4.35-5 15.9 15.9 0 0 0-1.26 5Zm2.62 2h4.44c-.37 3.6-1.33 5.73-2.22 6.93-.89-1.2-1.85-3.33-2.22-6.93Zm5.8 5a15.9 15.9 0 0 0 1.26-5h3.09a8.02 8.02 0 0 1-4.35 5Z'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
  }

  .mobile-menu-toggle {
    display: inline-block;
    position: absolute;
    top: 52px;
    right: 34px;
    z-index: 70;
  }

  .parallax-hero {
    height: 220px;
    background-attachment: scroll;
  }

  .card img {
    height: 360px;
  }

  .cards > .card:first-child .card-media-title {
    left: 40%;
    top: 24px;
    color: #ffffff;
  }

  .cards > .card:first-child .card-media-title .word-azul {
    color: #8fd6ff;
  }

  .cards > .card:first-child .card-includes {
    margin-top: 6px;
  }

  .cards > .card:first-child .lagoa-mobile-periodo {
    display: block;
    margin: 2px 0 6px;
    font-size: 0.9rem;
    line-height: 1.35;
    color: #1f1f1f;
  }

  .cards > .card:first-child .card-actions {
    margin-top: 10px;
  }

  .hero--desktop-split .hero-desktop-split__photo,
  .hero--desktop-split .hero-desktop-split__gradient {
    display: none;
  }

  .hero--desktop-split {
    background-image: url("hero-desktop-couple.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg);
  }

  .hero--empty {
    height: 100vh;
    min-height: 100vh;
  }

  .hero-title-wrap {
    align-items: flex-start;
    padding-top: 110px;
  }

  .nav-wrap {
    grid-template-columns: auto 1fr auto;
    min-height: 110px !important;
    height: 110px !important;
    max-height: 110px !important;
    gap: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: start;
    padding-top: 0;
  }

  /* Home moderna: barra 88px; logo maior usa overflow visível (não herdar 110px do .nav-wrap acima) */
  .site-header.site-header--modern .nav-wrap {
    min-height: var(--header-bar-modern) !important;
    height: var(--header-bar-modern) !important;
    max-height: var(--header-bar-modern) !important;
    flex-shrink: 0;
    align-items: center;
    overflow: visible;
  }

  .brand {
    display: block;
    position: relative;
    z-index: 10;
    grid-column: 1;
    justify-self: start;
    align-self: start;
    width: 500px;
    height: 181px;
    margin-left: -75px;
    margin-top: -22px;
    background-size: contain;
    background-position: left top;
  }

  .footer-main-grid {
    justify-items: start;
    text-align: left;
  }

  .footer-main-grid > .footer-col:nth-child(1),
  .footer-social-col {
    justify-self: start;
  }

  .social-links {
    align-items: flex-start;
  }

  .footer-bottom-inner {
    justify-content: flex-start;
    text-align: left;
  }

  .footer-policies {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

}

/* Home index: header + hero — ver :root “HOME INDEX — CABEÇALHO + LOGO (TRAVADO)” */
.site-header.site-header--modern {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  overflow: visible;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.site-header--modern.is-scrolled {
  background: #ffffff;
  border-bottom-color: #f3f4f6;
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.08);
}

.site-header.site-header--modern .nav-wrap {
  min-height: var(--header-bar-modern) !important;
  height: var(--header-bar-modern) !important;
  max-height: var(--header-bar-modern) !important;
  flex-shrink: 0;
  align-items: center;
  overflow: visible;
}

.site-header.site-header--modern .main-nav {
  align-self: center;
  align-items: center;
}

.site-header.site-header--modern .header-actions {
  align-self: center;
}

.site-header.site-header--modern .mobile-menu-toggle {
  align-self: center;
}

.site-header.site-header--modern .container.nav-wrap {
  padding-left: clamp(16px, 3.5vw, 40px);
}

/* Logo na home: imagem nítida (evita zoom/corte do background) */
.site-header.site-header--modern .brand.brand--image {
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: flex-start;
  width: auto;
  min-width: 0;
  max-width: min(var(--logo-home-w-cap), var(--logo-home-vw));
  height: var(--logo-home-h);
  margin-left: clamp(12px, 2vw, 28px);
  background: none;
  text-indent: 0;
  overflow: visible;
  white-space: normal;
}

.site-header.site-header--modern .brand.brand--image .brand__img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.site-header.site-header--modern .main-nav a {
  color: #374151;
  font-size: 0.875rem;
  padding: 8px 14px;
  border-radius: 8px;
}

.site-header.site-header--modern .main-nav a:hover {
  color: var(--primary-dark);
  background: rgba(247, 196, 0, 0.12);
}

.site-header.site-header--modern .nav-wrap .btn-whatsapp {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 25px -8px rgba(247, 196, 0, 0.4);
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.875rem;
}

.site-header.site-header--modern .nav-wrap .btn-whatsapp:hover {
  background: linear-gradient(to right, var(--primary-dark), #c99a00);
  color: #ffffff;
}

.site-header.site-header--modern .language-toggle::before {
  background-color: #374151;
}

/* Subpáginas: compensar menu fixo (a home usa .page-home + espaçamento do hero) */
body:not(.page-home) .site-header.site-header--modern ~ .parallax-hero {
  margin-top: var(--header-bar-modern);
}

body:not(.page-home) .site-header.site-header--modern + main {
  padding-top: var(--header-bar-modern);
}

@media (min-width: 981px) {
  .site-header.site-header--modern .nav-wrap {
    transform: translateY(var(--header-nav-desktop-nudge-y));
  }
}

.hero-v2 {
  position: relative;
  min-height: clamp(520px, 78svh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
  /* Enquadramento hero-bg-sunset-dunas.png (768×1024, retrato): pôr do sol e reflexo na lagoa */
  --hero-bg-pos-x: 56%;
  --hero-bg-pos-y: 46%;
  /* scale(1) = sem faixa do fundo branco nas bordas; <1 só se quiser “afastar” o zoom */
  --hero-bg-zoom: 1;
}

@media (min-width: 981px) {
  /* Hero: viewport inteira no desktop (primeira tela só o destaque) */
  .hero-v2 {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    --hero-bg-pos-x: 54%;
    --hero-bg-pos-y: 46%;
    --hero-bg-zoom: 1;
  }

  /* Branco só atrás do texto à esquerda; à direita fica 100% foto (sem “faixa” branca) */
  .hero-v2__overlay--lr {
    background: linear-gradient(
      to right,
      #ffffff 0%,
      rgba(255, 255, 255, 0.9) 22%,
      rgba(255, 255, 255, 0.32) 38%,
      transparent 52%,
      transparent 100%
    );
  }
}

.hero-v2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-v2__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-bg-pos-x) var(--hero-bg-pos-y);
  transform: scale(var(--hero-bg-zoom));
  transform-origin: var(--hero-bg-pos-x) var(--hero-bg-pos-y);
}

.hero-v2__overlay--lr {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255, 255, 255, 0.88) 24%,
    rgba(255, 255, 255, 0.35) 40%,
    transparent 54%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-v2__overlay--tb {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 45%,
    rgba(255, 255, 255, 0.75) 100%
  );
  pointer-events: none;
}

.hero-v2__fade-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5.5rem;
  background: linear-gradient(to top, #fffdf6, transparent);
  pointer-events: none;
}

.hero-v2__blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-v2__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}

.hero-v2__blob--a {
  top: 8rem;
  right: 3rem;
  width: min(18rem, 42vw);
  height: min(18rem, 42vw);
  background: linear-gradient(to bottom right, rgba(247, 196, 0, 0.22), rgba(224, 168, 0, 0.14));
}

.hero-v2__blob--b {
  bottom: 7rem;
  right: 8rem;
  width: min(12rem, 32vw);
  height: min(12rem, 32vw);
  background: linear-gradient(to top right, rgba(255, 230, 140, 0.18), rgba(247, 196, 0, 0.1));
}

.hero-v2__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(5rem, 12vh, 6.25rem) 0 clamp(2rem, 4vh, 3rem);
}

.hero-v2__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 3vw, 2.5rem);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-v2__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(247, 196, 0, 0.7);
  background: linear-gradient(to right, rgba(247, 196, 0, 0.28), rgba(247, 196, 0, 0.14));
  color: #111827;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 8px 20px -12px rgba(0, 0, 0, 0.35);
}

.hero-v2__icon--pin {
  width: 16px;
  height: 16px;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.hero-v2__title {
  margin: 1rem 0 0;
  font-size: clamp(1.9rem, 3.55vw, 2.95rem);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  letter-spacing: -0.015em;
  max-width: min(26rem, 100%);
}

.hero-v2__title-break {
  display: block;
  margin-top: 0.15em;
}

.hero-v2__gradient-text {
  background: linear-gradient(to right, #ffe066, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-v2__subtitle {
  margin: 0.85rem 0 0;
  max-width: 28rem;
  font-size: clamp(1.0625rem, 1.32vw, 1.25rem);
  font-weight: 600;
  color: #000000;
  line-height: 1.55;
}

.hero-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  padding-top: 0.65rem;
}

.hero-v2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.35rem;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-v2__btn--primary {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: #ffffff;
  box-shadow: 0 16px 36px -10px rgba(247, 196, 0, 0.5);
}

.hero-v2__btn--primary:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 40px -8px rgba(247, 196, 0, 0.58);
}

.hero-v2__btn--outline {
  border: 1px solid rgba(247, 196, 0, 0.55);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  color: #1f2937;
}

.hero-v2__btn--outline:hover {
  background: rgba(247, 196, 0, 0.12);
  border-color: var(--primary);
  color: #111827;
}

.hero-v2__btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero-v2__btn-icon--chev {
  width: 18px;
  height: 18px;
}

.hero-v2__col--text {
  min-width: 0;
}

.hero-v2__col--card {
  position: relative;
  min-width: 0;
}

@media (min-width: 1024px) {
  .hero-v2__col--card {
    max-width: min(520px, 48vw);
    justify-self: end;
    width: 100%;
  }
}

.hero-v2__feature-wrap {
  position: relative;
  padding: 6px;
}

.hero-v2__feature-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #f3f4f6;
  padding: 1.35rem 1.4rem 1.4rem;
  box-shadow: 0 20px 44px -16px rgba(0, 0, 0, 0.12);
}

/* Proporção exata de hero-card-combo-circuito.png (1024×682) */
.hero-v2__feature-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1024 / 682;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1.05rem;
}

.hero-v2__feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-v2__chip {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 999px;
  box-shadow: 0 6px 16px -6px rgba(247, 196, 0, 0.42);
}

.hero-v2__feature-title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}

.hero-v2__feature-desc {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

.hero-v2__feature-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-v2__feature-from {
  display: block;
  font-size: 0.75rem;
  color: #9ca3af;
}

.hero-v2__feature-price {
  margin: 0;
  font-size: 1.42rem;
  font-weight: 700;
  color: #111827;
}

.hero-v2__feature-suffix {
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-v2__feature-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  box-shadow: 0 8px 18px -8px rgba(247, 196, 0, 0.38);
}

.hero-v2__feature-cta:hover {
  background: linear-gradient(to right, var(--primary-dark), #c99a00);
}

.hero-v2__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

.hero-v2__float--live {
  top: -6px;
  left: -6px;
  background: #ffffff;
  color: #1f2937;
  border: 1px solid rgba(247, 196, 0, 0.35);
}

.hero-v2__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: hero-v2-pulse 1.8s ease-in-out infinite;
}

@keyframes hero-v2-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.05);
  }
}

#passeios {
  scroll-margin-top: calc(var(--header-bar-modern) + 12px);
}

@media (max-width: 1023px) {
  .hero-v2__col--card {
    display: none;
  }

  .hero-v2__grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero-v2__inner {
    padding-top: 5.25rem;
  }

  .hero-v2__title {
    max-width: none;
  }

  .hero-v2__blob--a {
    right: -4rem;
    top: 8rem;
  }

  .hero-v2__blob--b {
    display: none;
  }
}

@media (max-width: 980px) {
  .site-header.site-header--modern {
    position: fixed;
    top: 0 !important;
    left: 0;
    width: 100%;
    overflow: visible;
    background: rgba(255, 255, 255, 0.98) !important;
    background-image: none !important;
    border-bottom: 1px solid #f3f4f6;
  }

  .site-header.site-header--modern::before,
  .site-header.site-header--modern::after {
    content: none !important;
    display: none !important;
    clip-path: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  .site-header.site-header--modern .mobile-menu-toggle {
    border-color: #e5e7eb;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
  }

  .site-header.site-header--modern .mobile-menu-toggle span {
    background: #ffffff;
  }

  .site-header.site-header--modern .brand.brand--image {
    width: auto;
    max-width: min(var(--logo-home-w-cap-sm), var(--logo-home-vw-sm));
    height: var(--logo-home-h-sm);
    margin-left: clamp(8px, 3vw, 20px);
    margin-top: 0;
    background-image: none;
  }

  .site-header.site-header--modern .container.nav-wrap {
    padding-left: clamp(12px, 4vw, 24px);
  }

  .site-header.site-header--modern .nav-wrap {
    min-height: var(--header-bar-modern) !important;
    height: var(--header-bar-modern) !important;
    max-height: var(--header-bar-modern) !important;
    align-items: center;
    overflow: visible;
  }

  /* Barra 88px: anula top:52px do layout antigo; centraliza na linha média */
  .site-header.site-header--modern .header-actions {
    display: flex;
    top: calc(50% + 8px);
    right: 84px;
    transform: translateY(-50%);
    align-items: center;
    justify-content: flex-end;
  }

  .site-header.site-header--modern .mobile-menu-toggle {
    top: calc(50% + 8px);
    transform: translateY(-50%);
  }

  .site-header.site-header--modern .header-actions .language-toggle::before {
    background-color: #ffffff;
  }

  .site-header.site-header--modern .brand.brand--image .brand__img {
    height: 100%;
  }

  .hero-v2__overlay--lr {
    background: linear-gradient(
      to bottom,
      rgba(8, 18, 32, 0.52) 0%,
      rgba(8, 18, 32, 0.3) 36%,
      rgba(8, 18, 32, 0.12) 62%,
      transparent 100%
    );
  }

  .hero-v2__overlay--tb {
    background: linear-gradient(
      to bottom,
      rgba(8, 18, 32, 0.2) 0%,
      transparent 45%,
      rgba(8, 18, 32, 0.28) 100%
    );
  }

  .hero-v2 {
    --hero-bg-pos-x: 58%;
    --hero-bg-pos-y: 45%;
    --hero-bg-zoom: 1.05;
  }

  .hero-v2__inner {
    padding-top: 7rem;
  }

  .hero-v2__col--text {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - var(--header-bar-modern));
    padding-left: clamp(10px, 4vw, 18px);
    padding-right: clamp(10px, 4vw, 18px);
  }

  .hero-v2__title {
    font-size: clamp(1.55rem, 7.4vw, 2.15rem);
    line-height: 1.15;
    max-width: 18ch;
  }

  .hero-v2__title-break {
    margin-top: 0.2em;
  }

  .hero-v2__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: auto;
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 8px);
  }

  .hero-v2__btn {
    justify-content: center;
    width: 100%;
  }
}
