/* ==========================================================================
   ROI Reveal — Landing Page

   Folha unica. A primeira metade e' o design system base; a segunda, os ajustes
   e animacoes que antes viviam no lp-v2.css. A ordem importa: a segunda metade
   sobrescreve a primeira, exatamente como as duas folhas faziam quando eram
   carregadas em sequencia.

   O escopo `.lp` no <body> era `.lp-v2`. Mantive um escopo (so' renomeado) de
   proposito: ele carrega a especificidade que faz esses ajustes vencerem as
   regras base. Tirar o prefixo mudaria o desempate de dezenas de regras.

   Ordem de carga:  normalize.css  ->  lp.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Marca */
  --brand:          #4E47EA;
  --brand-hover:    #352EC9;
  --brand-2:        #7C6BFF;
  --accent:         #F72585;

  /* Texto */
  --ink:            #1B1930;
  --neutral-900:    #18191B;   /* token `neutral/900` do Figma */
  --body:           #4A4A5A;
  --muted:          #6B6F86;
  --faint:          #9A9CB0;
  --soft:           #94989E;

  /* Superficies */
  --card:           #FFFFFF;
  --subtle:         #F9F9FC;
  --sunken:         #F2F2F7;
  --dark:           #2D1A29;

  /* Bordas */
  --border:         #ECEBF2;
  --border-strong:  #E4E3EC;

  /* Semantica */
  --ok:             #15803D;
  --ok-soft:        rgba(34, 197, 94, .12);
  --ok-dot:         #22C55E;
  --saida:          #7C3AED;
  --saida-soft:     rgba(124, 107, 255, .16);

  /* Parceiros */
  --meta:           #0866FF;
  --meta-soft:      rgba(8, 102, 255, .10);
  --google:         #2C6BD4;
  --google-soft:    rgba(66, 133, 244, .12);
  --whatsapp:       #12864A;
  --whatsapp-soft:  rgba(37, 211, 102, .14);
  --rd:             #00B389;
  --rd-ink:         #0E8F70;
  /* Laranja amostrado do proprio asset (o mesmo `img-menu-hubspot.svg` que o app
     usa no menu), nao da memoria da marca. O `-ink` e' a versao escurecida para
     texto: #F8761F cru da 2,63:1 sobre o fundo do cartao e reprova em AA. */
  --hubspot:        #F8761F;
  --hubspot-ink:    #C2410C;

  /* Gradientes */
  --grad-btn:       linear-gradient(90deg, #F72585 0%, #4E47EA 100%);
  --grad-text:      linear-gradient(95deg, #4E47EA 3.22%, #F72585 50%, #4E47EA 91.67%);
  --grad-text-dark: linear-gradient(95deg, #7C6BFF 3%, #F72585 50%, #7C6BFF 92%);

  /* Sobre fundo escuro */
  --on-dark:        #FFFFFF;
  --on-dark-70:     rgba(249, 244, 241, .70);
  --on-dark-60:     rgba(249, 244, 241, .60);
  --on-dark-45:     rgba(249, 244, 241, .45);
  --on-dark-line:   rgba(249, 244, 241, .18);

  --shell:          1200px;
  --gutter:         24px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Urbanist', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  background: var(--card);
  color: var(--body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--brand); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-hover); }

img { max-width: 100%; }

h1, h2, h3 { margin: 0; }
p { margin: 0; }

::selection { background: rgba(78, 71, 234, .16); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* O recuo lateral vive na secao (como no design). O .shell so' centraliza —
   senao o gutter dobra e sobra pouca largura util no celular. */
.shell {
  max-width: var(--shell);
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   3. Tipografia de secao
   -------------------------------------------------------------------------- */
.eyebrow {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #94989E;
}

.grad-text {
  background: var(--grad-text);
  background-size: 150% 150%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: grad-move 8s cubic-bezier(.4, 0, .2, 1) infinite;
  padding-right: 2px;
}

.grad-text--dark { background-image: var(--grad-text-dark); }

@keyframes grad-move {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.sect-title {
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
}

.sect-title--grad {
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.1;
  letter-spacing: -.045em;
}

.sect-lead {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.4;
  color: var(--soft);
  letter-spacing: -.03em;
  text-wrap: pretty;
}

.sect-head {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.sect-head .eyebrow { margin-bottom: 24px; }
.sect-head .sect-lead { margin-top: 22px; }
.sect-head p:not(.sect-lead) { margin-top: 20px; }

/* --------------------------------------------------------------------------
   4. Botoes
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 24px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.02em;
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
}

.btn--lg { height: 60px; padding: 0 40px; border-radius: 26px; font-size: 18px; }
.btn--block { width: 100%; height: 52px; border-radius: 22px; }

.btn--grad {
  color: #fff;
  background: var(--grad-btn);
  background-size: 200% 200%;
  background-position: 0% 39%;
  transition: background-position .6s ease, box-shadow .3s ease;
}
.btn--grad:hover { color: #fff; background-position: 100% 39%; }

.btn--grad-lift { box-shadow: 0 8px 24px -8px rgba(78, 71, 234, .5); }
.btn--grad-lift:hover { box-shadow: 0 12px 32px -8px rgba(247, 37, 133, .45); }

.btn--ghost {
  color: var(--ink);
  background: var(--card);
  border-color: var(--border-strong);
  transition: border-color .2s ease, color .2s ease;
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }

.trust-line {
  font-size: 15px;
  font-weight: 500;
  color: var(--faint);
  letter-spacing: -.01em;
}

/* Em tela estreita um botao com texto longo e `nowrap` vira piso de largura e
   empurra a coluna do grid pra fora da viewport. Aqui ele passa a quebrar. */
@media (max-width: 520px) {
  .btn { white-space: normal; line-height: 1.2; }
  .btn--lg { padding: 0 22px; }
  .btn { padding: 0 22px; }
}

/* Itens de grid nao podem herdar `min-width:auto` do conteudo, senao um filho
   indivisivel (botao, numero) estica a trilha alem da tela. */
.benef-grid > *,
.planos__grid > *,
.cta-final__grid > * { min-width: 0; }

/* --------------------------------------------------------------------------
   5. Header
   -------------------------------------------------------------------------- */
.lp-header {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 0 var(--gutter);
}

.lp-header__inner {
  max-width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) auto minmax(max-content, 1fr);
  align-items: start;
  gap: 24px;
}

.lp-nav {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 56px;
  padding: 6px;
  background: rgba(246, 246, 246, .9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 24px;
}

.lp-nav__link {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 20px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease;
}
.lp-nav__link:hover { background: #fff; color: var(--brand); }

.lp-header__logo {
  justify-self: center;
  align-self: start;
  display: block;
  width: 63px;
  height: 116px;
  margin-top: -2px;
}

.lp-header__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Botao hamburguer (mobile) */
.lp-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: rgba(246, 246, 246, .9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.lp-burger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}

.lp-header.is-open .lp-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-header.is-open .lp-burger span:nth-child(2) { opacity: 0; }
.lp-header.is-open .lp-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lp-drawer { display: none; }

@media (max-width: 991px) {
  .lp-header { top: 16px; }
  .lp-header__inner { grid-template-columns: 1fr auto 1fr; align-items: center; }
  .lp-nav { display: none; }
  .lp-burger { display: flex; }
  .lp-header__logo { width: 44px; height: 81px; margin-top: 0; }
  .lp-header__actions .btn--ghost { display: none; }
  .lp-header__actions .btn { height: 48px; padding: 0 20px; font-size: 15px; border-radius: 18px; }

  .lp-drawer {
    display: block;
    position: absolute;
    top: 72px;
    left: var(--gutter);
    right: var(--gutter);
    padding: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 24px 48px -24px rgba(27, 25, 48, .35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .lp-header.is-open .lp-drawer { opacity: 1; visibility: visible; transform: none; }

  .lp-drawer a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -.02em;
  }
  .lp-drawer a:hover { background: var(--sunken); color: var(--brand); }
  .lp-drawer hr { margin: 8px 4px; border: 0; border-top: 1px solid var(--border); }
}

@media (max-width: 420px) {
  .lp-header__actions .btn { height: 44px; padding: 0 16px; font-size: 14px; }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: 184px;
  overflow: hidden;
}

/* A secao do heroi so' tem recuo no topo — o recuo lateral vem aqui. */
.hero__copy { position: relative; z-index: 4; padding: 0 var(--gutter); }

.hero__title {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 500;
  color: var(--ink);
  text-wrap: balance;
}
.hero__title .grad-text { font-weight: 700; }

.hero__sub {
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5;
  color: var(--muted);
  letter-spacing: -.015em;
  text-wrap: pretty;
}
.hero__sub strong { color: var(--ink); font-weight: 600; }

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.hero__trust { margin-top: 20px; text-align: center; }

/* -- Palco da arte do heroi -- */
.hero__stage {
  position: relative;
  height: 660px;
  margin-top: 8px;
}

.hero__art { display: block; }

/* ⚠️ `height: auto` e' OBRIGATORIO junto dos atributos width/height do HTML, e nao e'
   redundancia. Sem ele o atributo `height` vale como ALTURA LITERAL (hint de apresentacao),
   nao como proporcao: no mobile, onde a regra abaixo poe `width: 100%`, o heroi renderizaria
   375x660 -- esticado. Com `height: auto`, os atributos servem so' para reservar a proporcao
   antes de a imagem chegar, que e' o unico motivo de eles existirem. */
.hero__art img {
  width: 2560px;
  height: auto;
  max-width: none;
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(calc(24px - 50%));
}

@media (max-width: 991px) {
  .hero { padding-top: 132px; }
  .hero__ctas { margin-top: 32px; }
  .hero__ctas .btn { width: 100%; max-width: 340px; }

  .hero__stage {
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    margin-top: 32px;
  }
  .hero__art { flex: 0 0 100%; }
  .hero__art img { width: 100%; left: auto; transform: none; }

}

@media (max-width: 600px) {
  .hero { padding-top: 116px; }
}

/* --------------------------------------------------------------------------
   7. Secao "o rastro se perde" (lottie)
   -------------------------------------------------------------------------- */
.rastro {
  padding: 56px var(--gutter) 110px;
  overflow: hidden;
  text-align: center;
}

.rastro__title { max-width: 940px; margin: 0 auto; }

.rastro__lead {
  max-width: 860px;
  margin: 24px auto 0;
  font-size: clamp(18px, 1.9vw, 28px);
  line-height: 1.25;
  color: var(--soft);
  letter-spacing: -.04em;
  text-wrap: pretty;
}

@media (max-width: 991px) {
  .rastro { padding: 40px var(--gutter) 72px; }

}

/* --------------------------------------------------------------------------
   8. Como funciona
   -------------------------------------------------------------------------- */
.como {
  padding: 110px var(--gutter) 260px;
  background: var(--subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.como .sect-head { margin-bottom: 84px; }

.steps {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.step { width: calc(50% - 12px); min-width: 300px; }
.step:nth-child(2) { transform: translateY(100px); }
.step:nth-child(3) { transform: translateY(32px); }
.step:nth-child(4) { transform: translateY(120px); }
.step:nth-child(1) { position: relative; z-index: 2; }

.step__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 2px solid #F2F2F3;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 4px 78px rgba(0, 0, 0, .15);
}

/* `height: auto` pelo mesmo motivo do heroi: sem ele os 345 do atributo virariam altura fixa
   e achatariam a arte em 0,9% (434x345 em vez de 434x341,8). Ver o comentario em .hero__art img. */
.step__card > img { width: 100%; height: auto; display: block; }

.step__body { padding: 0 48px 48px; }

.step__title {
  margin-bottom: 12px;
  font-size: clamp(27px, 2.6vw, 40px);
  line-height: .95;
  letter-spacing: -.07em;
  font-weight: 600;
  color: var(--dark);
}

.step__text {
  font-size: 18px;
  line-height: 1.35;
  color: #61656B;
  letter-spacing: -.025em;
  text-wrap: pretty;
}

@media (max-width: 767px) {
  .como { padding: 72px var(--gutter) 72px; }
  .como .sect-head { margin-bottom: 48px; }
  .steps { gap: 20px; }
  .step { width: 100%; min-width: 0; }
  .step:nth-child(n) { transform: none; }
  .step__card { border-radius: 28px; }
  .step__body { padding: 0 28px 32px; }
}

/* --------------------------------------------------------------------------
   9. Integracoes
   -------------------------------------------------------------------------- */
.integra { padding: 88px var(--gutter); text-align: center; }
.integra .eyebrow { display: block; margin-bottom: 36px; }

.integra__soon { margin-top: 28px; }

@media (max-width: 767px) {
  .integra { padding: 64px var(--gutter); }

}

/* --------------------------------------------------------------------------
   10. Beneficios (fundo escuro)
   -------------------------------------------------------------------------- */
.dark-sect { background: var(--dark); }

.beneficios { padding: 120px var(--gutter); }

.beneficios__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-dark-60);
}
.beneficios__eyebrow img { height: 24px; }

.beneficios__title {
  margin-bottom: 56px;
  max-width: 760px;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 600;
  text-wrap: balance;
}

.benef-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.benef {
  padding: 38px 34px;
  border: 1px solid var(--on-dark-line);
  border-radius: 16px;
  background: rgba(249, 244, 241, .03);
}

.benef__icon { height: 36px; margin-bottom: 24px; display: block; }
.benef__icons { display: flex; gap: 10px; margin-bottom: 24px; }
.benef__icons img { height: 36px; }

.benef__title {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.025em;
}

.benef__text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(249, 244, 241, .68);
  letter-spacing: -.005em;
}
.benef__text strong { color: #fff; font-weight: 600; }

@media (max-width: 767px) {
  .beneficios { padding: 72px var(--gutter); }
  .beneficios__title { margin-bottom: 36px; }
  .benef { padding: 28px 24px; }

}

/* --------------------------------------------------------------------------
   11. Planos
   -------------------------------------------------------------------------- */
.planos { padding: 120px var(--gutter); }
.planos .sect-head { max-width: 760px; margin-bottom: 56px; }
.planos .sect-head p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  letter-spacing: -.01em;
}/* O bloco que explica a unidade de cobranca. Fica no fluxo ANTES dos cartoes:
   a duvida "o que e' uma acao?" nasce no instante em que o olho bate no numero,
   e depois da grade ela ja' virou um chute. *//* Verde entra, roxo sai -- a MESMA semantica de cor do extrato de consumo no
   painel, pra quem chegou pela LP reconhecer a conta la' dentro. */

.planos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: start;
  padding-top: 13px;
}

.plano {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
}

.plano--pop {
  border: 1.5px solid var(--brand);
  box-shadow: 0 24px 60px -28px rgba(78, 71, 234, .55);
  position: relative;
}

.plano--quote { background: var(--subtle); }

.plano__badge {
  position: absolute;
  top: -13px;
  left: 32px;
  padding: 5px 12px;
  border-radius: 9px;
  background: var(--grad-btn);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .06em;
}

.plano__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 18px;
}

.plano__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
}

.plano__price {
  font-size: 38px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.plano__period {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--faint);
}

.plano__feats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
  color: var(--body);
  letter-spacing: -.01em;
}
.plano__feats strong { color: var(--ink); font-weight: 600; }

.plano .btn { margin-top: 32px; }
.plano--quote .btn { background: var(--card); }

.planos__note { margin-top: 26px; text-align: center; }

@media (max-width: 767px) {
  .planos { padding: 72px var(--gutter); }
  .plano { padding: 26px; }
}/* --------------------------------------------------------------------------
   12. O produto (mock do painel)
   -------------------------------------------------------------------------- */

@media (max-width: 860px) {

}

@media (max-width: 767px) {}

/* --------------------------------------------------------------------------
   13. FAQ
   -------------------------------------------------------------------------- */
.faq { padding: 120px var(--gutter); }
.faq__inner { max-width: 900px; margin: 0 auto; }
.faq .sect-head { margin-bottom: 52px; }

.faq__list { display: flex; flex-direction: column; gap: 12px; }

.faq__item {
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.02em;
  list-style: none;
  cursor: pointer;
}
.faq__q::-webkit-details-marker { display: none; }

.faq__chev {
  flex: 0 0 auto;
  font-size: 22px;
  color: var(--brand);
  line-height: 1;
  transition: transform .2s ease;
}
.faq__item[open] .faq__chev { transform: rotate(45deg); }

.faq__a {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  letter-spacing: -.01em;
}

@media (max-width: 767px) {
  .faq { padding: 72px var(--gutter); }
  .faq__item { padding: 20px; }
  .faq__q { font-size: 17px; gap: 14px; }
}

/* --------------------------------------------------------------------------
   14. CTA final + formulario
   -------------------------------------------------------------------------- */
.cta-final { padding: 120px var(--gutter) 0; }

.cta-final__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 72px;
  align-items: center;
  padding-bottom: 110px;
}

.cta-final__title {
  max-width: 600px;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 600;
  color: #fff;
  text-wrap: balance;
}

.cta-final__lead {
  margin-top: 24px;
  max-width: 520px;
  font-size: 20px;
  line-height: 1.5;
  color: rgba(249, 244, 241, .66);
  letter-spacing: -.015em;
}

.form-card {
  padding: 40px;
  border: 1px solid var(--on-dark-line);
  border-radius: 20px;
  background: rgba(249, 244, 241, .04);
}

.lp-form { display: flex; flex-direction: column; gap: 12px; }

/* O `:not([type="submit"])` NAO e' preciosismo -- sem ele o botao de enviar
   deixava de ser botao. O markup ja' pedia `.btn.btn--grad.btn--lg`, mas
   `.lp-form input` tem especificidade 0-1-1 contra os 0-1-0 de `.btn--grad`, e
   ainda vem depois na folha: vencia em TODA propriedade. Medido no navegador
   antes da correcao -- `background-image: none`, `background-color:
   rgba(249,244,241,.06)`, `height: 56px`, `border-radius: 14px` -- ou seja, o
   botao renderizava exatamente como os cinco campos acima dele. */
.lp-form input:not([type="submit"]),
.lp-form select {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(249, 244, 241, .2);
  background: rgba(249, 244, 241, .06);
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  letter-spacing: -.01em;
  outline: none;
  transition: border-color .2s ease, background-color .2s ease;
}

.lp-form input::placeholder { color: rgba(249, 244, 241, .62); }

/* O autofill do Chrome pinta o campo de azul claro com texto escuro, o que
   quebra o formulario no fundo escuro. A cor do box-shadow e' a composicao
   real do campo: #2D1A29 + a camada .04 do cartao + a camada .06 do input. */
.lp-form input:-webkit-autofill,
.lp-form input:-webkit-autofill:hover,
.lp-form input:-webkit-autofill:focus,
.lp-form select:-webkit-autofill {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px #40303D inset;
  caret-color: #fff;
  /* impede o flash amarelo/azul enquanto o browser aplica o preenchimento */
  transition: background-color 9999s ease-out 0s;
}

/* Mesma exclusao, e aqui ela pesa mais: `.lp-form input:focus` e' 0-2-1 e
   apagaria o gradiente justamente quando a pessoa chega no botao pelo teclado. */
.lp-form input:not([type="submit"]):focus,
.lp-form select:focus {
  border-color: var(--accent);
  background: rgba(249, 244, 241, .1);
}

.lp-form select { -webkit-appearance: none; appearance: none; }

/*  Tres coisas, e as duas ultimas so' aparecem DEPOIS de o gradiente voltar.
    1. `appearance: none` -- iOS/Safari desenha o botao nativo POR CIMA do
       background, e sem isto o gradiente nao aparece justamente no celular.
    2. O padding lateral. O botao ja' e' `width: 100%` (regra logo abaixo), entao
       os 40px do `.btn--lg` -- 22px depois da media de 520px -- nao centram nada
       que o `text-align` ja' nao centrasse: so' roubam largura do rotulo.
    3. A fonte fluida. 🔴 Rotulo de `<input type="submit">` NAO quebra linha: o
       `white-space: normal` que a media de 520px da' ao `.btn` nao alcanca um
       controle de linha unica, entao o que nao cabe e' CORTADO em silencio --
       e o `overflow-x: hidden` do `body` esconde a evidencia.
    MEDIDO a 375px assim que o `.btn--lg` voltou a valer: "Quero falar com um
    especialista" pedia 295px num botao de 273px. Com estas duas linhas o rotulo
    cabe de 320px pra cima. ⚠️ Os tres numeros do `clamp` foram medidos, nao
    escolhidos: com `4.4vw` sobravam 2px a 320px, e com piso de `14px` sobravam
    3px -- porque a 320px quem manda e' o PISO (4.2vw = 13,4px), nao o termo
    fluido. Baixar o piso para 13px e' o que abre folga de verdade la' embaixo
    sem encolher nada acima de ~310px, onde o `vw` volta a governar.  */
.lp-form input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  padding-left: 10px;
  padding-right: 10px;
  font-size: clamp(13px, 4.2vw, 18px);
}
.lp-form select:invalid { color: rgba(249, 244, 241, .62); }
.lp-form select option { color: var(--ink); }

.lp-form .btn { margin-top: 8px; width: 100%; }

/* Estados do formulario. O script do rodape alterna o atributo `hidden`;
   o !important existe porque `[hidden]` da UA perde para qualquer regra de
   classe que defina `display`. */
[hidden] { display: none !important; }

.form-msg {
  padding: 22px 24px;
  border-radius: 16px;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -.01em;
}
.form-msg--ok   { background: var(--ok-soft); color: #DFF7E6; border: 1px solid rgba(34, 197, 94, .3); }
.form-msg--fail { background: rgba(192, 57, 43, .14); color: #FFD9D4; border: 1px solid rgba(192, 57, 43, .35); }

@media (max-width: 900px) {
  .cta-final { padding: 72px var(--gutter) 0; }
  .cta-final__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 64px;
  }

  .form-card { padding: 26px; }
}

/* --------------------------------------------------------------------------
   15. Rodape
   -------------------------------------------------------------------------- */
.lp-footer {
  border-top: 1px solid rgba(249, 244, 241, .14);
  padding: 44px 0;
}

.lp-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.lp-footer__brand { display: flex; align-items: center; gap: 18px; }
.lp-footer__brand img { display: block; width: 40px; height: 40px; }

.lp-footer__copy { font-size: 15px; font-weight: 500; color: var(--on-dark-70); }
.lp-footer__by { font-size: 14px; color: var(--on-dark-45); }
.lp-footer__by a { color: var(--on-dark-70); }
.lp-footer__by a:hover { color: var(--accent); }

.lp-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
}
.lp-footer__links a { color: var(--on-dark-70); }
.lp-footer__links a:hover { color: var(--accent); }

@media (max-width: 767px) {
  .lp-footer__inner { gap: 24px; }
  .lp-footer__links { gap: 18px; }
}

/* --------------------------------------------------------------------------
   16. Pagina de erro (404)
   -------------------------------------------------------------------------- */
.erro {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px var(--gutter);
}

.erro__logo { display: block; width: 63px; height: 116px; }

.erro__code {
  margin-top: 24px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--faint);
}

.erro__title {
  margin-top: 12px;
  max-width: 640px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 500;
  color: var(--ink);
  text-wrap: balance;
}
.erro__title .grad-text { font-weight: 700; }

.erro__text {
  margin-top: 20px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  letter-spacing: -.01em;
  text-wrap: pretty;
}

.erro__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

@media (max-width: 520px) {
  .erro__ctas .btn { width: 100%; max-width: 320px; }
}

/* --------------------------------------------------------------------------
   17. Revelacao no scroll

   O estado escondido so' vale quando a classe `has-js-reveal` foi posta no
   <html> pelo script inline do <head>. Sem JS (ou se o script falhar), o
   conteudo nasce visivel — a pagina nunca fica em branco.
   -------------------------------------------------------------------------- */
.has-js-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.16, 1, .3, 1);
  will-change: opacity, transform;
}
.has-js-reveal .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .has-js-reveal .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   PARTE 2 — Ajustes, animacoes e estados
   (era o css/lp-v2.css; incorporado aqui)
   ========================================================================== */

.lp {
  --v2-purple: #5138ed;
  --v2-pink: #ed218e;
  --v2-dark: #301829;
  --v2-paper: #fafafd;

  /* Estados de interacao. Todos derivam dos tokens de marca do lp.css
     (--brand #4E47EA, --brand-hover #352EC9, --brand-2 #7C6BFF, --accent #F72585)
     para que nenhum hover invente uma cor fora do tema. */
  --v2-brand: #4e47ea;
  --v2-brand-hover: #352ec9;
  --v2-brand-2: #7c6bff;
  --v2-accent: #f72585;
  --v2-accent-hover: #d81b73;
  --v2-brand-line: rgba(78, 71, 234, .32);
  --v2-on-dark-hover: #c9c5ff;

  font-family: 'Work Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #fdfcfc 0%, #f9f9fc 26.27%);
  color: #171717;
}

.lp main > section {
  border-top: 0;
  border-bottom: 0;
}

.lp .grad-text {
  background-image: linear-gradient(100deg, #643ce8 0%, #ef238d 48%, #573ceb 100%);
}

/* --------------------------------------------------------------------------
   Texto em gradiente sem cantos decepados

   O background-clip: text so' pinta dentro da caixa de cada linha. Duas coisas
   escapam dessa caixa na Work Sans e sumiam:

   1. Vertical — a cedilha do "c" e os acentos de "a/o/u" passam da caixa de
      conteudo. Resolvido com padding vertical (amplia a area pintada) mais uma
      margem negativa de mesmo valor (devolve o espaco). Em elemento inline a
      margem vertical nao tem efeito e o padding vertical nao mexe na altura da
      linha; em elemento de bloco os dois se anulam. Layout intacto nos dois.

   2. Horizontal — com letter-spacing negativo (-.07em aqui) o espacamento e'
      aplicado tambem DEPOIS do ultimo caractere, entao a linha termina uns 2px
      dentro da tinta do ultimo glifo e ele perde uma lasca a direita. Isso
      acontecia em TODA linha, e o padding-right: 2px herdado do lp.css nao
      resolvia porque, com box-decoration-break: slice (o padrao), o
      padding-right so' vale para o ultimo pedaco do inline -- ou seja, so' na
      ultima linha. Com "clone" cada linha ganha o seu proprio padding.
   -------------------------------------------------------------------------- */
.lp .grad-text,
.lp .planos .sect-title {
  padding-block: .18em;
  margin-block: -.18em;
}

.lp .grad-text {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-right: .1em;
  margin-right: -.1em;
}

.lp .planos .sect-title {
  padding-right: .1em;
  margin-right: -.1em;
}

.lp .btn {
  height: 56px;
  border-radius: 24px;
  font-size: 15px;
  transition: box-shadow .28s ease, background-color .28s ease, border-color .28s ease, color .28s ease, opacity .28s ease, transform .24s cubic-bezier(.22, 1, .36, 1);
}

.lp .btn--grad {
  background-image: linear-gradient(90deg, var(--v2-pink), var(--v2-purple));
  background-size: 200% 100%;
  background-position: 50% 50%;
}

/* NAO transicionar nem sobrescrever background-position aqui: o script
   "Gradiente do botao segue o cursor" (no fim do index-v2.html) escreve
   btn.style.backgroundPosition a cada frame. Um :hover em CSS perderia para o
   inline de qualquer jeito, e uma transition nessa propriedade deixaria o
   acompanhamento do cursor arrastado. O hover so' cuida da cor do texto. */
.lp .btn--grad:hover { color: #fff; }

.lp .btn--grad-lift:hover {
  box-shadow: 0 12px 30px -10px rgba(78, 71, 234, .55);
}

.lp .lp-header {
  top: 38px;
  padding-inline: 40px;
}

.lp .lp-header__inner {
  max-width: 1360px;
  align-items: start;
}

.lp .lp-nav {
  height: 56px;
  border-radius: 24px;
}

.lp .lp-nav__link {
  height: 44px;
  padding: 0 20px;
  font-size: 16px;
}

.lp .lp-header__logo {
  width: 74px;
  height: 116px;
}

.lp .lp-header__actions .btn {
  height: 56px;
  padding: 0;
}

.lp .lp-header__actions .btn--ghost { width: 118px; border-radius: 24px; }
.lp .lp-header__actions .btn--grad { width: 193px; }

.lp .lp-header__actions .btn--ghost {
  color: var(--v2-brand);
  border-color: var(--v2-brand);
}

/* Hero */
.lp .hero {
  padding-top: 208px;
  background-image: radial-gradient(circle, rgba(81, 56, 237, .11) .75px, transparent .9px);
  background-size: 22px 22px;
  background-position: center 8px;
}

.lp .hero__title {
  max-width: 780px;
  font-size: 56px;
  line-height: 1.06;
  letter-spacing: -.04em;
  font-weight: 400;
  color: #494C50;
}

.lp .hero__accent {
  font-weight: 600;
}

.lp .hero__sub {
  max-width: 1100px;
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.23;
  color: #18191B;
}

.lp .hero__ctas {
  margin-top: 40px;
  gap: 16px;
}

.lp .hero__ctas .btn {
  width: 262px;
  min-width: 262px;
  font-size: 17px;
}

.lp .hero__ctas .btn--ghost {
  color: var(--v2-brand);
  border-color: var(--v2-brand);
}

.lp .hero__trust {
  display: flex;
  position: relative;
  margin: 24px auto 0 auto;
  width: fit-content;
  min-height: 30px;
  padding: 6px 16px 6px 36px;
  border-radius: 24px;
  color: #8e4ec6;
  background: #F2E2FC;
  font-size: 14px;
  font-weight: 500;
  text-align: initial;
  align-items: center;
}

.lp .hero__trust::before {
  content: "◷";
  position: absolute;
  left: 13px;
  font-size: 18px;
}

.lp .hero__stage {
  position: relative;
  display: block;
  width: min(1410px, 100%);
  height: auto;
  /* As cinco variantes ocupam intervalos verticais diferentes dentro do
     canvas exportado. Este enquadramento cobre a uniao de todas elas, com
     folga para arredondamento, sem cortar nem o topo nem a esteira. */
  aspect-ratio: 1410 / 580;
  /* Os cards sobem 42px em relacao ao palco. Com 100px aqui, a distancia
     visual depois da faixa de confianca fica em aproximadamente 58px. */
  margin: 100px auto 0;
}

.lp .hero__art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lp .hero__art img {
  position: absolute;
  top: -18.2%;
  left: -.03%;
  width: 100.06%;
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
  transform: none;
}

/* Os cards sao camadas reais no Figma. Mantendo-os em HTML, a tipografia nao
   e' rasterizada junto da ilustracao e continua legivel quando a tela escala. */
.lp .hero__cards {
  position: absolute;
  z-index: 2;
  top: -42px;
  right: 2%;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  pointer-events: none;
}

.lp .hero-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  gap: 4px;
  padding: 9px 11px 10px;
  border: 1px solid #f0edf3;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 10px -13px rgba(0, 0, 0, .28), 0 5px 5px rgba(0, 0, 0, .10);
  color: #000;
}

.lp .hero-card--instagram { width: 130px; }
.lp .hero-card--google { width: 150px; margin-top: 17px; }
.lp .hero-card--whatsapp { width: 132px; margin-top: 6px; }

.lp .hero-card__src {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.04em;
}

.lp .hero-card__src img {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
}

.lp .hero-card__value {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
}

.lp .hero-card__tag {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 2px;
  min-height: 19px;
  padding: 3px 5px 3px 3px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.lp .hero-card__tag img { width: 12px; height: 12px; }
.lp .hero-card__tag--in { color: #3e9b4f; background: #d6f1df; }
.lp .hero-card__tag--out { color: #8e4ec6; background: #f2e2fc; }

/* Entrada separada da revelacao do palco: os cards sobem em sequencia, com
   apenas um pequeno excesso de 2px para o bounce continuar sutil. */
.has-js-reveal .lp .hero-card {
  opacity: 0;
  transform: translateY(14px) scale(.988);
  will-change: opacity, transform;
}

.has-js-reveal .lp .hero__stage.is-visible .hero-card {
  animation: hero-card-entra .82s cubic-bezier(.22, 1, .36, 1) both;
}

.has-js-reveal .lp .hero__stage.is-visible .hero-card--instagram { animation-delay: .18s; }
.has-js-reveal .lp .hero__stage.is-visible .hero-card--google { animation-delay: .34s; }
.has-js-reveal .lp .hero__stage.is-visible .hero-card--whatsapp { animation-delay: .50s; }

@keyframes hero-card-entra {
  0% { opacity: 0; transform: translateY(14px) scale(.988); }
  62% { opacity: 1; transform: translateY(-2px) scale(1.004); }
  82% { opacity: 1; transform: translateY(1px) scale(.999); }
  100% { opacity: 1; transform: none; }
}

.lp .hero__stage noscript .hero__art { z-index: 1; }
.lp .hero__art--fallback { display: block; }

/* --------------------------------------------------------------------------
   Respostas de interacao

   Regra unica do sistema, para o hover nao virar um monte de decisoes soltas:

   1. Cor. Nada de hex avulso. Roxo cheio -> escurece para --v2-brand-hover;
      roxo vazado -> preenche com --v2-brand e texto branco; rosa ->
      --v2-accent-hover; sobre fundo escuro -> --v2-on-dark-hover.
   2. Direcao. Botao preenchido escurece, botao vazado preenche. Antes o CTA
      dos planos fazia o contrario (esvaziava) enquanto o card de orcamento
      preenchia -- dois gestos opostos na mesma linha de cards.
   3. Movimento. Nenhum elemento se desloca no hover -- nem card, nem logo,
      nem badge. Movimento fica reservado para o :active (o afundar do clique)
      e para os pontos do carrossel, que sao pequenos demais para responder so'
      com cor.
   -------------------------------------------------------------------------- */
.lp a,
.lp button,
.lp summary { transition: color .22s ease, background-color .22s ease, border-color .22s ease, opacity .22s ease; }
.lp .lp-burger,
.lp .billing-toggle button,
.lp .carousel-dots button { transition: transform .22s cubic-bezier(.22, 1, .36, 1), color .2s ease, background-color .2s ease, box-shadow .24s ease; }
.lp .billing-toggle span { transition: background-color .2s ease; }
.lp .lp-nav__link { transition: background-color .2s ease, color .2s ease, box-shadow .24s ease; }
.lp .faq__item {
  /* opacity/transform entram aqui porque esta regra vence a do .reveal na
     cascata -- sem elas os sete itens do FAQ apareciam com estalo. */
  transition: border-color .26s ease, background-color .26s ease, box-shadow .26s ease,
              opacity .7s ease, transform .7s cubic-bezier(.16, 1, .3, 1);
}
.lp .faq__chev { transition: transform .26s cubic-bezier(.22, 1, .36, 1), color .2s ease; }
.lp .plano {
  /* Precisa listar tambem opacity/transform: esta regra vence a do .reveal
     na cascata, e sem elas a entrada em escala do carrossel dava um estalo. */
  transition: border-color .3s ease, box-shadow .34s ease,
              opacity .7s ease, transform .7s cubic-bezier(.16, 1, .3, 1);
}

/* Feedback de clique tambem no toque, por isso fora do @media (hover) */
.lp .btn:active { opacity: .9; transform: scale(.985); }
.lp .billing-toggle button:active { transform: scale(.97); }
.lp .carousel-dots button:active { transform: scale(.9); }

.lp .faq__item[open] { border-color: var(--v2-brand-line); }

@media (hover: hover) {
  /* Botoes */
  /* Vazado preenche de vez: o contorno roxo vira fundo roxo e o texto vira
     branco. E' o mesmo gesto que o CTA do card de orcamento ja' fazia, entao
     agora todo botao vazado da pagina responde igual. Os dois botoes dentro dos
     cards de plano continuam com o tratamento proprio deles, que e' mais
     especifico -- no card roxo um fundo roxo sumiria. */
  .lp .btn--ghost:hover {
    color: #fff;
    border-color: var(--v2-brand);
    background: var(--v2-brand);
  }

  /* Cabecalho */
  .lp .lp-nav__link:hover { color: var(--v2-brand); background: #fff; box-shadow: 0 2px 8px -4px rgba(45, 26, 41, .28); }
  .lp .lp-burger:hover { color: var(--v2-brand); background: #fff; }

  /* Alternador mensal/anual: a pilula inativa recebe uma previa do fundo
     branco da ativa -- so' que a 55% e sem sombra cheia, para o branco solido
     continuar sendo o sinal exclusivo de "selecionado". Quem carrega o hover
     mesmo e' o texto roxo. */
  .lp .billing-toggle button:not(.is-active):hover {
    color: var(--v2-brand-hover);
    background: rgba(255, 255, 255, .55);
    box-shadow: 0 1px 3px rgba(45, 26, 41, .05);
  }
  .lp .billing-toggle:has(button.is-active:hover)::before { box-shadow: 0 4px 12px rgba(45, 26, 41, .14); }
  .lp .billing-toggle button:hover span { background: var(--v2-accent-hover); }

  /* Carrosseis */
  .lp .carousel-dots button:hover { background: var(--v2-brand-2); transform: scale(1.25); }

  /* FAQ */
  .lp .faq__item:hover { border-color: var(--v2-brand-line); box-shadow: 0 10px 26px -20px rgba(78, 71, 234, .6); }
  .lp .faq__q:hover { color: var(--v2-brand); }
  .lp .faq__q:hover .faq__chev { color: var(--v2-brand-hover); }

  /* Planos. O card nao se mexe: quem da' a impressao de saltado e' so' a
     sombra, difusa e de baixa opacidade. Duas camadas -- uma curta, de contato,
     e uma longa e aberta -- porque uma sombra unica de blur grande fica
     chapada, com cara de mancha em vez de altura. */
  .lp .plano:hover {
    box-shadow:
      0 2px 6px rgba(45, 26, 41, .05),
      0 16px 40px -20px rgba(45, 26, 41, .28);
  }

  /* No card roxo a sombra neutra some; esta puxa para o roxo da marca. */
  .lp .plano--pop:hover {
    box-shadow:
      0 2px 6px rgba(30, 25, 90, .12),
      0 18px 44px -20px rgba(78, 71, 234, .55);
  }

  .lp .plano:not(.plano--pop):not(.plano--quote) .btn:hover {
    border-color: var(--v2-brand-hover);
    background: var(--v2-brand-hover);
    color: #fff;
  }
  .lp .plano--pop .btn:hover {
    border-color: #fff;
    background: #eceaff;
    color: var(--v2-brand-hover);
  }
  .lp .plano--quote .btn:hover {
    border-color: var(--v2-brand);
    background: var(--v2-brand);
    color: #fff;
  }

  /* Rodape */
  .lp .lp-footer__by a:hover,
  .lp .lp-footer__links a:hover,
  .lp .form-msg__voltar:hover { color: var(--v2-on-dark-hover); }
}

/* --------------------------------------------------------------------------
   Pergunte a uma IA
   Implementa o node 1274:4479 do Figma.

   Fecha o FAQ, dentro do mesmo .faq__inner: as perguntas que a gente escolheu
   responder, e logo abaixo o caminho para as que a gente nao antecipou.

   O cartao inteiro e' o gradiente da marca -- as duas paradas sao exatamente os
   tokens --accent (#F72585) e --brand (#4E47EA), entao ele nao inventa cor
   nenhuma. Por isso o titulo aqui e' branco solido, e nao o texto em gradiente
   que o resto da pagina usa: gradiente sobre gradiente sumiria.
   -------------------------------------------------------------------------- */
.lp .ia-check {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
  padding: 64px 48px;
  border-radius: 24px;
  text-align: center;
  background-image: linear-gradient(-49.9deg, var(--brand) 5.25%, var(--accent) 95.6%);
}

.lp .ia-check__texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  width: 100%;
}

.lp .ia-check__eyebrow {
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.lp .ia-check__frase {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.lp .ia-check__titulo {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.07em;
  text-shadow: 0 0 15px rgba(0, 0, 0, .05);
}

.lp .ia-check__lead {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -.05em;
}

.lp .ia-check__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* Pilula branca sobre o gradiente. Altura e raio sao os mesmos dos botoes do
   projeto (56px / 24px), entao ela nao destoa do resto da pagina. */
.lp .ia-check__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 269px;
  height: 56px;
  padding: 0 24px;
  border-radius: 24px;
  background: #fff;
  color: var(--neutral-900);
  text-decoration: none;
  transition: box-shadow .3s ease, transform .3s cubic-bezier(.16, 1, .3, 1);
}

.lp .ia-check__logo {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
}

.lp .ia-check__nome {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.02em;
  white-space: nowrap;
}

@media (hover: hover) {
  .lp .ia-check__btn:hover {
    color: var(--neutral-900);
    box-shadow: 0 10px 26px -12px rgba(24, 12, 40, .45);
  }
}

.lp a:focus-visible,
.lp button:focus-visible,
.lp summary:focus-visible { outline: 2px solid var(--v2-brand-2); outline-offset: 4px; }

/* Rastro */
.lp .rastro {
  padding: 86px 24px 0;
  background: transparent;
}

.lp .rastro__title {
  max-width: initial;
  font-size: 48px;
  line-height: 1.14;
  font-weight: 400;
  color: #18191B;
}

.lp .rastro__title .grad-text {
  font-weight: 600;
}

.lp .rastro__title .desktop-break {
  display: block;
}

.lp .rastro__lead {
  max-width: 820px;
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.35;
  color: #18191B;
}

/* O <video> entrou no lugar do Lottie e nasceu sem regra nenhuma -- ficava nos
   1044px nativos do arquivo e estourava a coluna no celular. */
.lp .rastro__animation {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 58px auto 0;
}

.lp .rastro__animation.mobile {
  display: none;
}

@media(max-width: 991px){
  .lp .rastro__animation.mobile {
    display: block;
    max-width: 360px;
  }

  .lp .rastro__animation.desktop {
    display: none;
  }
}

.lp .rastro__cta,
.lp .integra__cta {
  width: 440px;
  max-width: 100%;
  margin-top: 50px;
}

/* Como funciona */
.lp .como {
  padding: 160px 24px 190px;
  background: transparent;
  /* O lp.css usa overflow: hidden aqui. Isso faz da secao a scroll container
     mais proxima dos cards -- e a deriva no scroll mede o progresso contra essa
     container, que nunca rola, entao a animacao nascia congelada. O clip corta
     exatamente igual, mas nao cria container de rolagem. */
  overflow: clip;
}

.lp .como .sect-head {
  margin-bottom: 68px;
  max-width: initial;
}

.lp .sect-title--grad {
  font-size: 48px;
  line-height: 1.08;
}

.lp .sect-lead,
.lp .como .sect-lead {
  font-size: 24px;
  color: #18191B;
}

.lp .steps {
  max-width: 900px;
  gap: 24px;
}

.lp .step__card {
  border-radius: 34px;
}

.lp .step__body {
  padding: 0 46px 44px;
}

/* --------------------------------------------------------------------------
   Como funciona — entrada dos cards e deriva no scroll

   A secao ja' nasce com um ritmo escalonado no desenho (cada card sentado numa
   altura diferente). A animacao so' faz esse ritmo respirar:

   1. Entrada — o card sobe 42px e cresce de 0.97, na cascata que os data-delay
      do HTML ja' definem (0 / 90 / 180 / 270ms). Reaproveita a transicao do
      .reveal, entao nao ha' JS novo.
   2. Deriva no scroll — enquanto a secao atravessa a tela, a coluna da esquerda
      sobe uns 92px e a da direita desce uns 76px. E' o desnivel do layout se
      abrindo e fechando conforme voce rola: nada salta, so' o espacamento entre
      as colunas muda -- agora com percurso suficiente para se ler.

   A deriva usa scroll-driven animation (animation-timeline: view()), que roda
   no compositor e dispensa listener de scroll. Onde nao houver suporte, o
   @supports simplesmente nao aplica e fica so' a entrada.
   -------------------------------------------------------------------------- */
.lp .step { --step-y: 0px; }
.lp .step:nth-child(2) { --step-y: 100px; }
.lp .step:nth-child(3) { --step-y: 32px; }
.lp .step:nth-child(4) { --step-y: 120px; }
.lp .step:nth-child(n) { transform: translateY(var(--step-y)); }

@media (min-width: 992px) {
  .has-js-reveal .lp .step__card { transform: translateY(42px) scale(.97); }
  .has-js-reveal .lp .step__card.is-visible { transform: none; }
}

@supports (animation-timeline: view()) {
  @media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
    @keyframes step-deriva {
      from { transform: translateY(var(--step-y)) translateY(var(--step-deriva)); }
      to   { transform: translateY(var(--step-y)) translateY(calc(var(--step-deriva) * -1)); }
    }

    .lp .step:nth-child(n) {
      --step-deriva: 46px;
      animation: step-deriva linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }

    /* Coluna da direita anda no sentido oposto, so' que menos. */
    .lp .step:nth-child(2n) { --step-deriva: -38px; }
  }
}

.lp .step__title {
  font-size: 40px;
  color: #2D1A29;
  margin-bottom: 12px;
}

.lp .step__text {
  font-size: 18px;
  line-height: 1.25;
  color: #61656B;
}

.lp .carousel-dots {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 22px;
}

.lp .carousel-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #dcd7f9;
  cursor: pointer;
}

.lp .carousel-dots button.is-active { background: var(--v2-brand); }

/* Integrações */
.lp .integra {
  padding: 120px 24px 126px;
  background: transparent;
}

.lp .integra .sect-head { max-width: 1131px; }
.lp .integra .eyebrow { margin-bottom: 24px; }
.lp .integra .sect-title--grad { letter-spacing: -.07em; }
.lp .integra .sect-lead { max-width: 920px; margin-left: auto; margin-right: auto; }

.lp .integra-hub {
  position: relative;
  width: 1130px;
  height: auto;
  aspect-ratio: 1130 / 353;
  max-width: 100%;
  margin: 88px auto 0;
}

.lp .integra-hub__core {
  position: absolute;
  z-index: 2;
  left: 33.7168%;
  top: -1.6997%;
  width: 32.3009%;
  aspect-ratio: 1;
}

.lp .integra-hub__core img {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  transform: translate(-50%, -50%);
}

.lp .integra-hub__ring--outer { width: 100%; }
.lp .integra-hub__ring--middle { width: 80.8219%; }
.lp .integra-hub__ring--inner { width: 64.3836%; }
.lp .integra-hub__brand { z-index: 1; width: 68.4932%; }

.lp .integra-hub__node {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.7876%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.lp .integra-hub__node img { display: block; width: 59.0909%; height: auto; object-fit: contain; }
.lp .integra-hub__node--whatsapp img {
  box-sizing: content-box;
  width: 32.9816%;
  padding: 13.0546%;
  border-radius: 50%;
  background: #1bc737;
}
.lp .integra-hub__node--hubspot img { border-radius: 50%; }
.lp .integra-hub__node--google img,
.lp .integra-hub__node--rd img { width: 54.5455%; }
.lp .integra-hub__node--more img { width: 36.3636%; }

.lp .integra-hub__node--meta { left: 15.0885%; top: 0; }
.lp .integra-hub__node--whatsapp { left: 9.4248%; top: 37.6771%; }
.lp .integra-hub__node--google { left: 15.0885%; top: 75.0708%; }
.lp .integra-hub__node--hubspot { left: 76.8584%; top: 0; }
.lp .integra-hub__node--rd { left: 82.5221%; top: 37.6771%; }
.lp .integra-hub__node--more { left: 76.8584%; top: 75.0708%; }

.lp .integra-hub__line {
  position: absolute;
  z-index: 1;
  display: block;
  height: auto;
}

.lp .integra-hub__line--meta { left: 21.9912%; top: 12.1813%; width: 18.7611%; transform: scaleX(-1); }
.lp .integra-hub__line--whatsapp { left: 16.3274%; top: 49.5751%; width: 23.5398%; }
.lp .integra-hub__line--google { left: 21.9912%; top: 63.7394%; width: 18.7611%; transform: rotate(180deg); }
.lp .integra-hub__line--hubspot { left: 58.9823%; top: 12.1813%; width: 18.7611%; }
.lp .integra-hub__line--rd { left: 59.8673%; top: 49.5751%; width: 23.5398%; }
.lp .integra-hub__line--more { left: 58.9823%; top: 63.7394%; width: 18.7611%; transform: scaleY(-1); }

.lp .integra-hub__dot {
  position: absolute;
  z-index: 4;
  width: .708%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #4e47ea;
}

.lp .integra-hub__dot--meta { left: 40.3982%; top: 36.6856%; }
.lp .integra-hub__dot--whatsapp { left: 39.5133%; top: 50.7082%; }
.lp .integra-hub__dot--google { left: 40.3982%; top: 64.8725%; }
.lp .integra-hub__dot--hubspot { left: 59.3363%; top: 36.6856%; }
.lp .integra-hub__dot--rd { left: 60.2212%; top: 50.7082%; }
.lp .integra-hub__dot--more { left: 59.3363%; top: 64.8725%; }

/* --------------------------------------------------------------------------
   Integracoes — entrada e respiracao do hub

   Roteiro (dispara quando a secao entra na tela, via .is-visible):

     0.00s  o nucleo acende: a marca cresce e os tres aneis se abrem de dentro
            para fora, como uma onda saindo do centro
     0.40s  as linhas se desenham DO CENTRO para cada ferramenta -- a leitura e'
            "o ROI Reveal alcanca as suas ferramentas", nao o contrario
     0.78s  os pontos de conexao acendem
     0.84s  os icones chegam com um pulinho, em cascata de cima para baixo
     1.6s+  o nucleo entra em respiracao continua: os aneis inflam de leve, cada
            um com a sua fase, e a cada 6s sai uma onda suave do centro

   So' transform e opacity, para tudo rodar no compositor. O estado escondido
   depende de .has-js-reveal: sem JS a secao nasce pronta.
   -------------------------------------------------------------------------- */
.has-js-reveal .lp .integra-hub {
  opacity: 1;
  transform: none;
  transition: none;
}

.has-js-reveal .lp .integra-hub__core img,
.has-js-reveal .lp .integra-hub__node,
.has-js-reveal .lp .integra-hub__dot { opacity: 0; }
.has-js-reveal .lp .integra-hub__line { opacity: 0; clip-path: inset(0 100% 0 0); }

@keyframes hub-marca-entra {
  from { opacity: 0; transform: translate(-50%, -50%) scale(.84); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes hub-anel-entra {
  from { opacity: 0; transform: translate(-50%, -50%) scale(.5); }
  60%  { opacity: 1; }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Respiracao: amplitude minuscula de proposito. Os aneis tem 2%, 3% e 5% de
   opacidade, entao o que se percebe e' o contorno andando alguns pixels. */
@keyframes hub-anel-respira {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.055); }
}

@keyframes hub-onda {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(.52); }
  18%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes hub-linha-desenha {
  from { opacity: 1; clip-path: inset(0 100% 0 0); }
  to   { opacity: 1; clip-path: inset(0 0 0 0); }
}

@keyframes hub-linha-desenha-invertida {
  from { opacity: 1; clip-path: inset(0 0 0 100%); }
  to   { opacity: 1; clip-path: inset(0 0 0 0); }
}

@keyframes hub-no-entra {
  0%   { opacity: 0; transform: scale(.72); }
  62%  { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}

/* O no' do WhatsApp e o "mais" ja' usam translateX para centralizar no mobile,
   entao ganham keyframes proprios que preservam esse deslocamento. */
@keyframes hub-no-entra-centrado {
  0%   { opacity: 0; transform: translateX(-50%) scale(.72); }
  62%  { opacity: 1; transform: translateX(-50%) scale(1.04); }
  100% { opacity: 1; transform: translateX(-50%) scale(1); }
}

@keyframes hub-ponto-entra {
  from { opacity: 0; transform: translate(-50%, -50%) scale(.4); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Onda que sai do centro a cada 6s. Nasce e morre transparente, entao o estado
   de repouso da secao continua sendo exatamente o do design. */
.lp .integra-hub__core::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.52);
  background: radial-gradient(circle closest-side, rgba(78, 71, 234, .09) 60%, rgba(78, 71, 234, .16) 82%, transparent 100%);
}

.has-js-reveal .lp .integra-hub.is-visible .integra-hub__brand {
  animation: hub-marca-entra .85s cubic-bezier(.22, 1, .36, 1) both;
}

.has-js-reveal .lp .integra-hub.is-visible .integra-hub__ring {
  animation:
    hub-anel-entra .85s cubic-bezier(.22, 1, .36, 1) var(--anel-atraso, 0s) both,
    hub-anel-respira 6s ease-in-out calc(var(--anel-atraso, 0s) + 1.6s) infinite;
}

.lp .integra-hub__ring--inner  { --anel-atraso: .10s; }
.lp .integra-hub__ring--middle { --anel-atraso: .18s; }
.lp .integra-hub__ring--outer  { --anel-atraso: .26s; }

.has-js-reveal .lp .integra-hub.is-visible .integra-hub__core::after {
  animation: hub-onda 6s cubic-bezier(.3, 0, .2, 1) 2.2s infinite;
}

.has-js-reveal .lp .integra-hub.is-visible .integra-hub__line {
  animation: hub-linha-desenha .55s cubic-bezier(.35, 0, .2, 1) var(--linha-atraso, .4s) both;
}

/* Cada linha se desenha a partir da ponta que encosta no nucleo. Como algumas
   sao espelhadas/giradas por transform, a que precisa correr no sentido local
   contrario usa a variante invertida. */
.has-js-reveal .lp .integra-hub.is-visible .integra-hub__line--whatsapp {
  animation-name: hub-linha-desenha-invertida;
}

.lp .integra-hub__line--whatsapp { --linha-atraso: .40s; }
.lp .integra-hub__line--rd       { --linha-atraso: .40s; }
.lp .integra-hub__line--meta     { --linha-atraso: .48s; }
.lp .integra-hub__line--hubspot  { --linha-atraso: .48s; }
.lp .integra-hub__line--google   { --linha-atraso: .56s; }
.lp .integra-hub__line--more     { --linha-atraso: .56s; }

.has-js-reveal .lp .integra-hub.is-visible .integra-hub__dot {
  animation: hub-ponto-entra .35s cubic-bezier(.22, 1, .36, 1) var(--ponto-atraso, .78s) both;
}

.lp .integra-hub__dot--whatsapp { --ponto-atraso: .78s; }
.lp .integra-hub__dot--rd       { --ponto-atraso: .78s; }
.lp .integra-hub__dot--meta     { --ponto-atraso: .86s; }
.lp .integra-hub__dot--hubspot  { --ponto-atraso: .86s; }
.lp .integra-hub__dot--google   { --ponto-atraso: .94s; }
.lp .integra-hub__dot--more     { --ponto-atraso: .94s; }

.has-js-reveal .lp .integra-hub.is-visible .integra-hub__node {
  animation: hub-no-entra .6s cubic-bezier(.22, 1, .36, 1) var(--no-atraso, .84s) both;
}

.lp .integra-hub__node--meta     { --no-atraso: .84s; }
.lp .integra-hub__node--hubspot  { --no-atraso: .90s; }
.lp .integra-hub__node--whatsapp { --no-atraso: .96s; }
.lp .integra-hub__node--rd       { --no-atraso: 1.02s; }
.lp .integra-hub__node--google   { --no-atraso: 1.08s; }
.lp .integra-hub__node--more     { --no-atraso: 1.14s; }

.lp .integra__soon {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  gap: 8px;
  margin-top: 29px;
  padding: 6px 16px;
  color: #4E47EA;
  border-radius: 24px;
  background: rgba(78, 71, 234, 0.05);
  font-size: 14px;
  font-weight: 600;
}

.lp .integra__cta { display: flex; margin: 64px auto 0; }

/* Benefícios */
.lp .dark-sect { background: var(--v2-dark); }
.lp .beneficios { padding: 120px 24px; background: #2d1a29; }

.lp .beneficios .shell {
  max-width: 1200px;
  border: 1px solid rgba(249,244,241,.3);
}

.lp .beneficios__eyebrow {
  gap: 8px;
  margin: 0;
  padding: 64px 58px 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.lp .beneficios__eyebrow img { width: 27.637px; height: 26.931px; }

.lp .beneficios__title {
  max-width: none;
  margin: 0;
  padding: 0 58px 30px;
  border-bottom: 1px solid rgba(249,244,241,.3);
  background-image: linear-gradient(100deg, #f72585 0%, #4e47ea 100%);
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -.07em;
  text-wrap: initial;
}
.lp .beneficios__title > span { display: inline; }

.lp .benef-grid {
  grid-template-columns: 611fr 590fr;
  gap: 0;
}

.lp .benef {
  --benef-glow-x: 50%;
  --benef-glow-y: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 400px;
  min-height: 0;
  padding: 49px 58px;
  box-sizing: border-box;
  border: 0;
  border-right: 1px solid rgba(249,244,241,.3);
  border-bottom: 1px solid rgba(249,244,241,.3);
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  isolation: isolate;
}

.lp .benef::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: var(--benef-glow-x);
  top: var(--benef-glow-y);
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: linear-gradient(108deg, #f72585 0%, #4e47ea 100%);
  filter: blur(72px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity .5s cubic-bezier(.22, 1, .36, 1);
}

.lp .benef.is-glow-active::before { opacity: .25; }
.lp .benef > * { position: relative; z-index: 1; }

.lp .benef:nth-child(2n) { padding-inline: 48px; }
.lp .benef:nth-child(2n) { border-right: 0; }
.lp .benef:nth-last-child(-n+2) { border-bottom: 0; }
.lp .benef__icon { width: 48px; height: 48px; margin-bottom: 32px; }
.lp .benef__icons { height: 48px; gap: 16px; margin-bottom: 25px; }
.lp .benef__icons img { width: 48px; height: 48px; }
.lp .benef__title { margin-bottom: 8px; font-size: 32px; line-height: 1.2; letter-spacing: -.04em; }
.lp .benef__text { color: #fff; font-size: 18px; line-height: 1.4; letter-spacing: 0; }

.lp .benef__link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 13px;
  margin-top: 32px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.lp .benef:nth-child(2n) .benef__link { margin-top: 25px; }
.lp .benef__link:hover { color: #fff; }
.lp .benef__link-label { text-decoration: underline; text-underline-position: from-font; }
.lp .benef__link-arrow {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
}
.lp .benef__link-arrow img { position: absolute; display: block; }
.lp .benef__link-arrow img:first-child { left: 2.625px; top: 10.875px; width: 18.75px; height: 2.25px; }
.lp .benef__link-arrow img:last-child { left: 12.375px; top: 4.125px; width: 9px; height: 15.75px; }
.lp .benef__link:hover .benef__link-arrow,
.lp .benef__link:focus-visible .benef__link-arrow { transform: translateX(6px); }

/* Planos */
.lp .planos { padding: 80px 40px 0; }
.lp .planos .shell { max-width: 1360px; }
.lp .planos .sect-head { max-width: initial; margin-bottom: 40px; }
.lp .planos .sect-head .eyebrow { margin-bottom: 25px; font-weight: 600; letter-spacing: -.05em; }
.lp .planos .sect-title {
  color: transparent;
  background: var(--grad-text);
  background-size: 150% 150%;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -.07em;
  animation: grad-move 8s cubic-bezier(.4, 0, .2, 1) infinite;
}
.lp .planos .sect-head p:not(.sect-lead) {
  margin-top: 25px;
  color: #18191b;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -.05em;
}
/* O indicador branco e' um so', desenhado no ::before do trilho, e desliza de
   um lado para o outro. Antes eram dois fundos que acendiam e apagavam, entao a
   troca nao tinha percurso -- o branco simplesmente saltava de botao. */
.lp .billing-toggle {
  position: relative;
  display: flex;
  width: 346px;
  height: 56px;
  margin: 0 auto 24px;
  padding: 8px;
  border-radius: 40px;
  background: #f2f2f3;
  isolation: isolate;
}

.lp .billing-toggle::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 8px;
  top: 8px;
  /* Metade do trilho ja' descontado o padding dos dois lados: bate exatamente
     com a largura de cada botao (50% da caixa de conteudo). */
  width: calc((100% - 16px) / 2);
  height: 40px;
  border-radius: 58px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
  transition: transform .42s cubic-bezier(.16, 1, .3, 1), box-shadow .24s ease;
}

.lp .billing-toggle[data-ativo="annual"]::before { transform: translateX(100%); }

.lp .billing-toggle button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 50%;
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 58px;
  background: transparent;
  color: #343330;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

/* O botao nao pinta mais o proprio fundo: quem faz isso e' o indicador. */
.lp .billing-toggle button { position: relative; z-index: 1; }
.lp .billing-toggle span { padding: 6px; border-radius: 4px; background: #f72585; color: #fff; font-size: 11px; font-weight: 700; line-height: 1.2; white-space: nowrap; }

.lp .planos__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1360px;
  padding-top: 0;
  align-items: stretch;
}

.lp .plano {
  height: 458px;
  min-height: 0;
  padding: 24px 24px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fcfcfc;
  color: #343330;
  box-sizing: border-box;
}

.lp .plano__intro { height: 96px; }
.lp .plano__head { margin: 0; }
.lp .plano__name { color: #343330; font-size: 24px; font-weight: 800; line-height: 1.2; letter-spacing: 0; }
.lp .plano__desc {
  min-height: 0;
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0;
}

.lp .plano__price-row { display: flex; align-items: flex-end; justify-content: center; gap: 8px; width: 100%; height: 56px; }
.lp .plano__price { color: #000; font-size: 48px; font-weight: 800; line-height: 1.2; letter-spacing: -.06em; white-space: nowrap; }
.lp .plano__price span,
.lp .plano__price .plano__currency { font-size: 24px; letter-spacing: -.06em; }
.lp .plano__period { margin: 0; padding-bottom: 8px; color: #000; font-size: 18px; font-weight: 400; line-height: 1.2; white-space: nowrap; }
.lp .plano__feats { gap: 16px; padding-top: 16px; color: #343330; font-size: 14px; line-height: 1.2; letter-spacing: 0; }
.lp .plano__feats > div { display: flex; align-items: center; gap: 8px; }
.lp .plano__feats > div::before {
  content: "";
  flex: 0 0 14px;
  width: 14px;
  height: 8px;
  margin: -3px 2px 0;
  border-bottom: 1.25px solid currentColor;
  border-left: 1.25px solid currentColor;
  color: #343330;
  transform: rotate(-45deg);
  box-sizing: border-box;
}
.lp .plano__feats strong { color: inherit; font-weight: 700; }
.lp .plano__integracoes { flex-wrap: wrap; align-items: flex-start !important; }
.lp .plano__integracoes > span:first-of-type { width: calc(100% - 26px); }
.lp .plano__logos { display: flex; gap: 8px; margin-left: 26px; }
.lp .plano__logos img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.lp .plano__logos img[src*="integracao-icone-whatsapp"] { padding: 3px; background: #0cc143; }
.lp .plano .btn { height: 48px; min-height: 48px; margin-top: auto; padding: 0 24px; border-radius: 6px; background: var(--v2-brand); border-color: var(--v2-brand); color: #fff; font-size: 16px; font-weight: 600; letter-spacing: 0; }
.lp .plano__trial-note { display: block; min-height: 17px; margin-top: 10px; color: #343330; font-size: 14px; font-style: italic; line-height: 1.2; text-align: center; }
.lp .plano__trial-note--placeholder { visibility: hidden; }

.lp .plano--pop {
  color: #fff;
  background: radial-gradient(circle at 96% 2%, #4e47ea 5.65%, #3d38b7 52.83%, #2c2884 100%);
  border-color: transparent;
  box-shadow: none;
}

.lp .plano--pop .plano__name,
.lp .plano--pop .plano__price,
.lp .plano--pop .plano__period,
.lp .plano--pop .plano__feats,
.lp .plano--pop .plano__feats > div::before,
.lp .plano--pop .plano__trial-note { color: #fff; }
.lp .plano--pop .btn { border-color: #fff; background: #fff; color: var(--v2-brand); }
.lp .plano--pop .plano__logos img:nth-child(2) { padding: 3px; background: #fff; }
.lp .plano__badge { top: 20px; right: 24px; left: auto; padding: 8px 12px; transform: none; border-radius: 16px; background: rgba(255,255,255,.2); font-size: 10px; line-height: 1.2; letter-spacing: 0; }
.lp .plano--quote { border-color: transparent; background: #e7edff; }
.lp .plano__price-row--quote { align-items: center; gap: 12px; }
.lp .plano__price-row--quote .plano__price { color: var(--v2-brand); font-size: 24px; }
.lp .plano__mascote { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; overflow: hidden; border-radius: 50%; background: #4e47ea; }
.lp .plano__mascote img { width: 35px; height: 39px; object-fit: cover; }
.lp .plano--quote .btn { border: 1.5px solid var(--v2-brand); background: transparent; color: var(--v2-brand); }
.lp .planos__note { margin-top: 24px; color: #18191b; font-size: 16px; line-height: 1.2; letter-spacing: -.01em; }

/* --------------------------------------------------------------------------
   Planos — entrada em cascata

   No desktop os quatro cards entram na tela juntos, entao a revelacao padrao
   fazia os quatro aparecerem praticamente ao mesmo tempo (os 90ms de
   escalonamento do script quase nao se leem). Aqui a entrada vira animacao
   propria, com 150ms entre um card e o outro: da' para acompanhar a leitura da
   esquerda para a direita, terminando no Enterprise.

   Sem quica, como nos cards do heroi: o card sobe ate' o lugar e para la'.

   So' vale a partir de 992px. Abaixo disso a grade e' um carrossel e cada card
   e' revelado quando voce desliza ate' ele -- um atraso de 450ms ali viraria
   demora, nao cascata. No mobile fica a entrada em escala definida no
   carrossel.
   -------------------------------------------------------------------------- */
@keyframes plano-entra {
  0%   { opacity: 0; transform: translateY(46px) scale(.965); }
  55%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (min-width: 992px) {
  /* Nao zerar transition aqui: a entrada e' animation, mas a sombra do hover
     continua sendo transition -- foi o que deixou o hover brusco no desktop. */
  .has-js-reveal .lp .planos__grid .plano.reveal {
    opacity: 0;
    transform: none;
  }

  .has-js-reveal .lp .planos__grid .plano.reveal.is-visible {
    animation: plano-entra .78s cubic-bezier(.16, 1, .3, 1) var(--plano-atraso, 0s) both;
  }

  .lp .planos__grid .plano:nth-child(1) { --plano-atraso: 0s; }
  .lp .planos__grid .plano:nth-child(2) { --plano-atraso: .15s; }
  .lp .planos__grid .plano:nth-child(3) { --plano-atraso: .30s; }
  .lp .planos__grid .plano:nth-child(4) { --plano-atraso: .45s; }
}
/* FAQ */
.lp .faq { padding: 126px 24px; }
.lp .faq__inner { max-width: 900px; }
.lp .faq .sect-head { margin-bottom: 56px; }
.lp .faq__item { padding: 20px 28px; border-radius: 9px; }
.lp .faq__q { font-size: 15px; font-weight: 500; }
.lp .faq__content { overflow: hidden; }
.lp .faq__a { margin: 16px 0 0; font-size: 14px; }

/* CTA e rodapé */
.lp .cta-final {
  padding: 80px 24px 100px;
  background: #2d1a29;
}

.lp .cta-final > .shell { max-width: 1200px; }
.lp .cta-final__grid {
  grid-template-columns: 490px 486px;
  gap: 64px;
  align-items: center;
  padding: 80px;
  border: 1px solid rgba(249,244,241,.3);
}

.lp .cta-final__title {
  max-width: 490px;
  font-size: 64px;
  line-height: 1.2;
  letter-spacing: -.07em;
  text-wrap: initial;
}

.lp .cta-final__lead {
  max-width: 490px;
  margin-top: 8px;
  color: #fff;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0;
}

.lp .form-card { padding: 0; border: 0; border-radius: 0; background: transparent; }
.lp .lp-form { gap: 16px; }
.lp .lp-form input:not([type="submit"]) {
  height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(249,244,241,.3);
  border-radius: 0;
  background: #372032;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

.lp .lp-form input::placeholder { color: rgba(255,255,255,.7); }
.lp .lp-form input[type="submit"] {
  height: 56px;
  margin-top: 8px;
  border-radius: 24px;
  font-family: 'Work Sans', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.02em;
}

/* --------------------------------------------------------------------------
   Estados do formulario

   O verde da versao anterior nao existia em lugar nenhum do projeto. Os dois
   estados agora usam a mesma construcao do resto da secao escura: o fundo dos
   proprios campos (#372032), a borda de 30% que separa os blocos, e o gradiente
   da marca no tracado do icone. O erro segue a mesma forma, so' que em ambar --
   precisa continuar legivel como erro, mas sem sair do tom da pagina.

   Coreografia (a classe .is-visivel e' posta pelo script do rodape):
     0.00s  o painel sobe e aparece
     0.10s  o anel se desenha em volta do icone
     0.16s  sai uma onda suave do centro do icone, uma vez so'
     0.42s  o traco interno se desenha (o "check" ou a barra do alerta)
     0.30s  titulo sobe
     0.38s  corpo sobe
   -------------------------------------------------------------------------- */
.lp .form-msg {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(249, 244, 241, .3);
  border-radius: 16px;
  background: #372032;
  color: #fff;
}

.lp .form-msg__icone {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
}

.lp .form-msg__icone svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.lp .form-msg__anel,
.lp .form-msg__risco {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lp .form-msg--ok .form-msg__anel,
.lp .form-msg--ok .form-msg__risco { stroke: url(#form-grad-ok); }
.lp .form-msg--fail .form-msg__anel,
.lp .form-msg--fail .form-msg__risco { stroke: #f0a53d; }
.lp .form-msg__ponto { fill: #f0a53d; }

/* Onda que sai do icone uma unica vez, prima da do hub de integracoes. */
.lp .form-msg__icone::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -4px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: scale(.55);
  background: radial-gradient(circle closest-side, rgba(247, 37, 133, .38), rgba(78, 71, 234, .16) 58%, transparent 72%);
}

.lp .form-msg--fail .form-msg__icone::before {
  background: radial-gradient(circle closest-side, rgba(240, 165, 61, .34), rgba(240, 165, 61, .12) 58%, transparent 72%);
}

.lp .form-msg__texto { padding-top: 2px; }

.lp .form-msg__titulo {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.02em;
}

.lp .form-msg__corpo {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

.lp .form-msg__corpo a { color: #fff; text-decoration: underline; text-underline-position: from-font; }

.lp .form-msg__voltar {
  display: inline-block;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: none;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.01em;
  text-decoration: underline;
  text-underline-position: from-font;
  cursor: pointer;
  transition: color .2s ease;
}
.lp .form-msg--fail { margin-top: 16px; }

@keyframes form-msg-painel {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes form-msg-traco {
  from { stroke-dashoffset: 1; }
  to   { stroke-dashoffset: 0; }
}

@keyframes form-msg-onda {
  0%   { opacity: 0; transform: scale(.55); }
  25%  { opacity: 1; }
  100% { opacity: 0; transform: scale(2); }
}

@keyframes form-msg-sobe {
  from { opacity: 0; transform: translateY(9px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes form-msg-ponto {
  from { opacity: 0; transform: scale(.2); }
  to   { opacity: 1; transform: scale(1); }
}

.lp .form-msg.is-visivel { animation: form-msg-painel .55s cubic-bezier(.16, 1, .3, 1) both; }

.lp .form-msg.is-visivel .form-msg__anel {
  stroke-dasharray: 1;
  animation: form-msg-traco .72s cubic-bezier(.5, 0, .2, 1) .1s both;
}

.lp .form-msg.is-visivel .form-msg__risco {
  stroke-dasharray: 1;
  animation: form-msg-traco .34s cubic-bezier(.4, 0, .2, 1) .42s both;
}

.lp .form-msg.is-visivel .form-msg__ponto {
  transform-origin: 28px 39.5px;
  animation: form-msg-ponto .3s cubic-bezier(.22, 1, .36, 1) .62s both;
}

.lp .form-msg.is-visivel .form-msg__icone::before { animation: form-msg-onda 1.4s cubic-bezier(.22, 1, .36, 1) .16s both; }
.lp .form-msg.is-visivel .form-msg__titulo { animation: form-msg-sobe .5s cubic-bezier(.16, 1, .3, 1) .3s both; }
.lp .form-msg.is-visivel .form-msg__corpo { animation: form-msg-sobe .5s cubic-bezier(.16, 1, .3, 1) .38s both; }
.lp .form-msg.is-visivel .form-msg__voltar { animation: form-msg-sobe .5s cubic-bezier(.16, 1, .3, 1) .46s both; }

/* O wrapper anima a propria altura na troca form -> mensagem, para o card nao
   dar um pulo quando um bloco sai e o outro entra. */
.lp .form-wrap { overflow: hidden; }

.lp .lp-footer {
  margin-top: 80px;
  padding: 0;
  border-top: 0;
}

.lp .lp-footer__inner { flex-wrap: nowrap; gap: 32px; }
.lp .lp-footer__brand { gap: 12px; }
.lp .lp-footer__brand img { width: 27.637px; height: 96.931px; object-fit: contain; }
.lp .lp-footer__brand > div { display: flex; flex-direction: column; gap: 12px; }
.lp .lp-footer__copy {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: .93;
  letter-spacing: -.07em;
}

.lp .lp-footer__by {
  color: #fff;
  font-size: 18px;
  line-height: .93;
  letter-spacing: -.07em;
}

.lp .lp-footer__by a,
.lp .lp-footer__links a { color: #fff; text-decoration: underline; text-underline-position: from-font; }
.lp .lp-footer__by a { font-weight: 600; }
.lp .lp-footer__links {
  margin-left: auto;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: .93;
  letter-spacing: -.07em;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .lp .btn { height: 48px; }

  .lp .lp-header { top: 16px; padding-inline: var(--gutter); }
  .lp .lp-header__actions { display: none; }
  .lp .lp-header__logo { width: 45px; height: 82px; }
  .lp .lp-header__inner { grid-template-columns: 1fr auto 1fr; }

  .lp .hero { min-height: 0; padding-top: 145px; }
  .lp .hero__title { max-width: initial; font-size: 48px; line-height: 1.02; }

  .lp .hero__sub { max-width: initial; margin-top: 24px; font-size: 18px; line-height: 1.18; }
  .lp .hero__ctas { margin-top: 40px; }
  .lp .hero__ctas .btn { width: 100%; max-width: none; min-width: 0; } 
  /* O palco acompanha a arte, nao a largura inteira do breakpoint. Assim uma
     janela mobile expandida nao transforma largura excedente em altura vazia. */
  .lp .hero__stage {
    width: min(440px, 100%);
    height: min(317px, 84vw);
    aspect-ratio: auto;
    margin: 42px auto 0;
    overflow: visible;
  }
  .lp .hero__art { inset: 28px 0 0; overflow: visible; }
  .lp .hero__art img { top: 0; left: 50%; width: min(440px, 116vw); max-width: none; margin: 0; transform: translateX(-50%); }
  .lp .hero__cards { top: -16px; right: 16px; }
  .lp .hero-card { display: none; width: 112px; margin-top: 0; padding: 8px 9px; border-radius: 12px; }
  .lp .hero-card.is-active { display: flex; }
  .has-js-reveal .lp .hero__stage.is-visible .hero-card.is-active { animation-delay: .18s; }
  .lp .hero-card__src { min-height: 22px; gap: 5px; font-size: 9.5px; }
  .lp .hero-card__src img { width: 18px; height: 18px; }
  .lp .hero-card__value { font-size: 17px; }
  .lp .hero-card__tag { min-height: 16px; padding: 2px 4px 2px 2px; font-size: 7.5px; }
  .lp .hero-card__tag img { width: 10px; height: 10px; }
  .lp .rastro { padding: 56px 16px 0; }
  .lp .rastro__title { font-size: 40px; line-height: 1.12; }
  .lp .rastro__title .desktop-break {
    display: none;
  }
  .lp .rastro__lead { max-width: initial; font-size: 18px; }

  .lp .rastro__cta { width: 100%; margin-top: 48px; }

  .lp .como { padding: 96px 0 0; }
  .lp .como .sect-head { padding: 0 22px; margin-bottom: 28px; }
  .lp .sect-title--grad { font-size: 40px; }
  .lp .como .sect-lead { font-size: 18px; }
  .lp .steps {
    width: 100%;
    max-width: none;
    padding: 18px 24px 28px;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }
  .lp .steps::-webkit-scrollbar,
  .lp .planos__grid::-webkit-scrollbar { display: none; }
  .lp .step { display: flex; flex: 0 0 min(360px, calc(100vw - 48px)); width: auto; min-width: 0; scroll-snap-align: center; }
  .lp .step:nth-child(n) { transform: none; }
  .lp .step__card {
    min-height: 0;
    height: 100%;
    justify-content: flex-start;
    border-radius: 24px;
    box-shadow: 0 10px 28px rgba(27, 25, 48, .12);
  }
  .lp .step__body { padding: 20px 24px 30px; text-align: left; }
  .lp .step__title { margin-bottom: 14px; font-size: 30px; line-height: 1.12; letter-spacing: -.04em; }
  .lp .step__text { color: #494c50; font-size: 17px; line-height: 1.5; letter-spacing: -.01em; }
  .lp .carousel-dots { display: flex; margin-top: 8px; }

  .lp .integra { padding: 98px 16px 102px; }
  .lp .integra .sect-head { padding: 0 6px; }
  .lp .integra .sect-lead { font-size: 18px; }
  .lp .integra-hub { width: 346px; height: 469px; aspect-ratio: auto; margin-top: 40px; }
  .lp .integra-hub__core {
    left: calc(50% + .5px);
    top: calc(50% - .62px);
    width: 279.337px;
    transform: translate(-50%, -50%);
  }
  .lp .integra-hub__node { width: 72px; }
  .lp .integra-hub__node--meta { left: auto; right: 0; top: 49px; }
  .lp .integra-hub__node--whatsapp { left: 50%; top: 0; transform: translateX(-50%); }
  .lp .integra-hub__node--google { left: 1px; top: 49px; }
  .lp .integra-hub__node--hubspot { left: auto; right: 1px; top: 348.5px; }
  .lp .integra-hub__node--rd { left: 0; top: 348.5px; }
  .lp .integra-hub__node--more { left: calc(50% - 1px); top: 397.5px; transform: translateX(-50%); }

  /* No mobile estes dois nos se centralizam com translateX, entao a entrada
     precisa da variante que preserva esse deslocamento. */
  .has-js-reveal .lp .integra-hub.is-visible .integra-hub__node--whatsapp,
  .has-js-reveal .lp .integra-hub.is-visible .integra-hub__node--more {
    animation-name: hub-no-entra-centrado;
  }

  /* No mobile as linhas giram 90deg e o eixo local muda de mao: quem precisa
     do sentido invertido passa a ser a do RD, e a do WhatsApp volta ao normal. */
  .has-js-reveal .lp .integra-hub.is-visible .integra-hub__line--whatsapp {
    animation-name: hub-linha-desenha;
  }
  .has-js-reveal .lp .integra-hub.is-visible .integra-hub__line--rd {
    animation-name: hub-linha-desenha-invertida;
  }
  .lp .integra-hub__line--meta { left: 234.7985px; top: 131.7015px; width: 98.4979px; transform: rotate(-90deg) scaleY(-1); }
  .lp .integra-hub__line--whatsapp { left: calc(50% - 47px); top: 98px; width: 94px; transform: rotate(-90deg); }
  .lp .integra-hub__line--google { left: 13.7985px; top: 131.7015px; width: 98.4979px; transform: rotate(-90deg); }
  .lp .integra-hub__line--hubspot { left: 233.7985px; top: 278.7015px; width: 98.4979px; transform: rotate(90deg); }
  .lp .integra-hub__line--rd { left: 12.7985px; top: 278.7015px; width: 98.4979px; transform: scaleY(-1) rotate(90deg); }
  .lp .integra-hub__line--more { left: calc(50% - 47px); top: 363.5px; width: 94px; transform: rotate(90deg); }
  .lp .integra-hub__dot { width: 8px; }
  .lp .integra-hub__dot--meta { left: 258.5px; top: 206.498px; }
  .lp .integra-hub__dot--whatsapp { left: 174px; top: 145px; }
  .lp .integra-hub__dot--google { left: 88.5955px; top: 206.498px; }
  .lp .integra-hub__dot--hubspot { left: 257.5px; top: 263px; }
  .lp .integra-hub__dot--rd { left: 87.5955px; top: 263px; }
  .lp .integra-hub__dot--more { left: 173px; top: 324.5px; }
  .lp .integra__soon { margin-top: 40px; padding: 6px 16px; font-size: 14px; }
  .lp .integra__cta { width: 100%; margin-top: 44px; }

  .lp .beneficios { padding: 0; }
  .lp .beneficios .shell { width: 100%; max-width: none; border-color: rgba(249,244,241,.3); }
  .lp .beneficios__eyebrow { padding: 64px 48px 24px; }
  .lp .beneficios__title { padding: 0 48px 64px; font-size: 40px; line-height: 1.2; letter-spacing: -.07em; }
  .lp .beneficios__title > span { display: block; }
  .lp .benef-grid { grid-template-columns: 1fr; }
  .lp .benef,
  .lp .benef:nth-child(2n) { height: auto; min-height: 0; padding: 56px 24px; border-right: 0; border-bottom: 1px solid rgba(249,244,241,.3) !important; }
  .lp .benef__title { font-size: 24px; letter-spacing: -.04em; }
  .lp .benef__text { font-size: 16px; line-height: 1.5; }
  .lp .benef:last-child { border-bottom: 0 !important; }

  .lp .planos { padding: 0; padding-top: 64px; overflow: hidden; }
  .lp .planos .shell { width: 100%; max-width: none; padding-inline: 24px; box-sizing: border-box; }
  .lp .planos .sect-head { width: 100%; padding: 0; margin-bottom: 40px; }
  .lp .planos .sect-head .eyebrow { margin-bottom: 25px; }
  .lp .planos .sect-title { font-size: 40px; line-height: 1.2; letter-spacing: -.07em; text-wrap: initial; }
  .lp .planos .sect-head p:not(.sect-lead) { margin-top: 25px; font-size: 18px; line-height: 1.2; letter-spacing: -.05em; }
  .lp .billing-toggle { width: 100%; max-width: 346px; margin-bottom: 32px; }
  .lp .planos__grid {
    display: flex;
    width: calc(100% + 48px);
    max-width: none;
    margin-inline: -24px;
    padding: 0 24px;
    box-sizing: border-box;
    gap: 16px;
    overflow-x: auto;
    /* Sem esta linha o carrossel ganha um scroll VERTICAL fantasma. Quando
       overflow-x vira auto e overflow-y fica visible, o CSS promove o
       overflow-y a auto automaticamente -- e ai' os 28px de translateY que a
       revelacao aplica nos cards ainda nao revelados viram area rolavel, o que
       empurrava o card para fora da vista. O .steps ja' trazia esta linha. */
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 24px;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }

  /* Dentro de carrossel a entrada nao pode subir/descer: o overflow-y: hidden
     cortaria o card durante o movimento. Aqui ela e' so' escala + opacidade. */
  .has-js-reveal .lp .planos__grid .plano.reveal,
  .has-js-reveal .lp .steps .step__card.reveal { transform: scale(.96); }
  .has-js-reveal .lp .planos__grid .plano.reveal.is-visible,
  .has-js-reveal .lp .steps .step__card.reveal.is-visible { transform: none; }
  .lp .plano { flex: 0 0 min(326px, calc(100vw - 48px)); width: min(326px, calc(100vw - 48px)); height: auto; min-height: 480px; scroll-snap-align: center; scroll-snap-stop: always; }
  .lp .plano__desc { font-size: 15px; line-height: 1.4; }
  .lp .plano__feats { font-size: 15px; line-height: 1.4; }
  .lp .plano__trial-note { line-height: 1.4; }
  .lp .plano--pop { order: -1; }
  .lp .planos .carousel-dots { width: 64px; height: 10px; margin: 32px auto 0; gap: 7px; }
  .lp .planos .carousel-dots button { width: 10px; height: 10px; }
  .lp .planos__note { width: 100%; padding: 0; margin-top: 32px; font-size: 14px; line-height: 1.25; letter-spacing: -.01em; }

  .lp .faq { padding: 96px 16px; }
  .lp .faq .sect-head { margin-bottom: 46px; }
  .lp .faq .sect-title { font-size: 34px; }
  .lp .faq__item { padding: 20px 18px; }
  .lp .faq__q { font-size: 16px; }
  .lp .faq__a { font-size: 14px; line-height: 1.6; }

  .lp .cta-final {
    padding: 0;
    border-radius: 0 0 32px 32px;
    overflow: hidden;
  }
  .lp .cta-final > .shell { width: 100%; max-width: none; padding: 0; }
  .lp .cta-final__grid {
    grid-template-columns: 1fr;
    gap: 64px;
    padding: 56px 24px;
    border: 1px solid rgba(249,244,241,.3);
  }
  .lp .cta-final__title { max-width: none; font-size: 48px; line-height: 1.2; letter-spacing: -.07em; }
  .lp .cta-final__lead { max-width: none; font-size: 18px; line-height: 1.4; }
  .lp .form-card { padding: 0; }
  .lp .lp-form input:not([type="submit"]) { height: 48px; }
  .lp .lp-form input[type="submit"] { height: 56px; border-radius: 16px; }
  .lp .ia-check { margin-top: 16px; padding: 44px 22px 48px; gap: 32px; border-radius: 20px; }
  .lp .ia-check__texto { gap: 18px; }
  .lp .ia-check__eyebrow { font-size: 13px; letter-spacing: -.02em; }
  .lp .ia-check__titulo { font-size: 26px; letter-spacing: -.05em; }
  .lp .ia-check__lead { font-size: 15px; letter-spacing: -.02em; }
  .lp .ia-check__ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .lp .ia-check__btn { width: 100%; }

  .lp .lp-footer { margin-top: 0; padding: 80px 24px; border-top: 1px solid rgba(249,244,241,.3); }
  .lp .lp-footer__inner { flex-direction: column-reverse; align-items: center; gap: 56px; text-align: left; }
  .lp .lp-footer__brand { align-items: center; }
  .lp .lp-footer__links { margin-left: 0; font-size: 18px; letter-spacing: -.07em; }
}

@media (max-width: 420px) {
  .lp .hero__copy { padding: 0 14px; }
  .lp .hero__title { font-size: 38px; }
  .lp .hero__art img { width: min(440px, 116vw); margin-bottom: 0; }
  .lp .integra-hub { margin-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .has-js-reveal .lp .hero-card,
  .has-js-reveal .lp .hero__stage.is-visible .hero-card {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .lp .benef__link-arrow { transition: none; }
  .lp .benef__link:hover .benef__link-arrow,
  .lp .benef__link:focus-visible .benef__link-arrow { transform: none; }

  /* Hub de integracoes: nasce pronto, sem coreografia nem respiracao. */
  .has-js-reveal .lp .integra-hub__core img,
  .has-js-reveal .lp .integra-hub__node,
  .has-js-reveal .lp .integra-hub__dot,
  .has-js-reveal .lp .integra-hub__line { opacity: 1; clip-path: none; }
  .has-js-reveal .lp .integra-hub.is-visible .integra-hub__brand,
  .has-js-reveal .lp .integra-hub.is-visible .integra-hub__ring,
  .has-js-reveal .lp .integra-hub.is-visible .integra-hub__line,
  .has-js-reveal .lp .integra-hub.is-visible .integra-hub__dot,
  .has-js-reveal .lp .integra-hub.is-visible .integra-hub__node,
  .has-js-reveal .lp .integra-hub.is-visible .integra-hub__core::after { animation: none; }
  .lp .integra-hub__core::after { display: none; }

  /* Formulario: os estados aparecem prontos, sem tracado nem onda. */
  .lp .form-msg.is-visivel,
  .lp .form-msg.is-visivel .form-msg__anel,
  .lp .form-msg.is-visivel .form-msg__risco,
  .lp .form-msg.is-visivel .form-msg__ponto,
  .lp .form-msg.is-visivel .form-msg__titulo,
  .lp .form-msg.is-visivel .form-msg__corpo,
  .lp .form-msg.is-visivel .form-msg__voltar,
  .lp .form-msg.is-visivel .form-msg__icone::before { animation: none; }
  .lp .form-msg.is-visivel .form-msg__anel,
  .lp .form-msg.is-visivel .form-msg__risco { stroke-dasharray: none; }

  /* Planos: sem cascata, os quatro cards nascem prontos. */
  .has-js-reveal .lp .planos__grid .plano.reveal { opacity: 1; }
  .has-js-reveal .lp .planos__grid .plano.reveal.is-visible { animation: none; }

  /* Hover continua trocando cor; o que some e' o pouco movimento que sobrou. */
  .lp .billing-toggle::before { transition: none; }
  .lp .billing-toggle button,
  .lp .carousel-dots button,
  .lp .btn { transition-property: color, background-color, border-color, box-shadow, opacity; }
  .lp .btn:active,
  .lp .billing-toggle button:active,
  .lp .carousel-dots button:hover,
  .lp .carousel-dots button:active { transform: none; }
}
