:root {
  --lp-ink: #000000;
  --lp-ink-soft: #1a1a1a;
  --lp-mist: #f5f5f5;
  --lp-paper: #fafafa;
  --lp-accent: #ff4800;
  --lp-accent-deep: #e03f00;
  --lp-teal: #ff4800;
  --lp-teal-deep: #cc3a00;
  --lp-sky: #ff5e1f;
  --lp-text: #111111;
  --lp-muted: #5c5c5c;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.lp {
  margin: 0;
  color: var(--lp-text);
  background: var(--lp-paper);
  font-family: Manrope, "Segoe UI", sans-serif;
  line-height: 1.55;
}

.lp-shell {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.lp-brand {
  margin: 0 0 1rem;
  font-family: Syne, sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(255, 255, 255, .78);
}

.lp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 3.5rem 0;
  background:
    radial-gradient(700px 360px at 85% 15%, rgba(255, 72, 0, .28), transparent 60%),
    linear-gradient(160deg, #000000 0%, #141414 55%, #1a0c06 100%);
  color: #f7faf8;
  overflow: hidden;
}

.lp-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.lp-hero__glow--a {
  width: 420px;
  height: 420px;
  top: -80px;
  right: 8%;
  background: rgba(255, 72, 0, .4);
}

.lp-hero__glow--b {
  width: 360px;
  height: 360px;
  bottom: -100px;
  left: 5%;
  background: rgba(255, 72, 0, .18);
}

.lp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.5rem;
  align-items: center;
}

.lp-hero__title {
  margin: 0;
  font-family: Syne, sans-serif;
  font-weight: 800;
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -.02em;
}

.lp-hero__sub {
  margin: 1rem 0 0;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: rgba(247, 250, 248, .9);
  max-width: 34rem;
}

.lp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

/* Chips no estilo Hotmart: retângulo branco, raio médio (não pill) */
.lp-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.15rem;
}

.lp-feature {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 2.5rem;
  padding: .55rem 1rem;
  border-radius: .75rem;
  background: #fff;
  color: #111827;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.lp-feature__dot {
  width: .65rem;
  height: .65rem;
  border-radius: .2rem;
  flex-shrink: 0;
  background: #ff4800;
}

.lp-feature__dot--teal {
  background: #111111;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 2.85rem;
  padding: .75rem 1.35rem;
  border-radius: .75rem;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.lp-hero__cover {
  padding-bottom: 1.75rem;
}

.lp-hero-cover {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
  overflow: visible;
  transform: rotate(1.5deg);
  animation: lp-cover-in .7s ease both;
}

.lp-hero-cover__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.25;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, .35),
    0 0 0 4px rgba(255, 255, 255, .12);
}

.lp-hero-cover__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-hero-cover__media--fallback {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(160deg, #ff4800, #1a1a1a);
  font-family: Syne, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.lp-hero-cover__overlay {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, .28) 45%,
    rgba(0, 0, 0, .72) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.lp-hero-cover__badges {
  position: absolute;
  left: .65rem;
  right: .65rem;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  transform: translateY(42%);
}

.lp-cover-btn {
  display: flex;
  align-items: center;
  gap: .45rem;
  min-height: 3.15rem;
  padding: .55rem .7rem;
  border-radius: .9rem;
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, .35),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}

.lp-cover-btn--pdf {
  background: linear-gradient(145deg, #ff4800, #e03f00);
  color: #fff;
}

.lp-cover-btn--app {
  background: linear-gradient(145deg, #ffffff, #f3f3f3);
  color: #111;
  border-color: rgba(255, 255, 255, .7);
}

.lp-cover-btn__icon {
  width: 1.85rem;
  height: 1.85rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: .55rem;
  background: rgba(0, 0, 0, .18);
}

.lp-cover-btn--app .lp-cover-btn__icon {
  background: rgba(255, 72, 0, .12);
  color: #ff4800;
}

.lp-cover-btn__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.lp-cover-btn__text {
  display: grid;
  gap: .05rem;
  min-width: 0;
  line-height: 1.15;
}

.lp-cover-btn__text strong {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: -.01em;
}

.lp-cover-btn__text small {
  font-size: .65rem;
  font-weight: 600;
  opacity: .82;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes lp-cover-in {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(1.5deg) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(1.5deg) scale(1);
  }
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 2.85rem;
  padding: .7rem 1.25rem;
  border-radius: .55rem;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.lp-btn:hover { transform: translateY(-1px); }

.lp-btn--primary {
  background: var(--lp-accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(255, 72, 0, .4);
}

.lp-btn--primary:hover {
  background: #ff5e1f;
  color: #fff;
  box-shadow: 0 10px 26px rgba(255, 72, 0, .5);
}

.lp-btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: #f7faf8;
  border-color: rgba(247, 250, 248, .4);
}

.lp-btn--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.lp-btn--lg {
  min-height: 3.15rem;
  padding-inline: 1.5rem;
  font-size: 1.02rem;
}

.lp-section {
  padding: 4.5rem 0;
}

.lp-kicker {
  margin: 0 0 .65rem;
  font-family: Syne, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lp-teal);
}

.lp-h2 {
  margin: 0;
  font-family: Syne, sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3.5vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  max-width: 18ch;
}

.lp-lead {
  margin: 1rem 0 0;
  color: var(--lp-muted);
  font-size: 1.05rem;
  max-width: 40rem;
}

.lp-problem {
  background:
    radial-gradient(600px 240px at 0% 0%, rgba(255, 72, 0, .1), transparent 60%),
    var(--lp-mist);
}

.lp-problem__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem 2.5rem;
  align-items: start;
}

.lp-problem__main .lp-lead {
  max-width: 40rem;
}

.lp-pain {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: .75rem;
  max-width: none;
}

.lp-price-card {
  position: sticky;
  top: 1.25rem;
  padding: 1.6rem 1.5rem 1.45rem;
  border-radius: 1.15rem;
  background: linear-gradient(160deg, #1a1a1a 0%, #2a1610 55%, #3a1f12 100%);
  color: #fff;
  box-shadow:
    0 18px 40px rgba(255, 72, 0, .28),
    0 8px 18px rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 120, 60, .35);
}

.lp-price-card__label {
  margin: 0 0 .35rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}

.lp-price-card__value {
  margin: 0;
  font-family: Syne, sans-serif;
  font-size: clamp(2.2rem, 4vw, 2.85rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 2px 12px rgba(255, 72, 0, .35);
}

.lp-price-card__note {
  margin: .55rem 0 1.15rem;
  font-size: .92rem;
  color: rgba(255, 255, 255, .78);
}

.lp-btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
}

.lp-price-card__perks {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  gap: .45rem;
}

.lp-price-card__perks li {
  position: relative;
  padding-left: 1.15rem;
  font-size: .88rem;
  color: rgba(255, 255, 255, .82);
}

.lp-price-card__perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .45rem;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: #ff4800;
}

.lp-offer__price {
  margin: .85rem 0 1rem;
  font-family: Syne, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #ff4800;
  line-height: 1.1;
}

.lp-pain li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: #fff;
  border-radius: .85rem;
  border: 1px solid #e8e8e8;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .04);
}

.lp-pain__n {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Syne, sans-serif;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff4800, #ff7a3d);
}

.lp-solution {
  background: #fff;
}

.lp-solution__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  align-items: center;
}

.lp-checks {
  list-style: none;
  margin: 1.4rem 0 1.6rem;
  padding: 0;
  display: grid;
  gap: .55rem;
}

.lp-checks li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--lp-ink-soft);
  font-weight: 600;
}

.lp-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4800, #111111);
}

.lp-cover-frame {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .18);
  aspect-ratio: 1 / 1.15;
  background: linear-gradient(160deg, #ff4800, #1a1a1a);
}

.lp-cover-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-cover-fallback {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  color: #ecfdf5;
  font-family: Syne, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.lp-extras {
  background:
    radial-gradient(500px 220px at 100% 0%, rgba(255, 72, 0, .12), transparent 55%),
    linear-gradient(180deg, #fff7f2 0%, #f5f5f5 100%);
}

.lp-extras__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}

.lp-extra-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.35rem 1.35rem 1.4rem;
  border: 1px solid transparent;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.lp-extra-card--orange {
  border-color: #ffc4a8;
  background: linear-gradient(180deg, #fff 0%, #fff7f2 100%);
}

.lp-extra-card--teal {
  border-color: #d4d4d4;
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

.lp-extra-card__icon {
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: .75rem;
  color: var(--lp-accent);
}

.lp-extra-card--teal .lp-extra-card__icon {
  color: var(--lp-teal);
}

.lp-extra-card__icon svg {
  width: 100%;
  height: 100%;
}

.lp-extra-card__title {
  margin: 0;
  font-family: Syne, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lp-ink);
}

.lp-extra-card__text {
  margin: .55rem 0 0;
  color: var(--lp-muted);
  font-size: .98rem;
}

.lp-inside {
  background: #fff;
  border-block: 1px solid #ececec;
}

.lp-chapters {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}

.lp-chapters li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  align-items: baseline;
  padding: .95rem 1rem;
  background: linear-gradient(90deg, #fff4ef, #f5f5f5);
  border-radius: .7rem;
  border: 1px solid #ffd5c2;
}

.lp-chapters__num {
  font-family: Syne, sans-serif;
  font-weight: 700;
  color: var(--lp-teal-deep);
}

.lp-chapters__title {
  font-weight: 600;
}

.lp-offer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(520px 280px at 90% 0%, rgba(255, 72, 0, .35), transparent 55%),
    linear-gradient(120deg, #000000 0%, #141414 55%, #1a0c06 100%);
  color: #f7faf8;
}

.lp-offer__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -120px;
  border-radius: 50%;
  background: rgba(255, 72, 0, .28);
  filter: blur(30px);
  pointer-events: none;
}

.lp-offer .lp-h2 {
  max-width: 22ch;
  color: #fff;
}

.lp-offer .lp-lead {
  color: rgba(247, 250, 248, .85);
  margin-bottom: 1.4rem;
}

.lp-offer__box {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.75rem;
  align-items: center;
  max-width: 900px;
}

.lp-offer__cover {
  width: 120px;
  aspect-ratio: 1 / 1.25;
  border-radius: .7rem;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .3);
  border: 2px solid rgba(255, 255, 255, .25);
}

.lp-offer__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lp-fine {
  margin: .9rem 0 0;
  font-size: .85rem;
  color: rgba(247, 250, 248, .65);
}

.lp-footer {
  padding: 1.25rem 0;
  background: #000000;
  color: rgba(247, 250, 248, .7);
  font-size: .82rem;
}

.lp-footer .lp-shell {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  justify-content: space-between;
}

.lp-footer__note { max-width: 34rem; }

@media (max-width: 900px) {
  .lp-hero__grid,
  .lp-solution__grid,
  .lp-extras__grid,
  .lp-offer__box,
  .lp-problem__grid {
    grid-template-columns: 1fr;
  }

  .lp-price-card {
    position: static;
    order: -1;
  }

  .lp-hero {
    min-height: auto;
    padding: 3rem 0 2.5rem;
    align-items: flex-start;
  }

  .lp-hero-cover {
    max-width: 280px;
    transform: none;
    animation: none;
  }

  .lp-hero__cover {
    padding-bottom: 1.5rem;
  }

  .lp-hero-cover__badges {
    transform: translateY(38%);
  }

  .lp-cover-btn {
    min-height: 2.75rem;
    padding: .45rem .5rem;
    gap: .35rem;
  }

  .lp-cover-btn__text strong {
    font-size: .68rem;
  }

  .lp-cover-btn__text small {
    font-size: .56rem;
  }

  .lp-cover-frame {
    max-width: 320px;
  }

  .lp-offer__cover {
    width: 96px;
  }

  .lp-h2 { max-width: none; }
}
