/* =========================================================================
   Viaggiamo Turismo — folha de estilo única
   Ordem: fontes · tokens · base · layout · tipografia · componentes · motion
   ========================================================================= */

/* --- fontes ------------------------------------------------------------ */

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/playfair-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/playfair-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Didact Gothic";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/didact-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- tokens ------------------------------------------------------------ */

:root {
  /* paleta da marca */
  --ink: #081137;
  --ink-deep: #04091c;
  --ink-soft: #0d1c47;
  --blue: #006db4;
  --blue-bright: #1685cc;
  --gold: #e7ae25;
  --gold-bright: #f4cb30;
  --gold-ink: #e7ae25;   /* dourado que pode carregar texto (fundo escuro) */
  --paper: #f4f5f7;
  --paper-pure: #fff;
  --mist: #d4d4d4;

  /* tinta sobre fundo escuro */
  --on-dark: #fff;
  --on-dark-70: rgb(255 255 255 / 72%);
  --on-dark-55: rgb(255 255 255 / 56%);
  --on-dark-38: rgb(255 255 255 / 50%);
  --rule-dark: rgb(255 255 255 / 14%);

  /* tinta sobre fundo claro */
  --on-light: #0a1231;
  --on-light-70: rgb(10 18 49 / 72%);
  --on-light-50: rgb(10 18 49 / 52%);
  --rule-light: rgb(10 18 49 / 14%);

  /* tipografia */
  --serif: "Playfair Display", "Iowan Old Style", "Times New Roman", times, serif;
  --sans: "Didact Gothic", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    roboto, sans-serif;

  --step-display: clamp(2.9rem, 7.1vw, 6.25rem);
  --step-title: clamp(2.1rem, 4.3vw, 3.9rem);
  --step-quote: clamp(1.7rem, 3.3vw, 2.9rem);
  --step-lede: clamp(1.05rem, 1.35vw, 1.24rem);
  --step-body: clamp(1rem, 1.05vw, 1.0625rem);
  --step-small: 0.875rem;
  --step-eyebrow: 0.6875rem;

  /* métrica */
  --gutter: clamp(1.5rem, 5.2vw, 5.5rem);
  --shell: 1560px;
  --section-y: clamp(6rem, 13vh, 10.5rem);
  --window-radius: clamp(56px, 9vw, 148px);

  /* movimento — curva escolhida pela intenção, não por gosto:
     entrada e saída pedem ease-out; deslocamento na tela, ease-in-out;
     cor e hover, a curva suave curta. Nada de ease-in em interface. */
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-ui: cubic-bezier(0.4, 0, 0.2, 1);

  /* orçamento de duração: interface abaixo de 300ms; narrativa pode respirar */
  --t-press: 140ms;
  --t-ui: 190ms;
  --t-draw: 320ms;

  /* profundidade do caixote: sombra dura, sem desfoque. É o lado da caixa que
     faz ler como volume; desfoque leria como material flutuando. */
  --caixote: 6px;
  --caixote-alto: 10px;

  /* Tamanho e altura do selo dos 30%. São tokens porque a coluna de texto do
     hero calcula o próprio recuo a partir deles: assim o selo e a manchete
     ocupam faixas que não se cruzam em nenhuma altura de tela, em vez de
     ficarem separados por um número escolhido no olho. */
  --selo-tamanho: clamp(6rem, 24vw, 9.5rem);
  --selo-topo: clamp(5rem, 12vh, 7rem);

  color-scheme: dark;
}

/* --- base -------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* O `display` do navegador para [hidden] é a regra mais fraca que existe:
   qualquer `display` declarado na folha vence, e o elemento continua na tela
   mesmo escondido. Aqui isso já deixou as setas de uma categoria com um hotel
   só aparecendo. Uma linha resolve para a folha inteira. */
[hidden] {
  display: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--ink-deep);
  color: var(--on-dark);
  font-family: var(--sans);
  font-size: var(--step-body);
  line-height: 1.72;
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
p,
figure,
blockquote,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 200;
  padding: 0.7rem 1.1rem;
  background: var(--gold);
  color: var(--ink);
  border-radius: 2px;
  transform: translateY(-160%);
  transition: transform var(--t-ui) var(--ease);
}

.skip-link:focus-visible {
  transform: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* --- layout ------------------------------------------------------------ */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section-y);
}

/* seções claras redefinem os tokens de tinta: componentes se recoloram sozinhos */
.theme-light {
  --on-dark: var(--on-light);
  --on-dark-70: var(--on-light-70);
  --on-dark-55: var(--on-light-50);
  --on-dark-38: rgb(10 18 49 / 58%);
  --rule-dark: var(--rule-light);
  --gold-ink: #8a6410;   /* sobre --paper, o dourado só passa em AA assim */

  background: var(--paper);
  color: var(--on-light);
}

/* --- tipografia -------------------------------------------------------- */

.display,
.title,
.quote {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.014em;
  font-variant-numeric: lining-nums;
  text-wrap: balance;
}

.display {
  font-size: var(--step-display);
  line-height: 0.99;
}

.title {
  font-size: var(--step-title);
  line-height: 1.06;
}

.quote {
  font-size: var(--step-quote);
  line-height: 1.16;
  letter-spacing: -0.015em;
}

.italic {
  font-style: italic;
}

.lede {
  font-size: var(--step-lede);
  line-height: 1.62;
  max-width: 46ch;
  color: var(--on-dark-70);
}

.prose {
  max-width: 54ch;
  color: var(--on-dark-70);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--step-eyebrow);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 1px;
  background: currentcolor;
  opacity: 0.55;
  flex: none;
}

/* rótulo de capítulo: algarismo serifado + filete + etiqueta discreta */
.eyebrow--chapter {
  gap: 0;
  color: var(--on-dark-55);
}

.eyebrow--chapter::before {
  display: none;
}

.eyebrow__index {
  position: relative;
  padding-right: 2.5rem;
  font-family: var(--serif);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.eyebrow__index::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  top: 50%;
  width: 1.15rem;
  height: 1px;
  background: currentcolor;
  opacity: 0.5;
}

.eyebrow--plane::before {
  width: 0.95rem;
  height: 0.95rem;
  background: currentcolor;
  opacity: 1;
  mask: url("../brand/plane.svg") center / contain no-repeat;
  -webkit-mask: url("../brand/plane.svg") center / contain no-repeat;
}

.theme-light .eyebrow {
  color: rgb(10 18 49 / 78%);
}

.theme-light .eyebrow::before {
  background: var(--gold);
  opacity: 1;
}

.rule {
  height: 1px;
  border: 0;
  background: var(--rule-dark);
  transform-origin: left;
}

/* --- imagens com fade-in ----------------------------------------------- */

.figure {
  position: relative;
  overflow: hidden;
  background: var(--lqip, none) center / cover no-repeat;
}

.figure img {
  opacity: 0;
  transition: opacity 1.1s var(--ease-in-out);
}

.figure img.is-loaded {
  opacity: 1;
}

/* janela de avião: recorte assinatura da marca (só onde a foto é um painel).
   O painel do hero encosta na borda direita da tela, então só o lado interno
   curva — arredondar os quatro cantos abriria fresta contra o fim do viewport. */
@media (width >= 62rem) {
  .window {
    border-radius: var(--window-radius) 0 0 var(--window-radius);
    overflow: hidden;
  }
}

/* --- selo dos 30% -------------------------------------------------------
   Desenhado em vetor, não gerado: nítido em qualquer tela, editável, e lido
   por leitor de tela pelo <title>. O dourado aqui é filete e numeral sobre
   fundo escuro — nunca texto dourado sobre claro. */

.selo {
  position: absolute;
  z-index: 2;
  width: var(--selo-tamanho);
  height: auto;
  top: var(--selo-topo);
  right: var(--gutter);
}

.selo__fundo {
  fill: rgb(4 9 28 / 62%);
  stroke: var(--gold);
  stroke-width: 1.5;
}

.selo__anel {
  fill: none;
  stroke: var(--gold);
  stroke-width: 0.6;
  opacity: 0.45;
}

.selo__numero {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  font-variant-numeric: lining-nums;
  letter-spacing: -0.02em;
  fill: var(--gold-bright);
}

.selo__off {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  fill: var(--on-dark);
}

.selo__risco {
  stroke: var(--gold);
  stroke-width: 0.6;
  opacity: 0.45;
}

.selo__prazo {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.1em;
  fill: rgb(255 255 255 / 72%);
}

/* --- botões ------------------------------------------------------------ */

.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink);
  --btn-line: transparent;

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.15rem 1.9rem;
  min-height: 3.25rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-line);
  border-radius: 2px;
  font-size: 0.8125rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--t-ui) var(--ease-ui),
    color var(--t-ui) var(--ease-ui), border-color var(--t-ui) var(--ease-ui),
    transform var(--t-press) var(--ease);
}

/* nada no mundo real muda de estado sem ceder ao toque */
.btn:active {
  transform: scale(0.985);
}

/* ação secundária: não é botão, é uma linha de texto com filete dourado */
.btn--text {
  --btn-bg: transparent;
  --btn-fg: var(--on-dark-70);
  --btn-line: transparent;

  position: relative;
  padding: 1.15rem 0;
  gap: 0.8rem;
}

.btn--text::after {
  content: "";
  position: absolute;
  inset: auto 0 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(1);
  transform-origin: left;
  opacity: 0.55;
  transition: opacity var(--t-ui) var(--ease-ui),
    transform var(--t-ui) var(--ease-ui);
}

.btn--secondary {
  --btn-bg: transparent;
  --btn-fg: var(--on-dark);
  --btn-line: var(--gold);
}

.btn--secondary:hover {
  --btn-bg: rgb(231 174 37 / 9%);
}

.btn__arrow {
  width: 1.05rem;
  height: 1.05rem;
  flex: none;
  transition: transform var(--t-ui) var(--ease);
}

/* link em texto, com sublinhado que cresce */
.link {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  color: inherit;
}

.link::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: currentcolor;
  opacity: 0.45;
  transform-origin: right;
  transition: transform var(--t-ui) var(--ease-ui), opacity var(--t-ui) var(--ease-ui);
}

/* --- nota de rodapé de seção ------------------------------------------- */

.nota {
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  max-width: 62ch;
  font-size: var(--step-small);
  line-height: 1.6;
  color: var(--on-dark-55);
}

.nota b {
  font-weight: 400;
  color: var(--on-dark-70);
}

/* --- vitrine de destinos -----------------------------------------------
   Os 35 destinos numa trilha horizontal, em caixotes: painel sólido com um
   lado embaixo — sombra dura, sem desfoque, porque desfoque leria como
   material flutuando e o que se quer aqui é volume de caixa.

   Movimento, seguindo o orçamento do topo desta folha:
     · o salto do hover é interface  → --t-ui com --ease-ui
     · o clique assenta              → --t-press (o caixote afunda antes de agir)
     · a entrada é escalonada por --i (os cartões chegam em cascata)          */

.vitrine__cabeca {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.vitrine__title {
  margin: 0.6rem 0 0;
}

.vitrine__lede {
  margin-top: 1.1rem;
  max-width: 52ch;
}

.trilha__setas {
  display: flex;
  gap: 0.6rem;
}

.trilha__seta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: none;
  border: 1px solid var(--rule-dark);
  color: var(--on-dark);
  cursor: pointer;
  transition:
    color var(--t-ui) var(--ease-ui),
    border-color var(--t-ui) var(--ease-ui),
    opacity var(--t-ui) var(--ease-ui);
}

.trilha__seta svg {
  width: 18px;
  height: 18px;
}

.trilha__seta:disabled {
  opacity: 0.32;
  cursor: default;
}

/* A trilha: uma fila que corre na horizontal, por arrasto, seta ou teclado.
   Serve a vitrine de destinos e cada categoria de hotel — quatro usos, uma peça.
   O padrão vazando até a borda da tela é intencional: o cartão cortado no fim
   é o que avisa que existe mais coisa para o lado. */
.trilha {
  display: flex;
  gap: 1.25rem;
  margin: clamp(2.25rem, 4vw, 3.25rem) 0 var(--caixote-alto);
  padding: 0 var(--gutter) var(--caixote-alto);
  list-style: none;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--gutter);

  /* a barra padrão cortaria a sombra dos caixotes; a trilha já tem setas
     e arrasto, então a barra some sem custo de navegação */
  scrollbar-width: none;
}

.trilha::-webkit-scrollbar {
  display: none;
}

.trilha:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.trilha__erro {
  padding: 2rem 0;
  color: var(--on-dark-55);
}

.cartao-destino {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 0 0 clamp(15rem, 62vw, 18.5rem);
  scroll-snap-align: start;
  padding: clamp(1.5rem, 2.6vw, 2.1rem) clamp(1.1rem, 2vw, 1.75rem);
  background: var(--paper-pure);
  border: 1px solid var(--ink);
  box-shadow: var(--caixote) var(--caixote) 0 var(--ink);
  animation: caixote-entra 0.55s var(--ease) backwards;
  animation-delay: calc(var(--i, 0) * 70ms);
  transition:
    transform var(--t-ui) var(--ease-ui),
    box-shadow var(--t-ui) var(--ease-ui);
}

@keyframes caixote-entra {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
}

.cartao-destino__nome {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.7vw, 1.6rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.012em;
}

.cartao-destino__meta {
  margin: 0.5rem 0 0;
  font-size: var(--step-small);
  color: var(--on-dark-55);
}

.cartao-destino__faixas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.cartao-destino__faixas li {
  padding: 0.24rem 0.55rem;
  border: 1px solid var(--rule-dark);
  font-size: 0.75rem;
  color: var(--on-dark-70);
}

.cartao-destino__ir {
  margin-top: auto;
  padding-top: 1.4rem;
  background: none;
  border: 0;
  font: inherit;
  font-size: var(--step-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: left;
  color: var(--on-dark-70);
  cursor: pointer;
  transition: color var(--t-ui) var(--ease-ui);
}

/* o alvo é o caixote inteiro, mas quem recebe foco é o botão */
.cartao-destino__ir::after {
  content: "";
  position: absolute;
  inset: 0;
}

.cartao-destino__ir:focus-visible {
  outline: none;
}

.cartao-destino:focus-within {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* --- grupos de categoria ------------------------------------------------ */

.grupos {
  display: grid;

  /* minmax(0, 1fr) e o min-width abaixo: sem eles o item de grade cresce até
     caber o conteúdo inteiro (min-width: auto é o padrão), a trilha fica com
     3000px de largura e o overflow-x nunca entra em ação. */
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 4rem);
  margin: clamp(2.25rem, 4vw, 3.25rem) 0 0;
}

.grupo {
  min-width: 0;
}

.grupo__cabeca {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--rule-dark);
}

.grupo__titulo {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1rem;
}

.grupo__nome {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.grupo__conta {
  margin: 0;
  font-size: var(--step-small);
  color: var(--on-dark-55);
}

/* --- seletor de destino -------------------------------------------------- */

.destinos__title {
  margin: 0.6rem 0 0;
}

.destinos__lede {
  margin-top: 1.1rem;
  max-width: 60ch;
}

.picker {
  margin: clamp(2.25rem, 4vw, 3.25rem) 0 0;
  max-width: 34rem;
}

.destinos__vazio {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px dashed var(--rule-dark);
  color: var(--on-dark-55);
  text-align: center;
}

.placa {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1.25rem;
  margin: clamp(2.25rem, 4vw, 3.25rem) 0 0;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--rule-dark);
}

.placa__nome {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.placa__conta {
  margin: 0;
  font-size: var(--step-small);
  color: var(--on-dark-55);
}

/* --- cartões de hotel ----------------------------------------------------
   A mesma linguagem dos caixotes, contida. Sombra dura de 6px em 23 cartões
   lado a lado viraria ruído; aqui a caixa só mostra a aba azul quando o
   ponteiro chega, e o contorno acende em dourado. */

/* A lista de hotéis é uma trilha; o que sobra aqui é sangrar até a borda da
   tela, porque ela nasce dentro da .shell, que já tem recuo lateral. */
.hoteis {
  margin-top: clamp(1.25rem, 2vw, 1.75rem);
  margin-inline: calc(var(--gutter) * -1);
}

.hotel {
  flex: 0 0 clamp(15rem, 76vw, 20.5rem);
  scroll-snap-align: start;
}

.hotel {
  position: relative;
  outline: 1px solid var(--rule-dark);
  display: flex;
  flex-direction: column;
  background: var(--ink-deep);
  padding: clamp(1.4rem, 2.4vw, 1.9rem) clamp(1.1rem, 2vw, 1.6rem);
  background: var(--ink-deep);
  animation: caixote-entra 0.45s var(--ease) backwards;

  /* o teto de 12 impede o 23º cartão de esperar dois segundos para aparecer */
  animation-delay: calc(var(--i, 0) * 45ms);
  transition:
    transform var(--t-ui) var(--ease-ui),
    box-shadow var(--t-ui) var(--ease-ui),
    outline-color var(--t-ui) var(--ease-ui);
}

.hotel[data-selo] {
  background: var(--ink);
}

/* a barra dos selos se desenha da esquerda, depois do cartão ter chegado */
.hotel[data-selo]::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--gold);
  transform-origin: left;
  animation: barra-desenha var(--t-draw) var(--ease) backwards;
  animation-delay: calc(var(--i, 0) * 45ms + 220ms);
}

@keyframes barra-desenha {
  from {
    transform: scaleX(0);
  }
}

.hotel__selo {
  margin: 0 0 0.7rem;
  font-size: var(--step-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hotel__nome {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hotel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.hotel__chips li {
  padding: 0.24rem 0.55rem;
  border: 1px solid var(--rule-dark);
  font-size: 0.75rem;
  color: var(--on-dark-70);
}

.hotel__diaria {
  margin: 1.1rem 0 0;
}

.hotel__diaria-valor {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  font-variant-numeric: lining-nums;
}

.hotel__diaria-nota {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: var(--on-dark-55);
}

.hotel__acoes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-top: auto;
  padding-top: 1.3rem;
}

.marca {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  font-size: var(--step-small);
  color: var(--on-dark-70);
  cursor: pointer;
}

.marca input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.marca:hover {
  color: var(--on-dark);
}

.hotel__acoes .btn--text {
  min-height: 44px;
}

/* --- os caixotes reagindo ------------------------------------------------
   Tudo atrás de ponteiro fino: num toque, um :hover fica grudado depois do
   tap, e o cartão continuaria levantado sem motivo. */

@media (hover: hover) and (pointer: fine) {
  .cartao-destino:hover,
  .cartao-destino:focus-within {
    transform: translate3d(-4px, -4px, 0);
    box-shadow: var(--caixote-alto) var(--caixote-alto) 0 var(--gold);
  }

  .cartao-destino--aberto:hover .cartao-destino__ir,
  .cartao-destino--aberto:focus-within .cartao-destino__ir {
    color: #fff;
  }

  .cartao-destino:hover .cartao-destino__ir {
    color: var(--on-dark);
  }

  /* antecipação: o caixote afunda antes de levar para o destino */
  .cartao-destino:active {
    transform: translate3d(0, 0, 0);
    box-shadow: 3px 3px 0 var(--ink);
    transition-duration: var(--t-press);
  }

  .hotel:hover,
  .hotel:focus-within {
    z-index: 2;
    transform: translate3d(0, -4px, 0);
    box-shadow: 0 var(--caixote) 0 -1px var(--blue);
    outline-color: rgb(231 174 37 / 45%);
  }
}

/* --- painel de comparação ------------------------------------------------
   Fica preso ao fim da tela: a pessoa continua rolando a lista e a
   comparação acompanha, em vez de obrigar a subir e descer. */

.compara {
  position: sticky;
  bottom: 0;
  z-index: 8;
  margin-top: clamp(2rem, 4vw, 3rem);
  background: var(--ink);
  border-top: 1px solid var(--gold);
}

.compara__inner {
  position: relative;
  padding-block: clamp(1.4rem, 2.5vw, 2rem);
}

.compara__fechar {
  position: absolute;
  top: 0.5rem;
  right: var(--gutter);
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
  color: var(--on-dark-70);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.compara__fechar:hover {
  color: var(--on-dark);
}

.compara__titulo {
  margin: 0 3rem 1.1rem 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  letter-spacing: -0.01em;
}

.compara__tabela {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--step-small);
}

.compara__tabela th,
.compara__tabela td {
  padding: 0.55rem 0.75rem 0.55rem 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--rule-dark);
}

.compara__tabela thead th {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--on-dark);
}

.compara__tabela tbody th {
  width: 11rem;
  font-weight: 400;
  color: var(--on-dark-55);
}

.compara__leitura {
  margin: 1.1rem 0 1.3rem;
  max-width: 68ch;
  color: var(--on-dark-70);
}

/* --- as três promoções ---------------------------------------------------
   Botões de rádio, não um seletor: as condições precisam estar visíveis sem
   que ninguém precise abrir nada para descobrir que elas existem. */

.niveis {
  display: grid;
  gap: 0.6rem;
  margin: 0 0 0.5rem;
  padding: 0;
  border: 0;
}

.niveis legend {
  padding: 0;
  margin-bottom: 0.85rem;
  font-size: var(--step-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-55);
}

.nivel {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 60px;
  padding: 0.85rem 1.05rem;
  border: 1px solid var(--rule-dark);
  cursor: pointer;
  transition:
    border-color var(--t-ui) var(--ease-ui),
    background-color var(--t-ui) var(--ease-ui);
}

.nivel input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.nivel__texto {
  display: grid;
  gap: 0.15rem;
}

.nivel__nome {
  font-size: var(--step-body);
}

.nivel__nota {
  font-size: 0.8125rem;
  color: var(--on-dark-55);
}

.nivel__validade {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--on-dark-70);
}

.nivel__off {
  margin-left: auto;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  font-variant-numeric: lining-nums;
  color: var(--on-dark-55);
  transition: color var(--t-ui) var(--ease-ui);
}

.nivel__off small {
  display: block;
  margin-top: 0.1rem;
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-align: right;
}

.nivel:has(input:checked) {
  border-color: var(--gold);
  background: rgb(231 174 37 / 7%);
}

.nivel:has(input:checked) .nivel__off {
  color: var(--gold);
}

.nivel:has(input:focus-visible) {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.niveis__periodo {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--rule-dark);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--on-dark-55);
}

.niveis__periodo b {
  font-weight: 400;
  color: var(--on-dark);
}

/* --- o caminho para os 20% ------------------------------------------------ */

.fora-da-lista {
  margin: clamp(1.75rem, 3vw, 2.5rem) 0 0;
  font-size: var(--step-small);
  color: var(--on-dark-55);
}

.link--botao {
  padding: 0;
  background: none;
  border: 0;
  font: inherit;
  color: var(--on-dark);
  cursor: pointer;
}

/* o caixote que fecha a vitrine não é um destino, e não deve parecer um */
.cartao-destino--aberto {
  background: var(--ink);
  border-color: var(--gold);
  box-shadow: var(--caixote) var(--caixote) 0 var(--gold);
  color: var(--on-light-invertido, #fff);
}

.cartao-destino--aberto .cartao-destino__nome {
  color: #fff;
}

.cartao-destino--aberto .cartao-destino__meta,
.cartao-destino--aberto .cartao-destino__ir {
  color: rgb(255 255 255 / 72%);
}

/* --- avisos do formulário ------------------------------------------------ */

.form__aviso {
  margin: 0;
  padding: 0.9rem 1.05rem;
  border-left: 2px solid var(--gold);
  background: rgb(255 255 255 / 4%);
  font-size: var(--step-small);
  line-height: 1.55;
  color: var(--on-dark-70);
}

.form__aviso b {
  font-weight: 400;
  color: var(--on-dark);
}

/* --- período da viagem -------------------------------------------------- */

.datas {
  display: grid;
  gap: 1.15rem;
  margin: 0;
  padding: 1.15rem 0 0;
  border: 0;
  border-top: 1px solid var(--rule-dark);
}

.datas legend {
  padding: 0 0.75rem 0 0;
  font-size: var(--step-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-55);
}

.datas__flexiveis {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
  width: fit-content;
  font-size: 0.9375rem;
  color: var(--on-dark-70);
  cursor: pointer;
}

.datas__flexiveis input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  accent-color: var(--gold);
}

.datas__microcopy {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--on-dark-55);
}

.datas__erro,
.datas__convencional {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  border-left: 2px solid #ff9d8a;
  background: rgb(255 157 138 / 7%);
  font-size: var(--step-small);
  line-height: 1.55;
  color: var(--on-dark-70);
}

.datas__erro b,
.datas__convencional b {
  font-weight: 400;
  color: var(--on-dark);
}

.datas__erro .btn {
  justify-self: start;
  margin-top: 0.2rem;
}

.datas__convencional {
  border-left-color: var(--gold);
  background: rgb(231 174 37 / 7%);
}

[hidden].datas__erro,
[hidden].datas__convencional {
  display: none;
}

/* --- cabeçalho --------------------------------------------------------- */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color var(--t-draw) var(--ease-ui),
    backdrop-filter var(--t-draw) var(--ease-ui);
}

.header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--rule-dark);
  opacity: 0;
  transition: opacity var(--t-draw) var(--ease-ui);
}

.header[data-pinned="true"] {
  background: rgb(4 9 28 / 92%);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
}

.header[data-pinned="true"]::after {
  opacity: 1;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: clamp(1.1rem, 2vw, 1.6rem);
}

.header__logo img {
  width: clamp(140px, 14vw, 186px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.6vw, 2.6rem);
}

.nav a {
  position: relative;

  /* o alvo precisa dos 24px do WCAG 2.2; o texto sozinho fica em 22,4 */
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--on-dark-70);
  transition: color var(--t-ui) var(--ease-ui);
}

.nav a:hover {
  color: var(--on-dark);
}

/* seção corrente: o mesmo filete dourado que assina o resto da página */
.nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.55rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-draw) var(--ease);
}

.nav a[aria-current="true"] {
  color: var(--on-dark);
}

.nav a[aria-current="true"]::after {
  transform: scaleX(1);
}

.header__cta {
  --btn-bg: transparent;
  --btn-fg: var(--on-dark);
  --btn-line: transparent;

  position: relative;
  padding: 0.6rem 0;
  min-height: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
}

.header__cta::after {
  content: "";
  position: absolute;
  inset: auto 0 0.35rem;
  height: 1px;
  background: var(--gold);
  transform-origin: left;
  transition: opacity var(--t-ui) var(--ease-ui);
  opacity: 0.6;
}

.header__cta:hover {
  --btn-bg: transparent;
}

.header__cta:hover::after {
  opacity: 1;
}

.header__mobile {
  display: none;
}

/* --- hero -------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-deep);
}

/* campo de luz: a hora dourada por trás da cena */
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 120%;
  background:
    radial-gradient(58% 48% at 6% 4%, rgb(0 109 180 / 46%), transparent 62%),
    radial-gradient(40% 34% at 44% 92%, rgb(231 174 37 / 12%), transparent 70%),
    linear-gradient(152deg, #08163f 0%, #050d26 48%, #04091c 100%);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: clamp(9rem, 18vh, 14rem);
  background: linear-gradient(to bottom, rgb(4 9 28 / 84%) 0%,
    rgb(4 9 28 / 46%) 42%, rgb(4 9 28 / 12%) 78%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: clamp(7.5rem, 16vh, 11rem) clamp(2rem, 4vh, 3rem);
  flex: 1;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% 46%;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgb(4 9 28 / 96%) 0%, rgb(4 9 28 / 92%) 28%,
      rgb(4 9 28 / 80%) 50%, rgb(4 9 28 / 56%) 68%, rgb(4 9 28 / 18%) 86%,
      rgb(4 9 28 / 0%) 100%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.hero__eyebrow {
  margin-bottom: clamp(1.5rem, 3vh, 2.25rem);
  color: rgb(255 255 255 / 90%);
}

.hero__eyebrow::before {
  background: var(--gold);
}

.hero__title {
  margin-bottom: clamp(1.5rem, 3vh, 2rem);
}

.hero__title .line {
  display: block;
}

.hero__title .line--2 {
  font-size: 0.58em;
  font-style: italic;
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin-top: 0.14em;
  padding-left: 0.06em;
}

.hero__title .dot {
  color: var(--gold);
}

.hero__lede {
  margin-bottom: clamp(2rem, 4vh, 2.75rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem clamp(1.5rem, 3vw, 2.75rem);
}

/* faixa de assinatura no rodapé do hero */
.hero__signature {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--rule-dark);
  padding-block: clamp(1.1rem, 2.2vh, 1.5rem);
}

.hero__signature ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem clamp(1.5rem, 4vw, 3.5rem);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-55);
}

.hero__signature li {
  position: relative;
  display: flex;
  align-items: center;
}

.hero__signature li + li::before {
  content: "";
  position: absolute;
  left: clamp(-1.75rem, -2vw, -0.75rem);
  width: 1px;
  height: 0.85rem;
  background: var(--gold);
  opacity: 0.55;
}

/* --- prazo de contratação ---------------------------------------------- */

.prazo {
  background: var(--ink);
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
}

.prazo__inner {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-block: clamp(2rem, 4vw, 3rem);
}

.prazo__copy {
  display: grid;
  gap: 0.75rem;
  align-content: center;
}

.prazo__copy p:last-child {
  max-width: 42ch;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--on-dark-55);
}

.prazo__copy b {
  font-weight: 400;
  color: var(--on-dark);
}

.contagem {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.4rem, 1.5vw, 1rem);
}

.contagem div {
  min-width: 0;
  padding: clamp(0.8rem, 2vw, 1.15rem) clamp(0.35rem, 1.5vw, 0.8rem);
  border: 1px solid var(--rule-dark);
  text-align: center;
}

.contagem dd {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 4vw, 2.65rem);
  line-height: 1;
  font-variant-numeric: tabular-nums lining-nums;
  color: var(--gold);
}

.contagem dt {
  margin-top: 0.45rem;
  font-size: clamp(0.56rem, 1.5vw, 0.7rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-55);
}

/* --- contato ----------------------------------------------------------- */

.contact {
  position: relative;
  background:
    radial-gradient(90% 70% at 12% 0%, rgb(0 109 180 / 22%), transparent 60%),
    linear-gradient(168deg, #071233 0%, #04091c 62%);
  padding-block: var(--section-y);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 5.5rem);
}

.contact__title {
  margin-block: 1.5rem 1.5rem;
  max-width: 14ch;
}

.steps {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: baseline;
  font-size: 0.9375rem;
  color: var(--on-dark-70);
  counter-increment: step;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.channels {
  margin-top: clamp(2.5rem, 5vw, 3.25rem);
  display: grid;
  gap: 0.9rem;
  font-size: 0.9375rem;
}

.channels dd {
  margin: 0;
}

.channels a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.9rem;
  color: var(--on-dark-70);
  transition: color var(--t-ui) var(--ease-ui);
}

.channels a:hover {
  color: var(--on-dark);
}

.channels dt {
  font-size: var(--step-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-dark-38);
  margin-bottom: 0.3rem;
}

/* formulário */
.form {
  display: grid;
  gap: clamp(1.25rem, 2.4vw, 1.75rem);
  align-content: start;
}

.form__row {
  display: grid;
  gap: clamp(1.25rem, 2.4vw, 1.75rem);
}

.field {
  display: grid;
  gap: 0.55rem;
}

.field label {
  font-size: var(--step-eyebrow);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark-55);
  transition: color var(--t-ui) var(--ease-ui);
}

.field[data-focus] label {
  color: var(--gold);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.8rem 0;
  line-height: 1.5;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-dark);
  border-radius: 0;
  color: var(--on-dark);
  font-size: 1rem;
  transition: border-color var(--t-ui) var(--ease-ui);
}

.field textarea {
  resize: vertical;
  min-height: 4.5rem;
  line-height: 1.6;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--on-dark-55) 50%),
    linear-gradient(135deg, var(--on-dark-55) 50%, transparent 50%);
  background-position: right 8px center, right 3px center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 1.5rem;
}

.field select option {
  background: var(--ink);
  color: var(--on-dark);
}

.field input[type="date"] {
  color-scheme: dark;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--on-dark-38);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.field input:focus-visible,
.field textarea:focus-visible,
.field select:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.field[data-invalid="true"] input,
.field[data-invalid="true"] textarea,
.field[data-invalid="true"] select {
  border-bottom-color: #ff9d8a;
}

.field__error {
  font-size: 0.8125rem;
  color: #ffb3a4;
  min-height: 0;
}

.form__footer {
  display: grid;
  gap: 1.1rem;
  margin-top: 0.75rem;
  justify-items: start;
}

.form__footer .btn {
  justify-self: start;
}

.form__note {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--on-dark-38);
}

.form__status {
  font-size: 0.875rem;
  color: var(--gold);
}

/* --- rodapé ------------------------------------------------------------ */

.footer {
  background: var(--ink-deep);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) clamp(2rem, 4vw, 3rem);
}

.footer__top {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--rule-dark);
}

.footer__logo img {
  width: clamp(150px, 18vw, 210px);
}

.footer__tagline {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.3;
  letter-spacing: -0.012em;
  color: var(--on-dark-70);
}

.footer__nav .link::after {
  opacity: 0;
}

.footer__nav .link:hover::after {
  opacity: 1;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.9375rem;
  color: var(--on-dark-55);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  font-size: 0.8125rem;
  color: var(--on-dark-38);
}

/* --- profundidade ------------------------------------------------------
   As camadas com data-depth deslizam devagar dentro da própria moldura.
   A folga de 7% acima e abaixo é o que impede a borda de aparecer. */

.hero__media picture {
  display: block;
  position: absolute;
  inset: -7% 0;
  will-change: transform;
}

.hero__media img {
  height: 100%;
}

/* --- motion ------------------------------------------------------------ */

/* Hierarquia: movimento é reservado. Texto corrido só aparece; manchetes são
   descobertas por uma máscara que sobe; filetes se desenham; fotografias
   assentam. Nada usa a mesma curva pelo mesmo tempo. */

[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s var(--ease-in-out) var(--reveal-delay, 0ms);
}

[data-reveal].is-in {
  opacity: 1;
}

/* manchete do hero: a linha é a máscara, o texto sobe por trás dela.
   O elemento observado é a máscara — nunca é recortado, então a revelação
   sempre dispara. */
[data-reveal="mask"] {
  opacity: 1;
  display: block;
  overflow: hidden;
  padding-bottom: 0.16em;
  margin-bottom: -0.16em;
}

[data-reveal="mask"] > span {
  display: block;
  transform: translate3d(0, 106%, 0);
  transition: transform 1.25s var(--ease) var(--reveal-delay, 0ms);
  will-change: transform;
}

[data-reveal="mask"].is-in > span {
  transform: none;
}

/* manchetes de seção: sobem pouco, em tempo mais longo que o texto corrido */
[data-reveal="head"] {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 1.15s var(--ease) var(--reveal-delay, 0ms),
    transform 1.15s var(--ease) var(--reveal-delay, 0ms);
}

[data-reveal="head"].is-in {
  opacity: 1;
  transform: none;
}

[data-reveal="line"].is-in {
  clip-path: inset(-0.35em -0.25em -0.35em -0.25em);
  transform: none;
}

/* blocos de mídia e formulário: sobem pouco e assentam */
[data-reveal="block"] {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 1s var(--ease) var(--reveal-delay, 0ms),
    transform 1.1s var(--ease) var(--reveal-delay, 0ms);
}

[data-reveal="block"].is-in {
  opacity: 1;
  transform: none;
}

/* filetes: desenham-se da esquerda */
[data-reveal="rule"] {
  opacity: 1;
  transform: scaleX(0);
  transition: transform 1.3s var(--ease) var(--reveal-delay, 0ms);
}

[data-reveal="rule"].is-in {
  transform: scaleX(1);
}

/* a fotografia assenta ao entrar, em vez de simplesmente aparecer */
.figure:not(.hero__media) img {
  transform: scale(1.035);
  transition:
    opacity 1.2s var(--ease-in-out),
    transform 1.8s var(--ease);
}

.figure:not(.hero__media) img.is-loaded {
  transform: none;
}

/* deriva contínua e quase imperceptível na fotografia do hero */
.hero__media img {
  animation: drift 46s var(--ease-in-out) infinite alternate;
  transform-origin: 58% 45%;
}

@keyframes drift {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.065) translate3d(0, -0.8%, 0);
  }
}

/* --- breakpoints ------------------------------------------------------- */

@media (width >= 48rem) {
  .form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form__row--destino {
    grid-template-columns: minmax(0, 1fr);
  }

  .prazo__inner {
    grid-template-columns: minmax(15rem, 0.75fr) minmax(24rem, 1.25fr);
    align-items: center;
  }


}

@media (width >= 62rem) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero__inner {
    max-width: none;
    padding-inline: 0;
    padding-block: 0;
    grid-template-columns: minmax(0, 1fr) 46vw;
    align-items: stretch;
    gap: 0;
  }

  .hero__copy {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    max-width: none;
    padding-block: clamp(8rem, 14vh, 11rem) clamp(3rem, 6vh, 4.5rem);
    padding-inline:
      max(var(--gutter), calc((100vw - var(--shell)) / 2 + var(--gutter)))
      clamp(2.5rem, 4.5vw, 4.5rem);
  }

  .hero__media {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 1;
    height: 100%;

    --fade: linear-gradient(
      to right,
      transparent 0,
      rgb(0 0 0 / 10%) 9%,
      rgb(0 0 0 / 34%) 19%,
      rgb(0 0 0 / 64%) 29%,
      rgb(0 0 0 / 88%) 39%,
      #000 52%
    );

    -webkit-mask-image: var(--fade);
    mask-image: var(--fade);
  }

  .hero__media img {
    object-position: 52% 50%;
  }

  .selo {
    top: auto;
    bottom: clamp(7rem, 16vh, 10rem);
    right: clamp(2.5rem, 5vw, 5rem);
  }

  /* véu mínimo: só o suficiente para a faixa de assinatura e a emenda de campo */
  .hero__media::after {
    background: linear-gradient(to top, rgb(4 9 28 / 58%) 0%, transparent 20%);
  }

  .form {
    padding-left: clamp(2rem, 4vw, 3.5rem);
    border-left: 1px solid var(--rule-dark);
  }

  .contact__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .compara__tabela tbody th {
    width: 14rem;
  }

  .footer__top {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }
}

@media (width < 62rem) {
  .nav,
  .header__cta {
    display: none;
  }

  .header__mobile {
    --btn-bg: transparent;
    --btn-fg: var(--on-dark);
    --btn-line: transparent;

    position: relative;
    display: inline-flex;
    padding: 0.6rem 0;
    min-height: 0;
    font-size: 0.6875rem;
    letter-spacing: 0.16em;
  }

  .header__mobile::after {
    content: "";
    position: absolute;
    inset: auto 0 0.35rem;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
  }

  .hero__copy {
    padding-bottom: 0.5rem;
  }

  /* o texto começa abaixo da base do selo, com folga — em qualquer tela */
  .hero__inner {
    padding-block:
      calc(var(--selo-topo) + var(--selo-tamanho) + clamp(1.25rem, 3vh, 2rem))
      clamp(2rem, 4vh, 3rem);
  }
}

@media (width < 48rem) {
  :root {
    --step-display: clamp(2.6rem, 12.4vw, 3.9rem);
  }

  .compara__inner {
    max-height: 62vh;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .compara__tabela tbody th {
    width: 7.5rem;
  }

  .compara .btn {
    width: 100%;
  }

  .hero__signature ul {
    display: grid;
    gap: 0.5rem;
    font-size: 0.75rem;
  }

  .hero__signature li + li::before {
    display: none;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn,
  .form .btn {
    width: 100%;
  }
}

/* --- captação rápida da promoção -------------------------------------- */

.hero--captura {
  min-height: max(48rem, 100svh);
}

.hero--captura .hero__inner {
  align-items: center;
}

.hero--captura .hero__copy {
  max-width: 47rem;
}

.hero--captura .hero__eyebrow {
  margin-bottom: 1.15rem;
}

.hero--captura .hero__title {
  margin-bottom: 1.1rem;
}

.hero--captura .hero__title .line--2 {
  font-size: 0.53em;
}

.hero--captura .hero__lede {
  margin-bottom: 0.8rem;
}

.hero__emotion {
  max-width: 48ch;
  color: var(--on-dark-70);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  font-style: italic;
  line-height: 1.45;
}

.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.5rem;
  margin-top: 1.25rem;
  color: var(--on-dark);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__benefits li {
  position: relative;
  padding-left: 0.9rem;
}

.hero__benefits li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--gold);
}

.urgencia {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.45rem;
  margin-block: 1.35rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgb(231 174 37 / 58%);
  background: rgb(4 9 28 / 74%);
  color: var(--on-dark-70);
  font-size: 0.75rem;
  line-height: 1.15;
}

.urgencia b {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold-bright);
  font-weight: 400;
  font-variant-numeric: tabular-nums lining-nums;
  white-space: nowrap;
}

.urgencia b i {
  color: var(--on-dark-38);
  font-style: normal;
}

.urgencia__curto {
  display: none;
}

.hero__terms {
  max-width: 62ch;
  margin-top: 0.85rem;
  color: var(--on-dark-55);
  font-size: 0.76rem;
  line-height: 1.5;
}

.selo--ate .selo__numero {
  font-size: 27px;
}

/* três escolhas, sem transformar a página em vitrine */
.promocoes {
  --section-y: clamp(4.5rem, 9vw, 7.5rem);
  scroll-margin-top: 7.75rem;
}

.promocoes__title {
  max-width: 18ch;
  margin-top: 1.4rem;
}

.promocoes__lede {
  margin-top: 1rem;
}

.promo-grid {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2.25rem, 5vw, 4rem);
}

.promo-card {
  position: relative;
  display: grid;
  min-height: 21rem;
  align-content: start;
  gap: 1rem;
  padding: clamp(1.4rem, 3vw, 2.1rem);
  border: 1px solid var(--rule-light);
  border-radius: 0;
  background: var(--paper-pure);
  color: var(--on-light);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--caixote) var(--caixote) 0 rgb(8 17 55 / 10%);
  transition: border-color var(--t-ui) var(--ease-ui),
    background-color var(--t-ui) var(--ease-ui),
    transform var(--t-press) var(--ease);
}

.promo-card:hover,
.promo-card[aria-pressed="true"] {
  border-color: var(--blue);
  background: #f8fbff;
}

.promo-card:active {
  transform: translate3d(3px, 3px, 0);
}

.promo-card--destaque {
  border-top: 4px solid var(--gold);
}

.promo-card__badge {
  color: #72530c;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promo-card__titulo {
  max-width: 20ch;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.15;
}

.promo-card__texto {
  color: var(--on-light-70);
  line-height: 1.55;
}

.promo-card__periodo {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--rule-light);
  color: var(--on-light-70);
  font-size: 0.78rem;
  line-height: 1.45;
}

.promo-card__acao {
  color: var(--blue);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promocoes__condicoes {
  display: grid;
  gap: 0.35rem;
  max-width: 76ch;
  margin-top: 2rem;
  color: var(--on-light-70);
  font-size: 0.85rem;
  line-height: 1.55;
}

.promocoes__condicoes b {
  color: var(--on-light);
  font-weight: 400;
}

/* wizard de cinco etapas */
.contact--wizard {
  --section-y: clamp(4.5rem, 9vw, 7.5rem);
  scroll-margin-top: 4.5rem;
}

.contact--wizard .contact__grid {
  align-items: start;
}

.contact__intro {
  position: sticky;
  top: 7rem;
}

.contact--wizard .contact__title {
  max-width: 13ch;
}

.promo-resumo {
  display: grid;
  gap: 0.45rem;
  margin-top: 2rem;
  padding: 1.15rem;
  border-left: 2px solid var(--gold);
  background: rgb(255 255 255 / 5%);
  color: var(--on-dark-70);
  font-size: 0.82rem;
}

.promo-resumo b {
  color: var(--on-dark);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
}

.promo-resumo [data-promo-destino] {
  padding-top: 0.65rem;
  border-top: 1px solid var(--rule-dark);
}

.promo-resumo [data-promo-destino] strong {
  color: var(--gold-bright);
  font-weight: 400;
}

.link--botao {
  width: max-content;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.wizard {
  scroll-margin-top: 6rem;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid var(--rule-dark);
  background: rgb(8 17 55 / 72%);
}

.wizard__cabeca {
  display: grid;
  gap: 0.55rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule-dark);
  color: var(--on-dark-55);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wizard__bar {
  height: 0.22rem;
  overflow: hidden;
  background: var(--rule-dark);
}

.wizard__bar span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--gold);
  transition: width var(--t-draw) var(--ease);
}

.form-step {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2rem);
}

.form-step__head {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0.85rem;
  padding-top: 0.5rem;
}

.form-step__numero {
  font-family: var(--serif);
  color: var(--gold);
}

.form-step__head h3 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1.16;
}

.form-step__head p:not(.form-step__numero) {
  margin-top: 0.35rem;
  color: var(--on-dark-55);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form__privacy,
.form__consentimento,
.field__support,
.choice-group__support {
  color: var(--on-dark-55);
  font-size: 0.8rem;
  line-height: 1.55;
}

.choice-group,
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  min-width: 0;
  padding: 0;
  border: 0;
}

.choice-group legend,
.category-grid legend {
  width: 100%;
  margin-bottom: 0.2rem;
  color: var(--on-dark-55);
  font-size: var(--step-eyebrow);
  letter-spacing: 0.17em;
  line-height: 1.45;
  text-transform: uppercase;
}

.choice-group label {
  position: relative;
  cursor: pointer;
}

.choice-group label input,
.category-grid label input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-group label span {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--rule-dark);
  color: var(--on-dark-70);
  font-size: 0.84rem;
  line-height: 1.25;
  transition: border-color var(--t-ui) var(--ease-ui),
    background-color var(--t-ui) var(--ease-ui), color var(--t-ui) var(--ease-ui);
}

.choice-group input:checked + span,
.category-grid input:checked + .category-card {
  border-color: var(--gold);
  background: rgb(231 174 37 / 10%);
  color: var(--on-dark);
}

.choice-group input:focus-visible + span,
.category-grid input:focus-visible + .category-card {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.choice-group__support,
.choice-group .field__error,
.category-grid .field__error {
  width: 100%;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-grid legend,
.category-grid .field__error {
  grid-column: 1 / -1;
}

.category-card {
  display: grid;
  height: 100%;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid var(--rule-dark);
  cursor: pointer;
}

.category-card b {
  font-family: var(--serif);
  font-weight: 500;
}

.category-card small {
  color: var(--on-dark-55);
  font-size: 0.75rem;
  line-height: 1.4;
}

.idades {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--rule-dark);
}

.idades > p {
  color: var(--on-dark-55);
  font-size: var(--step-eyebrow);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.idades__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
  gap: 0.9rem;
}

.idades__grid .field input {
  padding-block: 0.55rem;
}

.hotel-exemplos {
  padding: 1rem;
  border-left: 2px solid var(--blue-bright);
  background: rgb(0 109 180 / 10%);
  color: var(--on-dark-70);
  font-size: 0.82rem;
  line-height: 1.55;
}

.wizard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}

.wizard__actions--end {
  justify-content: flex-end;
}

.whatsapp-confirmacao {
  display: grid;
  gap: 0.65rem;
  padding: 1.25rem;
  border: 1px solid var(--gold);
  background: rgb(231 174 37 / 8%);
}

.whatsapp-confirmacao > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

@media (width >= 48rem) {
  .promo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .form__row--trip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (width >= 62rem) {
  .hero--captura {
    min-height: max(46rem, 100svh);
  }

  .hero--captura .hero__inner {
    padding-block: clamp(8rem, 13vh, 10rem) clamp(3rem, 7vh, 5rem);
  }

  .hero--captura .hero__copy {
    padding-block: 0;
    padding-inline:
      max(var(--gutter), calc((100vw - var(--shell)) / 2 + var(--gutter)))
      clamp(2.5rem, 4.5vw, 4.5rem);
  }

  .hero--captura .hero__media {
    inset: auto;
  }

  .hero--captura .hero__media::after {
    background: linear-gradient(to right, var(--ink-deep) 0%,
      rgb(4 9 28 / 78%) 17%, rgb(4 9 28 / 20%) 52%, transparent 76%);
  }

  .hero--captura .selo--ate {
    right: calc(50% - 1.5rem);
  }

  .contact--wizard .contact__grid {
    grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1.28fr);
  }
}

@media (width < 62rem) {
  .hero--captura .hero__inner {
    padding-block: calc(var(--selo-topo) + var(--selo-tamanho) + 1rem) 3rem;
  }

  .contact__intro {
    position: static;
  }
}

@media (width < 48rem) {
  .hero--captura {
    min-height: auto;
  }

  .hero--captura .hero__inner {
    padding-top: calc(var(--selo-topo) + var(--selo-tamanho) + 0.75rem);
  }

  .hero--captura .hero__title .line--2 {
    font-size: 0.58em;
  }

  .hero__emotion {
    font-size: 1rem;
  }

  .hero__benefits {
    display: grid;
    gap: 0.35rem;
  }

  .urgencia {
    width: 100%;
    justify-content: center;
    padding-inline: 0.55rem;
    font-size: 0.68rem;
  }

  .urgencia__longo {
    display: none;
  }

  .urgencia__curto {
    display: inline;
  }

  .promo-card {
    min-height: 0;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .wizard {
    padding-inline: 1rem;
  }

  .wizard__actions,
  .whatsapp-confirmacao > div {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .wizard__actions .btn,
  .whatsapp-confirmacao .btn {
    width: 100%;
  }
}

/* --- preferências do usuário ------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  /* movimento contínuo e deslocamentos saem; opacidade e cor permanecem,
     porque é delas que vem a leitura de estado e de foco */
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-property: opacity, color, background-color, border-color,
      outline-color !important;
    transition-duration: 200ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  [data-reveal="mask"] > span,
  [data-reveal="head"],
  [data-reveal="block"] {
    transform: none;
  }

  [data-reveal="rule"] {
    transform: scaleX(1);
  }

  .hero__media img,
  .figure:not(.hero__media) img {
    transform: none;
  }

  /* Os caixotes param de saltar, mas continuam respondendo: a sombra e o
     contorno mudam de cor, que é de onde vem a leitura de estado. */
  .cartao-destino,
  .cartao-destino:hover,
  .cartao-destino:active,
  .cartao-destino:focus-within,
  .hotel,
  .hotel:hover,
  .hotel:focus-within {
    transform: none;
  }


  .figure img {
    opacity: 1;
  }
}

@media print {
  .header,
  .form {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }
}

/* --- briefing final: consulta, revisão e confiança --------------------- */

.urgencia--fixa {
  position: fixed;
  inset: 5.15rem 0 auto;
  z-index: 99;
  display: flex;
  width: 100%;
  min-height: 2.75rem;
  max-height: 3.5rem;
  justify-content: center;
  margin: 0;
  border-width: 1px 0;
  background: rgb(4 9 28 / 96%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.urgencia__fim {
  margin-left: 0.4rem;
  color: var(--on-dark-55);
}

.urgencia[data-encerrada="true"] b {
  color: var(--on-dark-55);
}

.hero__benefits {
  max-width: 48rem;
  letter-spacing: 0.06em;
  text-transform: none;
}

.promo-card {
  cursor: default;
}

.promo-card:hover,
.promo-card[data-selected="true"] {
  border-color: var(--blue);
  background: #f8fbff;
}

.promo-card:active {
  transform: none;
}

.promo-card__acao.btn {
  width: 100%;
  margin-top: auto;
  padding-inline: 1rem;
  color: var(--ink);
  letter-spacing: 0.08em;
}

.promo-card__link {
  justify-self: start;
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.destino-ponte {
  display: grid;
  gap: 0.65rem;
  max-width: 58rem;
  margin-top: 2.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-left: 3px solid var(--blue);
  background: #eaf4fb;
  color: var(--on-light-70);
}

.destino-ponte b {
  color: var(--on-light);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.destino-ponte .btn {
  --btn-fg: var(--ink);
  justify-self: start;
}

.autoridade {
  padding-block: 1.5rem;
  border-block: 1px solid var(--rule-dark);
  background: var(--ink-soft);
}

.autoridade__inner {
  display: grid;
  gap: 1rem 3rem;
}

.autoridade__inner p {
  display: grid;
  gap: 0.15rem;
}

.autoridade__inner b {
  color: var(--gold-bright);
  font-weight: 400;
}

.autoridade__inner span {
  color: var(--on-dark-55);
  font-size: 0.84rem;
}

.category-card em {
  min-height: 1.2em;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.35;
}

.category-grid label[data-indisponivel="true"] .category-card {
  border-style: dashed;
  opacity: 0.58;
  cursor: not-allowed;
}

.hotel-exemplos {
  display: grid;
  gap: 0.75rem;
}

.hotel-exemplos p {
  margin: 0;
}

.revisao {
  display: grid;
  gap: 0;
  border: 1px solid var(--rule-dark);
}

.revisao__linha {
  display: grid;
  grid-template-columns: minmax(8rem, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--rule-dark);
}

.revisao__linha:last-child {
  border-bottom: 0;
}

.revisao__linha dt {
  color: var(--on-dark-55);
  font-size: 0.75rem;
}

.revisao__linha dd {
  margin: 0;
  color: var(--on-dark);
  overflow-wrap: anywhere;
}

.revisao__editar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.consentimento-check {
  display: grid;
  grid-template-columns: 1.2rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  color: var(--on-dark-70);
  font-size: 0.82rem;
  line-height: 1.55;
  cursor: pointer;
}

.consentimento-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.destinos-dialog {
  width: min(58rem, calc(100% - 2rem));
  max-height: min(52rem, 88dvh);
  padding: 0;
  border: 1px solid var(--rule-light);
  background: var(--paper-pure);
  color: var(--on-light);
  box-shadow: 0 1.5rem 5rem rgb(0 0 0 / 36%);
}

.destinos-dialog::backdrop {
  background: rgb(4 9 28 / 78%);
  backdrop-filter: blur(4px);
}

.destinos-dialog__cabeca,
.destinos-dialog__busca,
.destinos-dialog__rodape {
  padding: 1.25rem clamp(1.15rem, 4vw, 2rem);
}

.destinos-dialog__cabeca {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  border-bottom: 1px solid var(--rule-light);
}

.destinos-dialog__cabeca h2 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
}

.destinos-dialog__cabeca p:not(.eyebrow),
.destinos-dialog__rodape {
  color: var(--on-light-70);
  font-size: 0.86rem;
}

.destinos-dialog__fechar {
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule-light);
  background: transparent;
  color: var(--on-light);
  font-size: 1.6rem;
  cursor: pointer;
}

.destinos-dialog__busca {
  padding-bottom: 0.75rem;
}

.destinos-dialog__busca input {
  color-scheme: light;
  border-color: var(--rule-light);
  background: var(--paper-pure);
  color: var(--on-light);
}

.destinos-dialog__busca input::placeholder {
  color: var(--on-light-50);
  opacity: 1;
}

.destinos-dialog__busca label {
  color: var(--on-light-70);
}

.destinos-dialog__lista {
  display: grid;
  max-height: 48dvh;
  gap: 1.25rem;
  padding: 0.75rem clamp(1.15rem, 4vw, 2rem) 1.5rem;
  overflow-y: auto;
}

.destinos-grupo {
  display: grid;
  gap: 0.6rem;
}

.destinos-grupo h3 {
  color: var(--on-light-50);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.destinos-grupo__itens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.destino-opcao {
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--rule-light);
  background: #f8fafc;
  color: var(--on-light);
  text-align: left;
  cursor: pointer;
}

.destino-opcao:hover,
.destino-opcao:focus-visible {
  border-color: var(--blue);
  background: #eaf4fb;
}

.destinos-dialog__rodape {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--rule-light);
}

.destinos-dialog__rodape .btn {
  --btn-fg: var(--ink);
  flex: none;
}

.prova-social .title {
  max-width: 20ch;
  margin-top: 1.1rem;
}

.prova-social .prose {
  margin-top: 1rem;
}

.social-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

.social-card {
  display: grid;
  gap: 0.2rem;
  padding: 0 0 1rem;
  border: 1px solid var(--rule-light);
  background: var(--paper-pure);
  color: var(--on-light);
  overflow: hidden;
}

.social-card__visual {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin-bottom: 0.8rem;
  object-fit: cover;
}

.social-card b,
.social-card > span:not(.social-card__visual),
.social-card small {
  padding-inline: 1rem;
}

.depoimentos {
  margin-top: clamp(3.5rem, 8vw, 6rem);
}

.depoimentos > h3 {
  margin-top: 0.75rem;
  color: var(--on-light);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
}

.depoimentos__grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.depoimento-card {
  display: grid;
  align-content: start;
  border: 1px solid var(--rule-light);
  background: #0b0c0d;
  overflow: hidden;
}

.depoimento-card img {
  width: 100%;
  max-height: 42rem;
  object-fit: contain;
}

.depoimento-card figcaption {
  display: grid;
  gap: 0.1rem;
  padding: 1rem 1.15rem;
  background: var(--paper-pure);
  color: var(--on-light);
}

.depoimento-card figcaption b {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
}

.depoimento-card figcaption span {
  color: var(--on-light-70);
  font-size: 0.82rem;
}

.social-card > span:not(.social-card__visual) {
  color: var(--on-light-70);
}

.social-card small {
  margin-top: 0.6rem;
  color: var(--blue);
}

.instagram-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}

.instagram-cta .btn {
  --btn-fg: var(--ink);
}

.footer__regras {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule-dark);
  color: var(--on-dark-38);
  font-size: 0.75rem;
  line-height: 1.6;
}

.pagina-legal {
  min-height: 100vh;
  padding: clamp(8rem, 15vw, 11rem) var(--gutter) 5rem;
  background: var(--paper);
  color: var(--on-light);
}

.pagina-legal__inner {
  max-width: 54rem;
  margin-inline: auto;
}

.pagina-legal h1,
.pagina-legal h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
}

.pagina-legal h1 {
  margin-block: 1rem 2rem;
  font-size: clamp(2.25rem, 6vw, 4rem);
}

.pagina-legal h2 {
  margin-block: 2rem 0.6rem;
  font-size: 1.5rem;
}

.pagina-legal p,
.pagina-legal li {
  color: var(--on-light-70);
}

.pagina-legal ul {
  padding-left: 1.2rem;
  list-style: disc;
}

@media (width >= 48rem) {
  .autoridade__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .depoimentos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

@media (width < 62rem) {
  .urgencia--fixa {
    inset-block-start: 4.4rem;
  }

  .urgencia__fim {
    display: none;
  }
}

@media (width < 48rem) {
  .urgencia--fixa {
    min-height: 2.75rem;
    max-height: 3rem;
    gap: 0.3rem;
    white-space: nowrap;
  }

  .urgencia--fixa > span:nth-child(2) {
    font-size: 0;
  }

  .urgencia--fixa > span:nth-child(2)::after {
    content: "Termina em:";
    font-size: 0.68rem;
  }

  .promo-card__acao.btn,
  .destino-ponte .btn {
    width: 100%;
  }

  .revisao__linha {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .destinos-dialog {
    width: 100%;
    max-width: none;
    max-height: 90dvh;
    margin: auto 0 0;
    border-radius: 1rem 1rem 0 0;
  }

  .destinos-grupo__itens {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destinos-dialog__rodape {
    display: grid;
  }

  .destinos-dialog__rodape .btn {
    width: 100%;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .social-card:last-child {
    grid-column: 1 / -1;
  }
}

/* --- direção visual mobile-first aprovada em referência --------------- */

:root {
  --paper: #f8f6f1;
  --gold: #e8ae20;
  --gold-bright: #f0bd32;
  --ink: #071434;
  --ink-deep: #030b23;
  --ink-soft: #0a1c43;
}

.header {
  background: rgb(3 11 35 / 96%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header::after {
  opacity: 1;
  background: rgb(232 174 32 / 38%);
}

.urgencia--fixa {
  border: 0;
  border-bottom: 1px solid rgb(7 20 52 / 22%);
  background: var(--gold);
  color: var(--ink);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.urgencia--fixa b,
.urgencia--fixa b i,
.urgencia--fixa .urgencia__fim {
  color: var(--ink);
}

.hero--captura {
  background: var(--ink);
}

.hero--captura .hero__media::after {
  background:
    linear-gradient(to top, var(--ink-deep) 0%, rgb(3 11 35 / 92%) 25%,
      rgb(3 11 35 / 58%) 58%, rgb(3 11 35 / 24%) 100%),
    linear-gradient(to right, rgb(3 11 35 / 62%), transparent 75%);
}

.hero--captura .selo--ate {
  display: none;
}

.hero--captura .hero__copy {
  max-width: 42rem;
}

.hero--captura .hero__title .line--2 {
  max-width: 12ch;
  margin-top: 0.08em;
  font-size: 0.72em;
  font-style: normal;
  line-height: 1.06;
}

.hero__discount {
  color: var(--gold-bright);
  font-style: italic;
}

.hero__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(6.6rem, 8rem));
  gap: clamp(0.55rem, 2vw, 1rem);
  margin-top: 1.5rem;
}

.hero__benefits li {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  padding: 0.8rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--on-dark);
  font-size: clamp(0.62rem, 1.2vw, 0.74rem);
  line-height: 1.2;
  text-align: center;
  text-transform: none;
}

.hero__benefits li::before {
  display: none;
}

.hero__terms {
  display: flex;
  gap: 0.45rem;
  align-items: flex-start;
  color: rgb(240 189 50 / 88%);
}

.hero__terms::before {
  content: "◷";
  flex: none;
  font-size: 1rem;
  line-height: 1.15;
}

.promocoes {
  background: var(--paper);
}

.promocoes .eyebrow,
.promocoes__title,
.promocoes__lede {
  justify-content: center;
  margin-inline: auto;
  text-align: center;
}

.promocoes__title::after,
.prova-social .title::after,
.form-step__head h3::after {
  content: "◆";
  display: block;
  margin: 0.7rem auto 0;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0;
}

.promo-grid {
  max-width: 68rem;
  margin-inline: auto;
}

.promo-card {
  min-height: 0;
  gap: 0.55rem;
  padding: 1.35rem 1.35rem 1.25rem 5rem;
  border-radius: 0.55rem;
  box-shadow: 0 0.35rem 1.25rem rgb(7 20 52 / 7%);
}

.promo-card::before {
  position: absolute;
  top: 1.45rem;
  left: 1.25rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid var(--rule-light);
  border-radius: 50%;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.promo-card[data-promo-card="lista"]::before {
  content: "✈";
}

.promo-card[data-promo-card="aberto"]::before {
  content: "◎";
}

.promo-card[data-promo-card="internacional"]::before {
  content: "▣";
}

.promo-card::after {
  content: "";
  position: absolute;
  top: 1.35rem;
  right: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--rule-light);
  border-radius: 50%;
  background: var(--paper-pure);
  box-shadow: inset 0 0 0 0.25rem var(--paper-pure);
}

.promo-card[data-selected="true"]::after {
  border-color: var(--gold);
  background: var(--gold);
}

.promo-card--destaque {
  border: 1px solid var(--gold);
}

.promo-card__badge {
  padding-right: 2rem;
  color: #8a6410;
}

.promo-card__titulo {
  max-width: 25ch;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.promo-card__periodo {
  margin-top: 0.25rem;
  padding-top: 0.65rem;
}

.promo-card__acao.btn {
  min-height: 2.8rem;
  margin-top: 0.35rem;
  padding-block: 0.8rem;
}

.promocoes__condicoes,
.destino-ponte {
  margin-inline: auto;
}

.destino-ponte {
  border: 1px solid #cbdde9;
  border-radius: 0.55rem;
  background: #e9f3f8;
}

.contact--wizard {
  --on-dark: var(--on-light);
  --on-dark-70: var(--on-light-70);
  --on-dark-55: var(--on-light-50);
  --on-dark-38: rgb(10 18 49 / 42%);
  --rule-dark: var(--rule-light);

  background: var(--paper);
  color: var(--on-light);
}

.contact--wizard .eyebrow {
  color: var(--on-light-70);
}

.contact--wizard .contact__title,
.contact--wizard .prose {
  color: var(--on-light);
}

.contact--wizard .contact__intro > .prose {
  color: var(--on-light-70);
}

.promo-resumo {
  border: 1px solid #cbdde9;
  border-left: 3px solid var(--gold);
  border-radius: 0.45rem;
  background: #edf5f9;
}

.wizard {
  padding: clamp(1.1rem, 4vw, 2rem);
  border: 1px solid var(--rule-light);
  border-radius: 0.65rem;
  background: var(--paper-pure);
  box-shadow: 0 0.75rem 2.5rem rgb(7 20 52 / 7%);
}

.wizard__cabeca {
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 0;
  color: var(--on-light-70);
}

.wizard__bar {
  height: 0.34rem;
  border-radius: 999px;
  background: #d9d9d5;
}

.wizard__bar span {
  border-radius: inherit;
}

.form-step__head {
  display: block;
  padding-top: 0;
  text-align: center;
}

.form-step__numero {
  display: none;
}

.form-step__head h3 {
  max-width: 17ch;
  margin-inline: auto;
  color: var(--on-light);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

.form-step__head p:not(.form-step__numero) {
  max-width: 48ch;
  margin: 0.65rem auto 0;
  color: var(--on-light-70);
}

.field label,
.choice-group legend,
.category-grid legend {
  color: var(--on-light-70);
}

.field input,
.field textarea,
.field select {
  padding: 0.78rem 0.85rem;
  border: 1px solid var(--rule-light);
  border-radius: 0.35rem;
  background-color: var(--paper-pure);
  color: var(--on-light);
}

.field input[type="date"] {
  color-scheme: light;
}

.field select option {
  background: var(--paper-pure);
  color: var(--on-light);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--on-light-50);
}

.field__error {
  color: #a03424;
}

.choice-group label span,
.category-card,
.idades,
.revisao {
  border-color: var(--rule-light);
  background: var(--paper-pure);
  color: var(--on-light-70);
}

.choice-group input:checked + span,
.category-grid input:checked + .category-card {
  border-color: var(--gold);
  background: #fffaf0;
  color: var(--on-light);
  box-shadow: inset 0 -3px 0 var(--gold);
}

.category-card {
  min-height: 7rem;
  align-content: center;
  text-align: center;
}

.category-card b {
  color: var(--on-light);
  font-size: 1.35rem;
}

.category-card small,
.category-card em,
.form__privacy,
.field__support,
.choice-group__support,
.consentimento-check,
.revisao__linha dt {
  color: var(--on-light-70);
}

.hotel-exemplos,
.datas__erro,
.datas__convencional {
  border: 1px solid #cbdde9;
  border-left: 3px solid var(--blue);
  border-radius: 0.4rem;
  background: #edf5f9;
  color: var(--on-light-70);
}

.revisao__linha dd {
  color: var(--on-light);
}

.contact--wizard .btn--secondary {
  --btn-fg: var(--ink);
}

.autoridade {
  background: var(--ink);
}

.prova-social {
  --section-y: clamp(4rem, 8vw, 6.5rem);
  scroll-margin-top: 6.8rem;
  background: #fbfaf7;
}

.prova-social .eyebrow {
  justify-content: center;
}

.prova-social .title {
  max-width: 19ch;
  margin-inline: auto;
  text-align: center;
}

.prova-social .prose {
  margin-inline: auto;
  text-align: center;
}

.social-card {
  gap: 0.1rem;
  padding-bottom: 0;
  border: 0;
  background: transparent;
  text-align: center;
  box-shadow: none;
}

.social-card__visual {
  aspect-ratio: 3 / 4;
  margin-bottom: 0.45rem;
  border-radius: 0.45rem;
}

.social-card b,
.social-card > span:not(.social-card__visual),
.social-card small {
  padding-inline: 0.15rem;
}

.social-card b {
  font-family: var(--serif);
  font-weight: 500;
}

.social-card > span:not(.social-card__visual) {
  font-size: 0.72rem;
  line-height: 1.25;
}

.social-card small {
  display: none;
}

.social-proof__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 70rem;
  margin: 2rem auto 0;
  padding: 1rem;
  border-radius: 0.55rem;
  background: var(--ink);
  color: var(--on-dark);
}

.social-proof__stats p {
  display: grid;
  gap: 0.1rem;
  padding-inline: 1rem;
  text-align: center;
}

.social-proof__stats p + p {
  border-left: 1px solid rgb(255 255 255 / 18%);
}

.social-proof__stats b {
  color: var(--gold-bright);
  font-size: 0.84rem;
  font-weight: 400;
}

.social-proof__stats span {
  color: var(--on-dark-70);
  font-size: 0.7rem;
  line-height: 1.25;
}

.depoimentos {
  max-width: 70rem;
  margin-inline: auto;
}

.depoimentos > .eyebrow,
.depoimentos > h3 {
  justify-content: center;
  text-align: center;
}

.depoimento-card {
  border-radius: 0.55rem;
}

.instagram-cta {
  justify-content: center;
}

@media (width >= 48rem) {
  .social-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-width: 70rem;
    margin-inline: auto;
  }
}

@media (width < 48rem) {
  :root {
    --gutter: 1.45rem;
    --section-y: 4.5rem;
  }

  .header__inner {
    min-height: 4.4rem;
    padding-block: 0.85rem;
  }

  .header__logo img {
    width: 140px;
  }

  .urgencia--fixa {
    min-height: 2.4rem;
    max-height: 2.4rem;
    font-size: 0.67rem;
  }

  .hero--captura .hero__inner {
    min-height: 46rem;
    padding: 8.75rem var(--gutter) 2.25rem;
    align-items: end;
  }

  .hero--captura .hero__eyebrow {
    display: none;
  }

  .hero--captura .hero__title {
    max-width: 8.5ch;
    margin-bottom: 1rem;
    font-size: clamp(3.1rem, 14.2vw, 3.65rem);
  }

  .hero--captura .hero__title .line--2 {
    max-width: 8.8ch;
    font-size: 0.72em;
  }

  .hero--captura .hero__lede {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero__benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    width: 100%;
  }

  .hero__benefits li {
    min-width: 0;
    padding: 0.55rem;
    font-size: clamp(0.55rem, 2.5vw, 0.65rem);
  }

  .hero__actions {
    margin-top: 1.15rem;
  }

  .hero__terms {
    font-size: 0.7rem;
  }

  .promocoes .eyebrow {
    display: none;
  }

  .promocoes__title {
    margin-top: 0;
    font-size: 2.45rem;
  }

  .promo-grid {
    margin-top: 2rem;
  }

  .promo-card {
    padding-left: 4.6rem;
  }

  .promo-card__texto {
    font-size: 0.9rem;
  }

  .contact--wizard {
    padding-block: 1.5rem 4rem;
  }

  .contact--wizard .contact__grid {
    gap: 1rem;
  }

  .contact__intro > .eyebrow,
  .contact__intro > .title,
  .contact__intro > .prose {
    display: none;
  }

  .promo-resumo {
    margin-top: 0;
  }

  .wizard {
    padding: 1rem;
    border: 0;
    box-shadow: none;
  }

  .form-step {
    gap: 1.15rem;
  }

  .form-step__head h3 {
    font-size: 2rem;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
  }

  .category-card {
    min-height: 7.2rem;
    padding: 0.65rem 0.45rem;
  }

  .category-card b {
    font-size: 1rem;
    line-height: 1.15;
  }

  .category-card small {
    font-size: 0.58rem;
    line-height: 1.25;
  }

  .wizard__actions .btn {
    width: 100%;
  }

  .prova-social .eyebrow,
  .prova-social > .shell > .prose {
    display: none;
  }

  .prova-social .title {
    margin-top: 0;
    font-size: 2rem;
  }

  .social-grid {
    display: flex;
    gap: 0.42rem;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .social-grid::-webkit-scrollbar {
    display: none;
  }

  .social-card,
  .social-card:last-child {
    flex: 0 0 calc((100vw - (var(--gutter) * 2) - 1.26rem) / 4);
    grid-column: auto;
    scroll-snap-align: start;
  }

  .social-card b {
    font-size: 0.8rem;
  }

  .social-card > span:not(.social-card__visual) {
    font-size: 0.58rem;
  }

  .social-proof__stats {
    margin-top: 1.5rem;
    padding: 0.8rem 0.3rem;
  }

  .social-proof__stats p {
    padding-inline: 0.35rem;
  }

  .social-proof__stats b {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .social-proof__stats span {
    font-size: 0.58rem;
  }

  .depoimentos {
    margin-top: 2.5rem;
  }

  .depoimentos > .eyebrow {
    display: none;
  }

  .depoimentos__grid {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .depoimento-card {
    flex: 0 0 88%;
    align-self: flex-start;
    scroll-snap-align: center;
  }

  .instagram-cta {
    display: grid;
    text-align: center;
  }

  .instagram-cta .btn {
    width: 100%;
  }
}

/* --- refinamentos finais de conversão --------------------------------- */

.header {
  transition: transform var(--t-ui) var(--ease-ui),
    background-color var(--t-draw) var(--ease-ui),
    backdrop-filter var(--t-draw) var(--ease-ui);
}

.urgencia--fixa {
  transition: inset-block-start var(--t-ui) var(--ease-ui);
}

.urgencia__mobile-resumo,
.urgencia__encerrada {
  display: none;
}

.promocoes__encerrada {
  margin: 2rem auto 0;
}

.consentimento-check--inicio {
  padding: 0.9rem 1rem;
  border: 1px solid var(--rule-light);
  border-radius: 0.4rem;
  background: #fffaf0;
  color: var(--on-light);
}

.social-carousel__dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.social-carousel__dots button {
  width: 0.48rem;
  height: 0.48rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgb(7 20 52 / 22%);
  cursor: pointer;
}

.social-carousel__dots button[aria-current="true"] {
  background: var(--gold);
  transform: scale(1.18);
}

.footer__details {
  display: grid;
  gap: 0.3rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--rule-dark);
  color: var(--on-dark-55);
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer__details b {
  color: var(--on-dark);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
}

.mobile-quote-cta {
  display: none;
}

@media (width >= 48rem) {
  .depoimentos__grid {
    align-items: stretch;
  }

  .depoimento-card {
    grid-template-rows: minmax(32rem, 42rem) auto;
  }

  .depoimento-card img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }
}

/* O mobile aprovado permanece intacto; o respiro extra abaixo é desktop. */
@media (width >= 62rem) {
  .hero--captura .hero__copy {
    padding-top: clamp(7.5rem, 12vh, 9rem);
    padding-bottom: clamp(3rem, 5vh, 4rem);
  }

  .hero__benefits {
    margin-top: 2rem;
  }

  .hero__actions {
    margin-top: 2.25rem;
  }

  .hero__terms {
    margin-top: 1.25rem;
  }

  .promocoes {
    padding-block: 5.4rem;
  }

  .promocoes__lede {
    margin-top: 1.45rem;
  }

  .promo-grid {
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .promo-card {
    gap: 1rem;
    padding: 2rem 1.75rem 1.75rem 5.3rem;
  }

  .promo-card__periodo {
    margin-top: 0.5rem;
    padding-top: 1rem;
  }

  .promocoes__condicoes {
    margin-top: 2.75rem;
  }

  .destino-ponte {
    margin-top: 3rem;
    padding: 2rem 2.25rem;
  }

  .autoridade {
    padding-block: 2rem;
  }

  .contact--wizard {
    padding-block: 7rem 8rem;
    scroll-margin-top: 7.9rem;
  }

  .contact--wizard .contact__grid {
    gap: clamp(5rem, 7vw, 8rem);
  }

  .contact__title {
    margin-block: 1.8rem;
  }

  .promo-resumo {
    margin-top: 2.75rem;
    padding: 1.5rem;
  }

  .wizard {
    gap: 2rem;
    padding: 2.75rem;
  }

  .form-step {
    gap: 2.25rem;
  }

  .form-step__head {
    margin-bottom: 0.4rem;
  }

  .form__row {
    gap: 2rem;
  }

  .choice-group,
  .category-grid {
    gap: 1rem;
  }

  .wizard__actions {
    margin-top: 0.5rem;
  }

  .prova-social {
    padding-block: 7.5rem 8.5rem;
  }

  .prova-social .prose {
    margin-top: 1.4rem;
  }

  .social-grid {
    gap: 1.35rem;
    margin-top: 3.25rem;
  }

  .social-proof__stats {
    margin-top: 3rem;
    padding: 1.25rem;
  }

  .depoimentos {
    margin-top: 5.5rem;
  }

  .depoimentos__grid {
    gap: 1.5rem;
    margin-top: 2.75rem;
  }

  .instagram-cta {
    gap: 1.5rem 2rem;
    margin-top: 3.5rem;
  }

  .footer__top {
    gap: 4rem;
    padding-bottom: 3.5rem;
  }

  .footer__details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem 2rem;
    padding-block: 2rem;
  }
}

@media (width < 48rem) {
  html {
    scroll-padding-bottom: calc(5.5rem + env(safe-area-inset-bottom));
  }

  .header[data-hidden="true"] {
    transform: translateY(-100%);
  }

  .urgencia--fixa[data-header-hidden="true"] {
    inset-block-start: 0;
  }

  .urgencia--fixa {
    min-height: 2.5rem;
    max-height: 2.5rem;
  }

  .urgencia--fixa > span:not(.urgencia__mobile-resumo):not(.urgencia__encerrada),
  .urgencia--fixa > b {
    display: none;
  }

  .urgencia--fixa .urgencia__mobile-resumo {
    display: inline;
    color: var(--ink);
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
  }

  .urgencia--fixa[data-encerrada="true"] .urgencia__mobile-resumo {
    display: none;
  }

  .urgencia--fixa[data-encerrada="true"] .urgencia__encerrada {
    display: inline;
    color: var(--ink);
    font-size: 0.68rem;
    line-height: 1.1;
    text-align: center;
  }

  .promo-card[data-promo-card]::before {
    content: "✈";
  }

  .social-grid {
    scroll-padding-inline: var(--gutter);
  }

  .social-card,
  .social-card:last-child {
    flex-basis: calc(82vw - var(--gutter));
  }

  .social-card b {
    font-size: 1rem;
  }

  .social-card > span:not(.social-card__visual) {
    font-size: 0.76rem;
  }

  .social-carousel__dots {
    display: flex;
  }

  .depoimentos__grid {
    display: grid;
    gap: 1rem;
    margin-inline: 0;
    padding-inline: 0;
    overflow: visible;
  }

  .depoimento-card {
    display: grid;
    width: 100%;
    grid-template-rows: auto auto;
  }

  .depoimento-card img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .mobile-quote-cta {
    position: fixed;
    inset: auto 1rem calc(0.75rem + env(safe-area-inset-bottom));
    z-index: 90;
    display: block;
    width: calc(100% - 2rem);
    min-height: 3.2rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgb(255 255 255 / 24%);
    border-radius: 0.35rem;
    background: var(--ink);
    color: var(--on-dark);
    box-shadow: 0 0.7rem 2rem rgb(3 11 35 / 28%);
    font-size: 0.76rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .mobile-quote-cta[hidden] {
    display: none;
  }

  .has-mobile-quote main {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }

  .footer__details {
    gap: 0.45rem;
  }

  .hero__benefits {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 1.15rem;
  }

  .hero__benefits li {
    display: flex;
    min-height: 0;
    aspect-ratio: auto;
    justify-content: flex-start;
    gap: 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    font-size: 0.78rem;
    line-height: 1.35;
    text-align: left;
  }

  .hero__benefits li::before {
    content: "—";
    position: static;
    display: inline-block;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    color: var(--gold-bright);
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .category-card small {
    font-size: 0.72rem;
    line-height: 1.3;
  }
}
