/* Landing page — clean, sem sombras, com o degradê do Instagram como acento. */

.lp { background: #fff; }
.lp-container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- Nav ---------- */
.lp-nav { border-bottom: 1px solid var(--border); background: rgba(255,255,255,.9); backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 50; }
.lp-nav__inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.lp-nav__links { display: flex; align-items: center; gap: 18px; }
.lp-nav__link { color: var(--text); font-weight: 600; font-size: 14.5px; }
.lp-nav__link:hover { color: var(--primary); }
@media (max-width: 640px) { .lp-nav__link { display: none; } }

/* ---------- Hero ---------- */
.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 110px;
  background:
    radial-gradient(60% 50% at 15% 10%, #fff4e0 0%, transparent 60%),
    radial-gradient(50% 45% at 90% 20%, #f2e8ff 0%, transparent 60%),
    radial-gradient(45% 40% at 70% 95%, #ffe9f2 0%, transparent 55%),
    #fff;
  text-align: center;
}
.lp-hero__inner { position: relative; z-index: 2; }

.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-full);
  background: rgba(255,255,255,.8);
  padding: 6px 16px;
  font-size: 13px; font-weight: 700;
  margin-bottom: 22px;
}

.lp-h1 {
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
}
.lp-grad-text {
  background: linear-gradient(100deg, #fa7e1e, #d62976 55%, #962fbf);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Máquina de escrever da promessa (rápido → fácil → barato) */
.lp-type {
  display: inline-block;
  white-space: nowrap;
  /* segura a largura da maior palavra para a linha não "pular" */
  min-width: 4.6ch;
  text-align: left;
}
.lp-type__caret {
  display: none;
  width: 3px;
  height: 0.92em;
  margin-left: 3px;
  vertical-align: -0.12em;
  border-radius: 2px;
  background: #d62976;
}
.lp-type--on .lp-type__caret {
  display: inline-block;
  animation: lp-caret 1s steps(1, end) infinite;
}
@keyframes lp-caret { 0%, 50% { opacity: 1 } 50.01%, 100% { opacity: 0 } }

.lp-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto 30px;
}

.lp-hero__loss {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
}

.lp-hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* CTA com o degradê do Instagram */
.lp-cta-grad {
  --btn-bg: linear-gradient(100deg, #feda75, #fa7e1e 25%, #d62976 60%, #962fbf);
  --btn-fg: #fff;
  --btn-bg-hover: linear-gradient(100deg, #fdd35c, #f97008 25%, #c81e66 60%, #8526ae);
  background: var(--btn-bg);
}
.lp-cta-grad:hover { background: var(--btn-bg-hover); }

.lp-trust { margin-top: 18px; font-size: 13px; color: var(--text-3); }

/* Céu do avião de papel */
.lp-sky {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}
.lp-sky__trail {
  opacity: .55;
  stroke-dashoffset: 0;
  animation: lp-trail 40s linear infinite;
}
@keyframes lp-trail { to { stroke-dashoffset: -600; } }

.lp-plane__bob { animation: lp-bob 2.6s ease-in-out infinite; }
@keyframes lp-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
  .lp-sky__trail, .lp-plane__bob { animation: none; }
  .lp-plane animateMotion { display: none; }
}

/* Avião que segue o mouse (só em telas com ponteiro fino; no toque fica o SMIL) */
.lp-mouse-plane {
  position: absolute; left: 0; top: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s ease;
  will-change: transform;
}
.lp-mouse-plane svg { display: block; margin: -11px 0 0 -26px; }
@media (hover: hover) and (pointer: fine) {
  .lp-plane { display: none; } /* o SMIL sai de cena quando o mouse assume */
}

/* Pontinhos do rastro do mouse */
.lp-dot {
  position: absolute;
  width: 6px; height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: linear-gradient(120deg, #fa7e1e, #d62976);
  pointer-events: none;
  z-index: 2;
  animation: lp-dot-fade 1.6s ease-out forwards;
}
@keyframes lp-dot-fade {
  0% { opacity: .85; transform: scale(1); }
  100% { opacity: 0; transform: scale(.25); }
}

/* ---------- Seções ---------- */
.lp-section { padding: 84px 0; }
.lp-section--tint { background: var(--surface); }
.lp-h2 {
  text-align: center;
  font-size: clamp(24px, 3.4vw, 36px);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.lp-section-sub { text-align: center; color: var(--text-2); max-width: 560px; margin: 0 auto; }

/* Pilares */
.lp-pillar { text-align: left; padding: 26px; }
.lp-pillar h3 { font-size: 19px; margin: 14px 0 6px; }
.lp-pillar p { margin: 0; }
.lp-pillar__icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  display: grid; place-items: center;
}
.lp-pillar__icon svg { width: 22px; height: 22px; }
.lp-pillar__icon--blue { background: var(--primary-tonal); color: var(--primary); }
.lp-pillar__icon--purple { background: #f1e8ff; color: var(--purple); }
.lp-pillar__icon--orange { background: var(--orange-tonal); color: var(--orange); }

/* Prints (moldura de navegador) */
.lp-shot {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
}
.lp-shot img { width: 100%; display: block; }
.lp-shot__bar {
  display: flex; align-items: center; gap: 6px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
}
.lp-shot__bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.lp-shot__bar span:nth-child(1) { background: #fda4af; }
.lp-shot__bar span:nth-child(2) { background: #fcd34d; }
.lp-shot__bar span:nth-child(3) { background: #86efac; }
.lp-shot__bar em {
  font-style: normal; font-size: 12px; color: var(--text-3);
  margin: 0 auto;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-full); padding: 2px 14px;
}
/* Linhas print + explicação (alternadas) */
.lp-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}
.lp-feature--flip .lp-feature__media { order: 2; }
.lp-feature--flip .lp-feature__text { order: 1; }
.lp-feature__text h3 { font-size: 24px; letter-spacing: -0.02em; margin: 10px 0 8px; }
.lp-feature__text p { color: var(--text-2); margin: 0 0 14px; }
.lp-chip-mini {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-full);
  padding: 4px 14px;
  font-size: 12.5px; font-weight: 700;
}
.lp-checks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.lp-checks li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; }
.lp-checks svg { width: 17px; height: 17px; color: var(--green); flex: none; }
.lp-checks code { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 1px 7px; font-size: 12.5px; }
.lp-feature + .lp-feature { margin-top: 48px; }
@media (max-width: 900px) {
  .lp-feature { grid-template-columns: 1fr; gap: 20px; }
  .lp-feature--flip .lp-feature__media { order: 1; }
  .lp-feature--flip .lp-feature__text { order: 2; }
}

/* Passos */
.lp-step { text-align: left; padding: 26px; }
.lp-step h3 { font-size: 18px; margin: 12px 0 6px; }
.lp-step p { margin: 0; }
.lp-step__num {
  width: 34px; height: 34px;
  border-radius: var(--r-full);
  display: grid; place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(120deg, #fa7e1e, #d62976 70%);
}

/* Depoimentos */
.lp-quote { display: flex; flex-direction: column; gap: 12px; padding: 24px; }
.lp-quote p { margin: 0; font-size: 14.5px; line-height: 1.6; flex: 1; }
.lp-stars { color: var(--orange); letter-spacing: 3px; font-size: 16px; }
.lp-quote__who { display: flex; align-items: center; gap: 10px; }
.lp-quote__who strong { display: block; line-height: 1.2; }

/* CTA final */
.lp-final {
  border-radius: var(--r-lg);
  padding: 40px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(100deg, #feda75 0%, #fa7e1e 25%, #d62976 55%, #962fbf 80%, #4f5bd5 100%);
}
.lp-final h2 { color: #fff; margin: 0 0 4px; letter-spacing: -0.02em; }
.lp-final p { color: rgba(255,255,255,.9); margin: 0; }

/* Comparativo "alternativa ao ManyChat" */
.lp-vs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; overflow: hidden; max-width: 880px; margin-left: auto; margin-right: auto; }
.lp-vs__col { padding: 26px 28px; }
.lp-vs__col h3 { font-size: 17px; margin-bottom: 14px; }
.lp-vs__col--us { background: var(--green-tonal); }
.lp-vs__col--them { background: #fff; border-left: 1px solid var(--border); }
.lp-vs__col--them h3 { color: var(--text-2); }
.lp-xs { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.lp-xs li { font-size: 14.5px; color: var(--text-2); }
.lp-center { display: flex; justify-content: center; }
@media (max-width: 760px) {
  .lp-vs { grid-template-columns: 1fr; }
  .lp-vs__col--them { border-left: none; border-top: 1px solid var(--border); }
}

/* FAQ */
.lp-faq { max-width: 760px; }
.lp-faq__item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
  padding: 0 20px;
  margin-top: 10px;
}
.lp-faq__item summary {
  cursor: pointer;
  font-weight: 650;
  font-size: 15.5px;
  padding: 16px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary::after {
  content: "+";
  position: absolute; right: 2px; top: 50%;
  transform: translateY(-50%);
  font-size: 20px; font-weight: 400; color: var(--text-3);
  transition: transform .15s ease;
}
.lp-faq__item[open] summary::after { content: "–"; }
.lp-faq__item p { color: var(--text-2); margin: 0 0 16px; font-size: 14.5px; }
.lp-faq .lp-h2 { margin-bottom: 14px; }

/* Rodapé — azul escuro combinando com a logo dark */
.lp-footer { background: #170d36; padding: 34px 0; }
.lp-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.lp-footer__brand { display: flex; align-items: center; gap: 12px; }
.lp-footer__brand strong { display: block; color: #fff; font-size: 15px; }
.lp-footer__brand span { display: block; color: rgba(255,255,255,.55); font-size: 12.5px; }
.lp-footer__logo { width: 46px; height: 46px; border-radius: 12px; }
.lp-footer__links { display: flex; gap: 18px; font-size: 14px; }
.lp-footer__links a { color: rgba(255,255,255,.75); }
.lp-footer__links a:hover { color: #fff; }
.lp-footer__copy { color: rgba(255,255,255,.45); font-size: 13px; }

.lp-nav__logo { height: 40px; width: auto; display: block; }

/* ---------- Preços ---------- */
.lp-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 780px;
  margin-left: auto; margin-right: auto;
  align-items: stretch;
}
.lp-price {
  position: relative;
  display: flex; flex-direction: column;
  gap: 16px;
  padding: 30px 28px;
  text-align: left;
}
.lp-price__name { font-size: 18px; margin: 0; letter-spacing: -0.01em; }
.lp-price__value {
  font-size: 40px; font-weight: 800; letter-spacing: -0.03em; line-height: 1;
}
.lp-price__value span {
  font-size: 15px; font-weight: 600; letter-spacing: 0;
  color: var(--text-3);
}
.lp-price__checks { flex: 1; }
.lp-price__note { margin: 0; font-size: 12.5px; color: var(--text-3); }
.lp-price--featured { border: 2px solid #d62976; }
.lp-price__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(100deg, #fa7e1e, #d62976 60%, #962fbf);
  color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .02em;
  border-radius: var(--r-full);
  padding: 5px 14px;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .lp-price-grid { grid-template-columns: 1fr; max-width: 460px; }
}
