:root {
  --bg: #ffffff;
  --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 ≥769px: 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 ≤768: .header-actions / .mobile-menu-toggle com top:50% + translateY(-50%) na barra
   * ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   */
  /* Logo header: proporção fixa do logo.png (420×117) */
  --logo-aspect-w: 420;
  --logo-aspect-h: 117;
  --logo-home-h: 45px;
  --logo-home-w-cap: 160px;
  --logo-home-vw: 18vw;
  --logo-home-h-sm: 50px;
  --logo-home-w-cap-sm: 200px;
  --logo-home-vw-sm: 46vw;
  --header-bar-modern: 88px;
  --header-nav-desktop-nudge-y: -12px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

* {
  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;
  overflow-x: hidden;
}

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;
}

/* Desktop: mesmo grid da home (logo | nav flexível | ações) para o menu não “pular” entre páginas */
@media (min-width: 769px) {
  body.detail-page .site-header.site-header--modern .nav-wrap {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }
}

.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-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #ffffff;
  border: none;
}

.btn-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 40%, #d6249f 55%, #285aeb 90%);
  color: #ffffff;
}

.btn-instagram::before {
  content: "";
  width: 1.125em;
  height: 1.125em;
  flex-shrink: 0;
  margin-right: 6px;
  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='M7.75 2h8.5A5.76 5.76 0 0 1 22 7.75v8.5A5.76 5.76 0 0 1 16.25 22h-8.5A5.76 5.76 0 0 1 2 16.25v-8.5A5.76 5.76 0 0 1 7.75 2Zm0 2A3.75 3.75 0 0 0 4 7.75v8.5A3.75 3.75 0 0 0 7.75 20h8.5A3.75 3.75 0 0 0 20 16.25v-8.5A3.75 3.75 0 0 0 16.25 4h-8.5Zm8.88 1.5a1.12 1.12 0 1 1 0 2.25 1.12 1.12 0 0 1 0-2.25ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%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='M7.75 2h8.5A5.76 5.76 0 0 1 22 7.75v8.5A5.76 5.76 0 0 1 16.25 22h-8.5A5.76 5.76 0 0 1 2 16.25v-8.5A5.76 5.76 0 0 1 7.75 2Zm0 2A3.75 3.75 0 0 0 4 7.75v8.5A3.75 3.75 0 0 0 7.75 20h8.5A3.75 3.75 0 0 0 20 16.25v-8.5A3.75 3.75 0 0 0 16.25 4h-8.5Zm8.88 1.5a1.12 1.12 0 1 1 0 2.25 1.12 1.12 0 0 1 0-2.25ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%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-tiktok {
  background: #000000;
  color: #ffffff;
  border: none;
}

.btn-tiktok:hover {
  background: #111111;
  color: #ffffff;
}

.btn-tiktok::before {
  content: "";
  width: 1.125em;
  height: 1.125em;
  flex-shrink: 0;
  margin-right: 6px;
  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='M13.5 2h2.8c.2 1.6 1.1 3.1 2.5 4 .9.6 1.9.9 3 .9v2.9c-1.3 0-2.6-.3-3.7-.9-.6-.3-1.1-.7-1.6-1.1v7.4c0 1.4-.4 2.7-1.2 3.8a6.62 6.62 0 0 1-5.2 2.8c-3.7 0-6.7-3-6.7-6.7s3-6.7 6.7-6.7c.4 0 .9 0 1.3.1v3a3.78 3.78 0 0 0-1.3-.2c-2 0-3.7 1.6-3.7 3.7 0 2 1.6 3.7 3.7 3.7 1.9 0 3.5-1.5 3.7-3.4V2Z'/%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='M13.5 2h2.8c.2 1.6 1.1 3.1 2.5 4 .9.6 1.9.9 3 .9v2.9c-1.3 0-2.6-.3-3.7-.9-.6-.3-1.1-.7-1.6-1.1v7.4c0 1.4-.4 2.7-1.2 3.8a6.62 6.62 0 0 1-5.2 2.8c-3.7 0-6.7-3-6.7-6.7s3-6.7 6.7-6.7c.4 0 .9 0 1.3.1v3a3.78 3.78 0 0 0-1.3-.2c-2 0-3.7 1.6-3.7 3.7 0 2 1.6 3.7 3.7 3.7 1.9 0 3.5-1.5 3.7-3.4V2Z'/%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: 769px) {
  .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;
}

.title-local-highlight {
  color: var(--primary);
}

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;
}

.page-home #passeios.section {
  padding-top: 28px;
}

.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%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 46px rgba(10, 40, 90, 0.18);
  }
}

.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--clickable {
  cursor: pointer;
}

.card-media--clickable:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: -3px;
}

.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: 14px;
  flex-wrap: nowrap;
}

.card-actions .btn {
  flex: 1;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}

.card-content > .card-meta {
  margin: 0 0 12px;
}

.card-period,
.card-private {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  width: fit-content;
  max-width: 100%;
}

.card-period {
  background: rgba(7, 95, 161, 0.10);
  color: var(--primary);
}

.card-private {
  background: rgba(20, 22, 31, 0.08);
  color: #1f2937;
}

.card-content p.card-period,
.card-content p.card-private {
  margin: 0;
}

.card-period-icon,
.card-private-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.card-period span,
.card-private span {
  white-space: nowrap;
}



.section-soft {
  background: var(--bg-soft);
}

.transfer-showcase {
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(36px, 5vw, 56px);
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.transfer-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(22px, 3.5vw, 44px);
  align-items: center;
}

.transfer-showcase-copy h2 {
  margin-bottom: 12px;
}

.transfer-showcase-text {
  margin-bottom: 0;
  max-width: 46ch;
}

.transfer-showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.transfer-showcase-carousel-wrap {
  width: 100%;
  max-width: min(640px, 100%);
  margin-left: auto;
  margin-right: 0;
}

@media (min-width: 1200px) {
  .transfer-showcase-carousel-wrap {
    max-width: min(700px, 100%);
  }
}

.transfer-carousel {
  position: relative;
}

.transfer-carousel__viewport {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e8e4dd;
}

.transfer-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.65s ease;
  pointer-events: none;
}

.transfer-carousel__slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.transfer-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.55s ease;
}

@media (hover: hover) and (pointer: fine) {
  .transfer-carousel__viewport:hover .transfer-carousel__slide.is-active img {
    transform: scale(1.045);
  }
}

.transfer-carousel__toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.transfer-carousel__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.transfer-carousel__btn:hover {
  background: #fff9e8;
  border-color: rgba(215, 163, 0, 0.45);
}

.transfer-carousel__btn:active {
  transform: scale(0.96);
}

.transfer-carousel__btn svg {
  width: 22px;
  height: 22px;
}

.transfer-carousel__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.transfer-carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.transfer-carousel__dot.is-active {
  background: #d7a300;
  transform: scale(1.15);
}

.scroll-reveal-soft.scroll-reveal-init {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.scroll-reveal-soft.scroll-reveal-init.scroll-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .transfer-showcase-grid {
    grid-template-columns: 1fr;
  }

  .transfer-showcase-carousel-wrap {
    order: -1;
    margin-left: auto;
    margin-right: auto;
    max-width: min(460px, min(100%, 94vw));
  }

  .transfer-showcase-text {
    max-width: none;
  }
}

.about-showcase {
  padding-top: 44px;
}

.page-about .about-showcase {
  padding-top: 12px;
}

.about-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.about-showcase-content h2 {
  margin-bottom: 12px;
}

.about-showcase-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 20px);
  align-items: stretch;
}

/* Quem somos: carrossel à direita (desktop); texto acima no mobile */
.page-about .about-showcase-media.about-carousel-wrap {
  display: block;
  width: 100%;
  max-width: min(460px, 100%);
  margin-left: auto;
  margin-right: 0;
}

.page-about .about-carousel-wrap .transfer-carousel__slide:nth-child(4) img {
  object-position: center 62%;
}

.about-photo-slot {
  min-height: 330px;
  border-radius: 18px;
  border: 2px dashed rgba(0, 0, 0, 0.18);
  background: #ffffff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-weight: 600;
  color: var(--muted);
}

/* Imagens em fluxo normal (sem absolute): evita altura 0 no Safari/WebView com grid + aspect-ratio */
.about-photo-slot--image {
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #e8e4dd;
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
}

.about-photo-slot--image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  max-height: min(70vh, 520px);
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}

.about-showcase-media .about-photo-slot:nth-child(1),
.about-showcase-media .about-photo-slot:nth-child(2),
.about-showcase-media .about-photo-slot:nth-child(3),
.about-showcase-media .about-photo-slot:nth-child(4) {
  min-height: 0;
  transform: none;
}

.about-commit-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-commit-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
  padding: 18px;
}

.about-commit-card h3 {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .about-showcase-grid,
  .about-commit-grid {
    grid-template-columns: 1fr;
  }

  .about-showcase-media:not(.about-carousel-wrap) {
    grid-template-columns: 1fr;
    max-width: min(420px, 100%);
    margin-left: auto;
    margin-right: auto;
  }

  .page-about .about-showcase-media.about-carousel-wrap {
    max-width: min(440px, min(100%, 94vw));
    margin-left: auto;
    margin-right: auto;
  }

  .about-photo-slot--image img {
    max-height: none;
    aspect-ratio: 3 / 4;
    max-width: 100%;
  }

  .about-photo-slot:not(.about-photo-slot--image) {
    min-height: 220px;
  }
}

.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, #5a4416 0%, #2f2510 22%, #1a1a1a 55%, #141414 100%);
  color: #f5e7b3;
}

.footer-main-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  padding-bottom: 34px;
}

.footer-main-grid > .footer-col:nth-child(1) {
  justify-self: start;
  align-self: center;
}

.footer-main-grid > .footer-col:nth-child(1) .footer-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-main-grid > .footer-col:nth-child(2) {
  justify-self: start;
  text-align: left;
  align-self: start;
}

.footer-main-grid > .footer-col:nth-child(3) {
  justify-self: center;
  text-align: left;
  align-self: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 90px;
  max-width: min(230px, 100%);
  object-fit: contain;
  border-radius: 0;
}

.footer-social-col {
  justify-self: end;
  text-align: left;
  align-self: start;
}

.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;
}

.social-link-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 6%, #fd5949 44%, #d6249f 62%, #285aeb 92%);
  border: none;
}

.social-link-instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 6%, #fd5949 40%, #d6249f 58%, #285aeb 90%);
}

.social-link-tiktok {
  background: #000000;
  border: none;
}

.social-link-tiktok:hover {
  background: #121212;
}

.social-link-facebook {
  background: #1877f2;
  border: none;
}

.social-link-facebook:hover {
  background: #166fe0;
}

.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;
}

#catalogo > .subpage-hero {
  padding-bottom: 14px;
}

#catalogo > .section-services-list {
  padding-top: 20px;
}

.subpage-hero p {
  color: var(--muted);
  max-width: 72ch;
}

.detail-page .subpage-hero {
  padding: clamp(22px, 3.5vw, 36px) 0 10px;
  text-align: center;
}

.detail-page .subpage-hero h1 {
  margin: 0;
  text-align: center;
}

.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;
  align-items: start;
}

/* Evita imagens esticadas na altura da linha do grid (mistura retrato/paisagem) */
.detail-page .gallery > img {
  width: 100%;
  height: auto;
}

.detail-page .gallery > img.scroll-reveal-init,
.page-fotografias .gallery .photo-card img.scroll-reveal-init {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}

.detail-page .gallery > img.scroll-reveal-init.scroll-reveal-visible,
.page-fotografias .gallery .photo-card img.scroll-reveal-init.scroll-reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.page-contact .contact-photo-slot.scroll-reveal-init {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.page-contact .contact-photo-slot.scroll-reveal-init.scroll-reveal-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .scroll-reveal-mobile.scroll-reveal-init {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
  }

  .scroll-reveal-mobile.scroll-reveal-init.scroll-reveal-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

.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;
}

.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;
}

.detail-page .instagram-reel-wrap {
  max-width: 560px;
  margin: 0 auto;
}

.detail-page .instagram-reel-wrap .section-title {
  margin-bottom: 16px;
  text-align: center;
}

.detail-page .instagram-reel-wrap .instagram-media {
  margin-left: auto !important;
  margin-right: auto !important;
}

.detail-page .instagram-reel-fallback {
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
}

.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;
}

.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: 768px) {
  .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;
  }

  .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;
  }

  .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: center;
    text-align: center;
  }

  .footer-main-grid > .footer-col:nth-child(1),
  .footer-main-grid > .footer-col:nth-child(2),
  .footer-main-grid > .footer-col:nth-child(3),
  .footer-main-grid > .footer-col:nth-child(4),
  .footer-social-col {
    justify-self: center;
    align-self: center;
    text-align: center;
  }

  .footer-main-grid > .footer-col:nth-child(1) .footer-logo {
    justify-content: center;
  }

  .footer-social-col .social-links,
  .social-links {
    align-items: center;
  }

  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-policies {
    flex-direction: column;
    align-items: center;
    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);
  padding-right: clamp(16px, 3.5vw, 40px);
}

@media (min-width: 769px) {
  .site-header.site-header--modern .brand.brand--image {
    transform: translateY(23px);
  }

  .site-header.site-header--modern .main-nav,
  .site-header.site-header--modern .header-actions {
    transform: translateY(9px);
  }
}

/* Logo na home: PNG 646×268 (horizontal) — altura fixa + width:auto mantém proporção (Safari); pai em fit-content não estica a img */
.site-header.site-header--modern .brand.brand--image {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: flex-start;
  width: fit-content;
  min-width: 0;
  flex: 0 1 auto;
  flex-shrink: 1;
  height: auto;
  margin-left: clamp(12px, 2vw, 28px);
  background: none;
  text-indent: 0;
  overflow: visible;
  white-space: normal;
  transform: translateY(4px);
}

/* Desktop: altura fixa + width:auto; max-width só na img (não no link) para o Safari não “apertar” o flex */
.site-header.site-header--modern .brand.brand--image .brand__img {
  display: block;
  box-sizing: border-box;
  flex: 0 0 auto;
  align-self: center;
  min-width: 0;
  width: auto;
  height: 64px;
  max-width: min(180px, 28vw);
  object-fit: contain;
  -o-object-fit: contain;
  object-position: left center;
  border-radius: 0;
  image-rendering: auto;
}

@media (min-width: 769px) {
  .site-header.site-header--modern .brand.brand--image .brand__img {
    height: 52px;
    max-width: min(160px, 20vw);
  }
}

/* Navegadores muito antigos sem escalonar bem com só height — ancora largura pela proporção */
@supports not (aspect-ratio: 1) {
  .site-header.site-header--modern .brand.brand--image .brand__img {
    width: calc(64px * 646 / 268);
    height: 64px;
  }

  @media (min-width: 769px) {
    .site-header.site-header--modern .brand.brand--image .brand__img {
      width: calc(52px * 646 / 268);
      height: 52px;
    }
  }
}

.site-header.site-header--modern .main-nav a {
  color: #374151;
  font-size: 0.875rem;
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-block;
  transform: scale(1);
  transform-origin: center center;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.22s ease;
}

.site-header.site-header--modern .main-nav a:hover {
  color: var(--primary-dark);
  background: rgba(247, 196, 0, 0.12);
}

@media (hover: hover) and (pointer: fine) {
  .site-header.site-header--modern .main-nav a:hover {
    transform: scale(1.1);
  }

  .site-header.site-header--modern .header-actions .language-toggle:hover {
    transform: scale(1.1);
  }

  .site-header.site-header--modern .nav-wrap .btn-whatsapp:hover {
    transform: scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header.site-header--modern .main-nav a {
    transition-duration: 0.01ms;
  }

  .site-header.site-header--modern .header-actions .language-toggle {
    transition-duration: 0.01ms;
  }

  .site-header.site-header--modern .nav-wrap .btn-whatsapp {
    transition-duration: 0.01ms;
  }
}

@media (prefers-reduced-motion: reduce) and (hover: hover) and (pointer: fine) {
  .site-header.site-header--modern .main-nav a:hover {
    transform: scale(1);
  }

  .site-header.site-header--modern .header-actions .language-toggle:hover {
    transform: scale(1);
  }

  .site-header.site-header--modern .nav-wrap .btn-whatsapp:hover {
    transform: scale(1);
  }
}

.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;
  transform: scale(1);
  transform-origin: center center;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.22s ease;
}

.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;
}

.site-header.site-header--modern .header-actions .language-toggle {
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.22s ease;
}

/* Subpáginas: compensar menu fixo (a home usa .page-home + espaçamento do hero) */
body:not(.page-home) .site-header.site-header--modern + main {
  padding-top: var(--header-bar-modern);
}

@media (min-width: 769px) {
  .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;
  /* Foto de fundo mobile (retrato); posição via --hero-bg-pos-* */
  --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: 769px) {
  /* 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: 2px;
  background: #ffffff;
  pointer-events: none;
}

.hero-v2__fade-bottom::before {
  content: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.8rem;
  height: 3.1rem;
  background: none;
  clip-path: polygon(0 66%, 100% 42%, 100% 100%, 0 100%);
}

.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);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-v2__badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px -14px rgba(0, 0, 0, 0.38);
}

.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: 768px) {
  .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 {
    display: inline-flex;
    width: fit-content;
    height: auto;
    margin-left: clamp(8px, 3vw, 20px);
    margin-top: 0;
    background-image: none;
    align-self: center;
    transform: translateY(0);
  }

  .site-header.site-header--modern .container.nav-wrap {
    padding-left: clamp(12px, 4vw, 24px);
    padding-right: 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% - 2px);
    right: 62px;
    transform: translateY(-50%);
    align-items: center;
    justify-content: flex-end;
  }

  .site-header.site-header--modern .mobile-menu-toggle {
    top: calc(50% - 2px);
    right: 12px;
    transform: translateY(-50%);
  }

  .site-header.site-header--modern .header-actions .language-toggle::before {
    background-color: #ffffff;
  }

  /* Telefone (Chrome/Safari iOS): altura fixa + width:auto; max-width na img reserva espaço menu/WhatsApp */
  .site-header.site-header--modern .brand.brand--image .brand__img {
    flex: 0 0 auto;
    min-width: 0;
    width: auto;
    height: 60px;
    max-width: min(180px, calc(100vw - 132px));
    object-fit: contain;
    -o-object-fit: contain;
    object-position: left center;
    border-radius: 0;
  }

  @supports not (aspect-ratio: 1) {
    .site-header.site-header--modern .brand.brand--image .brand__img {
      width: calc(60px * 646 / 268);
      height: 60px;
      max-width: min(180px, calc(100vw - 132px));
    }
  }

  .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;
    color: #ffffff;
  }

  .hero-v2__title-break {
    margin-top: 0.2em;
  }

  .hero-v2__subtitle {
    color: #ffffff;
  }

  .hero-v2__gradient-text {
    background: none;
    color: #f7c400;
  }

  .hero-v2__badge {
    color: #ffffff;
  }

  .hero-v2__icon--pin {
    color: #ffffff;
  }

  .hero-v2__badge {
    display: none;
  }

  .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%;
  }
}

/* Botão flutuante WhatsApp — só mobile (≤768px), acima do header fixo */
.mobile-whatsapp-fab {
  display: none;
}

@media (max-width: 768px) {
  .mobile-whatsapp-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(16px, calc(14px + env(safe-area-inset-bottom)));
    z-index: 60;
    width: 56px;
    height: 56px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: linear-gradient(145deg, #25d366 0%, var(--whatsapp) 100%);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(15, 120, 70, 0.42);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-whatsapp-fab:hover,
  .mobile-whatsapp-fab:focus-visible {
    transform: scale(1.06);
    box-shadow: 0 12px 32px rgba(15, 120, 70, 0.5);
    outline: none;
  }

  .mobile-whatsapp-fab:active {
    transform: scale(0.97);
  }

  .mobile-whatsapp-fab__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 0;
    display: block;
  }
}
