/* Landing pública do FGJ Account.
   Segue a proporção do guia de marca: 70-80% marfim/branco, 15-25% azul
   institucional, até 5% ouro. O ouro aparece só em ação importante e no fio
   que marca uma conciliação fechada — é o gesto de prestígio do produto, e
   perde o sentido se virar cor de preenchimento.
   Tudo prefixado com .lp- para não colidir com components.css (o sistema). */

.lp {
  background: var(--fgj-white);
  color: var(--fgj-graphite);
  font-size: 16px;
  line-height: 1.6;
}
.lp-shell { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

.lp-display { font-family: var(--fgj-font-title); font-weight: 500; letter-spacing: -0.015em; }
.lp-display em { font-style: italic; color: var(--fgj-navy-deep); }

.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 20px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--fgj-slate);
}
.lp-eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--fgj-gold); }
.lp-eyebrow-light { color: var(--fgj-gold-soft); }

/* ---------------------------------------------------------------- botões */
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 20px; border-radius: 999px; border: 1px solid transparent;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background var(--fgj-transition), color var(--fgj-transition),
              border-color var(--fgj-transition), transform var(--fgj-transition);
}
.lp-btn-lg { padding: 15px 30px; font-size: 15px; }
.lp-btn-block { width: 100%; }
.lp-btn-primary { background: var(--fgj-navy); color: var(--fgj-white); border-color: var(--fgj-navy); }
.lp-btn-primary:hover { background: var(--fgj-navy-deep); transform: translateY(-1px); }
.lp-btn-ghost { color: var(--fgj-navy); border-color: var(--fgj-border-strong); background: transparent; }
.lp-btn-ghost:hover { border-color: var(--fgj-navy); background: var(--fgj-ivory); }
.lp-link {
  color: var(--fgj-navy); text-decoration: none; font-size: 14px; font-weight: 600;
  border-bottom: 1px solid rgba(200, 162, 96, .55); padding-bottom: 1px;
}
.lp-link:hover { border-bottom-color: var(--fgj-gold); }

/* ------------------------------------------------------------------- nav */
.lp-nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, .88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--fgj-border);
}
.lp-nav-inner { display: flex; align-items: center; gap: 32px; height: 88px; }
/* O guia da marca define 140px como largura mínima do logo horizontal em
   interface. Abaixo disso a palavra ACCOUNT deixa de ser legível — era o
   caso com os 30px de altura (78px de largura) usados antes. */
.lp-brand img { width: 146px; height: auto; display: block; }
.lp-nav-links { display: flex; gap: 28px; margin-left: auto; }
.lp-nav-links a {
  font-size: 14px; font-weight: 500; color: var(--fgj-slate); text-decoration: none;
  padding-bottom: 3px; border-bottom: 1px solid transparent; transition: var(--fgj-transition);
}
.lp-nav-links a:hover { color: var(--fgj-navy); border-bottom-color: var(--fgj-gold); }
.lp-nav-actions { display: flex; align-items: center; gap: 20px; }
.lp-cta-curto { display: none; }

/* ------------------------------------------------------------------ hero */
.lp-hero {
  position: relative; padding: 96px 0 104px; overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% 6%, rgba(200, 162, 96, .10), transparent 58%),
    linear-gradient(180deg, var(--fgj-white) 0%, var(--fgj-ivory) 100%);
}
/* Grade de papel milimetrado, quase imperceptível: dá textura de documento
   contábil sem virar decoração. */
.lp-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(to right, rgba(8, 27, 46, .045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(8, 27, 46, .045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(80% 70% at 30% 40%, #000 20%, transparent 78%);
}
.lp-hero-grid {
  position: relative; display: grid; gap: 64px; align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
}
.lp-hero h1 { margin: 0 0 24px; font-size: clamp(40px, 5vw, 62px); line-height: 1.06; }
.lp-lede { margin: 0 0 34px; font-size: 18px; line-height: 1.62; color: var(--fgj-slate); max-width: 30em; }
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.lp-hero-note { margin: 22px 0 0; font-size: 13.5px; color: var(--fgj-gray); }

/* Revelação escalonada uma única vez no carregamento. Não fica em laço: o
   objetivo é apresentar a página, não competir com a leitura. */
.lp-reveal { animation: lp-rise .78s cubic-bezier(.22, .68, .36, 1) both; animation-delay: calc(var(--d) * 110ms); }
@keyframes lp-rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* --------------------------------------------------- razão em conciliação */
.lp-ledger {
  margin: 0; padding: 22px; border-radius: var(--fgj-radius-lg);
  background: var(--fgj-navy); color: var(--fgj-white);
  box-shadow: 0 30px 70px rgba(8, 27, 46, .26);
}
.lp-ledger-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px solid rgba(255, 255, 255, .13);
  font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255, 255, 255, .6);
}
.lp-ledger-title { color: var(--fgj-gold-soft); font-weight: 600; }
.lp-ledger-counter { display: inline-flex; align-items: baseline; gap: 8px; }
.lp-odometer { display: inline-block; height: 1.15em; overflow: hidden; font-variant-numeric: tabular-nums; }
.lp-odometer-track {
  display: flex; flex-direction: column;
  animation: lp-count 3.4s .6s both steps(1, end);
}
.lp-odometer i { font-style: normal; height: 1.15em; line-height: 1.15em; font-size: 15px; font-weight: 700; color: var(--fgj-white); }
@keyframes lp-count {
  0%, 18%   { transform: translateY(0); }
  22%, 39%  { transform: translateY(-20%); }
  43%, 60%  { transform: translateY(-40%); }
  64%, 80%  { transform: translateY(-60%); }
  84%, 100% { transform: translateY(-80%); }
}

.lp-ledger-rows { list-style: none; margin: 0; padding: 0; }
/* padding-right reserva a faixa do selo "Exato": sem isso ele cobria a
   última coluna da linha. */
.lp-pair {
  position: relative; padding: 12px 76px 12px 22px; border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.lp-pair:last-child { border-bottom: 0; }
/* O fio dourado que "fecha" o par: desenha de cima para baixo ligando o
   débito ao crédito. É o único movimento da página, e é o produto inteiro. */
.lp-connector {
  position: absolute; left: 4px; top: 14px; bottom: 14px; width: 2px; border-radius: 2px;
  background: var(--fgj-gold); transform-origin: top; transform: scaleY(0);
  animation: lp-lock .62s cubic-bezier(.4, 0, .2, 1) both;
  animation-delay: calc(.6s + var(--p) * .7s);
}
@keyframes lp-lock { from { transform: scaleY(0); opacity: .2; } to { transform: scaleY(1); opacity: 1; } }
.lp-row { display: grid; grid-template-columns: 16px 82px 1fr; gap: 10px; align-items: baseline; padding: 3px 0; }
.lp-row-doc { font-size: 13px; font-weight: 700; color: var(--fgj-gold-soft); font-variant-numeric: tabular-nums; }
.lp-row-hist { font-size: 13px; color: rgba(255, 255, 255, .72); }
.lp-row-side { font-size: 11px; font-weight: 700; color: rgba(255, 255, 255, .40); }
.lp-badge {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--fgj-navy); background: var(--fgj-gold); padding: 3px 9px; border-radius: 999px;
  opacity: 0; animation: lp-badge .5s both; animation-delay: calc(1.05s + var(--p) * .7s);
}
@keyframes lp-badge { from { opacity: 0; transform: translateY(-50%) translateX(6px); } to { opacity: 1; transform: translateY(-50%); } }

/* -------------------------------------------------------------- seções */
.lp-section { padding: 108px 0; }
.lp-section-ivory { background: var(--fgj-ivory); }
.lp-h2 { margin: 0 0 20px; font-size: clamp(30px, 3.4vw, 42px); line-height: 1.15; max-width: 16em; }
.lp-section-lede { margin: 0 0 52px; font-size: 17px; color: var(--fgj-slate); max-width: 44em; }

.lp-questions { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; grid-template-columns: repeat(3, 1fr); background: var(--fgj-border); border: 1px solid var(--fgj-border); }
.lp-questions li { background: var(--fgj-white); padding: 34px 30px 36px; }
.lp-num { font-family: var(--fgj-font-title); font-size: 15px; color: var(--fgj-gold); letter-spacing: .08em; }
.lp-questions h3 { margin: 12px 0 10px; font-size: 19px; font-weight: 600; letter-spacing: -0.01em; }
.lp-questions p { margin: 0; font-size: 15px; color: var(--fgj-slate); }

.lp-steps { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 34px; grid-template-columns: repeat(4, 1fr); }
.lp-steps li { position: relative; padding-top: 26px; border-top: 1px solid var(--fgj-border-strong); }
.lp-step-n {
  position: absolute; top: -17px; left: 0; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; background: var(--fgj-white);
  border: 1px solid var(--fgj-gold); color: var(--fgj-navy);
  font-family: var(--fgj-font-title); font-size: 15px;
}
.lp-steps h3 { margin: 14px 0 8px; font-size: 18px; font-weight: 600; }
.lp-steps p { margin: 0; font-size: 15px; color: var(--fgj-slate); }
.lp-steps-note { margin: 0; font-size: 15px; color: var(--fgj-navy-deep); font-style: italic; }

.lp-cards { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.lp-card {
  padding: 30px 28px 32px; background: var(--fgj-white);
  border: 1px solid var(--fgj-border); border-radius: var(--fgj-radius-md);
  transition: border-color var(--fgj-transition), box-shadow var(--fgj-transition), transform var(--fgj-transition);
}
.lp-card:hover { border-color: var(--fgj-gold-soft); box-shadow: var(--fgj-shadow-md); transform: translateY(-2px); }
.lp-card h3 { margin: 0 0 10px; font-size: 18px; font-weight: 600; }
.lp-card p { margin: 0; font-size: 15px; color: var(--fgj-slate); }

/* --------------------------------------------------------- rastreabilidade */
.lp-trust { padding: 104px 0; background: var(--fgj-navy); color: var(--fgj-white); }
.lp-trust-grid { display: grid; gap: 68px; grid-template-columns: minmax(0, 1fr) minmax(0, .92fr); align-items: start; }
.lp-h2-light { color: var(--fgj-white); }
.lp-trust-lede { margin: 0; font-size: 17px; color: rgba(255, 255, 255, .72); }
.lp-trust-lede em { color: var(--fgj-gold-soft); font-style: italic; }
.lp-trust-list { list-style: none; margin: 0; padding: 0; }
.lp-trust-list li { display: grid; gap: 6px; padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, .14); }
.lp-trust-list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, .14); }
.lp-trust-list strong { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--fgj-gold); }
.lp-trust-list span { font-size: 16px; color: rgba(255, 255, 255, .8); }

/* ---------------------------------------------------------------- teste */
.lp-trial { display: grid; gap: 64px; grid-template-columns: minmax(0, 1fr) minmax(0, .95fr); align-items: start; }
.lp-trial-points { list-style: none; margin: 0; padding: 0; }
.lp-trial-points li { position: relative; padding: 0 0 14px 24px; font-size: 15.5px; color: var(--fgj-slate); }
.lp-trial-points li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid var(--fgj-gold); }
.lp-trial-form {
  padding: 34px; background: var(--fgj-white); border: 1px solid var(--fgj-border);
  border-radius: var(--fgj-radius-lg); box-shadow: var(--fgj-shadow-md);
  display: grid; gap: 16px; grid-template-columns: 1fr 1fr;
}
.lp-trial-form form { display: contents; }
.lp-field { display: grid; gap: 6px; }
.lp-field-wide, .lp-trial-form button, .lp-form-note, .lp-form-error, .lp-sent { grid-column: 1 / -1; }
.lp-field label { font-size: 13px; font-weight: 600; color: var(--fgj-navy); }
.lp-field input, .lp-field select, .lp-field textarea {
  width: 100%; padding: 11px 13px; font-size: 15px; color: var(--fgj-graphite);
  background: var(--fgj-white); border: 1px solid var(--fgj-border-strong);
  border-radius: var(--fgj-radius-sm); transition: border-color var(--fgj-transition), box-shadow var(--fgj-transition);
}
.lp-field input:focus, .lp-field select:focus, .lp-field textarea:focus {
  outline: none; border-color: var(--fgj-gold); box-shadow: 0 0 0 3px rgba(200, 162, 96, .18);
}
.lp-field textarea { resize: vertical; }
.lp-field.has-error input, .lp-field.has-error select { border-color: var(--fgj-red); }
.lp-field-error, .lp-form-error { font-size: 13px; color: var(--fgj-red); }
.lp-form-note { margin: 0; font-size: 12.5px; color: var(--fgj-gray); text-align: center; }
.lp-sent { text-align: center; padding: 22px 6px; }
.lp-sent-mark {
  display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 16px;
  border-radius: 50%; background: var(--fgj-green-soft); color: var(--fgj-green); font-size: 21px;
}
.lp-sent h3 { margin: 0 0 8px; font-family: var(--fgj-font-title); font-size: 24px; font-weight: 500; }
.lp-sent p { margin: 0 0 18px; font-size: 15px; color: var(--fgj-slate); }

/* --------------------------------------------------------------- rodapé */
.lp-footer { padding: 44px 0; background: var(--fgj-navy); color: rgba(255, 255, 255, .6); border-top: 1px solid rgba(255, 255, 255, .1); }
.lp-footer-inner { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between; }
.lp-footer-logo { width: 132px; height: auto; display: block; margin-bottom: 12px; }
.lp-footer p { margin: 0; font-size: 14px; }
.lp-footer nav { display: flex; flex-wrap: wrap; gap: 26px; }
.lp-footer nav a { font-size: 14px; color: rgba(255, 255, 255, .68); text-decoration: none; }
.lp-footer nav a:hover { color: var(--fgj-gold-soft); }

/* ------------------------------------------------------------ responsivo */
@media (max-width: 1000px) {
  .lp-hero-grid, .lp-trust-grid, .lp-trial { grid-template-columns: 1fr; gap: 48px; }
  .lp-questions { grid-template-columns: repeat(2, 1fr); }
  .lp-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
  .lp-cards { grid-template-columns: repeat(2, 1fr); }
  .lp-nav-links { display: none; }
}
@media (max-width: 640px) {
  .lp-shell { width: calc(100% - 32px); }
  .lp-hero { padding: 64px 0 72px; }
  .lp-section, .lp-trust { padding: 72px 0; }
  .lp-questions, .lp-steps, .lp-cards { grid-template-columns: 1fr; }
  .lp-trial-form { padding: 24px; grid-template-columns: 1fr; }
  .lp-nav-inner { gap: 12px; height: 76px; }
  .lp-nav-actions .lp-link { display: none; }
  .lp-brand img { width: 140px; }
  .lp-cta-longo { display: none; }
  .lp-cta-curto { display: inline; }
  .lp-nav-cta { padding: 10px 16px; font-size: 13.5px; }
}

/* Quem pediu menos movimento recebe o estado final, não a ausência dele:
   a conciliação aparece fechada, que é a informação que importa. */
@media (prefers-reduced-motion: reduce) {
  .lp-reveal, .lp-connector, .lp-badge, .lp-odometer-track { animation: none !important; }
  .lp-reveal, .lp-badge { opacity: 1; transform: none; }
  .lp-badge { transform: translateY(-50%); }
  .lp-connector { transform: scaleY(1); opacity: 1; }
  .lp-odometer-track { transform: translateY(-80%); }
}
