/* ============================================================
   TOKENS — paleta Consegue.aí
============================================================ */
:root {
  --peach-pure: #ff717f;
  --peach-magenta: #fb1d76;
  --peach-down: #ffe0e3;
  --peach-deeper: #ff5566;
  --orange-pure: #ff614d;
  --orange-soft: #ff9581;
  --orange-down: #ffe8de;

  --light-pure: #ffffff;
  --light-up:   #f6f3f4;
  --light-down: #e8e3e4;
  --light-deep: #d3cacc;

  --dark-pure: #1a1a1a;
  --dark-up:   #bfb0b3;
  --dark-down: #9f9395;
  --dark-deep: #726769;

  --white-80: rgba(255,255,255,0.8);
  --white-40: rgba(255,255,255,0.4);
  --white-15: rgba(255,255,255,0.15);
  --white-08: rgba(255,255,255,0.08);

  --grad-peach-orange: linear-gradient(135deg, var(--peach-magenta) 0%, var(--peach-pure) 35%, var(--orange-soft) 75%, var(--orange-pure) 100%);

  --ff: 'Plus Jakarta Sans', system-ui, sans-serif;

  --container-max: 1360px;
  --container-pad: 40px;
  --section-pad: 120px;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --shadow-soft: 0 4px 16px rgba(26,26,26,0.05);
  --shadow-card: 0 10px 30px rgba(26,26,26,0.08);
  --shadow-lift: 0 24px 60px rgba(26,26,26,0.18);
}

/* ============================================================
   RESET
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* Impede rolagem horizontal causada por elementos decorativos (blobs,
   cards flutuantes do hero com offsets negativos, viewport do carrossel
   com margin: calc(50% - 50vw), SVGs de fundo, etc). Não afeta o
   scroll vertical normal nem scrollIntoView programático. */
html, body { overflow-x: clip; }
body {
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.5;
  color: var(--dark-pure);
  background: var(--light-pure);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
p { margin: 0; }
input { font-family: inherit; }

/* ============================================================
   HELPERS
============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.titulo-secao {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--dark-pure);
}
.titulo-secao--invertido { color: var(--light-pure); }

.hl-peach   { color: var(--peach-pure); }
.hl-orange  { color: var(--orange-pure); }
/* Pontos e vírgulas em destaque herdam a cor do texto adjacente (peach,
   orange ou branco invertido) — assim não destoam do resto da palavra. */
.hl-magenta { color: inherit; font-weight: 800; }
/* Cada frase do título numa linha — evita quebras "com dentes" */
.title-line { display: block; }

/* Badge "tagline" usado no topo de quase todas as seções */
.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--light-down);
  background: var(--light-pure);
  color: var(--dark-pure);
  font-size: 13px;
  font-weight: 600;
}
.badge--invertido {
  border-color: var(--white-40);
  background: transparent;
  color: var(--light-pure);
}

.secao-hd {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 64px;
}

/* ============================================================
   PLACEHOLDERS
============================================================ */
.placeholder {
  background: var(--light-down);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  color: var(--dark-up);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.placeholder::after {
  content: "";
  position: absolute;
  width: 48px; height: 48px;
  opacity: 0.55;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23bfb0b3' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Ccircle cx='9' cy='10' r='1.5'/%3E%3Cpath d='M21 16l-5-5-7 7'/%3E%3C/svg%3E");
}
.placeholder--foto         { aspect-ratio: 4 / 5; }
.placeholder--foto-tall    { aspect-ratio: 4 / 5; height: 100%; }
.placeholder--foto-square  { aspect-ratio: 1 / 1; }
.placeholder--mockup-tilted { aspect-ratio: 9 / 19; transform: rotate(-8deg); border-radius: 28px; }

/* Imagem real (quando o arquivo existe no /assets) cobre o placeholder.
   Se onerror disparar, .placeholder volta a mostrar o ::after cinza. */
.placeholder > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 1;
}
.placeholder > img + * { display: none; }


/* ============================================================
   BOTÕES
============================================================ */
.botao-escuro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  background: var(--dark-pure);
  color: var(--light-pure);
  font-size: 14px;
  font-weight: 700;
  transition: background 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}
.botao-escuro:hover, .botao-escuro.force-hover {
  background: #000;
  transform: translateY(-1px);
}

/* Botão branco para fundo escuro (vantagens) */
.botao-primario--invertido {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  background: var(--light-pure);
  color: var(--peach-pure);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.botao-primario--invertido:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 113, 127, 0.25);
}

/* ============================================================
   NAV
============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white-80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--light-down);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.logo-consegue {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}
.logo-svg { height: 42px; width: auto; display: block; }
.ft-col--brand .logo-svg { height: 48px; }

.n-links {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-self: center;
}
.item-menu {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-pure);
  transition: color 0.18s ease;
}
.item-menu:hover { color: var(--peach-pure); }
.nav-inner > .botao-escuro { justify-self: end; }

/* Nav dropdown — "Sobre" */
.n-has-drop { position: relative; }
.n-has-drop > .item-menu {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-pure);
  transition: color 0.18s ease;
}
.n-has-drop > .item-menu .chev {
  transition: transform 0.2s ease;
}
.n-has-drop:hover > .item-menu .chev,
.n-has-drop.is-open > .item-menu .chev {
  transform: rotate(180deg);
}
.n-drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: var(--light-pure);
  border: 1px solid var(--light-down);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* visibility com delay: instantâneo ao abrir, aguarda o fade ao fechar */
  transition: opacity 0.15s ease, visibility 0s linear 0.15s;
  list-style: none;
  margin: 0;
  z-index: 110;
}
/* Ponte invisível: cobre o gap de 6px entre botão e dropdown pro :hover não se perder */
.n-drop::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.n-has-drop:hover .n-drop,
.n-has-drop:focus-within .n-drop,
.n-has-drop.is-open .n-drop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.15s ease, visibility 0s linear 0s;
}
.n-drop a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--dark-pure);
  transition: background 0.15s ease, color 0.15s ease;
}
.n-drop a:hover {
  background: var(--light-up);
  color: var(--peach-pure);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  background: linear-gradient(180deg, #fff 0%, #fff5f6 100%);
  padding: 24px 0 40px;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 80px;
  align-items: center;
}

.hero-left .badge { margin-bottom: 28px; }
.hero-h1 {
  font-size: clamp(38px, 4.4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-h1-line { display: block; }
.hero-sub {
  font-size: 17px;
  color: var(--dark-deep);
  max-width: 520px;
  margin-bottom: 36px;
}

/* Mini-simulador */
.mini-sim {
  background: var(--light-pure);
  border: 0;
  border-radius: var(--r-lg);
  padding: 24px 28px;
  max-width: 560px;
  box-shadow:
    0 32px 60px -20px rgba(255, 113, 127, 0.32),
    0 12px 32px -8px rgba(26, 26, 26, 0.15),
    0 2px 6px rgba(26, 26, 26, 0.07);
}
.mini-sim-title {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-pure);
  margin-bottom: 18px;
}
.mini-sim-label {
  display: block;
  font-size: 14px;
  color: var(--dark-deep);
  margin-bottom: 10px;
}
.mini-sim-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--light-down);
  border-radius: var(--r-pill);
  padding: 6px 6px 6px 22px;
  gap: 12px;
  margin-bottom: 16px;
}
.mini-sim-cur { font-weight: 800; color: var(--dark-pure); font-size: 18px; }
.mini-sim-input input {
  flex: 1;
  border: 0;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-pure);
  outline: none;
  min-width: 0;
}
.mini-sim-input input::placeholder { color: var(--light-deep); font-weight: 500; }

/* ============================================================
   ANIMAÇÃO DE ATENÇÃO NO CAMPO DO MINI-SIMULADOR
   Brilho em degradê peach percorrendo a borda (orbita).
   Técnica: linear-gradient(padding-box) + conic-gradient(border-box)
   com --angle animado via @property (Houdini).
============================================================ */
@property --orbit-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes attn-orbit {
  to { --orbit-angle: 360deg; }
}
/* C — orbit: brilho peach sutil percorrendo a borda cinza clara */
.mini-sim-input.anim-c {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--light-pure), var(--light-pure)) padding-box,
    /* Fundo cinza da borda sempre visível — o conic-gradient sobrepõe
       um "brilho" peach translúcido que orbita.
       Spread grande (~50% do círculo) + fades longos nas pontas amenizam
       a "pausa" percebida nos cantos do retângulo. */
    conic-gradient(
      from var(--orbit-angle),
      var(--light-down) 0turn,
      var(--light-down) 0.25turn,
      rgba(255, 113, 127, 0.04) 0.40turn,
      rgba(255, 113, 127, 0.15) 0.55turn,
      rgba(255, 113, 127, 0.28) 0.70turn,
      rgba(255, 113, 127, 0.32) 0.75turn,
      rgba(255, 113, 127, 0.28) 0.80turn,
      rgba(255, 113, 127, 0.15) 0.90turn,
      rgba(255, 113, 127, 0.04) 0.98turn,
      var(--light-down) 1turn
    ) border-box;
  animation: attn-orbit 5.5s linear infinite;
}
/* Estado preenchido: desliga qualquer animação e reseta a borda */
.mini-sim-input.is-filled {
  animation: none !important;
  border: 1px solid var(--light-down);
  background: var(--light-pure);
}
/* Estado normal (sem qualquer classe anim-*) mantém borda cinza sólida */
@media (prefers-reduced-motion: reduce) {
  .mini-sim-input.anim-c { animation: none; }
}

/* ============================================================
   REVEAL ON SCROLL — animação ligada ao scroll do próprio elemento.
   Em navegadores modernos (Chrome 115+, Edge 115+), usa
   `animation-timeline: view()` — o progresso da animação é
   diretamente proporcional ao quanto o elemento já apareceu na tela.
   Nos demais, cai num fallback via IntersectionObserver + transition.
============================================================ */
@keyframes reveal-scroll {
  from { opacity: 0; transform: translate3d(0, 44px, 0); }
  to   { opacity: 1; transform: none; }
}

/* --- Fallback (Firefox, Safari <17) --- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 44px, 0);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* --- Scroll-driven (Chrome/Edge 115+) --- */
@supports (animation-timeline: view()) {
  .reveal {
    /* limpa o fallback e liga a animação ao scroll do próprio elemento */
    opacity: 0;
    transform: translate3d(0, 44px, 0);
    transition: none;
    animation-name: reveal-scroll;
    animation-fill-mode: both;
    animation-timing-function: linear;
    animation-timeline: view();
    /* Ancorado na fase `cover` (a jornada do elemento subindo a tela), não em
       `entry`. Assim o reveal acontece ENQUANTO a seção sobe até a posição de
       leitura: começa quando ela já entrou um pouco (cover 8%) e completa quando
       chega à região inferior-central (cover 42%). Isso dá o tempo pro usuário
       perceber a animação acompanhando o surgimento da seção. */
    animation-range: cover 8% cover 42%;
  }
  /* Em scroll-driven, o JS não precisa marcar .is-in — mantém funcional
     caso o observer ainda dispare (não quebra nada). */
  .reveal.is-in { animation-name: reveal-scroll; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}
.mini-sim-btn { padding: 12px 20px; font-size: 14px; }
.mini-sim-hint {
  display: block;
  font-size: 13px;
  color: var(--dark-deep);
}

/* Hero right — só foto + 2 cards flutuantes (o blob vem embutido no PNG da foto) */
.hero-right {
  position: relative;
  min-height: 560px;
}
.hero-foto {
  position: absolute;
  bottom: 0; right: 60px;
  /* proporção 874/1109 ≈ 0.788; tamanho calibrado pra caber na 1ª dobra
     de telas comuns (MacBook 13"/14") sem ser cortado pelo header. */
  width: 460px;
  height: 584px;
  z-index: 1;
  border-radius: 0;
  background: transparent;
  animation: hero-reveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 200ms backwards;
}
.hero-foto.placeholder::after { display: none; }
.hero-foto > img {
  object-fit: contain;
  object-position: center bottom;
}
.hero-card {
  position: absolute;
  background: var(--light-pure);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lift);
  padding: 14px 18px;
  z-index: 2;
}
.hero-card--valor {
  /* posição por percentual pra escalar em TODOS os tamanhos (desktop e mobile)
     e travar sempre na região ombro→peito, independente da altura do container.
     valor fixo em px quebrava em breakpoints onde o container é menor (mobile 460px). */
  bottom: 42%;
  left: -20px;
  min-width: 280px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation:
    hero-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 500ms backwards,
    hero-float 5s ease-in-out 2000ms infinite;
}
.hero-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--peach-pure);
  letter-spacing: -0.02em;
}
.hero-card-tag {
  font-size: 11px;
  font-weight: 700;
  color: #19a463;
  background: #e7f7ed;
  padding: 3px 8px;
  border-radius: var(--r-pill);
}
.hero-card-name { font-size: 13px; font-weight: 700; color: var(--dark-pure); }
.hero-card-name span { font-weight: 500; color: var(--dark-down); }

/* Balão de mensagem WhatsApp — fundo branco, cantos arredondados com cauda
   no canto superior-esquerdo (estilo "mensagem recebida"). */
.hero-card--wa {
  bottom: 90px;
  right: -30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-width: 300px;
  background: var(--light-pure);
  border-radius: 4px 16px 16px 16px;
  padding: 12px 16px 8px;
  box-shadow: 0 18px 40px -12px rgba(26, 26, 26, 0.18),
              0 4px 12px rgba(26, 26, 26, 0.06);
  animation:
    hero-reveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 800ms backwards,
    hero-float 5.5s ease-in-out 2200ms infinite reverse;
}
.hero-card--wa::before {
  content: "";
  position: absolute;
  top: 0;
  left: -7px;
  width: 10px;
  height: 14px;
  background: var(--light-pure);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.hero-card-wa-check { font-size: 16px; align-self: start; }
.hero-card--wa p { font-size: 13px; color: var(--dark-pure); line-height: 1.35; }
.hero-card--wa strong { color: var(--dark-pure); font-weight: 700; }
.hero-card-wa-time { font-size: 10px; color: var(--dark-down); align-self: end; }

/* Animações do hero — fade-in da direita pra esquerda + float suave */
@keyframes hero-reveal {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* Barra de selos */
.hero-selos-wrap { margin-top: 56px; }
.hero-selos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark-pure);
  border-radius: var(--r-pill);
  padding: 18px 36px;
  gap: 16px;
}
.selo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  flex: 1;
  justify-content: center;
}
.selo svg { color: var(--peach-pure); flex-shrink: 0; }
.selo-peach { color: var(--peach-pure); font-weight: 500; }
.selo-white { color: var(--light-pure); font-weight: 700; }

/* ============================================================
   STATS (fundo branco, números laranja)
============================================================ */
.stats {
  background: var(--light-pure);
  padding: 64px 0 56px;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat { padding: 0 8px; }
.stat-label {
  display: block;
  font-size: 14px;
  color: var(--dark-deep);
  margin-bottom: 4px;
}
.stat-n {
  display: block;
  font-size: clamp(54px, 6vw, 78px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--orange-pure);
  line-height: 1;
  margin-bottom: 16px;
}
.stat-x { font-weight: 700; }
.stat-desc {
  font-size: 14px;
  color: var(--dark-deep);
  line-height: 1.4;
}

/* ============================================================
   SIMULADOR
============================================================ */
.simulador {
  background: var(--grad-peach-orange);
  padding: var(--section-pad) 0;
  position: relative;
  /* clip (não hidden): corta visual sem criar scroll container — permite
     que `animation-timeline: view()` dos filhos rode normalmente. */
  overflow: clip;
}
/* SVG decorativo: 50% da largura, alinhado ao canto inferior esquerdo */
.sim-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.sim-container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.simulador .badge--invertido { margin-bottom: 24px; }
.simulador .titulo-secao { margin-bottom: 56px; }

.sim-card {
  background: var(--light-pure);
  border-radius: var(--r-xl);
  padding: 40px 48px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow-lift);
  text-align: left;
}
.sim-q {
  font-size: 15px;
  margin-bottom: 14px;
}
.sim-q strong { font-weight: 700; color: var(--dark-pure); }
.sim-q span { color: var(--dark-down); font-weight: 500; }

.sim-input {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light-up);
  border-radius: var(--r-pill);
  padding: 18px 24px;
  margin-bottom: 32px;
}
.sim-cur { font-weight: 800; font-size: 22px; color: var(--dark-up); }
.sim-input input {
  flex: 1;
  border: 0;
  background: transparent;
  font-size: 22px;
  font-weight: 800;
  outline: none;
  min-width: 0;
}

.sim-result { margin-bottom: 28px; }
.sim-result-prefix {
  display: block;
  font-size: 14px;
  color: var(--dark-deep);
  margin-bottom: 10px;
}
.sim-result-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.sim-result-cur {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-pure);
}
.sim-result-value {
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--grad-peach-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.sim-rows {
  display: grid;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--light-down);
  margin-bottom: 32px;
}
.sim-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
}
.sim-row span { color: var(--dark-deep); }
.sim-row strong { color: var(--dark-pure); font-weight: 700; }

.sim-cta {
  width: 100%;
  padding: 18px 28px;
  font-size: 16px;
}
.sim-foot {
  font-size: 13px;
  color: var(--dark-down);
  margin-top: 20px;
  line-height: 1.5;
  text-align: center;
}

/* ============================================================
   COMO FUNCIONA (fundo claro!)
============================================================ */
.como-funciona {
  background: var(--light-up);
  padding: var(--section-pad) 0;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  /* sem padding-top: o .hstep já reserva margin-top:80px pro círculo do
     número + PNG saindo. Um padding aqui só duplicava o espaço. */
}
/* Indicadores do carrossel mobile — escondidos aqui, viram flex só no
   breakpoint mobile (ver @media max-width:639px). */
.how-dots { display: none; }

.hstep {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 80px;       /* espaço para o círculo do número + gap + PNG do celular saindo */
  /* overflow: visible (default) — permite o PNG transbordar acima */
}
.hstep-num {
  position: absolute;
  top: -60px;             /* círculo fica acima do card com gap visível */
  left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--light-pure);
  color: var(--dark-pure);
  font-weight: 800;
  font-size: 16px;
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(26, 26, 26, 0.10);
  z-index: 3;
}
.hstep-img {
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  background: transparent;
  position: relative;
  /* overflow: visible — para PNG transparente "vazar" acima do slot */
}
.hstep-img::after { opacity: 0.55; }
/* Quando há <img> dentro: ancora no rodapé do slot e pode crescer pra cima
   sem cortar. Útil para PNGs com o celular saindo pra fora do card. */
.hstep-img > img {
  inset: auto;
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  max-height: 240%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 0;
}
.hstep-info {
  background: var(--light-pure);
  border-radius: 0 0 32px 32px;
  padding: 28px 28px 28px;
  text-align: center;
}
.hstep-info h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.hstep-info > p {
  font-size: 14px;
  color: var(--dark-deep);
  margin-bottom: 24px;
  line-height: 1.5;
}
.hstep-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--dark-deep);
}
.hstep-time svg { color: var(--dark-deep); }
.hstep-time strong { color: var(--orange-pure); font-weight: 700; }

/* ============================================================
   QUEM PODE PEGAR
============================================================ */
.quem-pode-pegar {
  background: var(--light-pure);
  padding: var(--section-pad) 0;
}
.qual-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.qual-foto-wrap { position: relative; }
.qual-blob {
  position: absolute;
  top: 10%; left: 30%;
  width: 320px; height: 360px;
  background: var(--grad-peach-orange);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  z-index: 0;
  opacity: 0.9;
}
.qual-foto {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin-left: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-xl);
}
.qual-txt .badge { margin-bottom: 20px; }
.qual-txt .titulo-secao { margin-bottom: 16px; }
.qual-sub {
  font-size: 17px;
  color: var(--dark-deep);
  margin-bottom: 32px;
  max-width: 480px;
}
.qi-list {
  display: grid;
  gap: 0;
  margin-bottom: 32px;
}
.qi-check {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--light-down);
}
.qi-check:last-child { border-bottom: 0; }
.qi-ico {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--peach-pure);
  color: var(--light-pure);
  display: grid; place-items: center;
  margin-top: 2px;
}
.qi-check strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.qi-check p {
  font-size: 14px;
  color: var(--dark-deep);
}

/* ============================================================
   PRA QUE USAR
============================================================ */
.pra-que-usar {
  background: var(--light-up);
  padding: var(--section-pad) 0;
}
.usar-sub {
  font-size: 17px;
  color: var(--dark-deep);
  max-width: 720px;
  margin-top: -8px;
}
.usar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.usar-card {
  background: var(--light-pure);
  border-radius: var(--r-lg);
  padding: 0;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.usar-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0;
}
.usar-card h3 { font-size: 18px; margin: 20px 20px 6px; }
.usar-card p { font-size: 14px; color: var(--dark-deep); line-height: 1.5; margin: 0 20px 20px; }
.usar-cta-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   WHATSAPP
============================================================ */
.whatsapp {
  background: var(--light-pure);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: clip;
}
/* SVG decorativo: 50% da largura, alinhado ao canto inferior direito */
.wa-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.wa-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.wa-txt .badge { margin-bottom: 20px; }
.wa-txt .titulo-secao { margin-bottom: 16px; }
.wa-sub {
  font-size: 16px;
  color: var(--dark-deep);
  margin-bottom: 32px;
  max-width: 520px;
}
.wa-feats { display: grid; gap: 20px; }
.wa-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.wa-ico {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--dark-pure);
  color: var(--light-pure);
  display: grid; place-items: center;
}
.wa-item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.wa-item p { font-size: 14px; color: var(--dark-deep); }

/* Stage da animação — 3 PNGs de mesma dimensão (985×1300) empilhados.
   O container define o tamanho pela proporção; cada camada preenche 100%
   e se diferencia só pelo z-index e pela ordem de entrada. */
.wa-stage {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 985 / 1300;
  z-index: 1;
}
.wa-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wa-layer--mockup { z-index: 1; }
.wa-layer--balao1 { z-index: 2; }
.wa-layer--balao2 { z-index: 3; }

/* animação em sequência estilo Rapidin: os três elementos (celular, balão 1,
   balão 2) deslizam da direita pra esquerda, um após o outro. Easing expo-out
   pra um deslize suave (nada rígido); distância maior e início atrasado pra
   dar tempo do usuário ver a sequência inteira ao rolar até aqui. */
.wa-stage [data-anim-step] {
  opacity: 0;
  transform: translateX(120px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.wa-stage.is-in [data-anim-step="1"] {
  opacity: 1;
  transform: none;
  transition-delay: 400ms;
}
.wa-stage.is-in [data-anim-step="2"] {
  opacity: 1;
  transform: none;
  transition-delay: 640ms;
}
.wa-stage.is-in [data-anim-step="3"] {
  opacity: 1;
  transform: none;
  transition-delay: 880ms;
}

/* ============================================================
   VANTAGENS (fundo preto)
============================================================ */
.vantagens {
  background: var(--dark-pure);
  color: var(--light-pure);
  padding: var(--section-pad) 0;
}
.vant-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.vant-txt .badge { margin-bottom: 24px; }
.vant-txt .titulo-secao { margin-bottom: 24px; }
.vant-sub {
  font-size: 17px;
  color: var(--dark-up);
  max-width: 460px;
}
.vant-list { display: grid; gap: 28px; }
.vant-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.vant-ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--peach-down);
  color: var(--peach-pure);
  display: grid; place-items: center;
}
.vant-item strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--light-pure);
  margin-bottom: 4px;
}
.vant-item p {
  font-size: 14px;
  color: var(--dark-up);
  max-width: 380px;
}
.vant-cta-wrap {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 32px;
}

/* ============================================================
   COMPARATIVO
============================================================ */
.comparativo {
  background: var(--light-pure);
  padding: var(--section-pad) 0;
}
.comp-sub {
  font-size: 17px;
  color: var(--dark-deep);
  max-width: 640px;
}
.compare-table {
  max-width: 880px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--light-down);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--light-down);
  background: var(--light-pure);
}
.compare-row:last-child { border-bottom: 0; }
.compare-row--head {
  background: var(--light-up);
}
.compare-cell {
  padding: 22px 24px;
  font-size: 15px;
  color: var(--dark-deep);
}
.compare-cell--label {
  font-weight: 700;
  color: var(--dark-pure);
}
.compare-row--head .compare-cell {
  font-weight: 700;
  color: var(--dark-pure);
  font-size: 15px;
}
.compare-cell--destaque-head {
  background: var(--peach-pure);
  color: var(--light-pure);
  font-weight: 800;
  font-size: 16px;
  border-radius: var(--r-md) var(--r-md) 0 0;
}
.compare-cell--destaque {
  background: var(--peach-down);
  color: var(--peach-magenta);
  font-weight: 700;
}
.compare-row:last-child .compare-cell--destaque {
  border-radius: 0 0 var(--r-md) var(--r-md);
}
.compare-cell--check { color: var(--peach-magenta); }

.compare-foot {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--dark-down);
}
.compare-foot strong { color: var(--dark-pure); font-weight: 700; }

/* ============================================================
   PERDER EMPREGO
============================================================ */
.perder-emprego {
  background: var(--light-up);
  padding: 40px 0 0;
  overflow: clip;
}
.demit-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}
.demit-txt {
  align-self: center;
  padding-bottom: 40px;
}
.demit-txt .badge { margin-bottom: 20px; }
.demit-txt .titulo-secao { margin-bottom: 16px; }
.demit-sub {
  font-size: 17px;
  color: var(--dark-deep);
  margin-bottom: 32px;
  max-width: 480px;
}
.demit-steps { display: grid; gap: 24px; margin-bottom: 32px; }
.demit-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.demit-step-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light-pure);
  color: var(--peach-pure);
  border: 2px solid var(--peach-pure);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 12px;
  margin-top: 2px;
}
.demit-step strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.demit-step p {
  font-size: 14px;
  color: var(--dark-deep);
}
.demit-promise {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--light-pure);
  border: 1.5px solid var(--peach-pure);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  max-width: 480px;
}
.demit-promise-ico {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--peach-pure);
  color: var(--light-pure);
  display: grid; place-items: center;
  margin-top: 2px;
}
.demit-promise strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--peach-pure);
  margin-bottom: 2px;
}
.demit-promise p {
  font-size: 14px;
  color: var(--dark-deep);
}

.demit-ph {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: end;
}
/* SVG decorativo: maior que a foto, centralizado no eixo X/Y da foto, atrás dela */
.demit-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  max-width: 720px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.demit-ph .placeholder {
  position: relative;
  z-index: 1;
  max-width: 483px;
  width: 100%;
  height: 690px;
  border-radius: 0;
  background: transparent;
}
.demit-ph .placeholder::after { display: none; }
.demit-ph .placeholder > img {
  object-fit: contain;
  object-position: center bottom;
}

/* ============================================================
   DEPOIMENTOS
============================================================ */
.depoimentos {
  background: var(--light-pure);
  padding: var(--section-pad) 0;
}
.rev-sub {
  font-size: 17px;
  color: var(--dark-deep);
  margin-top: -8px;
}
.rev-rate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark-deep);
  margin-top: 4px;
}
.rev-rate strong { color: var(--dark-pure); font-weight: 700; }
.rev-stars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 16px;
}

/* Carrossel horizontal animado em loop infinito.
   O viewport corta as bordas; o track tem 12 cards (6 únicos + 6 duplicados)
   e desliza -50% até o fim, o que coloca exatamente os duplicados na posição
   inicial — gerando o efeito loop sem "salto" visível. */
.rev-viewport {
  /* "tira" o viewport pra fora do container pra carrossel ir borda-a-borda */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  /* máscaras suaves nas pontas (cards entram/saem com fade) */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.rev-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 8px 0; /* respiro pra sombra não cortar no overflow */
  animation: rev-scroll 60s linear infinite;
}
.rev-viewport:hover .rev-track {
  animation-play-state: paused;
}
@keyframes rev-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .rev-track { animation: none; }
}
/* Segunda linha (mobile-only, criada via JS): escondida em desktop */
.rev-viewport--reverse { display: none; }
.rev-card {
  flex: 0 0 360px;
  background: var(--light-pure);
  border: 1px solid var(--light-down);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}
.rev-card .rev-stars { font-size: 14px; }
.rev-info {
  font-size: 14px;
  color: var(--dark-pure);
  line-height: 1.55;
  flex: 1;
}
.rev-person {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--light-down);
}
.rev-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--light-up);
  color: var(--dark-up);
  display: grid; place-items: center;
}
.rev-avatar::after { display: none; }
.rev-name { font-weight: 700; font-size: 14px; color: var(--dark-pure); }
.rev-role { font-size: 12px; color: var(--dark-down); }

/* ============================================================
   FAQ (fundo claro)
============================================================ */
.faq {
  background: var(--light-up);
  padding: var(--section-pad) 0;
}
.faq-sub {
  font-size: 16px;
  color: var(--dark-deep);
  margin-top: -8px;
  text-align: center;
  max-width: 480px;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.item-faq {
  background: var(--light-pure);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color 0.18s ease;
}
.item-faq[open] {
  background: var(--light-pure);
}
.fi-q {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
  gap: 16px;
}
.fi-q::-webkit-details-marker { display: none; }
/* Ícone "+" desenhado com 2 linhas (pseudo-elementos) — matematicamente
   centralizado e independente da fonte. Ao abrir o item, o ícone gira 45°
   e o "+" vira "×" suavemente. */
.fi-q-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light-up);
  color: var(--dark-deep);
  position: relative;
  display: block;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.fi-q-icon::before,
.fi-q-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.fi-q-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.item-faq[open] .fi-q-icon {
  background: var(--peach-pure);
  color: var(--light-pure);
  transform: rotate(135deg);
}
.fi-a {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--dark-deep);
  line-height: 1.6;
}
.faq-legal {
  max-width: 800px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 12px;
  color: var(--dark-down);
  line-height: 1.5;
  padding: 0 20px;
}
.faq-cta-wrap {
  text-align: center;
  margin-top: 36px;
}
.faq-cta {
  padding: 14px 22px;
}

/* ============================================================
   APP (fundo preto)
============================================================ */
.app {
  /* cinza um pouco mais claro que o footer e os botões das lojas (#1a1a1a) */
  background: #2a2a2c;
  color: var(--light-pure);
  padding: 72px 0 0;
  overflow: clip;
  position: relative;
}
/* SVG decorativo: relativo à seção, posicionado no canto inferior-esquerdo,
   atrás do mockup */
.app-bg {
  position: absolute;
  bottom: -8%;
  left: 4%;
  width: 42%;
  max-width: 560px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.app-g {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: end;       /* mockup encosta na base; texto se ajusta separadamente */
  position: relative;
  z-index: 1;
}
.app-txt {
  align-self: center;
  padding-bottom: 72px;
}
.app-ph {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.app-ph .placeholder {
  position: relative;
  z-index: 1;
  width: 280px;
  height: 580px;
  margin-bottom: -100px;   /* "saída" pela base — overflow: hidden corta */
  border-radius: 32px;
  color: var(--dark-up);
}
.app-txt .titulo-secao { margin-bottom: 20px; }
.app-sub {
  font-size: 17px;
  color: var(--dark-up);
  margin-bottom: 28px;
}
.app-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.app-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--dark-up);
}
.app-trust svg { color: var(--peach-pure); }

.app-stores {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
/* SVGs completos das lojas — o próprio SVG já é o botão "branded". */
.store-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 0;
  padding: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.store-btn img {
  height: 52px;
  width: auto;
  display: block;
}
.store-btn:hover { transform: translateY(-1px); opacity: 0.92; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--dark-pure);
  color: var(--dark-up);
  padding: 64px 0 24px;
}
.ft-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
}
.ft-col { display: flex; flex-direction: column; gap: 16px; }
.ft-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-up);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.ft-col--brand .logo-consegue {
  font-size: 28px;
  color: var(--light-pure);
}
.ft-col--brand .logo-word em { color: var(--peach-pure); }
.ft-desc {
  font-size: 14px;
  color: var(--dark-up);
  max-width: 320px;
}
.ft-seal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--light-pure);
  margin: 0;
}
.link-footer {
  font-size: 15px;
  color: var(--light-pure);
  transition: color 0.18s ease;
}
.link-footer:hover { color: var(--peach-pure); }

.ft-bot {
  padding-top: 24px;
  border-top: 1px solid var(--white-08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.ft-copy { font-size: 13px; color: var(--dark-up); }
.ft-legal {
  display: flex;
  gap: 24px;
  font-size: 13px;
}
.ft-legal a { color: var(--dark-up); }
.ft-legal a:hover { color: var(--light-pure); }

.ft-legal-full {
  padding-top: 24px;
  margin-top: 16px;
  border-top: 1px solid var(--white-08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ft-legal-block {
  font-size: 11px;
  line-height: 1.6;
  color: var(--dark-up);
  text-align: justify;
  margin: 0;
}
.ft-legal-block strong {
  color: var(--light-pure);
  font-weight: 600;
}

/* ============================================================
   FAB WHATSAPP
============================================================ */
.fab-whatsapp {
  position: fixed;
  bottom: 44px;
  right: 32px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #25d366;
  color: var(--light-pure);
  display: grid; place-items: center;
  /* Sombra natural: em camadas suaves, sem "halo" colorido rígido */
  box-shadow:
    0 20px 44px -12px rgba(0, 0, 0, 0.22),
    0 8px 20px -6px rgba(0, 0, 0, 0.14),
    0 2px 6px rgba(0, 0, 0, 0.08);
  z-index: 90;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.fab-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow:
    0 26px 52px -12px rgba(0, 0, 0, 0.28),
    0 10px 24px -6px rgba(0, 0, 0, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.08);
}
.fab-whatsapp .icon-wa {
  width: 34px;
  height: 34px;
  display: block;
}
.faq-cta .icon-wa {
  width: 18px;
  height: 18px;
  display: block;
}
.fab-whatsapp:hover, .fab-whatsapp.force-hover { transform: scale(1.05); }
.wa-float-label {
  position: absolute;
  right: 68px; top: 50%;
  transform: translateY(-50%);
  background: var(--dark-pure);
  color: var(--light-pure);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.fab-whatsapp:hover .wa-float-label,
.fab-whatsapp.force-hover .wa-float-label { opacity: 1; }

/* ============================================================
   OVERLAY
============================================================ */
.overlay-nav { position: fixed; bottom: 24px; left: 24px; z-index: 1000; }
.overlay-toggle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark-pure);
  color: var(--light-pure);
  display: grid; place-items: center;
  box-shadow: var(--shadow-lift);
}
.overlay-panel {
  position: absolute;
  bottom: 56px;
  left: 0;
  width: 260px;
  background: var(--dark-pure);
  color: var(--light-pure);
  border-radius: var(--r-md);
  padding: 18px;
  box-shadow: var(--shadow-lift);
  display: none;
}
.overlay-nav[data-open="true"] .overlay-panel { display: block; }
.overlay-title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--dark-up); margin-bottom: 14px; }
.overlay-section { margin-bottom: 14px; }
.overlay-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--dark-up); margin-bottom: 6px; }
.overlay-value { font-size: 13px; font-weight: 700; color: var(--peach-pure); }
.overlay-buttons { display: flex; flex-wrap: wrap; gap: 4px; }
.overlay-buttons button {
  background: rgba(255,255,255,0.08);
  color: var(--light-pure);
  padding: 6px 10px;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 600;
}
.overlay-buttons button.is-active { background: var(--peach-pure); }

/* ============================================================
   DESKTOP GRANDE (≥1280px) — foto da hero cresce gradualmente
============================================================ */
@media (min-width: 1280px) {
  .hero-foto { width: 500px; height: 634px; right: 80px; }
  .hero-right { min-height: 600px; }
}

/* ============================================================
   TELAS MUITO LARGAS (≥1600px) — mais respiro lateral
============================================================ */
@media (min-width: 1600px) {
  :root {
    --container-pad: 56px;
    --section-pad: 140px;
  }
  .hero-inner { gap: 96px; }
  .hero-foto { width: 560px; height: 710px; right: 120px; }
  .hero-right { min-height: 680px; }
  .hero-h1 { font-size: clamp(48px, 4.5vw, 64px); }
}

/* ============================================================
   RESPONSIVO — TABLET
============================================================ */
@media (max-width: 1023px) {
  :root { --section-pad: 80px; }

  /* NAV */
  .nav-inner { grid-template-columns: auto 1fr auto; gap: 16px; height: 64px; }
  .n-links { display: none; }

  /* HERO */
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right {
    min-height: 460px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-foto { width: 320px; height: 460px; right: 40px; }
  .hero-card--valor { left: 0; }
  .hero-card--wa { right: 0; }
  .hero-selos { flex-wrap: wrap; padding: 16px 24px; }
  .selo { min-width: 220px; font-size: 13px; }

  /* STATS */
  .stats-inner { grid-template-columns: 1fr; gap: 28px; }

  /* COMO FUNCIONA */
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-grid > *:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }

  /* QUEM PODE PEGAR */
  .qual-g { grid-template-columns: 1fr; gap: 48px; }
  .qual-foto { margin: 0 auto; }

  /* PRA QUE USAR */
  .usar-grid { grid-template-columns: 1fr 1fr; }

  /* WHATSAPP */
  .wa-g { grid-template-columns: 1fr; gap: 48px; }
  .wa-stage { max-width: 420px; }

  /* VANTAGENS */
  .vant-g { grid-template-columns: 1fr; gap: 40px; }

  /* COMPARATIVO */
  .compare-table { font-size: 14px; }
  .compare-cell { padding: 16px; }

  /* PERDER EMPREGO — foto abaixo do texto, centralizada; texto sem
     vazamento lateral. */
  .demit-g { grid-template-columns: 1fr; gap: 32px; }
  .demit-txt {
    padding-bottom: 0;
    max-width: 100%;
    min-width: 0;
  }
  .demit-sub,
  .demit-promise,
  .demit-step {
    max-width: 100%;
    min-width: 0;
  }
  .demit-promise { padding: 14px 16px; }
  .demit-step p { font-size: 13px; }
  .demit-ph {
    align-self: auto;       /* anula o "end" do desktop (que jogava à direita) */
    justify-self: center;
    width: 100%;
  }
  .demit-bg {
    width: 110%;
    max-width: 100%;
  }

  /* DEPOIMENTOS */
  .rev-card { flex-basis: 320px; }

  /* APP */
  .app-g { grid-template-columns: 1fr; gap: 24px; }
  .app-ph .placeholder { margin-bottom: -80px; }
  .app-txt { padding-bottom: 56px; text-align: center; }
  .app-trust { justify-content: center; }
  .app-stores { justify-content: center; }

  /* FOOTER */
  .ft-top { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVO — MOBILE (<640px)
============================================================ */
@media (max-width: 639px) {
  :root { --section-pad: 56px; --container-pad: 20px; }

  /* NAV */
  .nav-inner { height: 60px; }
  .logo-svg { height: 36px; }
  .nav-inner > .botao-escuro { padding: 10px 16px; font-size: 13px; }

  /* HERO — tipografia compactada */
  .hero { padding: 24px 0 32px; }
  .hero-left .badge { display: none; } /* sem "Exclusivo CLT" em mobile */
  .hero-h1 { font-size: clamp(28px, 8.5vw, 36px); margin-bottom: 12px; }
  .hero-sub { font-size: 14px; margin-bottom: 18px; line-height: 1.45; }
  .badge { padding: 6px 14px; font-size: 12px; }

  /* MINI-SIMULADOR — R$+input numa linha, botão na linha de baixo full-width */
  .mini-sim { padding: 20px; max-width: 100%; }
  .mini-sim-title { font-size: 15px; margin-bottom: 14px; line-height: 1.35; }
  .mini-sim-label { font-size: 13px; }
  .mini-sim-input {
    flex-wrap: wrap;
    border-radius: 18px;
    padding: 8px 8px 8px 18px;
    column-gap: 10px;
    row-gap: 10px;
  }
  .mini-sim-cur { font-size: 16px; }
  .mini-sim-input input {
    flex: 1 1 0;
    min-width: 0;
    font-size: 16px;
    padding: 6px 0;
  }
  .mini-sim-btn {
    flex: 1 1 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }
  .mini-sim-hint { font-size: 12px; line-height: 1.4; }

  /* HERO RIGHT — slot proporcional à imagem 874×1109 (~0.788), evita gap
     visual entre os cards flutuantes e a foto. */
  .hero-right {
    min-height: 380px;
    max-width: 360px;
    margin: 0 auto;
  }
  .hero-foto {
    width: 300px;
    height: 380px;       /* casa com a proporção do PNG, sem letterbox */
    right: 30px;
  }
  .hero-card--valor {
    /* só `left` aqui — `bottom` continua herdando os 42% da regra base.
       Definir `top` junto de `bottom` sem `height` faz o navegador esticar
       o card pra preencher o espaço entre os dois (bug corrigido). */
    left: -4px;
    min-width: 0;
    padding: 10px 14px;
  }
  .hero-card-value { font-size: 16px; }
  .hero-card-tag { font-size: 10px; padding: 2px 6px; }
  .hero-card-name { font-size: 11px; }
  .hero-card--wa {
    right: -4px; bottom: 20px;
    min-width: 0;
    padding: 10px 14px 8px;
    grid-template-columns: auto 1fr;
    gap: 8px;
  }
  .hero-card--wa p { font-size: 12px; line-height: 1.3; }
  .hero-card-wa-time { display: none; } /* economiza largura */

  /* SELOS — coluna única */
  .hero-selos-wrap { margin-top: 32px; }
  .hero-selos {
    flex-direction: column;
    gap: 12px;
    padding: 18px 20px;
    border-radius: var(--r-lg);
  }
  .selo {
    justify-content: flex-start;
    font-size: 13px;
    min-width: 0;
  }

  /* STATS */
  .stats { padding: 40px 0; }
  .stats-inner { gap: 0; }
  .stat-card {
    padding: 20px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .stat-card:last-child { border-bottom: 0; }

  /* SIMULADOR */
  .simulador { padding: 64px 0; }
  .sim-card { padding: 28px 20px; }
  .sim-result-value { font-size: clamp(40px, 13vw, 56px); }
  .sim-result-cur { font-size: 20px; }
  .sim-input input { font-size: 20px; }
  .sim-input { padding: 14px 18px; }
  .sim-cta { padding: 14px 20px; font-size: 14px; }

  /* COMO FUNCIONA — carrossel "coverflow" com scroll-snap. Largura em vw pra
     centralização previsível: track ocupa 100vw (quebra o padding do
     container), padding lateral 18vw + card 64vw fazem o card ativo centralizar
     mesmo sendo o 1º ou o último. O efeito empilhado (escala + sobreposição +
     z-index dos vizinhos) é aplicado por transform via JS — não mexe no layout
     do scroll. Swipe vem de graça do scroll nativo. (setupHowFuncionaCarousel) */
  .how-grid {
    display: flex;
    gap: 0;
    align-items: center;                 /* vizinhos menores centralizam na vertical */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 18vw;
    padding: 12px 18vw 18px;
    margin: 0 calc(-1 * var(--container-pad, 24px));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .how-grid::-webkit-scrollbar { display: none; }
  /* zera a regra de tablet que vazava pro mobile (clampava o último card em
     50% e, com "margin: 0 auto", também zerava o margin-top — por isso o
     último card ficava sem o espaço do círculo do número e desalinhava
     verticalmente dos outros dois no coverflow) */
  .how-grid > *:last-child {
    grid-column: auto;
    max-width: none;
    width: auto;
    margin: 80px 0 0;
  }
  .hstep {
    flex: 0 0 64vw;
    scroll-snap-align: center;
    transform-origin: center center;
    /* transform / opacity / z-index são definidos inline pelo JS (coverflow),
       recalculados a cada frame acompanhando o scroll — por isso NÃO usamos
       transition aqui (ela brigaria com os updates por-frame, criando lag). */
  }
  /* Desliga o reveal-on-scroll (.reveal) nestes cards: sua animação de
     entrada (animation-timeline: view()) escreve na MESMA propriedade
     "transform" que o JS do coverflow usa, e como cada card entra na tela
     em momento levemente diferente, cada um travava num estado de reveal
     distinto — brigando com o coverflow e desalinhando os cards. Aqui o
     próprio coverflow já cumpre o papel de "entrada", então cancelamos
     o reveal e devolvemos o controle do transform só pro JS. */
  .hstep.reveal {
    animation: none;
    opacity: 1;
  }

  .how-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .how-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--light-down);
    border: 0;
    padding: 0;
    transition: background 0.25s ease, transform 0.25s ease;
  }
  .how-dot.is-active {
    background: var(--peach-pure);
    transform: scale(1.25);
  }

  /* QUEM PODE PEGAR */
  .qual-txt .titulo-secao { font-size: clamp(28px, 8vw, 38px); }

  /* PRA QUE USAR — 2 colunas em mobile */
  .usar-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .usar-card h3 { font-size: 15px; margin: 14px 14px 4px; }
  .usar-card p { font-size: 12px; margin: 0 14px 14px; line-height: 1.45; }

  /* WHATSAPP — SVG de fundo ocupando largura total, alinhado à base */
  .wa-bg {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    bottom: 0;
  }
  .wa-stage { max-width: 320px; }

  /* VANTAGENS */
  .vant-item strong { font-size: 16px; }

  /* COMPARATIVO — cada linha vira um card "atributo + 2 valores lado a lado"
     com o nome da coluna (data-col preenchido por JS) acima do valor. */
  .compare-table {
    background: transparent;
    border: 0;
    overflow: visible;
    max-width: 100%;
  }
  .compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "label label"
      "v1    v2";
    background: var(--light-pure);
    border: 1px solid var(--light-down);
    border-radius: var(--r-md);
    margin-bottom: 10px;
    padding: 14px 14px 16px;
    gap: 10px;
    box-shadow: var(--shadow-soft);
  }
  .compare-row--head { display: none; }
  .compare-cell {
    padding: 0;
    border-bottom: 0;
    font-size: 14px;
    text-align: center;
  }
  .compare-cell--label {
    grid-area: label;
    background: transparent;
    font-size: 12px;
    color: var(--dark-deep);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: left;
    padding: 0 0 8px;
    border-bottom: 1px solid var(--light-down);
    font-weight: 700;
  }
  .compare-row > .compare-cell:nth-child(2) { grid-area: v1; }
  .compare-row > .compare-cell:nth-child(3) { grid-area: v2; }
  /* Coluna "Cartão rotativo" */
  .compare-cell:not(.compare-cell--label):not(.compare-cell--destaque) {
    background: var(--light-up);
    border-radius: 10px;
    padding: 12px 8px;
    font-weight: 600;
    color: var(--dark-pure);
  }
  /* Coluna "consegue.aí" — destaque */
  .compare-cell--destaque {
    background: var(--peach-down);
    border-radius: 10px;
    padding: 12px 8px;
    font-weight: 700;
    color: var(--peach-magenta);
  }
  /* Rótulo da coluna (data-col vem do JS) acima do valor */
  .compare-cell[data-col]::before {
    content: attr(data-col);
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: var(--dark-down);
    margin-bottom: 4px;
    line-height: 1;
  }
  .compare-cell--destaque[data-col]::before { color: var(--peach-pure); }
  .compare-cell--destaque-head { display: none; }
  .compare-foot { font-size: 12px; padding: 8px; }

  /* PERDER EMPREGO — foto abaixo do texto, centralizada e 20% menor */
  .perder-emprego { padding: 40px 0 0; }
  .demit-g { grid-template-columns: 1fr; gap: 32px; }
  .demit-txt {
    padding-bottom: 0;
    max-width: 100%;
    min-width: 0;
  }
  .demit-sub,
  .demit-promise,
  .demit-step {
    max-width: 100%;
    min-width: 0;
  }
  .demit-promise { padding: 14px 16px; }
  .demit-step { gap: 12px; }
  .demit-step p { font-size: 13px; }
  .demit-ph {
    align-self: auto;
    justify-self: stretch;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .demit-ph .placeholder {
    /* 20% menor que desktop (483×690) */
    max-width: 386px;
    width: 100%;
    height: 552px;
    margin: 0 auto;
  }
  .demit-bg { width: 110%; max-width: 100%; }

  /* DEPOIMENTOS — duas linhas com animações em sentidos opostos */
  .depoimentos { padding: 56px 0; }
  .rev-card {
    flex-basis: 260px;
    padding: 20px;
    gap: 12px;
  }
  .rev-info { font-size: 13px; }
  .rev-rate { font-size: 13px; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .rev-viewport {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
  }
  /* Segunda linha (clone via JS) com animação invertida */
  .rev-viewport--reverse { display: block; margin-top: 14px; }
  .rev-viewport--reverse .rev-track { animation-direction: reverse; }

  /* FAQ */
  .faq-list { gap: 8px; }
  .fi-q { padding: 16px 18px; font-size: 14px; gap: 12px; }
  .fi-a { padding: 0 18px 18px; font-size: 13px; }
  .faq-cta-wrap { margin-top: 24px; }

  /* APP — texto primeiro, depois mockup; SVG bg ocupa largura total */
  .app { padding: 48px 0 0; }
  .app-g {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .app-txt {
    order: -1;
    padding-bottom: 8px;
    text-align: center;
    align-self: center;
  }
  .app-ph {
    order: 0;
    width: 100%;
    justify-self: center;
  }
  .app-bg {
    bottom: 0;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
  }
  .app-ph .placeholder {
    width: 220px;
    height: 460px;
    margin-bottom: -60px;
  }
  .app-sub { font-size: 15px; }
  .app-trust { gap: 12px; justify-content: center; flex-wrap: wrap; font-size: 12px; }
  /* Botões da loja sempre lado a lado em mobile */
  .app-stores { flex-direction: row; gap: 10px; justify-content: center; flex-wrap: nowrap; }
  .app-stores .store-btn { flex: 0 1 auto; }
  .store-btn img { height: 44px; }

  /* FOOTER */
  .footer { padding: 48px 0 24px; }
  .ft-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .ft-col--brand { grid-column: 1 / -1; }
  .ft-col h4 { font-size: 12px; }
  .link-footer { font-size: 14px; }
  .ft-bot { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ft-legal { gap: 16px; flex-wrap: wrap; font-size: 12px; }

  /* OVERLAY + FAB */
  .overlay-panel { width: 240px; }
  .fab-whatsapp { bottom: 20px; right: 20px; width: 56px; height: 56px; }
  .fab-whatsapp .icon-wa { width: 28px; height: 28px; }
  .overlay-nav { bottom: 20px; left: 20px; }
  .overlay-toggle { width: 40px; height: 40px; }
}

/* ============================================================
   RESPONSIVO — telas muito estreitas (<400px)
============================================================ */
@media (max-width: 399px) {
  :root { --container-pad: 16px; }
  .nav-inner > .botao-escuro { padding: 9px 12px; font-size: 12px; }
  .logo-svg { height: 32px; }
  .usar-grid { grid-template-columns: 1fr; }
  .hero-right { max-width: 280px; }
  .hero-foto { width: 220px; height: 280px; }
  .ft-top { grid-template-columns: 1fr; }
}

/* ============================================================
   LEGAL PAGES (Privacidade, Termos de uso, LGPD)
============================================================ */
.legal-page {
  background: var(--light-pure);
  padding: 64px 0 96px;
  min-height: calc(100vh - 72px);
}
.legal-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--dark-up);
  margin-bottom: 24px;
  transition: color 0.15s ease;
}
.legal-back:hover { color: var(--peach-pure); }
.legal-page h1 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--dark-pure);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.legal-updated {
  font-size: 13px;
  color: var(--dark-up);
  margin: 0 0 40px;
}
.legal-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--dark-deep);
  margin: 0 0 40px;
}
.legal-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-pure);
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
}
.legal-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-pure);
  margin: 24px 0 8px;
}
.legal-body p,
.legal-body li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-deep);
}
.legal-body p { margin: 0 0 16px; }
.legal-body ul,
.legal-body ol {
  margin: 0 0 20px;
  padding-left: 22px;
}
.legal-body li { margin: 0 0 8px; }
.legal-body strong { color: var(--dark-pure); font-weight: 600; }
.legal-body a { color: var(--peach-pure); text-decoration: underline; }
.legal-body a:hover { color: var(--orange-pure); }
.legal-callout {
  background: var(--light-up);
  border-left: 3px solid var(--peach-pure);
  padding: 16px 20px;
  border-radius: 8px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--dark-deep);
}
@media (max-width: 640px) {
  .legal-page { padding: 40px 0 64px; }
  .legal-page h1 { font-size: 30px; }
  .legal-body h2 { font-size: 19px; margin: 36px 0 12px; }
}
