/* =====================================================================
   VIX DESTINOS — ESTILOS
   Cores e fontes ficam nas variáveis abaixo (:root). Mude aqui e o
   site inteiro acompanha.
   ===================================================================== */
/* Fontes hospedadas no próprio site (mais rápido e sem depender do Google) */
@font-face { font-family: "Playfair Display"; src: url("../fonts/playfair-display-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Playfair Display"; src: url("../fonts/playfair-display-latin-400-italic.woff2") format("woff2"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "Playfair Display"; src: url("../fonts/playfair-display-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Playfair Display"; src: url("../fonts/playfair-display-latin-500-italic.woff2") format("woff2"); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-latin-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-latin-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-latin-600-normal.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-latin-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  --navy: #152E47;
  --navy-escuro: #0E2035;
  --navy-medio: #23425F;
  --areia: #EFE6D8;
  --areia-claro: #F7F2EA;
  --branco: #FFFFFF;
  --dourado: #AA884C;
  --dourado-claro: #D2B684;
  --texto: #1E2B3A;
  --texto-suave: #5B6574;
  --linha: rgba(21, 46, 71, .12);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --raio: 14px;
  --sombra: 0 18px 40px -22px rgba(14, 32, 53, .35);
  --header-h: 76px;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--texto);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.15; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--dourado); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--estreito { max-width: 860px; }

.ico { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- Tipografia ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .75rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--dourado); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow--claro { color: var(--dourado-claro); }

.titulo {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.8rem, 1.2rem + 2.2vw, 2.85rem);
  color: var(--navy); letter-spacing: -.01em;
}
.titulo--claro { color: #fff; }
.lead { font-size: 1.075rem; color: var(--texto-suave); max-width: 620px; }
.lead--claro { color: rgba(255,255,255,.8); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  font: 600 .95rem/1.2 var(--sans); letter-spacing: .01em; text-decoration: none;
  cursor: pointer; transition: background .25s, color .25s, border-color .25s, transform .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: .88rem; }
.btn--lg { padding: 17px 32px; font-size: 1rem; }
.btn--gold { background: var(--dourado); color: #fff; box-shadow: 0 10px 24px -12px rgba(170,136,76,.8); }
.btn--gold:hover { background: #967742; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-medio); }
.btn--outline { border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--ghost-claro { border-color: rgba(255,255,255,.55); color: #fff; }
.btn--ghost-claro:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---------- Logo ---------- */
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo__img { height: 54px; width: auto; transition: height .35s; }
.header.is-scrolled .logo__img { height: 46px; }
.logo--rodape .logo__img { height: 84px; }

/* ---------- Cabeçalho ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  transition: background .35s, box-shadow .35s, height .35s;
}
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, rgba(14,32,53,.55), transparent); transition: opacity .35s;
}
.header.is-scrolled { background: rgba(21,46,71,.96); box-shadow: 0 6px 24px -12px rgba(0,0,0,.5); --header-h: 66px; }
@supports (backdrop-filter: blur(8px)) { .header.is-scrolled { background: rgba(21,46,71,.97); backdrop-filter: blur(12px); } }
.header.is-scrolled::before { opacity: 0; }
.header__inner { height: 100%; display: flex; align-items: center; gap: 32px; }
.header .logo { margin-right: auto; }

.nav ul { display: flex; gap: 30px; }
.nav a:not(.btn) {
  color: rgba(255,255,255,.88); text-decoration: none; font-size: .92rem; font-weight: 500;
  position: relative; padding: 6px 0;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--dourado-claro);
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.nav a:not(.btn):hover { color: #fff; }
.nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav__cta-mobile { display: none; }

.menu-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  padding: 10px; flex-direction: column; justify-content: center; gap: 6px;
}
.menu-toggle span { display: block; height: 1.5px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden; background: linear-gradient(135deg, var(--navy-medio), var(--navy-escuro));
  padding: calc(var(--header-h) + 40px) 0 90px;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: zoom 18s ease-out both; }
@keyframes zoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__veu {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,32,53,.82) 0%, rgba(14,32,53,.45) 55%, rgba(14,32,53,.15) 100%),
    linear-gradient(to top, rgba(14,32,53,.55), transparent 40%);
}
.hero__conteudo { position: relative; }
.hero__titulo {
  font-family: var(--serif); font-weight: 400; letter-spacing: -.015em;
  font-size: clamp(2.3rem, 1.2rem + 4.3vw, 4.5rem); line-height: 1.08; max-width: 820px; margin-bottom: 26px;
}
.hero__titulo em { color: var(--dourado-claro); }
.hero__sub { font-size: clamp(1.02rem, .95rem + .35vw, 1.2rem); max-width: 540px; color: rgba(255,255,255,.86); margin-bottom: 38px; }
.hero__acoes { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1px solid rgba(255,255,255,.6); border-radius: 20px;
}
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; background: #fff; border-radius: 2px; animation: rolar 2s infinite; }
@keyframes rolar { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* ---------- Seções ---------- */
.secao { padding: clamp(72px, 6rem + 2vw, 128px) 0; }
.secao--areia { background: var(--areia); }
.secao--areia-claro { background: var(--areia-claro); }
.secao--navy { background: var(--navy); color: rgba(255,255,255,.85); }
.secao__cabecalho { margin-bottom: clamp(40px, 5vw, 64px); }
.secao__cabecalho .titulo { margin-bottom: 18px; }
.secao__cabecalho--linha { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.secao__cabecalho--linha .titulo { margin-bottom: 0; }
.secao__cabecalho--linha .lead { max-width: 420px; margin: 0; }

/* ---------- Serviços ---------- */
.servicos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.servico {
  position: relative; display: flex; flex-direction: column; text-decoration: none;
  background: var(--branco); border-radius: var(--raio); padding: 34px 30px 30px;
  border: 1px solid transparent; transition: transform .35s, box-shadow .35s, border-color .35s;
}
.servico:hover { transform: translateY(-6px); box-shadow: var(--sombra); border-color: rgba(170,136,76,.4); }
.servico__ico { width: 40px; height: 40px; color: var(--dourado); margin-bottom: 22px; }
.servico h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; color: var(--navy); margin-bottom: 10px; }
.servico p { color: var(--texto-suave); font-size: .96rem; margin-bottom: 22px; }
.servico__link { margin-top: auto; font-size: .85rem; font-weight: 600; color: var(--navy); letter-spacing: .02em; display: inline-flex; gap: 6px; }
.servico__link span { transition: transform .3s; }
.servico:hover .servico__link span { transform: translateX(4px); }
.servico--destaque { background: var(--navy); }
.servico--destaque h3, .servico--destaque .servico__link { color: #fff; }
.servico--destaque p { color: rgba(255,255,255,.75); }
.servico--destaque .servico__ico { color: var(--dourado-claro); }

/* ---------- Vistos ---------- */
.vistos__grid { display: grid; grid-template-columns: 1.25fr .85fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.vistos__texto .titulo { margin-bottom: 20px; }
.vistos__colunas { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 40px 0; }
.vistos__subtitulo { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: #fff; margin-bottom: 16px; }
.vistos__subtitulo .ico { color: var(--dourado-claro); width: 1.2em; height: 1.2em; }
.lista-check li { display: flex; gap: 12px; margin-bottom: 12px; font-size: .95rem; line-height: 1.55; }
.lista-check .ico { color: var(--dourado-claro); margin-top: 3px; }
.vistos__acoes { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.aviso {
  font-size: .84rem; line-height: 1.6; color: rgba(255,255,255,.65);
  border-left: 2px solid var(--dourado); padding: 4px 0 4px 16px; margin: 0; max-width: 640px;
}
.aviso strong { color: rgba(255,255,255,.9); }
.vistos__foto { margin: 0; position: relative; width: 100%; }
.vistos__foto img { border-radius: 200px 200px var(--raio) var(--raio); aspect-ratio: 4 / 5; object-fit: cover; width: 100%; background: var(--navy-medio); }
.vistos__foto figcaption {
  position: absolute; left: -24px; bottom: 32px; max-width: 250px;
  background: var(--areia-claro); color: var(--navy); padding: 18px 20px; border-radius: 10px;
  font-family: var(--serif); font-size: 1.02rem; line-height: 1.35; box-shadow: var(--sombra);
}

/* ---------- Diferenciais ---------- */
.jornada { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: j; border-top: 1px solid var(--linha); }
.jornada__item { padding: 36px 28px 8px 0; position: relative; }
.jornada__item + .jornada__item { padding-left: 28px; border-left: 1px solid var(--linha); }
.jornada__item::before { content: ""; position: absolute; top: -4px; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--dourado); }
.jornada__item + .jornada__item::before { left: 28px; }
.jornada__num { display: block; font-family: var(--serif); font-size: 2.2rem; color: var(--dourado); line-height: 1; margin-bottom: 18px; }
.jornada h3 { font-family: var(--serif); font-size: 1.28rem; font-weight: 500; color: var(--navy); margin-bottom: 12px; }
.jornada p { color: var(--texto-suave); font-size: .95rem; }

/* ---------- Galeria ---------- */
.galeria { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 16px; }
.destino {
  position: relative; overflow: hidden; border-radius: var(--raio); text-decoration: none; color: #fff;
  background: linear-gradient(135deg, var(--navy-medio), var(--navy));
}
.destino--destaque { grid-row: span 2; }
.destino:last-child:nth-child(6) { grid-column: 1 / -1; }
.destino img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.destino::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,32,53,.85) 0%, rgba(14,32,53,.1) 55%, transparent); }
.destino:hover img { transform: scale(1.07); }
.destino__texto { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 1; display: flex; flex-direction: column; }
.destino__texto small { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--dourado-claro); }
.destino__texto strong { font-family: var(--serif); font-weight: 400; font-size: 1.6rem; line-height: 1.15; }
.destino__texto em {
  font-style: normal; font-size: .85rem; font-weight: 600; margin-top: 8px;
  opacity: 0; transform: translateY(8px); transition: opacity .35s, transform .35s;
}
.destino:hover .destino__texto em, .destino:focus-visible .destino__texto em { opacity: 1; transform: none; }

/* ---------- Depoimentos ---------- */
.depoimentos { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; }
.depoimento { margin: 0; background: var(--areia-claro); border-radius: var(--raio); padding: 32px 30px; display: flex; flex-direction: column; }
.depoimento__estrelas { color: var(--dourado); letter-spacing: 3px; margin-bottom: 14px; }
.depoimento blockquote { margin: 0 0 24px; font-family: var(--serif); font-size: 1.12rem; line-height: 1.55; color: var(--navy); }
.depoimento figcaption { margin-top: auto; display: flex; align-items: center; gap: 14px; }
.depoimento figcaption img, .depoimento__inicial { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; }
.depoimento__inicial { display: grid; place-items: center; background: var(--navy); color: var(--dourado-claro); font-family: var(--serif); font-size: 1.4rem; }
.depoimento figcaption span { display: flex; flex-direction: column; line-height: 1.35; }
.depoimento figcaption strong { color: var(--navy); }
.depoimento figcaption small { color: var(--texto-suave); font-size: .82rem; }
.depoimento__fonte { font-style: italic; }
.depoimentos-vazio {
  text-align: center; border: 1px dashed rgba(170,136,76,.6); border-radius: var(--raio);
  padding: 48px 24px; background: var(--areia-claro);
}
.depoimentos-vazio p { font-family: var(--serif); font-size: 1.22rem; color: var(--navy); max-width: 560px; margin: 0 auto 26px; line-height: 1.4; }
.depoimentos-vazio__acoes { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
[hidden] { display: none !important; }

/* ---------- Quem somos ---------- */
.sobre__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.sobre__foto { margin: 0; position: relative; }
.sobre__foto::before {
  content: ""; position: absolute; inset: 24px -24px -24px 24px; border: 1px solid var(--dourado); border-radius: var(--raio); z-index: 0;
}
.sobre__foto img, .sobre__foto-provisoria { position: relative; z-index: 1; border-radius: var(--raio); aspect-ratio: 4 / 5; width: 100%; object-fit: cover; }
.sobre__foto-provisoria {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background: linear-gradient(160deg, var(--navy-medio), var(--navy)); color: var(--dourado-claro);
  font-size: .8rem; letter-spacing: .2em;
}
.sobre__foto-provisoria svg { width: 64px; height: 64px; opacity: .8; }
.sobre__foto img { object-position: center 30%; background: var(--navy-medio); }
.sobre__texto .titulo { margin-bottom: 20px; }
.sobre__texto p:not(.lead):not(.eyebrow):not(.assinatura) { color: var(--texto-suave); }
.assinatura { font-family: var(--serif); font-style: italic; font-size: 1.7rem; color: var(--navy); margin: 28px 0; line-height: 1; }
.assinatura small { display: block; font-family: var(--sans); font-style: normal; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--dourado); margin-top: 8px; }

/* ---------- FAQ ---------- */
.faq__grupo { font-size: .78rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--dourado); margin: 40px 0 8px; }
.faq__grupo:first-child { margin-top: 0; }
.faq details { border-bottom: 1px solid var(--linha); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 500; color: var(--navy); line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after, .faq summary::before {
  content: ""; position: absolute; right: 8px; top: 50%; width: 14px; height: 1.5px; background: var(--dourado); transition: transform .3s;
}
.faq summary::before { transform: rotate(90deg); }
.faq details[open] summary::before { transform: rotate(0); }
.faq details p { color: var(--texto-suave); padding: 0 40px 22px 0; margin: 0; }
.faq__mais { text-align: center; margin-top: 40px; color: var(--texto-suave); }
.faq__mais a { color: var(--navy); font-weight: 600; text-decoration-color: var(--dourado); text-underline-offset: 4px; }

/* ---------- Chamada final ---------- */
.cta-final { position: relative; padding: clamp(96px, 12vw, 160px) 0; text-align: center; color: #fff; overflow: hidden; background: var(--navy); }
.cta-final__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-final__veu { position: absolute; inset: 0; background: rgba(14,32,53,.72); }
.cta-final__conteudo { position: relative; }
.cta-final .eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; }
.cta-final .titulo { margin-bottom: 18px; }
.cta-final .lead { margin: 0 auto 36px; }
.cta-final__acoes { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ---------- Rodapé ---------- */
.footer { background: var(--navy-escuro); color: rgba(255,255,255,.7); padding: 72px 0 0; font-size: .92rem; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
.footer__marca p { margin-top: 18px; max-width: 260px; }
.footer__titulo { font-family: var(--sans); font-size: .75rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--dourado-claro); margin-bottom: 18px; }
.footer__lista li { margin-bottom: 10px; }
.footer__lista a { text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: color .2s; word-break: break-word; }
.footer__lista a:hover { color: #fff; }
.footer__lista--dados li { font-size: .85rem; line-height: 1.5; }
.footer__base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; padding-bottom: 26px; font-size: .82rem; }
.footer__base p { margin: 0; }
.footer__base a { text-decoration: none; }
.footer__base a:hover { color: #fff; }

/* ---------- Botão flutuante ---------- */
.wa-flutuante {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: #25D366; color: #fff; box-shadow: 0 12px 28px -8px rgba(0,0,0,.45);
  transition: transform .3s;
}
.wa-flutuante svg { width: 30px; height: 30px; }
.wa-flutuante:hover { transform: scale(1.08); }
.wa-flutuante::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25D366;
  animation: pulso 2.6s infinite; pointer-events: none;
}
@keyframes pulso { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }

/* ---------- Animação ao rolar ---------- */
.js-reveal .reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   RESPONSIVO
   ===================================================================== */
@media (max-width: 1080px) {
  .nav ul { gap: 22px; }
  .jornada { grid-template-columns: repeat(2, 1fr); border-top: 0; }
  .jornada__item, .jornada__item + .jornada__item { padding: 32px 24px 16px 0; border-left: 0; border-top: 1px solid var(--linha); }
  .jornada__item::before, .jornada__item + .jornada__item::before { left: 0; }
  .jornada__item:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--linha); }
  .jornada__item:nth-child(even)::before { left: 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  :root { --header-h: 68px; }
  .menu-toggle { display: flex; }
  .logo__img, .header.is-scrolled .logo__img { height: 46px; }
  .header__cta { display: none; }
  .nav {
    position: fixed; inset: 0; z-index: -1; background: var(--navy);
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 40px;
    padding: 100px 32px 40px; opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
  }
  .nav ul { flex-direction: column; gap: 6px; }
  .nav a:not(.btn) { font-family: var(--serif); font-size: 1.7rem; color: #fff; }
  .nav__cta-mobile { display: inline-flex; }
  .menu-aberto .nav { opacity: 1; visibility: visible; }
  .menu-aberto { overflow: hidden; }
  .menu-aberto .header { background: var(--navy); backdrop-filter: none; }
  .menu-aberto .menu-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .menu-aberto .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-aberto .menu-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .servicos { grid-template-columns: repeat(2, 1fr); }
  .vistos__grid, .sobre__grid { grid-template-columns: 1fr; }
  .vistos__foto { max-width: 440px; margin: 0 auto; }
  .sobre__foto { max-width: 420px; margin: 0 auto 24px; width: calc(100% - 24px); }
  .galeria { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { align-items: flex-end; padding-bottom: 96px; }
  .hero__veu { background: linear-gradient(to top, rgba(14,32,53,.92) 0%, rgba(14,32,53,.55) 55%, rgba(14,32,53,.35) 100%); }
  .hero__titulo br, .titulo br { display: none; }
  .hero__acoes .btn, .vistos__acoes .btn, .cta-final__acoes .btn { width: 100%; }
  .servicos { grid-template-columns: 1fr; gap: 14px; }
  .servico { padding: 26px 24px; }
  .vistos__colunas { grid-template-columns: 1fr; gap: 20px; margin: 32px 0; }
  .vistos__foto figcaption { left: 12px; right: 12px; bottom: 12px; max-width: none; font-size: .95rem; }
  .jornada { grid-template-columns: 1fr; }
  .jornada__item:nth-child(even) { padding-left: 0; border-left: 0; }
  .jornada__item:nth-child(even)::before { left: 0; }
  .galeria { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .destino--destaque { grid-row: span 1; }
  .destino__texto em { opacity: 1; transform: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .faq summary { font-size: 1.05rem; }
  .wa-flutuante { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}
