/* ==========================================================================
   Landing pública do JFSagro (home_guest).
   Escopo: só a landing. O app usa a paleta do Tailwind configurada no base.html
   — aqui os tons claros vêm de custom properties porque a config do projeto
   sobrescreve green-500/600/700 com verdes escuros, que não têm contraste
   suficiente para texto sobre fundo #050d05.
   ========================================================================== */

:root {
  /* Fundos em camadas */
  --lp-ink: #050d05;
  --lp-ink-2: #081208;
  --lp-ink-3: #0a160a;
  --lp-ink-4: #0d1f0d;

  /* Verde de marca (tons claros, para texto e acento sobre fundo escuro) */
  --lp-leaf: #4ade80;
  --lp-leaf-soft: #86efac;
  --lp-leaf-deep: #16a34a;

  /* WhatsApp — usado só nos elementos de conversa e no botão wa.me */
  --lp-wa: #25d366;
  --lp-wa-deep: #128c7e;
  --lp-wa-bubble: #075e54;

  /* Perfis */
  --lp-amber: #fbbf24;
  --lp-indigo: #818cf8;

  /* Texto */
  --lp-txt: #edf6ed;
  --lp-txt-2: #b6c9ba;
  --lp-txt-3: #93a89a;

  --lp-line: rgba(74, 222, 128, 0.16);
  --lp-line-strong: rgba(74, 222, 128, 0.34);

  --safe-top: env(safe-area-inset-top, 0px);
}

/* Oculta o nav verde do app na landing */
#main-content-container > nav {
  display: none !important;
}

html,
body,
#main-content-container {
  background: var(--lp-ink);
}

.lp {
  background: var(--lp-ink);
  color: var(--lp-txt);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, sans-serif;
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

.lp [id] {
  scroll-margin-top: 5.5rem;
}

.safe-top-pad {
  padding-top: var(--safe-top);
}

/* ── Tipografia display ─────────────────────────────────────────────────── */

.lp-display {
  letter-spacing: -0.035em;
  line-height: 1.03;
  font-weight: 800;
  text-wrap: balance;
}

.lp-display-sm {
  letter-spacing: -0.025em;
  line-height: 1.1;
  font-weight: 800;
  text-wrap: balance;
}

.lp-lead {
  color: var(--lp-txt-2);
  line-height: 1.6;
  text-wrap: pretty;
}

.lp-mute {
  color: var(--lp-txt-3);
}

.lp-eyebrow {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-leaf);
}

.grad-text {
  background: linear-gradient(96deg, var(--lp-leaf), var(--lp-leaf-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ── Superfícies ────────────────────────────────────────────────────────── */

.card-dark {
  position: relative;
  background: linear-gradient(180deg, var(--lp-ink-4) 0%, #0a1a0a 100%);
  border: 1px solid var(--lp-line);
  /* Realce interno de 1px no topo — dá espessura à borda sem peso visual */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 1px 2px rgba(0, 0, 0, 0.4);
  transition: border-color 0.24s ease, transform 0.24s ease,
    box-shadow 0.24s ease;
}

.card-dark:hover {
  border-color: var(--lp-line-strong);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 32px -12px rgba(0, 0, 0, 0.7);
}

.card-feature {
  background: linear-gradient(160deg, #0d2010, #0a1a0a);
  border: 1px solid var(--lp-line-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 48px -20px rgba(74, 222, 128, 0.35);
}

.section-sep {
  border-top: 1px solid rgba(74, 222, 128, 0.07);
}

.band-2 {
  background: var(--lp-ink-2);
}

/* Grão sutil — tira o aspecto "chapado" dos gradientes grandes */
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.halo {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  filter: blur(60px);
  background: radial-gradient(
    circle,
    rgba(74, 222, 128, 0.16) 0%,
    transparent 70%
  );
}

/* ── Pills e selos ──────────────────────────────────────────────────────── */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: var(--lp-leaf-soft);
  backdrop-filter: blur(8px);
}

.pill-wa {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.38);
  color: #6ee7a0;
}

.tag-new {
  font-size: 0.5625rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: var(--lp-leaf);
}

.dot-live {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--lp-leaf);
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  animation: lp-pulse 2.4s ease-out infinite;
}

@keyframes lp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

/* ── Botões ─────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.875rem;
  font-weight: 700;
  transition: transform 0.16s ease, background-color 0.2s ease,
    box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-lg {
  padding: 0.9375rem 1.5rem;
  font-size: 0.9375rem;
}

.btn-md {
  padding: 0.6875rem 1.25rem;
  font-size: 0.875rem;
}

.btn-leaf {
  background: linear-gradient(135deg, #22c55e, var(--lp-leaf-deep));
  color: #04240f;
  box-shadow: 0 8px 28px -10px rgba(34, 197, 94, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-leaf:hover {
  box-shadow: 0 12px 34px -10px rgba(34, 197, 94, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.btn-wa {
  background: var(--lp-wa);
  color: #04240f;
  box-shadow: 0 8px 28px -10px rgba(37, 211, 102, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-wa:hover {
  background: #2ee06f;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--lp-txt);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-amber {
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.42);
  color: #fde68a;
}

.btn-amber:hover {
  background: rgba(250, 204, 21, 0.18);
}

.btn-indigo {
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.42);
  color: #c7d2fe;
}

.btn-indigo:hover {
  background: rgba(99, 102, 241, 0.22);
}

/* ── Landing institucional: plataforma + Solutions ─────────────────────── */

.lp-mobile-link {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.75rem;
  color: var(--lp-txt-2);
  font-size: 0.95rem;
  font-weight: 650;
}

.lp-mobile-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.offer-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--lp-line);
  background: var(--lp-ink-3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.offer-card::after {
  content: "";
  position: absolute;
  width: 15rem;
  height: 15rem;
  right: -7rem;
  bottom: -9rem;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.1);
  filter: blur(35px);
  pointer-events: none;
}

.offer-card-solutions {
  background: linear-gradient(150deg, #0e1d11, #0b1510);
  border-color: rgba(134, 239, 172, 0.22);
}

.offer-card:hover {
  transform: translateY(-3px);
  border-color: var(--lp-line-strong);
}

.pillar-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.075);
  min-height: 12.5rem;
}

.pillar-icon,
.institution-icon {
  width: 2.9rem;
  height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  color: var(--lp-leaf);
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
}

.use-case {
  height: 100%;
}

.use-case-icon {
  width: 2.6rem;
  height: 2.6rem;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  color: var(--lp-wa);
  background: rgba(37, 211, 102, 0.1);
}

.wa-conversation {
  overflow: hidden;
  border-radius: 1.3rem;
  background: #0b141a;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wa-mini-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3.7rem;
  padding: 0.65rem 0.8rem;
  background: #1f2c33;
}

.wa-mini-head img {
  width: 2.15rem;
  height: 2.15rem;
  object-fit: cover;
  border-radius: 999px;
}

.wa-mini-head span,
.wa-mini-head small {
  display: block;
}

.wa-mini-head b {
  color: #fff;
  font-size: 0.78rem;
}

.wa-mini-head small {
  margin-top: 0.08rem;
  color: #8696a0;
  font-size: 0.62rem;
}

.solutions-wrap {
  background: var(--lp-ink);
}

.solutions-intro {
  background:
    linear-gradient(115deg, rgba(8, 18, 8, 0.98), rgba(12, 31, 15, 0.92)),
    repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(74, 222, 128, 0.035) 80px);
  border-top: 1px solid var(--lp-line-strong);
}

.solutions-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(134, 239, 172, 0.32);
  color: var(--lp-leaf-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.solutions-label span {
  color: #fff;
}

.process-card {
  position: relative;
  min-height: 17rem;
  background: linear-gradient(160deg, rgba(13, 31, 13, 0.95), rgba(8, 18, 8, 0.95));
  border: 1px solid var(--lp-line);
}

.process-card:not(:last-child)::after {
  content: "";
  display: none;
  position: absolute;
  top: 2.1rem;
  right: -1.35rem;
  width: 2.7rem;
  height: 1px;
  background: var(--lp-line-strong);
}

.process-num {
  color: var(--lp-leaf);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.capability-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.capability-grid span {
  padding: 0.78rem 1rem;
  border-radius: 0.8rem;
  color: var(--lp-txt-2);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.085);
  font-size: 0.88rem;
  font-weight: 650;
}

.problem-quotes {
  display: grid;
  gap: 0.7rem;
}

.problem-quotes blockquote {
  margin: 0;
  padding: 0.95rem 1.1rem;
  border-left: 2px solid var(--lp-leaf-deep);
  border-radius: 0 0.75rem 0.75rem 0;
  color: var(--lp-txt-2);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.92rem;
}

.institution-card {
  background: linear-gradient(150deg, var(--lp-ink-4), #091509);
  border: 1px solid var(--lp-line);
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--lp-txt-2);
}

.contact-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 0.85rem;
  color: var(--lp-leaf);
  background: rgba(74, 222, 128, 0.1);
}

.contact-email small,
.contact-email strong {
  display: block;
}

.contact-email small {
  font-size: 0.68rem;
  color: var(--lp-txt-3);
}

.contact-email strong {
  margin-top: 0.1rem;
  color: #fff;
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  min-height: 8.5rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-card strong,
.founder-card small {
  display: block;
}

.founder-card strong {
  color: #fff;
  font-size: 0.88rem;
}

.founder-card small {
  margin-top: 0.2rem;
  color: var(--lp-txt-3);
  font-size: 0.7rem;
}

.founder-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--lp-wa);
  font-size: 0.78rem;
  font-weight: 750;
}

.contact-panel {
  background: linear-gradient(155deg, #0e2010, #091509);
  border: 1px solid var(--lp-line-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.contact-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--lp-txt-2);
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-label span {
  color: var(--lp-txt-3);
  font-weight: 500;
}

.contact-input {
  display: block;
  width: 100%;
  min-height: 3rem;
  padding: 0.72rem 0.85rem;
  border-radius: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  outline: none;
  color: var(--lp-txt);
  background: rgba(5, 13, 5, 0.72);
  font-size: 0.9rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-input::placeholder {
  color: #617164;
}

.contact-input:focus {
  border-color: var(--lp-leaf-deep);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.contact-input option {
  color: #111;
  background: #fff;
}

textarea.contact-input {
  min-height: 7.5rem;
  resize: vertical;
}

.field-error,
.contact-error {
  margin-top: 0.35rem;
  color: #fca5a5;
  font-size: 0.76rem;
}

.contact-success {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  padding: 0.9rem 1rem;
  border-radius: 0.8rem;
  color: var(--lp-leaf);
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.22);
}

.contact-success strong,
.contact-success span {
  display: block;
}

.contact-success span {
  margin-top: 0.12rem;
  color: var(--lp-txt-2);
  font-size: 0.8rem;
}

.footer-link {
  color: var(--lp-txt-3);
  font-size: 0.86rem;
  transition: color 0.18s ease;
}

.footer-link:hover {
  color: #fff;
}

@media (min-width: 768px) {
  .process-card:not(:last-child)::after {
    display: block;
  }
}

@media (max-width: 639px) {
  .lp-display {
    overflow-wrap: break-word;
  }

  .btn-lg {
    width: 100%;
  }

  .capability-grid span {
    width: 100%;
  }
}

/* ── Mockup de conversa de WhatsApp ─────────────────────────────────────── */

.wa-phone {
  width: 100%;
  max-width: 21rem;
  border-radius: 2.5rem;
  padding: 0.5rem;
  background: #142014;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.wa-screen {
  border-radius: 2.125rem;
  overflow: hidden;
  background: #0b141a;
  display: flex;
  flex-direction: column;
}

.wa-head {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 0.875rem;
  background: #1f2c33;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.wa-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--lp-wa-deep), var(--lp-wa-bubble));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.wa-body {
  padding: 0.875rem 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* Papel de parede do WhatsApp, sugerido com um gradiente sutil */
  background: radial-gradient(
      1200px 400px at 50% 0%,
      rgba(37, 211, 102, 0.05),
      transparent 70%
    ),
    #0b141a;
}

.wa-msg {
  max-width: 85%;
  padding: 0.4375rem 0.625rem;
  font-size: 0.75rem;
  line-height: 1.45;
  border-radius: 0.5rem;
  position: relative;
  word-break: break-word;
}

.wa-in {
  align-self: flex-start;
  background: #1f2c33;
  color: #e9edef;
  border-top-left-radius: 0.125rem;
}

.wa-out {
  align-self: flex-end;
  background: #005c4b;
  color: #e9edef;
  border-top-right-radius: 0.125rem;
}

.wa-time {
  display: block;
  text-align: right;
  font-size: 0.5625rem;
  color: rgba(233, 237, 239, 0.5);
  margin-top: 0.125rem;
}

/* Botões nativos de resposta rápida da API da Meta */
.wa-btns {
  align-self: flex-start;
  width: 85%;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: 0.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.wa-btn {
  padding: 0.5rem;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #53bdeb;
  background: #1f2c33;
}

/* Cartão de resposta estruturada (ficha do ponto, bula) */
.wa-card {
  align-self: flex-start;
  max-width: 92%;
  background: #1f2c33;
  border-radius: 0.5rem;
  border-top-left-radius: 0.125rem;
  padding: 0.5rem 0.625rem;
  font-size: 0.6875rem;
  line-height: 1.55;
  color: #e9edef;
  /* o cartão de bula traz URL longa; sem isso ela estoura o balão */
  word-break: break-word;
}

.wa-card b {
  color: #fff;
}

/* Miniatura de imagem enviada */
.wa-photo {
  align-self: flex-end;
  width: 8.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #005c4b;
  padding: 0.1875rem;
}

.wa-photo-inner {
  height: 5.25rem;
  border-radius: 0.375rem;
  overflow: hidden;
  background: linear-gradient(150deg, #2f6b31, #86a33a 45%, #b58a2a 78%, #7a4f1d);
  position: relative;
}

.wa-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pin de localização */
.wa-pin {
  align-self: flex-end;
  width: 9.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #005c4b;
  padding: 0.1875rem;
}

.wa-pin-map {
  height: 4.5rem;
  border-radius: 0.375rem;
  background: linear-gradient(135deg, #1c3a22, #2c5a2e 50%, #3f6b33);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Nota de voz */
.wa-voice {
  align-self: flex-end;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #005c4b;
  border-radius: 0.5rem;
  border-top-right-radius: 0.125rem;
  padding: 0.5rem 0.625rem;
  min-width: 11rem;
}

.wa-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 1.125rem;
  flex: 1;
}

.wa-wave i {
  display: block;
  width: 2px;
  border-radius: 1px;
  background: rgba(233, 237, 239, 0.65);
}

.wa-typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 3px;
  padding: 0.5rem 0.6875rem;
  background: #1f2c33;
  border-radius: 0.5rem;
  border-top-left-radius: 0.125rem;
}

.wa-typing span {
  width: 5px;
  height: 5px;
  border-radius: 9999px;
  background: rgba(233, 237, 239, 0.55);
  animation: lp-typing 1.3s infinite ease-in-out;
}

.wa-typing span:nth-child(2) {
  animation-delay: 0.18s;
}

.wa-typing span:nth-child(3) {
  animation-delay: 0.36s;
}

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

/* ── Carrossel das conversas no mobile ─────────────────────────────────── */

.lp-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 84%;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.75rem;
  scrollbar-width: none;
  /* Sangra até a borda da tela no mobile, sem quebrar o container */
  margin-inline: -1rem;
  padding-inline: 1rem;
}

.lp-rail::-webkit-scrollbar {
  display: none;
}

.lp-rail > * {
  scroll-snap-align: center;
}

/* Conversa + legenda: os celulares têm alturas diferentes, então a legenda é
   empurrada para a base para as três ficarem na mesma linha. */
.lp-convo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  height: 100%;
  margin: 0;
}

.lp-convo figcaption {
  margin-top: auto;
  text-align: center;
  max-width: 20rem;
}

@media (min-width: 768px) {
  .lp-rail {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
  }
}

/* ── Lista de checks ────────────────────────────────────────────────────── */

.lp-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--lp-txt-2);
  line-height: 1.55;
}

.lp-check > i:first-child {
  color: var(--lp-leaf);
  margin-top: 0.3rem;
  flex-shrink: 0;
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */

.lp-faq {
  border: 1px solid var(--lp-line);
  border-radius: 1rem;
  background: linear-gradient(180deg, var(--lp-ink-4), #0a1a0a);
  overflow: hidden;
}

.lp-faq summary {
  cursor: pointer;
  padding: 1.125rem 1.25rem;
  font-weight: 700;
  color: var(--lp-txt);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
}

.lp-faq summary::-webkit-details-marker {
  display: none;
}

.lp-faq summary::after {
  content: "\f078"; /* chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.75rem;
  color: var(--lp-leaf);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.lp-faq[open] summary::after {
  transform: rotate(180deg);
}

.lp-faq-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--lp-txt-3);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ── Passos numerados ──────────────────────────────────────────────────── */

.lp-step-num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.875rem;
  flex-shrink: 0;
  color: var(--lp-leaf);
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.32);
}

/* ── Barra fixa de conversão (mobile) ──────────────────────────────────── */

.lp-sticky-cta {
  position: fixed;
  z-index: 45;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem calc(0.625rem + env(safe-area-inset-bottom, 0px));
  background: rgba(5, 13, 5, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--lp-line);
}

/* Sem a barra o rodapé fica atrás dela nos últimos pixels de scroll */
@media (max-width: 1023px) {
  .lp {
    padding-bottom: 4.5rem;
  }
}

/* ── Acessibilidade e movimento ────────────────────────────────────────── */

.lp a:focus-visible,
.lp button:focus-visible,
.lp summary:focus-visible {
  outline: 2px solid var(--lp-leaf);
  outline-offset: 2px;
  border-radius: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .lp *,
  .lp *::before,
  .lp *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .card-dark:hover {
    transform: none;
  }
}
