/* ==========================================================================
   VIAJAR BARATO — Landing Page Grupo VIP
   Design System / Folha de estilo compartilhada pelas 3 landing pages
   Paleta oficial: 004563 · 02809A · 68B2C1 · 747474 · FD9B00
   Tipografia: Poppins
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. FONTES
   Poppins auto-hospedada (subset latin, cobre todos os acentos do português).
   Evita 6 requisições bloqueantes ao Google Fonts e 2 handshakes extras.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/poppins-400.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/poppins-500.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-600.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins-700.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/poppins-800.woff2") format("woff2");
}

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Marca */
  --navy-900: #002133;
  --navy-800: #002d45;
  --navy: #004563;
  --navy-600: #015a7d;
  --teal: #02809a;
  --teal-400: #12a0bb;
  --sky: #68b2c1;
  --sky-200: #a8d3dc;
  --gray: #747474;
  --amber: #fd9b00;
  --amber-400: #ffb238;
  --amber-600: #e08000;

  /* Verde do WhatsApp — cor de ação dos CTAs.
     O texto sobre ele fica em navy, não em branco: branco sobre #25d366 dá
     contraste de 1,8:1 e reprova em acessibilidade; navy dá 9,7:1. */
  --wa: #25d366;
  --wa-400: #3ee87c;
  --wa-600: #14a84c;

  /* Neutros */
  --white: #ffffff;
  --off-white: #f6f9fb;
  --ink: #0e1a21;
  --ink-soft: #4a5b64;

  /* Superfícies */
  --surface-dark: var(--navy-900);
  --surface-light: var(--white);
  --surface-muted: var(--off-white);

  /* Gradientes */
  --grad-brand: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  --grad-cta: linear-gradient(135deg, var(--wa-400) 0%, var(--wa) 45%, var(--wa-600) 100%);
  --grad-text: linear-gradient(100deg, var(--sky) 0%, var(--amber-400) 55%, var(--amber) 100%);

  /* Tipografia */
  --font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-hero: clamp(1.9rem, 4vw, 3.25rem);
  --fs-h2: clamp(1.75rem, 4.4vw, 3.1rem);
  --fs-h3: clamp(1.1rem, 2vw, 1.35rem);
  --fs-lead: clamp(1rem, 1.85vw, 1.22rem);
  --fs-body: clamp(0.95rem, 1.5vw, 1.02rem);
  --fs-small: 0.85rem;
  --fs-eyebrow: 0.735rem;

  /* Espaçamento */
  --container: 1240px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --section-y: clamp(4.25rem, 9vw, 8rem);

  /* Formas */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Sombras */
  --sh-sm: 0 2px 10px rgba(0, 33, 51, 0.06);
  --sh-md: 0 14px 40px -12px rgba(0, 33, 51, 0.16);
  --sh-lg: 0 32px 80px -24px rgba(0, 33, 51, 0.3);
  --sh-cta: 0 12px 34px -8px rgba(37, 211, 102, 0.55);

  /* Movimento */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 0.22s;
  --t: 0.42s;
  --t-slow: 0.85s;

  --header-h: 72px;
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video,
svg { display: block; max-width: 100%; }

img { height: auto; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

::selection { background: var(--amber); color: var(--navy-900); }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Acessibilidade */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px; left: 12px;
  z-index: 999;
  padding: 0.7rem 1.2rem;
  background: var(--amber);
  color: var(--navy-900);
  font-weight: 700;
  border-radius: var(--r-sm);
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 12px; }

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: 900px; }

.section { padding-block: var(--section-y); position: relative; }

.section--dark {
  background: var(--surface-dark);
  color: var(--white);
}

.section--muted { background: var(--surface-muted); }

.section-head {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head h2 { font-size: var(--fs-h2); font-weight: 800; }

.section-head p {
  margin-top: 1.1rem;
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  line-height: 1.65;
}

.section--dark .section-head p { color: rgba(255, 255, 255, 0.72); }

/* Eyebrow / pill */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem 0.45rem 0.55rem;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(2, 128, 154, 0.09);
  border: 1px solid rgba(2, 128, 154, 0.2);
  border-radius: var(--r-pill);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(253, 155, 0, 0.22);
  animation: pulse-dot 2.4s var(--ease-in-out) infinite;
}

.section--dark .eyebrow {
  color: var(--sky-200);
  background: rgba(104, 178, 193, 0.12);
  border-color: rgba(104, 178, 193, 0.26);
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(253, 155, 0, 0.28); }
  50%      { box-shadow: 0 0 0 8px rgba(253, 155, 0, 0); }
}

/* Realce de texto com gradiente */
.grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hl {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.hl::after {
  content: "";
  position: absolute;
  left: -0.12em; right: -0.12em;
  bottom: 0.04em;
  height: 0.36em;
  background: var(--amber);
  border-radius: 3px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: hl-sweep 0.9s 0.75s var(--ease) forwards;
}

@keyframes hl-sweep { to { transform: scaleX(1); } }

/* --------------------------------------------------------------------------
   4. BOTÕES
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.08rem 2.1rem;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t) var(--ease), background-color var(--t) var(--ease);
}

.btn svg { width: 20px; height: 20px; flex: none; }

.btn--primary {
  color: var(--navy-900);
  background: var(--grad-cta);
  box-shadow: var(--sh-cta);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.55) 50%, transparent 80%);
  transform: translateX(-120%);
  animation: shine 4.5s 1.2s var(--ease-in-out) infinite;
}

@keyframes shine {
  0%       { transform: translateX(-120%); }
  35%, 100% { transform: translateX(120%); }
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 20px 46px -10px rgba(37, 211, 102, 0.68);
}

.btn--primary:active { transform: translateY(-1px) scale(0.995); }

.btn--light {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: var(--sh-md);
}
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }

.btn--ghost {
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.06);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.6); }

.btn--sm { padding: 0.72rem 1.4rem; font-size: 0.8rem; }

.btn--block { display: flex; width: 100%; }

/* Halo pulsante no CTA principal */
.btn--pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -2;
  border-radius: inherit;
  border: 2px solid var(--wa);
  opacity: 0;
  animation: halo 2.8s var(--ease-in-out) infinite;
}

@keyframes halo {
  0%   { opacity: 0.75; transform: scale(1); }
  70%  { opacity: 0; transform: scale(1.22); }
  100% { opacity: 0; transform: scale(1.22); }
}

/* Micro-copy sob os CTAs */
.cta-note {
  margin-top: 1rem;
  font-size: var(--fs-small);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
}

.cta-note span { display: inline-flex; align-items: center; gap: 0.4rem; }

.cta-note svg { width: 15px; height: 15px; color: var(--teal); flex: none; }

.section--dark .cta-note { color: rgba(255, 255, 255, 0.66); }
.section--dark .cta-note svg { color: var(--sky); }

.cta-center { text-align: center; margin-top: clamp(2.5rem, 5vw, 3.75rem); }

/* --------------------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color var(--t) var(--ease), box-shadow var(--t) var(--ease), backdrop-filter var(--t) var(--ease);
}

.header__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header__logo img { height: 30px; width: auto; transition: filter var(--t) var(--ease); }

/* Logo em negativo enquanto o header está sobre o vídeo */
.header:not(.is-stuck) .header__logo img {
  filter: brightness(0) invert(1);
}

.header.is-stuck {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(0, 33, 51, 0.08), 0 10px 30px -18px rgba(0, 33, 51, 0.35);
}

.header__cta { opacity: 0; transform: translateY(-8px); pointer-events: none; transition: all var(--t) var(--ease); }
.header.is-stuck .header__cta { opacity: 1; transform: none; pointer-events: auto; }

/* Barra de progresso de leitura */
.progress {
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--grad-cta);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.header.is-stuck .progress { opacity: 1; }

/* --------------------------------------------------------------------------
   6. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + clamp(1.5rem, 4vh, 3rem));
  padding-bottom: clamp(3.75rem, 7vh, 5.5rem);
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__media img,
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Poster sempre visível por baixo — nunca há tela preta */
.hero__poster { z-index: 0; animation: kenburns 26s var(--ease-in-out) infinite alternate; }

.hero__video {
  z-index: 1;
  opacity: 0;
  transition: opacity 1.6s var(--ease-in-out);
  animation: kenburns 26s var(--ease-in-out) infinite alternate;
}

.hero__video.is-active { opacity: 1; }

@keyframes kenburns {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to   { transform: scale(1.18) translate3d(0, -1.6%, 0); }
}

/* Camadas de tratamento sobre o vídeo */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 33, 51, 0.82) 0%, rgba(0, 33, 51, 0.42) 32%, rgba(0, 33, 51, 0.72) 72%, rgba(0, 33, 51, 0.96) 100%),
    linear-gradient(100deg, rgba(0, 33, 51, 0.9) 0%, rgba(0, 33, 51, 0.35) 55%, rgba(2, 128, 154, 0.22) 100%);
}

/* Vinheta + grão para dar textura cinematográfica */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(ellipse at center, transparent 42%, rgba(0, 20, 32, 0.75) 100%);
}

/* A camada de grão era 5x a tela em cada eixo (25x a área) e animava o tempo
   todo. Reduzida para 1,5x — a folga ainda cobre o deslocamento da animação. */
.hero__grain::after {
  content: "";
  position: absolute;
  inset: -25%;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  animation: grain 7s steps(6) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-6%, 4%); }
  40% { transform: translate(4%, -5%); }
  60% { transform: translate(-3%, -3%); }
  80% { transform: translate(5%, 3%); }
}

.hero__inner {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero__content { max-width: 1060px; }

.hero .eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 1.045;
  letter-spacing: -0.033em;
  text-shadow: 0 4px 40px rgba(0, 20, 32, 0.45);
}

.hero h1 .line { display: block; }

.hero__sub {
  margin-top: clamp(1.1rem, 2vw, 1.5rem);
  max-width: 640px;
  font-size: var(--fs-lead);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.86);
}

.hero__actions {
  margin-top: clamp(1.9rem, 3.5vw, 2.6rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
}

.hero .cta-note { justify-content: flex-start; color: rgba(255, 255, 255, 0.72); margin-top: 1.15rem; }
.hero .cta-note svg { color: var(--sky); }

/* Selos de confiança no rodapé do hero */
.hero__trust {
  position: relative;
  z-index: 4;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem clamp(1.5rem, 4vw, 3rem);
}

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
  font-size: var(--fs-small);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.hero__trust svg { width: 18px; height: 18px; color: var(--amber); flex: none; }

.hero__trust strong { font-weight: 700; color: var(--white); }

/* Indicador de rolagem */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 5;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  gap: 0.5rem;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.scroll-cue__line {
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-cue__line::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px; height: 14px;
  background: var(--amber);
  animation: cue 2.1s var(--ease-in-out) infinite;
}

@keyframes cue {
  0%   { transform: translateY(-16px); opacity: 0; }
  35%  { opacity: 1; }
  100% { transform: translateY(44px); opacity: 0; }
}

/* --------------------------------------------------------------------------
   7. TICKER / MARQUEE
   -------------------------------------------------------------------------- */
.ticker {
  background: var(--navy);
  color: var(--white);
  padding-block: 0.95rem;
  overflow: hidden;
  position: relative;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(40px, 8vw, 120px);
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--navy), transparent); }
.ticker::after { right: 0; background: linear-gradient(270deg, var(--navy), transparent); }

.ticker__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.ticker:hover .ticker__track { animation-play-state: paused; }

.ticker__group {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 3vw, 2.6rem);
  padding-right: clamp(1.6rem, 3vw, 2.6rem);
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.9);
}

.ticker__item::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--amber);
  flex: none;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
/* --------------------------------------------------------------------------
   8. CONFIANÇA — layout editorial com trilho de progresso
   -------------------------------------------------------------------------- */
.proof {
  --rail-pad: clamp(1.4rem, 2.5vw, 2.25rem);
  position: relative;
  overflow: hidden;
}

/* Brilhos suaves de fundo — gradiente no lugar de filter: blur() */
.proof__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(660px 660px at 104% -8%, rgba(2, 128, 154, 0.14), transparent 62%),
    radial-gradient(540px 540px at -6% 106%, rgba(253, 155, 0, 0.1), transparent 62%);
}

.proof__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

@media (min-width: 1000px) {
  .proof__grid { grid-template-columns: minmax(320px, 0.8fr) 1fr; }

  /* A coluna da esquerda acompanha a leitura da lista */
  .proof__aside {
    position: sticky;
    top: calc(var(--header-h) + clamp(1.5rem, 5vh, 3.5rem));
  }
}

.proof__head {
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.028em;
}

.proof__head em {
  font-style: normal;
  background: linear-gradient(100deg, var(--teal) 0%, var(--amber) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.proof__lead {
  margin-top: 1.1rem;
  font-size: var(--fs-lead);
  line-height: 1.65;
  color: var(--ink-soft);
}

.proof__cta { margin-top: clamp(1.6rem, 3vw, 2.15rem); }
.proof__note { justify-content: flex-start; }

/* --- Lista de credenciais --- */
.proof__list {
  position: relative;
  list-style: none;
  padding-left: var(--rail-pad);
}

/* Trilho: linha de base + preenchimento que segue a rolagem */
.proof__list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  border-radius: 2px;
  background: rgba(0, 69, 99, 0.11);
}

.proof__rail {
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  border-radius: 2px;
  overflow: hidden;
}

.proof__rail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--teal) 0%, var(--sky) 45%, var(--amber) 100%);
  transform: scaleY(var(--p, 0));
  transform-origin: top;
  transition: transform 0.15s linear;
}

.proof__item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem clamp(1rem, 2vw, 1.75rem);
  align-items: start;
  padding: clamp(1.6rem, 2.6vw, 2.15rem) 0;
}

/* Fio separador que se desenha da esquerda para a direita */
.proof__rule {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 69, 99, 0.2), rgba(0, 69, 99, 0.06));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease) 0.12s;
}

.proof__item.is-visible .proof__rule { transform: scaleX(1); }

/* Marcador sobre o trilho */
.proof__item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--rail-pad) - 3px);
  top: calc(clamp(1.6rem, 2.6vw, 2.15rem) + 0.45rem);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(0, 69, 99, 0.2);
  transition: background-color 0.45s var(--ease), box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}

.proof__item.is-active::before {
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(253, 155, 0, 0.22);
  transform: scale(1.15);
}

.proof__idx {
  padding-top: 0.35rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
  color: rgba(0, 69, 99, 0.32);
  transition: color 0.45s var(--ease);
}

.proof__item.is-active .proof__idx { color: var(--amber-600); }

.proof__title {
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.proof__text {
  max-width: 46ch;
  font-size: 0.99rem;
  line-height: 1.62;
  color: var(--ink-soft);
}

/* Número/ícone à direita */
.proof__fig {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
  text-align: right;
}

.proof__fig b {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(155deg, var(--teal) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.proof__fig i {
  margin-top: 0.42rem;
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}

.proof__fig--icon {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--teal);
  background: linear-gradient(150deg, rgba(2, 128, 154, 0.11), rgba(104, 178, 193, 0.16));
  border: 1px solid rgba(2, 128, 154, 0.18);
  transition: transform 0.45s var(--ease), color 0.45s var(--ease);
}

.proof__fig--icon svg { width: 26px; height: 26px; }

.proof__item.is-active .proof__fig--icon { transform: translateY(-3px) scale(1.04); }

/* --- Painel do Reclame Aqui --- */
.ra {
  margin-top: 1.35rem;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.6rem);
  flex-wrap: wrap;
  padding: 1.05rem 1.25rem;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(2, 128, 154, 0.06), rgba(104, 178, 193, 0.1));
  border: 1px solid rgba(2, 128, 154, 0.16);
}

.ra__stats {
  flex: 1;
  display: grid;
  /* 2x2: com o selo fora, cada métrica ganha largura para não quebrar linha */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem 1.6rem;
  list-style: none;
}

.ra__stats b {
  display: block;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.ra__stats span {
  font-size: 0.71rem;
  line-height: 1.3;
  color: var(--gray);
}

.ra__source {
  margin-top: 0.8rem;
  font-size: 0.72rem;
  color: var(--gray);
}

/* --- Responsivo da seção --- */
@media (max-width: 620px) {
  .proof__item {
    grid-template-columns: auto 1fr;
    row-gap: 0.7rem;
  }

  .proof__fig {
    grid-column: 2;
    flex-direction: row;
    align-items: baseline;
    gap: 0.5rem;
    text-align: left;
    align-self: start;
  }

  .proof__fig i { margin-top: 0; }

  .proof__fig--icon { display: none; }

  .ra { padding: 0.95rem 1rem; }
  .ra__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem 1rem; }
}


/* --------------------------------------------------------------------------
   9. COMO FUNCIONA + MOCKUP WHATSAPP
   -------------------------------------------------------------------------- */
.how {
  position: relative;
  overflow: hidden;
  /* Brilhos feitos com gradiente em vez de filter: blur() — mesmo resultado
     visual por uma fração do custo de pintura, sobretudo no celular. */
  background-image:
    radial-gradient(620px 620px at -4% -10%, rgba(2, 128, 154, 0.4), transparent 64%),
    radial-gradient(540px 540px at 104% 108%, rgba(253, 155, 0, 0.16), transparent 64%);
}

.how__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 940px) {
  .how__grid { grid-template-columns: minmax(300px, 0.85fr) 1fr; }
}

/* No mobile o texto vem primeiro: o celular é apoio, não abertura. */
@media (max-width: 939px) {
  .how__grid > .phone { order: 2; margin-top: 1rem; width: min(300px, 72vw); }
  .how__grid > div    { order: 1; }
}

/* --- Telefone --- */
.phone {
  position: relative;
  width: min(310px, 82vw);
  margin-inline: auto;
  aspect-ratio: 310 / 630;
  padding: 11px;
  border-radius: 44px;
  background: linear-gradient(160deg, #2c3a44, #101a21 55%, #232f38);
  box-shadow:
    0 0 0 1.5px rgba(255, 255, 255, 0.14),
    0 40px 90px -30px rgba(0, 0, 0, 0.85),
    0 0 90px -30px rgba(2, 128, 154, 0.7);
  animation: float 7s var(--ease-in-out) infinite alternate;
}

@keyframes float {
  from { transform: translateY(-9px) rotate(-1.1deg); }
  to   { transform: translateY(9px) rotate(1.1deg); }
}

.phone::before { /* notch */
  content: "";
  position: absolute;
  top: 19px; left: 50%;
  transform: translateX(-50%);
  width: 92px; height: 22px;
  background: #0d151b;
  border-radius: var(--r-pill);
  z-index: 3;
}

.phone__screen {
  position: relative;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: #0b141a;
  display: flex;
  flex-direction: column;
}

/* Barra de topo do WhatsApp */
.wa__bar {
  flex: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 2.35rem 0.85rem 0.7rem;
  background: #1f2c34;
  color: #e9edef;
}

.wa__avatar {
  width: 34px; height: 34px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-brand);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.wa__title { font-size: 0.76rem; font-weight: 700; line-height: 1.25; }
.wa__status { font-size: 0.6rem; color: #8696a0; }

.wa__body {
  flex: 1;
  padding: 0.85rem 0.7rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
  background-color: #0b141a;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 26px 26px, 26px 26px;
  background-position: 0 0, 13px 13px;
}

.wa__day {
  align-self: center;
  padding: 0.24rem 0.7rem;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8696a0;
  background: rgba(31, 44, 52, 0.9);
  border-radius: var(--r-sm);
}

.wa__msg {
  max-width: 88%;
  padding: 0.5rem 0.65rem 0.42rem;
  font-size: 0.685rem;
  line-height: 1.45;
  color: #e9edef;
  background: #202c33;
  border-radius: 12px 12px 12px 3px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  transform-origin: left bottom;
}

/* As mensagens ficam visíveis por padrão. O JS só "arma" a animação quando
   pode garantir que ela vai rodar — sem script, o chat aparece pronto em vez
   de ficar uma tela preta vazia. */
.wa.is-armed .wa__msg,
.wa.is-armed .wa__typing { opacity: 0; }

.wa.is-armed .wa__msg { transform: translateY(14px) scale(0.96); }

.wa.is-armed.is-playing .wa__msg { animation: msg-in 0.5s var(--ease) forwards; }

.wa.is-armed.is-playing .wa__msg:nth-of-type(1) { animation-delay: 0.25s; }
.wa.is-armed.is-playing .wa__msg:nth-of-type(2) { animation-delay: 1.15s; }
.wa.is-armed.is-playing .wa__msg:nth-of-type(3) { animation-delay: 2.15s; }
.wa.is-armed.is-playing .wa__msg:nth-of-type(4) { animation-delay: 3.1s; }

@keyframes msg-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Link da oferta dentro do balão */
.wa__link {
  display: inline-block;
  margin-top: 0.15rem;
  color: #53bdeb;
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}

.wa__sender {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--sky);
  margin-bottom: 0.12rem;
}

.wa__time {
  display: block;
  text-align: right;
  font-size: 0.51rem;
  color: rgba(233, 237, 239, 0.5);
  margin-top: 0.14rem;
}

/* Card de oferta dentro do balão */
.wa__offer {
  margin: -0.15rem -0.2rem 0.35rem;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(11, 20, 26, 0.5);
}

.wa__offer img { width: 100%; height: 84px; object-fit: cover; }

.wa__tag {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.1rem 0.45rem;
  font-size: 0.53rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-900);
  background: var(--amber);
  border-radius: 4px;
}

/* Balão de "digitando" */
.wa__typing {
  align-self: flex-start;
  display: flex;
  gap: 3px;
  padding: 0.55rem 0.7rem;
  background: #202c33;
  border-radius: 12px 12px 12px 3px;
}

.wa.is-armed.is-playing .wa__typing { animation: msg-in 0.4s 4s var(--ease) forwards; }

.wa__typing i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #8696a0;
  animation: typing 1.3s var(--ease-in-out) infinite;
}
.wa__typing i:nth-child(2) { animation-delay: 0.18s; }
.wa__typing i:nth-child(3) { animation-delay: 0.36s; }

@keyframes typing {
  0%, 60%, 100% { opacity: 0.35; transform: translateY(0); }
  30%           { opacity: 1; transform: translateY(-3px); }
}

/* Badge flutuante ao lado do telefone */
.phone__badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-900);
  background: var(--white);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-lg);
  white-space: nowrap;
}

.phone__badge svg { width: 16px; height: 16px; color: var(--teal); flex: none; }

.phone__badge--tl { top: -2.5%; left: -13%; animation: float 6s 0.6s var(--ease-in-out) infinite alternate-reverse; }
.phone__badge--br { bottom: -1.5%; right: -11%; animation: float 6.5s 1.1s var(--ease-in-out) infinite alternate; }

@media (max-width: 460px) {
  .phone__badge--tl { left: -4%; }
  .phone__badge--br { right: -4%; }
  .phone__badge { font-size: 0.65rem; padding: 0.5rem 0.7rem; }
}

/* --- Passos --- */
.steps { display: grid; gap: 0.85rem; margin-top: 2rem; counter-reset: step; }

.step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  transition: transform var(--t) var(--ease), background-color var(--t) var(--ease), border-color var(--t) var(--ease);
}

.step:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(104, 178, 193, 0.42);
}

.step__num {
  counter-increment: step;
  flex: none;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--amber-400) 0%, var(--amber) 45%, var(--amber-600) 100%);
  box-shadow: 0 6px 16px -6px rgba(253, 155, 0, 0.8);
}

.step__num::before { content: counter(step, decimal-leading-zero); }

.step__text { font-size: 0.97rem; line-height: 1.55; color: rgba(255, 255, 255, 0.86); }

.step__text strong { display: block; color: var(--white); font-weight: 700; margin-bottom: 0.15rem; }

/* --------------------------------------------------------------------------
   10. DESTINOS
   -------------------------------------------------------------------------- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.7rem, 1.5vw, 1.1rem);
}

@media (min-width: 700px)  { .dest-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1040px) { .dest-grid { grid-template-columns: repeat(4, 1fr); } }

.dest {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--navy-800);
  box-shadow: var(--sh-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.dest:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); }

.dest img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter var(--t) var(--ease);
}

.dest:hover img { transform: scale(1.1); filter: saturate(1.18); }

.dest__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 33, 51, 0) 38%, rgba(0, 33, 51, 0.55) 62%, rgba(0, 33, 51, 0.93) 100%);
}

.dest__label {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(0.8rem, 1.6vw, 1.15rem);
  color: var(--white);
}

.dest__name {
  display: block;
  font-size: clamp(0.95rem, 1.7vw, 1.15rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.dest__country {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-200);
  margin-top: 0.15rem;
}

/* Marcador que aparece no hover */
.dest__pin {
  position: absolute;
  top: 0.85rem; right: 0.85rem;
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--amber);
  opacity: 0;
  transform: scale(0.5) rotate(-25deg);
  transition: all var(--t) var(--ease);
}

.dest:hover .dest__pin { opacity: 1; transform: none; }

/* Sem hover (celular), a seta fica sempre visível — é ela que avisa
   que o card abre a oferta. */
@media (hover: none) {
  .dest__pin { opacity: 1; transform: none; }
}

.dest__pin svg { width: 15px; height: 15px; }

/* --------------------------------------------------------------------------
   11. DEPOIMENTOS
   -------------------------------------------------------------------------- */
.testi-grid {
  display: grid;
  /* Teto de 460px por card: com dois depoimentos eles ficam centralizados em
     vez de esticados na largura toda; com três, a linha continua fechando. */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 460px));
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.6rem);
}

.testi {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.6rem, 2.6vw, 2.15rem);
  background: var(--white);
  border: 1px solid rgba(0, 69, 99, 0.1);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.testi:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }

.testi::before {
  content: "\201C";
  position: absolute;
  top: -0.35rem; right: 1.2rem;
  font-size: 6rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(2, 128, 154, 0.1);
  pointer-events: none;
}

.testi p { font-size: 1rem; line-height: 1.68; color: var(--ink); flex: 1; }

.testi__author { display: flex; align-items: center; gap: 0.8rem; }

.testi__avatar {
  width: 44px; height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  background: var(--grad-brand);
}

.testi__name { font-weight: 700; font-size: 0.95rem; line-height: 1.3; }
.testi__meta { font-size: 0.8rem; color: var(--gray); }

/* --------------------------------------------------------------------------
   12. CTA FINAL
   -------------------------------------------------------------------------- */
.final {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-900);
  text-align: center;
}

.final__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.34;
  transform: scale(1.05);
}

.final__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(2, 128, 154, 0.45), transparent 62%),
    linear-gradient(180deg, rgba(0, 33, 51, 0.9) 0%, rgba(0, 33, 51, 0.78) 45%, rgba(0, 33, 51, 0.97) 100%);
}

.final__inner { position: relative; z-index: 1; }

.final h2 {
  font-size: var(--fs-h2);
  max-width: 780px;
  margin-inline: auto;
}

.final p {
  margin-top: 1.15rem;
  font-size: var(--fs-lead);
  color: rgba(255, 255, 255, 0.8);
}

.final .btn { margin-top: clamp(1.9rem, 3.5vw, 2.5rem); }

.final .cta-note { color: rgba(255, 255, 255, 0.7); }
.final .cta-note svg { color: var(--sky); }

/* --------------------------------------------------------------------------
   13. RODAPÉ
   -------------------------------------------------------------------------- */
.footer {
  background: #001622;
  color: rgba(255, 255, 255, 0.6);
  padding-block: clamp(2.5rem, 5vw, 3.5rem) clamp(6.5rem, 8vw, 3rem);
  font-size: var(--fs-small);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__logo img { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 0.9rem;
  list-style: none;
}

.footer__badges li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-pill);
}

.footer__badges svg { width: 14px; height: 14px; color: var(--amber); flex: none; }

.footer__legal { max-width: 640px; line-height: 1.6; font-size: 0.76rem; color: rgba(255, 255, 255, 0.42); }

/* --------------------------------------------------------------------------
   14. BARRA FIXA MOBILE
   -------------------------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  padding: 0.65rem var(--gutter) calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(0, 33, 51, 0.9);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateY(115%);
  transition: transform var(--t) var(--ease);
}

.sticky-cta.is-visible { transform: none; }

.sticky-cta .btn { padding-block: 0.92rem; }

@media (min-width: 860px) { .sticky-cta { display: none; } }
/* --------------------------------------------------------------------------
   15. POP-UP DE ESCOLHA DO ESTADO
   Abre no clique do CTA. <dialog> nativo entrega prisão de foco, ESC para
   fechar e inércia do resto da página sem uma linha de JavaScript.
   -------------------------------------------------------------------------- */
.popup {
  width: min(480px, calc(100vw - 1.5rem));
  max-height: min(88svh, 760px);
  /* O reset `* { margin: 0 }` anula o margin:auto que centraliza <dialog> */
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: var(--r-lg);
  background: transparent;
  color: var(--white);
  overflow: visible;
}

.popup::backdrop {
  background: rgba(0, 18, 29, 0.78);
  backdrop-filter: blur(8px);
}

.popup__painel {
  position: relative;
  max-height: inherit;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(1.5rem, 4vw, 2.1rem);
  border-radius: var(--r-lg);
  background:
    radial-gradient(460px 380px at 108% -18%, rgba(2, 128, 154, 0.45), transparent 62%),
    linear-gradient(165deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.popup__fechar {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}

.popup__fechar:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(90deg);
}

.popup__fechar svg { width: 16px; height: 16px; }

/* O rótulo herda a versão clara do .eyebrow; no painel escuro precisa da outra */
.popup .eyebrow {
  color: var(--sky-200);
  background: rgba(104, 178, 193, 0.12);
  border-color: rgba(104, 178, 193, 0.26);
  margin-bottom: 0.9rem;
}

.popup h2 {
  font-size: clamp(1.45rem, 4.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.popup__lead {
  margin-top: 0.6rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.popup__lista {
  display: grid;
  gap: 0.6rem;
  margin-top: clamp(1.3rem, 3vw, 1.7rem);
  text-align: left;
}

/* --- Botão de cada estado --- */
.uf {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  min-height: 66px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  transition: transform var(--t-fast) var(--ease), background-color var(--t) var(--ease),
              border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}

.uf:hover,
.uf:focus-visible {
  transform: translateY(-2px);
  background: rgba(37, 211, 102, 0.14);
  border-color: var(--wa);
  box-shadow: 0 12px 28px -12px rgba(37, 211, 102, 0.75);
}

.uf__sigla {
  flex: none;
  width: 52px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white);
  background: var(--grad-brand);
  box-shadow: 0 6px 16px -8px rgba(2, 128, 154, 0.9);
  transition: background var(--t) var(--ease);
}

.uf:hover .uf__sigla { background: var(--grad-cta); color: var(--navy-900); }

.uf__texto { flex: 1; min-width: 0; }

.uf__nome {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.uf__desc {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.58);
}

/* Ícone do WhatsApp que confirma para onde o toque leva */
.uf__ir {
  flex: none;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--wa);
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.3);
  transition: all var(--t) var(--ease);
}

.uf__ir svg { width: 20px; height: 20px; }

.uf:hover .uf__ir {
  color: var(--navy-900);
  background: var(--wa);
  border-color: var(--wa);
  transform: scale(1.08);
}

.popup__nota {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes popup-in {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}

.popup[open] .popup__painel { animation: popup-in 0.32s var(--ease); }

@media (max-width: 420px) {
  .popup__painel { padding: 1.4rem 1.1rem; }
  .uf { gap: 0.7rem; padding: 0.75rem 0.85rem; min-height: 62px; }
  .uf__sigla { width: 46px; height: 42px; font-size: 0.88rem; }
  .uf__nome { font-size: 0.98rem; }
  .uf__ir { width: 36px; height: 36px; }
}





/* --------------------------------------------------------------------------
   16. REVELAÇÃO NO SCROLL
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--d, 0s);
}

[data-reveal].is-visible { opacity: 1; transform: none; }

[data-reveal="left"]  { transform: translateX(-30px); }
[data-reveal="right"] { transform: translateX(30px); }
[data-reveal="zoom"]  { transform: scale(0.94); }

[data-reveal="left"].is-visible,
[data-reveal="right"].is-visible,
[data-reveal="zoom"].is-visible { transform: none; }

/* --------------------------------------------------------------------------
   17. RESPONSIVO
   -------------------------------------------------------------------------- */
@media (max-width: 859px) {
  :root { --header-h: 62px; }

  .hero { min-height: 92svh; }
  .hero__actions .btn { width: 100%; }
  .hero .cta-note { justify-content: center; }
  .hero__trust { gap: 0.7rem 1.4rem; }
  .hero__trust li { font-size: 0.76rem; }
  .header__cta { display: none; }

  /* O indicador de rolagem brigaria com os selos de confiança */
  .scroll-cue { display: none; }

  /* Grão continua visível, mas sem repintar a tela inteira a cada quadro */
  .hero__grain::after { animation: none; }

}

@media (max-width: 560px) {
  :root { --fs-hero: clamp(1.72rem, 7.6vw, 2.4rem); }

  /* Evita que o rótulo e o botão quebrem em duas linhas em telas estreitas */
  .eyebrow {
    font-size: 0.665rem;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.85rem 0.4rem 0.5rem;
  }
  .eyebrow .opt { display: none; }

  .btn {
    padding: 1rem 1.25rem;
    font-size: 0.855rem;
    letter-spacing: 0.03em;
  }
  .btn svg { width: 18px; height: 18px; }
}

@media (max-width: 520px) {
  .hero__trust li:nth-child(n + 4) { display: none; }
  .testi::before { font-size: 4.5rem; }
}

/* --------------------------------------------------------------------------
   18. MOVIMENTO REDUZIDO
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hl::after { transform: scaleX(1); }
  .wa__msg, .wa__typing { opacity: 1; transform: none; }
  .hero__poster, .hero__video, .phone { animation: none !important; }
}
