/**
 * LP — Viver de Produto Digital (lt-vpd) · padrão GSP
 * IDV herdada da marca José Rengel — tokens em ./tokens.css
 */

@import url("./tokens.css?v=20260811z");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--jr-font-text);
  font-size: 16px;
  line-height: 1.47;
  color: var(--jr-white);
  background: var(--jr-navy-950);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
}

/* ——— Ambient (assinatura da marca) ——— */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ambient__lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 96px,
      rgba(59, 158, 255, 0.035) 96px,
      rgba(59, 158, 255, 0.035) 97px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 120px,
      rgba(94, 184, 255, 0.02) 120px,
      rgba(94, 184, 255, 0.02) 121px
    );
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 85%);
}

.ambient__glow {
  position: absolute;
  width: 60vw;
  height: 50vh;
  top: -10%;
  left: 20%;
  background: radial-gradient(ellipse, rgba(59, 158, 255, 0.12) 0%, transparent 70%);
  filter: blur(40px);
}

.page-shell {
  position: relative;
  z-index: 1;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(760px, calc(100% - 40px));
  margin-inline: auto;
}

/* ——— [0] Faixa urgência (estilo Rita) ——— */
.urgency {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 12px 20px;
  background-color: #e01837; /* fallback Safari / CSS antigo em cache */
  background-image: linear-gradient(
    90deg,
    #c4122e 0%,
    #e01837 45%,
    #a50e24 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 20px rgba(196, 18, 46, 0.55);
  color: #fff;
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 5;
  -webkit-transform: translateZ(0);
}

.urgency__line {
  display: block;
  width: 100%;
  text-align: center;
}

.urgency strong {
  color: #fff;
  font-weight: 700;
}

.urgency #urgency-date {
  display: inline;
  min-width: 0;
  text-align: inherit;
}

.js-countdown {
  font-variant-numeric: tabular-nums;
  color: var(--jr-white);
  background: rgba(2, 6, 15, 0.45);
  border: 1px solid rgba(94, 184, 255, 0.4);
  border-radius: 8px;
  padding: 1px 8px;
  margin-left: 4px;
}

/* ——— Eyebrow ——— */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--jr-font-text);
  font-size: 14px;
  font-weight: 600;
  color: var(--jr-electric-bright);
  letter-spacing: 0.01em;
}

.eyebrow span {
  color: var(--jr-text-dim);
  font-weight: 400;
}

.eyebrow__mark {
  width: 16px;
  height: 16px;
  color: var(--jr-electric-bright);
}

.eyebrow__ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-left: 2px;
  color: var(--jr-electric-bright);
  transition: color 0.15s ease, transform 0.15s ease;
}

.eyebrow__ig svg {
  width: 18px;
  height: 18px;
  display: block;
}

.eyebrow__ig:hover {
  color: #fff;
  transform: translateY(-1px);
}

/* ——— [1] Hero ——— */
.hero {
  position: relative;
  padding: 56px 0 64px;
  background: var(--jr-grad-hero);
  overflow: hidden;
}

.hero__grid {
  display: flex;
  justify-content: center;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 720px;
  width: 100%;
}

.hero__top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero__logo {
  width: 180px;
  height: auto;
  display: block;
  margin-inline: auto;
}

.hero__title {
  font-family: var(--jr-font-display);
  font-size: 43px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.hero__title-accent {
  color: var(--jr-electric-bright);
}

.offer h2 em {
  font-style: normal;
  color: var(--jr-electric-bright);
}

.hero__sub {
  font-size: var(--jr-text-body-l);
  color: var(--jr-white);
  max-width: 600px;
  line-height: 1.55;
}

.hero__sub strong {
  color: var(--jr-electric-bright);
  font-weight: 700;
}

.hero__sub strong.hero__sub-lead {
  color: inherit;
  font-weight: 700;
}

/* ——— Pricebox (De/Por) ——— */
.pricebox {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  background: var(--jr-glass);
  border: 1px solid rgba(94, 184, 255, 0.35);
  border-radius: 16px;
  padding: 14px 28px;
}

.pricebox__line {
  font-size: 18px;
  color: var(--jr-text-dim);
  line-height: 1.3;
}

.pricebox__line s {
  color: #ef4444;
  font-weight: 700;
  text-decoration-thickness: 2px;
  opacity: 1;
}

.pricebox__price {
  font-family: var(--jr-font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #4ade80;
  line-height: 1;
  text-shadow: 0 0 24px rgba(74, 222, 128, 0.4);
}

.pricebox--big {
  padding: 18px 36px;
}

.pricebox--big .pricebox__price {
  font-size: 56px;
}

.hero__disclaimer {
  margin: -6px 0 0;
  max-width: 420px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: #fbbf24;
  text-align: center;
}

/* ——— Prova de mercado ——— */
.proof {
  padding: 72px 0 40px;
}

.proof__intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.proof__intro h2 {
  font-family: var(--jr-font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 640px;
}

.proof__intro h2 em {
  font-style: normal;
  color: var(--jr-electric-bright);
}

.proof__lead {
  margin: 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--jr-text-dim);
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.proof__card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(2, 6, 15, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.proof__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(59, 158, 255, 0.22);
}

.proof__card img {
  display: block;
  width: 100%;
  height: auto;
}

.proof__cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* ——— Funciona para mim? (nichos) ——— */
.for-me {
  padding: 72px 0 56px;
  overflow: hidden;
}

.for-me__intro {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.for-me__intro h2 {
  font-family: var(--jr-font-display);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 450px;
}

.for-me__intro h2 em {
  font-style: normal;
  color: var(--jr-electric-bright);
}

.for-me__lead {
  margin: 0;
  max-width: 590px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--jr-text-dim);
}

.for-me__lead-em {
  color: var(--jr-electric-bright);
  font-weight: 700;
}

.for-me__cloud {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.for-me__row {
  overflow: hidden;
  width: 100%;
}

.for-me__track {
  display: flex;
  width: max-content;
  gap: 10px;
  will-change: transform;
}

.for-me__row--ltr .for-me__track {
  animation: for-me-ltr 42s linear infinite;
}

.for-me__row--rtl .for-me__track {
  animation: for-me-rtl 42s linear infinite;
}

.for-me__row--fast .for-me__track {
  animation-duration: 32s;
}

.for-me__row--mid .for-me__track {
  animation-duration: 44s;
}

.for-me__row--slow .for-me__track {
  animation-duration: 56s;
}

.for-me__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 22px rgba(2, 6, 15, 0.18);
  color: #0f172a;
  font-family: var(--jr-font-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.for-me__pill:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(59, 158, 255, 0.28);
}

@keyframes for-me-ltr {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes for-me-rtl {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .for-me__track {
    animation: none !important;
    flex-wrap: wrap;
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
    justify-content: center;
  }

  .for-me__row {
    overflow: visible;
  }

  .for-me__cloud {
    mask-image: none;
    -webkit-mask-image: none;
    gap: 10px;
  }
}

/* ——— Bônus pós-timeline ——— */
.bonus {
  padding: 24px 0 64px;
}

.bonus__card {
  text-align: center;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--jr-radius-bento);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: #0f172a;
}

.bonus__lab-logo {
  display: block;
  width: min(280px, 72%);
  height: auto;
  margin: 8px auto 0;
}

.bonus__badge-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.bonus__zoom {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px rgba(45, 140, 255, 0.3));
}

.bonus__zoom svg {
  display: block;
  width: 100%;
  height: 100%;
}

.bonus__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: var(--jr-radius-pill);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #15803d;
}

.bonus__badge svg {
  width: 14px;
  height: 14px;
  color: #15803d;
}

.bonus__card h2 {
  font-family: var(--jr-font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 520px;
  color: #0f172a;
}

.bonus__card h2 em {
  font-style: normal;
  color: #2563eb;
}

.bonus__sub {
  font-size: var(--jr-text-body-l);
  color: #475569;
  max-width: 520px;
  line-height: 1.55;
}

.bonus__sub strong.bonus__sub-lead {
  color: #0f172a;
  font-weight: 700;
}

.bonus__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  width: 100%;
  max-width: 480px;
  margin-top: 4px;
}

.bonus__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 12px 16px;
}

.bonus__list svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: #16a34a;
}

.bonus__punch {
  margin-top: 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--jr-ice);
  max-width: 40ch;
  line-height: 1.4;
}

.bonus__punch strong {
  color: #4ade80;
  font-weight: 800;
  font-size: 1.15em;
}

@media (max-width: 880px) {
  .bonus__card {
    padding: 36px 22px;
  }

  .bonus__lab-logo {
    width: min(220px, 78%);
  }

  .bonus__card h2 {
    max-width: none;
  }
}

/* ——— CTA (mesmo botão das 7 Chaves do Desejo) ——— */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 64px;
  padding: 14px 28px 14px 32px;
  background: linear-gradient(90deg, #0c6b3c 0%, #158a4a 50%, #1faa5c 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow:
    0 8px 24px rgba(15, 122, 69, 0.38),
    0 2px 0 rgba(255, 255, 255, 0.22) inset;
}

.cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  text-decoration: none;
  box-shadow:
    0 14px 36px rgba(15, 122, 69, 0.48),
    0 2px 0 rgba(255, 255, 255, 0.28) inset;
}

.cta-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent,
    rgba(255, 255, 255, 0.32),
    transparent
  );
  animation: ctaShine 2.6s infinite;
}

@keyframes ctaShine {
  0% {
    left: -60%;
  }
  60% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

.cta-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.cta-btn__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

.cta-btn__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
}

.cta-btn__icon {
  width: 28px;
  height: 28px;
  flex: none;
}

.cta-btn__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (prefers-reduced-motion: reduce) {
  .cta-btn::after {
    animation: none;
  }
}

/* Hero visual */
.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__card {
  position: relative;
  border-radius: var(--jr-radius-bento);
  overflow: hidden;
  box-shadow: var(--jr-glow-card);
  max-width: 420px;
}

.hero__card img {
  width: 100%;
  height: auto;
}

.hero__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 6, 15, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(94, 184, 255, 0.45);
  border-radius: var(--jr-radius-pill);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--jr-white);
}

.hero__badge svg {
  width: 15px;
  height: 15px;
  color: var(--jr-electric-bright);
}

/* ——— Marquee ——— */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(94, 184, 255, 0.25);
  border-bottom: 1px solid rgba(94, 184, 255, 0.25);
  background: rgba(10, 22, 40, 0.6);
  padding: 14px 0;
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
}

.marquee__track span {
  font-family: var(--jr-font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--jr-ice);
}

.marquee__track i {
  font-style: normal;
  font-size: 12px;
  color: var(--jr-electric);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

/* ——— [2] Como funciona na prática (timeline/chat) ——— */
.how {
  padding: 80px 0 64px;
}

.how__head {
  text-align: center;
  margin-bottom: 44px;
}

.how__head h2 {
  max-width: 470px;
  margin-inline: auto;
}

.how h2,
.offer h2,
.expert h2 {
  font-family: var(--jr-font-display);
  font-size: var(--jr-text-title-m);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.offer h2 {
  max-width: 540px;
}

.how h2 em {
  font-style: normal;
  color: var(--jr-electric-bright);
}

.how__lead {
  margin-top: 18px;
  font-size: var(--jr-text-body-l);
  color: var(--jr-text-dim);
}

.how__timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how__step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  width: 100%;
  max-width: 560px;
}

.how__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--jr-grad-electric);
  color: var(--jr-white);
  font-family: var(--jr-font-display);
  font-size: 17px;
  font-weight: 700;
  flex: none;
  box-shadow: 0 0 20px rgba(59, 158, 255, 0.45);
}

.how__dot--final {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.5);
}

.how__line {
  width: 2px;
  flex: 1;
  margin: 8px 0;
  background: linear-gradient(
    180deg,
    rgba(94, 184, 255, 0.6) 0%,
    rgba(59, 158, 255, 0.15) 100%
  );
  border-radius: 2px;
}

.how__content {
  padding-bottom: 44px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.how__step--last .how__content {
  padding-bottom: 0;
}

.how__content h3 {
  font-family: var(--jr-font-display);
  font-size: var(--jr-text-title-s);
  font-weight: 600;
  letter-spacing: -0.01em;
  padding-top: 8px;
}

.how__content > p {
  font-size: 16px;
  color: var(--jr-text-dim);
  max-width: 52ch;
}

.how__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.45);
  border-radius: var(--jr-radius-pill);
  padding: 7px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #4ade80;
  animation: chipPulse 3.6s ease-in-out infinite;
}

.how__chip svg {
  width: 14px;
  height: 14px;
  animation: checkPop 3.6s ease-in-out infinite;
}

@keyframes chipPulse {
  0%,
  18% {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.55);
  }
  32%,
  86% {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.45);
    color: #4ade80;
  }
  100% {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.55);
  }
}

@keyframes checkPop {
  0%,
  18% {
    transform: scale(0);
    opacity: 0;
  }
  32%,
  86% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

/* Texto rotativo (nichos) */
.how__rotate {
  display: inline-block;
  transition: opacity 0.55s ease;
  will-change: opacity;
}

.how__rotate.is-swapping {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .how__chip,
  .how__chip svg {
    animation: none;
  }

  .how__rotate {
    transition: none;
  }
}

/* Chat do passo 2 */
.how__chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 520px;
}

.how__bubble {
  border-radius: 18px;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.how__bubble--ia {
  align-self: flex-start;
  background: var(--jr-glass-strong);
  border: 1px solid var(--jr-glass-border);
  color: var(--jr-white);
  border-bottom-left-radius: 6px;
  max-width: 90%;
  backdrop-filter: blur(12px);
}

.how__bubble--voce {
  align-self: flex-end;
  background: #f5f5f7;
  color: #1d1d1f;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom-right-radius: 6px;
  max-width: 92%;
  min-height: 68px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.how__bubble--voce .how__who {
  color: #0071e3;
  opacity: 1;
}

.how__bubble--voce .how__rotate {
  white-space: nowrap;
}

.how__who {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.how__who svg {
  width: 12px;
  height: 12px;
}

/* Outputs do passo 3 */
.how__outputs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--jr-glass);
  border: 1px solid var(--jr-glass-border);
  border-radius: var(--jr-radius-bento-sm);
  padding: 20px 22px;
  width: 100%;
  max-width: 480px;
  backdrop-filter: blur(12px);
}

.how__outputs li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--jr-text-dim);
}

.how__outputs strong {
  color: var(--jr-white);
}

.how__outputs svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 3px;
  color: var(--jr-success);
}

/* Resultado do passo 4 */
.how__result {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(
    160deg,
    rgba(15, 39, 68, 0.9) 0%,
    rgba(5, 10, 20, 0.95) 100%
  );
  border-radius: var(--jr-radius-bento-sm);
  box-shadow: var(--jr-glow-card);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how__result-title {
  font-family: var(--jr-font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.how__result-title em {
  font-style: normal;
  color: var(--jr-electric-bright);
}

.how__notifs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.how__notif {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px 14px;
  backdrop-filter: blur(10px);
}

.how__notif-icon {
  font-size: 20px;
  flex: none;
}

.how__notif-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: var(--jr-text-dim);
  flex: 1;
  min-width: 0;
}

.how__notif-text strong {
  font-size: 14px;
  color: var(--jr-white);
}

.how__notif-time {
  font-size: 12px;
  color: var(--jr-text-mute);
  flex: none;
}

.how__cta {
  text-align: center;
  margin-top: 44px;
}

/* ——— [3] Oferta ——— */
.offer {
  padding: 24px 0 80px;
}

.offer__card {
  text-align: center;
  background: linear-gradient(
    160deg,
    rgba(15, 39, 68, 0.9) 0%,
    rgba(5, 10, 20, 0.95) 100%
  );
  border-radius: var(--jr-radius-bento);
  box-shadow: var(--jr-glow-card);
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.offer__logo {
  width: 200px;
  height: auto;
  display: block;
}

.offer__logo--lab {
  width: 230px;
}

.logo-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.logo-pair--offer {
  gap: 20px;
  margin-bottom: 4px;
}

.offer__deadline {
  font-size: 15px;
  color: var(--jr-ice);
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.offer__deadline-time {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.offer__deadline strong {
  color: #4ade80;
  font-weight: 700;
}

.offer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 520px;
}

.offer__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--jr-white);
}

.offer__list svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 3px;
  color: var(--jr-success);
}

.offer__list-highlight {
  font-weight: 700;
  color: #fff;
  background: rgba(45, 140, 255, 0.14);
  border: 1px solid rgba(94, 184, 255, 0.45);
  border-radius: 14px;
  padding: 12px 14px;
  align-items: center;
}

.offer__list-highlight svg {
  margin-top: 0;
  color: #5eb8ff;
}

/* ——— [4] Expert ——— */
.expert {
  padding: 0 0 80px;
}

.expert__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.expert__photo img {
  border-radius: var(--jr-radius-bento);
  box-shadow: var(--jr-glow-card);
  width: 100%;
  height: auto;
}

.expert__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.expert__copy p {
  font-size: var(--jr-text-body-l);
  color: var(--jr-text-dim);
  max-width: 56ch;
}

.expert__copy p strong {
  color: var(--jr-white);
}

.expert__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.expert__stats div {
  display: flex;
  flex-direction: column;
}

.expert__stats strong {
  font-family: var(--jr-font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--jr-electric-bright);
}

.expert__stats span {
  font-size: 13px;
  color: var(--jr-text-mute);
}

/* ——— Footer ——— */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px 0 48px;
  text-align: center;
  font-size: 13px;
  color: var(--jr-text-mute);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ——— Social proof toast ——— */
.buy-toast {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100% - 40px, 340px);
  padding: 14px 36px 14px 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(2, 6, 15, 0.28);
  color: #1f2937;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.buy-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.buy-toast[hidden] {
  display: none !important;
}

.buy-toast__close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.buy-toast__close:hover {
  color: #4b5563;
}

.buy-toast__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #3b9eff;
  color: #fff;
  font-family: var(--jr-font-display);
  font-size: 18px;
  font-weight: 700;
}

.buy-toast__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.buy-toast__name {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
}

.buy-toast__action {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.35;
}

.buy-toast__action strong {
  color: #111827;
  font-weight: 700;
}

.buy-toast__verified {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.3;
}

.buy-toast__check {
  color: #22c55e;
  font-weight: 700;
}

/* ——— Mobile ——— */
@media (max-width: 880px) {
  .wrap,
  .wrap--narrow {
    width: 100%;
    max-width: 350px;
    margin-inline: auto;
  }

  .hero {
    padding: 36px 0 48px;
  }

  .hero__grid {
    display: flex;
    justify-content: center;
  }

  .hero__copy {
    gap: 16px;
    text-align: center;
    align-items: center;
    max-width: 350px;
  }

  .hero__top {
    max-width: 350px;
  }

  .hero__logo {
    width: 140px;
  }

  .hero__title {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero__sub {
    font-size: 16px;
    max-width: 320px;
  }

  .hero .pricebox {
    width: 350px;
    max-width: 100%;
    padding: 18px 24px;
    gap: 6px;
  }

  .hero .pricebox__line {
    font-size: 20px;
  }

  .hero .pricebox__price {
    font-size: 64px;
  }

  .offer .pricebox {
    width: 305px;
    max-width: 100%;
    padding: 18px 24px;
    gap: 6px;
  }

  .offer .pricebox__line {
    font-size: 20px;
  }

  .offer .pricebox__price {
    font-size: 64px;
  }

  .pricebox__price {
    font-size: 44px;
  }

  .cta-btn {
    width: 100%;
    max-width: 350px;
  }

  .cta-btn__text {
    align-items: center;
    text-align: center;
  }

  .cta-btn__label {
    white-space: nowrap;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .cta-btn__title {
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .how__head h2,
  .how__timeline,
  .bonus__card,
  .offer__card,
  .expert__grid,
  .footer .wrap {
    max-width: 350px;
  }

  .how__step {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .how__dot {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .how__bubble--voce {
    max-width: 100%;
    min-height: 0;
  }

  .how__bubble--voce .how__rotate {
    white-space: normal;
  }

  .offer__card {
    padding: 40px 22px;
  }

  .logo-pair--offer {
    gap: 12px;
  }

  .offer__logo {
    width: 130px;
  }

  .offer__logo--lab {
    width: 150px;
  }

  .offer__deadline {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    line-height: 1.35;
  }

  .pricebox--big .pricebox__price {
    font-size: 44px;
  }

  .offer .pricebox--big .pricebox__price {
    font-size: 64px;
  }

  .offer__cta,
  .expert__copy .cta-btn {
    width: 100%;
  }

  .offer .cta-btn__label {
    font-size: 9px;
  }

  .offer .cta-btn__title {
    font-size: 0.95rem;
  }

  .expert__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .urgency {
    flex-direction: column;
    padding: 10px 16px;
    font-size: 15px;
    line-height: 1.35;
  }

  .hero__disclaimer {
    font-size: 16px;
    max-width: 350px;
  }

  .for-me {
    padding: 56px 0 40px;
  }

  .proof {
    padding: 56px 0 28px;
  }

  .proof__intro {
    margin-bottom: 24px;
  }

  .proof__intro h2 {
    font-size: 26px;
    max-width: 350px;
  }

  .proof__lead {
    font-size: 16px;
    max-width: 350px;
  }

  .proof__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 350px;
    margin-inline: auto;
  }

  .proof__cta {
    margin-top: 28px;
  }

  .for-me__intro {
    margin-bottom: 28px;
    gap: 12px;
  }

  .for-me__intro h2 {
    font-size: 26px;
    max-width: 350px;
  }

  .for-me__lead {
    font-size: 16px;
    max-width: 350px;
  }

  .for-me__cloud {
    gap: 10px;
  }

  .for-me__pill {
    padding: 9px 14px;
    font-size: 13px;
  }

  .buy-toast {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: none;
  }
}
