/* ============ Base ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --grad: linear-gradient(90deg, #ff8a00 0%, #ff004b 30.288%, #bf00b2 63.942%, #3510ff 100%);
  --green-grad: radial-gradient(ellipse 50% 50% at 50% 50%, #89ff5b 0%, #a5ff82 100%);
  --branco: #f7f5ff;
  --cinza: #788585;
}

html, body { background: #000; }

body {
  font-family: 'Space Grotesk', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  display: block;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  pointer-events: auto;
}
a { text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============ Chaveamento desktop / mobile ============ */
.page-mobile { display: none; }

@media (max-width: 768px) {
  .desktop-viewport { display: none; }
  .page-mobile { display: block; }
}

/* ==================================================================== */
/* DESKTOP — canvas fixo de 1920px, escalado via JS                     */
/* ==================================================================== */
.desktop-viewport { overflow: clip; }

.page-desktop {
  width: 1920px;
  transform-origin: top left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-desktop section { position: relative; width: 100%; overflow: clip; flex-shrink: 0; }

/* Botão CTA (desktop) — gradiente animado verde */
.d-cta {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 394px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: linear-gradient(270deg, #022c16, #059669, #10b981, #34d399, #10b981, #059669, #022c16);
  background-size: 300% 300%;
  animation: cta-gradient-green 5s ease infinite;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.45), 0 0 15px rgba(34, 197, 94, 0.25);
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.d-cta:hover {
  transform: translateX(-50%) translateY(-6px) scale(1.05);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.7), 0 0 25px rgba(34, 197, 94, 0.5);
}

.d-cta--inline { position: static; transform: none; width: 100%; flex-shrink: 0; }
.d-cta--inline:hover { transform: translateY(-6px) scale(1.05); }

@keyframes cta-gradient-green {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ---------- LP 2 — Barra de urgência ---------- */
.d-urgency { background: red; height: 74px; }

.d-urgency__inner {
  position: absolute;
  left: calc(50% + 0.5px);
  transform: translateX(-50%);
  top: 17px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.d-urgency__text { font-size: 26.566px; color: #fff; white-space: nowrap; }

.d-urgency__timer { display: flex; align-items: center; gap: 4px; }

.d-urgency__box {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #000;
}

.d-urgency__colon { font-size: 26.566px; color: #fff; margin: 0 2px; }

/* ---------- LP 1 — Hero ---------- */
.d-hero {
  background: #000;
  height: 2200px;
  position: relative;
}

.d-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

.d-hero__vector {
  position: absolute;
  left: calc(50% + 0.5px);
  transform: translateX(-50%);
  top: 222px;
  width: 933px;
  height: 890px;
  z-index: 0;
}
.d-hero__vector img { width: 100%; height: 100%; }

.d-hero__bg {
  position: absolute;
  left: -64px;
  top: -74px;
  width: 2048px;
  height: 1408px;
  filter: blur(20px);
  opacity: 0.2;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.d-hero__bg img { width: 100%; height: 100%; object-fit: cover; }

.d-hero__grid {
  position: absolute;
  left: 0;
  top: -129px;
  width: 100%;
  height: 1337px;
  background-image:
    repeating-linear-gradient(to right, #1e1e1e 0 1px, transparent 1px 101.17px),
    repeating-linear-gradient(to bottom, #1e1e1e 0 1px, transparent 1px 70.6px);
  background-position: 0.83px 0;
  pointer-events: none;
  z-index: 0;
}

.d-hero__title {
  position: absolute;
  left: calc(50% - 0.5px);
  transform: translateX(-50%);
  top: 62px;
  width: 1015px;
  font-size: 63.043px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  line-height: normal;
  z-index: 2;
}

.d-hero__sub {
  position: absolute;
  left: calc(50% - 0.5px);
  transform: translateX(-50%);
  top: 234.89px;
  width: 1015px;
  font-size: 23.967px;
  font-weight: 300;
  text-align: center;
  color: #fff;
  line-height: normal;
  z-index: 2;
}

/* top original do Figma: 333px — aumentado para dar mais respiro após o parágrafo */
.d-hero__cta { top: 373px; margin-left: -1px; z-index: 2; }

.d-hero__vsl {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 480px;
  width: 400px;
  max-width: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.d-hero__glow { position: absolute; pointer-events: none; z-index: 0; }
.d-hero__glow img { position: absolute; }

.d-hero__glow--right { left: calc(100% - 350px); top: 371px; width: 1222px; height: 1615px; }
.d-hero__glow--right img { inset: -30.96% -40.92%; width: 181.84%; height: 161.92%; }

.d-hero__glow--left { left: -942px; top: -984px; width: 1222px; height: 1524px; }
.d-hero__glow--left img { inset: -32.81% -40.92%; width: 181.84%; height: 165.62%; }

.d-hero__title2 {
  position: absolute;
  left: calc(50% - 1.5px);
  transform: translateX(-50%);
  top: 1260px;
  width: 989px;
  font-size: 63.043px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  line-height: normal;
  z-index: 2;
}

.d-hero__sub2 {
  position: absolute;
  left: calc(50% + 0.5px);
  transform: translateX(-50%);
  top: 1427px;
  width: 933px;
  font-size: 23.967px;
  font-weight: 300;
  text-align: center;
  color: #fff;
  line-height: normal;
  z-index: 2;
}

.d-carousel__card {
  position: absolute;
  overflow: hidden;
  z-index: 2;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.d-carousel__card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.18s ease;
}
.d-carousel__card img.is-fading,
.m-results__shot img.is-fading { opacity: 0; }
.m-results__shot img { transition: opacity 0.18s ease; }

.d-carousel__card--left {
  left: 387px;
  top: 1573px;
  width: 319px;
  height: 393px;
  filter: blur(8px);
  opacity: 0.7;
}

.d-carousel__card--center {
  left: calc(50% + 0.5px);
  transform: translateX(-50%);
  top: 1527px;
  width: 393px;
  height: 485px;
  z-index: 3;
}

.d-carousel__card--right {
  left: calc(83.33% - 225.5px);
  transform: translateX(-50%);
  top: 1573px;
  width: 319px;
  height: 393px;
  filter: blur(8px);
  opacity: 0.7;
}

.d-carousel__arrow {
  position: absolute;
  width: 92px;
  height: 92px;
  top: 1724px;
  padding: 0;
  transition: transform 0.2s ease;
  z-index: 3;
}
.d-carousel__arrow:hover { transform: scale(1.08); }
.d-carousel__arrow--left { left: 350px; }
.d-carousel__arrow--right { left: calc(91.67% - 282px); }

.d-carousel__circle { width: 92px; height: 92px; }
.d-carousel__circle--flip { transform: rotate(180deg); }

.d-carousel__arrowimg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 33px;
}
.d-carousel__arrowimg--flip { transform: translate(-50%, -50%) rotate(180deg); }

/* ---------- LP 3 — Dor e solução ---------- */
.d-pain {
  background: #fff;
  height: 1050px;
  border-top: 5px solid #ff8a00;
}

.d-pain__bigbg {
  position: absolute;
  left: calc(100% - 5816px);
  top: -1011px;
  font-size: 2580.322px;
  font-weight: 500;
  color: #f8f8f8;
  white-space: nowrap;
  line-height: normal;
  pointer-events: none;
}

.d-pain__title {
  position: absolute;
  left: calc(50% + 2.5px);
  transform: translateX(-50%);
  top: 90px;
  width: 1015px;
  font-size: 45.41px;
  font-weight: 500;
  text-align: center;
  color: #000;
  line-height: normal;
}

.d-pain__text {
  position: absolute;
  left: calc(29.17% - 104px);
  top: 230px;
  width: 500px;
  height: auto;
  font-size: 23px;
  color: #000;
  line-height: 1.6;
}
.d-pain__text strong { font-weight: 700; }
.d-pain__text p { margin-bottom: 16px; }

.d-pain__box {
  position: absolute;
  left: calc(50% + 20px);
  top: 230px;
  width: 480px;
  height: 450px;
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.d-pain__box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.d-pain__reveal {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 760px;
  font-size: 108px;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
  line-height: normal;
  text-align: center;
}

/* ---------- LP 4 — Pilares ---------- */
.d-pillars { background: #000; height: 1167px; }

.d-pillars__title {
  position: absolute;
  left: calc(50% - 1.5px);
  transform: translateX(-50%);
  top: 97px;
  width: 809px;
  font-size: 63.043px;
  font-weight: 500;
  text-align: center;
  color: #fff;
  line-height: normal;
}

/* Barras entram crescendo de baixo para cima quando a seção aparece na tela */
.d-pillars__bar {
  position: absolute;
  width: 197px;
  background: #fff;
  border-radius: 20px 20px 0 0;
  transform-origin: bottom center;
  transform: scaleY(0);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.d-pillars__bar--1 { left: calc(8.33% + 290px); top: 711px; height: 217px; transition-delay: 0s; }
.d-pillars__bar--2 {
  left: calc(62.5% - 106.5px);
  margin-left: -98.5px;
  top: 341px;
  height: 587px;
  background: var(--grad);
  transition-delay: 0.3s;
}
.d-pillars__bar--3 { left: calc(37.5% + 100.5px); margin-left: -98.5px; top: 505px; height: 423px; transition-delay: 0.15s; }
.d-pillars__bar--4 { left: calc(83.33% - 233.5px); margin-left: -98.5px; top: 745px; height: 183px; transition-delay: 0.45s; }

.d-pillars.is-visible .d-pillars__bar { transform: scaleY(1); }

.d-pillars__fade {
  position: absolute;
  left: 431px;
  top: 682px;
  width: 1054px;
  height: 261px;
  background: linear-gradient(to top, #000 25.424%, rgba(0, 0, 0, 0) 100%);
}

/* Labels ancoradas pela base (16px acima do topo de cada barra) para nunca colidirem
   com as barras; aparecem depois que as barras sobem */
.d-pillars__label {
  position: absolute;
  transform: translateX(-50%);
  font-size: 20.32px;
  text-align: center;
  color: #fff;
  line-height: normal;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.d-pillars.is-visible .d-pillars__label {
  opacity: 1;
}

.d-pillars__label--1 { left: 551.5px; bottom: 472px; width: 257px; transition-delay: 0.5s; }
.d-pillars__label--2 { left: calc(25% + 340.5px); bottom: 678px; width: 315px; transition-delay: 0.65s; }
.d-pillars__label--3 { left: calc(50% + 133.5px); bottom: 842px; width: 257px; transition-delay: 0.8s; }
.d-pillars__label--4 { left: calc(66.67% + 86.5px); bottom: 438px; width: 261px; transition-delay: 0.95s; }

.d-pillars__footer {
  position: absolute;
  left: calc(50% + 0.5px);
  transform: translateX(-50%);
  top: 919px;
  width: 641px;
  font-size: 25.32px;
  text-align: center;
  color: #fff;
  line-height: normal;
}

.d-pillars__mark {
  position: absolute;
  left: calc(50% + 1px);
  transform: translateX(-50%);
  top: 1083px;
  width: 84px;
  height: 84px;
}

/* ---------- LP 5 — Como ter ---------- */
.d-steps { background: #000; min-height: 1257px; }

.d-steps__shape {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 2326px;
  height: calc(100% + 29px);
}
.d-steps__shape img { width: 100%; height: 100%; }

/* Coluna esquerda fixa (sticky) enquanto os cards da direita rolam */
.d-steps__flow {
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 130px 0 130px 350px;
}

.d-steps__left { width: 517px; flex-shrink: 0; }

/* O "sticky" é aplicado via JS (js/script.js) com translateY, porque o
   position:sticky nativo quebra dentro do canvas escalado por transform */
.d-steps__title {
  position: relative;
  color: #000;
  line-height: normal;
  font-weight: 400;
  will-change: transform;
}

.d-steps__title-small { font-size: 41.123px; font-weight: 300; }
.d-steps__title-big { font-size: 88.121px; font-weight: 500; }

.d-steps__cards {
  margin-left: 103px;
  margin-top: 41px;
  width: 600px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.d-steps__card {
  height: 302px;
  padding: 60px 47px;
  border-radius: 10px 100px 10px 10px;
  background: #141418;
  border: 1px solid #28282e;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.d-steps__card--grad {
  background: var(--grad);
  border: none;
  color: #fff;
}

.d-steps__card-title { font-size: 34.073px; font-weight: 500; line-height: normal; }
.d-steps__card-body { font-size: 22px; width: 506px; line-height: normal; }

/* ---------- LP 6 — Jornada ---------- */
.d-journey { background: #fff; height: 2093px; }

.d-journey__title {
  position: absolute;
  left: calc(50% - 0.5px);
  transform: translateX(-50%);
  top: 60.97px;
  width: 641px;
  font-size: 50.986px;
  font-weight: 400;
  text-align: center;
  color: #000;
  line-height: normal;
}
.d-journey__title-med { font-weight: 500; }

/* Linha base cinza; a linha de progresso em gradiente "consome" a timeline
   conforme o scroll (altura controlada via JS) */
.d-journey__spine {
  position: absolute;
  left: 50%;
  top: 204px;
  width: 1px;
  height: 1664px;
  background: #d9d9d9;
}

.d-journey__progress {
  position: absolute;
  left: calc(50% - 1.5px);
  top: 204px;
  width: 3px;
  height: 0;
  max-height: 1664px;
  background: linear-gradient(180deg, #ff8a00 0%, #ff004b 35%, #bf00b2 65%, #3510ff 100%);
  border-radius: 3px;
}

.d-journey__tag {
  position: absolute;
  transform: translateX(-50%) translateY(24px);
  font-size: 22.597px;
  color: #b4b4b4;
  text-align: center;
  white-space: nowrap;
  line-height: normal;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.d-journey__tag.is-revealed { opacity: 1; transform: translateX(-50%); }

.d-journey__text {
  position: absolute;
  font-size: 30px;
  color: #000;
  line-height: normal;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.d-journey__text.is-revealed { opacity: 1; transform: none; }

.d-journey__text--left { left: 350px; width: 325px; }
.d-journey__text--right { left: calc(66.67% - 47px); width: 311px; }

/* Conectores crescem a partir da linha central */
.d-journey__connector {
  position: absolute;
  left: calc(33.33% + 103px);
  width: 217px;
  height: 1px;
  background: #000;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.7s ease 0.2s;
}
.d-journey__connector--right { left: 50%; transform-origin: left center; }
.d-journey__connector.is-revealed { transform: scaleX(1); }

.d-journey__cta { top: 1917px; }

/* ---------- LINHA ANIMADA (desktop) ---------- */
.d-marquee {
  background: var(--grad);
  height: 82px;
  display: flex;
  align-items: center;
}

.d-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.d-marquee__half {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
}

.d-marquee__half p {
  font-size: 24px;
  color: #fff;
  white-space: nowrap;
  line-height: 60px;
}

.d-marquee__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
  flex-shrink: 0;
}

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

/* ---------- LP 7 — Checkout ---------- */
.d-checkout { background: #000; height: 920px; }

.d-checkout__glass {
  position: absolute;
  left: 432px;
  top: 436px;
  width: 1056px;
  height: 246px;
  border-radius: 6px;
  border: 0.3px solid #fff;
  background: linear-gradient(to bottom, rgba(10, 25, 39, 0.2), rgba(4, 14, 24, 0.2), rgba(4, 14, 24, 0.2));
  backdrop-filter: blur(32.6px);
  -webkit-backdrop-filter: blur(32.6px);
}

.d-checkout__strip {
  position: absolute;
  left: calc(8.33% + 292px);
  top: 456px;
  width: 1031px;
  height: 202px;
  border-radius: 6px 0 0 6px;
  background: var(--grad);
  display: flex;
  align-items: center;
  padding: 0 15px;
}

.d-checkout__strip p {
  width: 396px;
  font-size: 29px;
  line-height: 40px;
  color: var(--branco);
}
.d-checkout__strip strong { font-weight: 500; }

.d-checkout__box {
  position: absolute;
  left: calc(70.83% - 168.5px);
  transform: translateX(-50%);
  top: 130px;
  width: 562px;
  min-height: 659px;
  border-radius: 6px;
  border: 0.3px solid #fff;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(5, 21, 37, 0.6), rgba(4, 14, 24, 0.6));
  backdrop-filter: blur(54.15px);
  -webkit-backdrop-filter: blur(54.15px);
  padding: 30px 49px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.d-checkout__prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.d-checkout__from { font-size: 24px; line-height: 60px; color: var(--cinza); margin-bottom: -18px; white-space: nowrap; }
.d-checkout__label { font-size: 40px; line-height: 60px; color: var(--branco); white-space: nowrap; }
.d-checkout__price { font-size: 108px; font-weight: 500; line-height: 90px; white-space: nowrap; color: var(--branco); }
.d-checkout__cash { font-size: 24px; line-height: 60px; color: var(--branco); margin-top: 22px; white-space: nowrap; }

.d-checkout__divider { width: 507px; height: 1px; background: var(--cinza); flex-shrink: 0; }

.d-checkout__features {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.d-checkout__features li { display: flex; align-items: center; gap: 16px; }
.d-checkout__features img { width: 24px; height: 24px; }
.d-checkout__features span { font-size: 24px; line-height: 27px; color: var(--branco); white-space: nowrap; }

/* ==================================================================== */
/* MOBILE                                                               */
/* ==================================================================== */
.page-mobile { background: #000; }
.page-mobile section { position: relative; width: 100%; overflow: hidden; }

/* Botão CTA (mobile) — gradiente animado verde */
.m-cta {
  width: 100%;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: linear-gradient(270deg, #022c16, #059669, #10b981, #34d399, #10b981, #059669, #022c16);
  background-size: 300% 300%;
  animation: cta-gradient-green 5s ease infinite;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.45);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.m-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.65);
}

/* ---------- LP 2 — Barra de urgência ---------- */
.m-urgency {
  background: red;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
}

.m-urgency__title { font-size: 14px; font-weight: 700; color: #fff; text-align: center; }
.m-urgency__sub { font-size: 14px; font-weight: 500; color: #fff; text-align: center; }

.m-urgency__timer { display: flex; align-items: center; gap: 8px; }

.m-urgency__box {
  background: #fff;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 700;
  color: #000;
}

.m-urgency__colon { font-size: 16px; font-weight: 700; color: #fff; }

/* ---------- LP 1 — Hero ---------- */
.m-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 20px;
}

.m-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 0;
}

.m-hero > * {
  position: relative;
  z-index: 1;
}

.m-hero__glow {
  position: absolute;
  left: -150px;
  top: -100px;
  width: 300px;
  height: 300px;
  pointer-events: none;
}
.m-hero__glow img {
  position: absolute;
  inset: -33.33%;
  width: 166.66%;
  height: 166.66%;
}

.m-hero__title { position: relative; font-size: 32px; font-weight: 700; line-height: 1.25; color: #fff; }

.m-hero__sub {
  position: relative;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
  opacity: 0.9;
}

.m-hero .m-cta { margin-top: 12px; }

.m-hero__video {
  position: relative;
  margin-top: 16px;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.m-hero__results-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
}

.m-hero__title2 { font-size: 28px; font-weight: 700; line-height: 1.3; color: #fff; }
.m-hero__sub2 { font-size: 14px; font-weight: 300; color: #88888d; }

.m-results {
  background: #0c0c0e;
  border: 1px solid #1a1a1d;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.m-results__shot { height: 480px; max-height: 70vh; border-radius: 12px; overflow: hidden; background: #000; display: flex; align-items: center; justify-content: center; }
.m-results__shot img { width: 100%; height: 100%; object-fit: contain; }

.m-results__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.m-results__nav p { font-size: 14px; font-weight: 500; color: #fff; white-space: nowrap; }

.m-results__arrow {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.m-results__arrow img { width: 16px; height: 16px; }

/* ---------- LP 3 — Dor e solução ---------- */
.m-pain {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 56px 20px;
}

.m-pain__title { font-size: 26px; font-weight: 700; line-height: 1.3; color: #000; }

.m-pain__media { height: 200px; border-radius: 16px; overflow: hidden; }
.m-pain__media img { width: 100%; height: 100%; object-fit: cover; }

.m-pain__text { font-size: 16px; line-height: 1.5; color: #000; }
.m-pain__text strong { font-weight: 700; }

.m-pain__reveal { display: flex; flex-direction: column; gap: 4px; color: #000; }
.m-pain__presenting { font-size: 18px; font-weight: 500; }
.m-pain__brand { font-size: 32px; font-weight: 700; white-space: nowrap; }

/* ---------- LP 4 — Pilares ---------- */
.m-pillars {
  background: #000;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 56px 20px;
}

.m-pillars__title { font-size: 32px; font-weight: 700; line-height: 1.2; color: #fff; }

.m-pillars__stack { display: flex; flex-direction: column; gap: 16px; }

.m-pillars__card {
  background: #0c0c0e;
  border: 1px solid #1a1a1d;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.m-pillars__card--grad { background: var(--grad); border: none; }

.m-pillars__num { font-size: 32px; font-weight: 700; color: #88888d; }
.m-pillars__card--grad .m-pillars__num { color: #fff; }

.m-pillars__text { font-size: 16px; font-weight: 500; line-height: 1.4; color: #fff; }

.m-pillars__footer {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  opacity: 0.95;
}

/* ---------- LP 5 — Como ter ---------- */
.m-steps {
  background: #0c0c0e;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 56px 20px;
  color: #fff;
}

.m-steps__title { font-size: 32px; font-weight: 700; line-height: 1.2; }

.m-steps__stack { display: flex; flex-direction: column; gap: 16px; }

.m-steps__card {
  background: #151518;
  border: 1px solid #1a1a1d;
  border-radius: 10px 50px 10px 10px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.m-steps__card--grad { background: var(--grad); border: none; }

.m-steps__card-title { font-size: 24px; font-weight: 700; }
.m-steps__card-body { font-size: 15px; line-height: 1.4; opacity: 0.9; }

/* ---------- LP 6 — Jornada ---------- */
.m-journey {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 56px 20px;
}

.m-journey__title { font-size: 28px; font-weight: 700; line-height: 1.2; color: #000; }

.m-journey__timeline { display: flex; flex-direction: column; gap: 24px; }

.m-journey__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.m-journey__item.is-revealed { opacity: 1; transform: none; }

.m-journey__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  flex-shrink: 0;
}

.m-journey__num {
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.m-journey__line { width: 2px; height: 50px; background: #000; }

.m-journey__content {
  flex: 1;
  min-width: 1px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
}

.m-journey__tag { font-size: 14px; font-weight: 500; color: #88888d; white-space: nowrap; }
.m-journey__text { font-size: 18px; font-weight: 700; color: #000; }

/* ---------- LINHA ANIMADA (mobile) ---------- */
.m-marquee {
  background: var(--grad);
  padding: 14px 0;
  display: flex;
}

.m-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
}

.m-marquee__half {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}

.m-marquee__half p { font-size: 14px; font-weight: 700; color: #fff; white-space: nowrap; }

.m-marquee__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
  flex-shrink: 0;
}

/* ---------- LP 7 — Checkout ---------- */
.m-checkout {
  background: #000;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 56px 20px;
}

.m-checkout__glow {
  position: absolute;
  left: 50px;
  top: 150px;
  width: 320px;
  height: 320px;
  pointer-events: none;
}
.m-checkout__glow img {
  position: absolute;
  inset: -37.5%;
  width: 175%;
  height: 175%;
}

.m-checkout__promo {
  position: relative;
  background: var(--grad);
  border-radius: 12px;
  padding: 20px;
}
.m-checkout__promo p { font-size: 20px; font-weight: 700; line-height: 1.3; color: #fff; }

.m-checkout__box {
  position: relative;
  background: rgba(11, 15, 25, 0.6);
  border: 0.3px solid #fff;
  border-radius: 16px;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.m-checkout__prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.m-checkout__from { font-size: 16px; color: #88888d; }
.m-checkout__label { font-size: 18px; font-weight: 500; color: #fff; }
.m-checkout__price { font-size: 48px; font-weight: 700; color: #fff; }
.m-checkout__cash { font-size: 15px; font-weight: 500; color: #fff; }

.m-checkout__divider { width: 100%; height: 1px; background: #1a1a1d; }

.m-checkout__features { display: flex; flex-direction: column; gap: 14px; }

.m-checkout__features li { display: flex; align-items: center; gap: 12px; }

.m-checkout__check {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.m-checkout__check img { width: 12px; height: 12px; }

.m-checkout__features li > span:last-child {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  flex: 1;
}

.m-checkout__buy { padding-top: 12px; }

/* ==================================================================== */
/* FAQ (acordeão) — compartilhado                                       */
/* ==================================================================== */
.faq-item {
  background: #0c0c0e;
  border: 1px solid #1a1a1d;
  border-radius: 16px;
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: #fff;
  font-weight: 500;
}

.faq-item__icon { position: relative; flex-shrink: 0; }

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--grad);
  transition: transform 0.3s ease;
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item__a p { color: #88888d; }

.faq-item.is-open .faq-item__a { max-height: 400px; }
.faq-item.is-open .faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

/* --- FAQ desktop --- */
.d-faq {
  background: #000;
  padding: 120px 0 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.d-faq__title {
  font-size: 63.043px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  line-height: normal;
}

.d-faq__list {
  width: 1015px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.d-faq .faq-item__q { padding: 28px 36px; font-size: 26px; }
.d-faq .faq-item__icon { width: 22px; height: 22px; }
.d-faq .faq-item__icon::before { width: 22px; height: 3px; }
.d-faq .faq-item__icon::after { width: 3px; height: 22px; }
.d-faq .faq-item__a p { padding: 0 36px 28px; font-size: 21px; line-height: 1.5; }

/* --- FAQ mobile --- */
.m-faq {
  background: #000;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 56px 20px;
}

.m-faq__title { font-size: 28px; font-weight: 700; line-height: 1.2; color: #fff; }

.m-faq__list { display: flex; flex-direction: column; gap: 12px; }

.m-faq .faq-item__q { padding: 18px 20px; font-size: 16px; }
.m-faq .faq-item__icon { width: 16px; height: 16px; }
.m-faq .faq-item__icon::before { width: 16px; height: 2px; }
.m-faq .faq-item__icon::after { width: 2px; height: 16px; }
.m-faq .faq-item__a p { padding: 0 20px 18px; font-size: 14px; line-height: 1.5; }

/* ==================================================================== */
/* Footer                                                               */
/* ==================================================================== */
.d-footer {
  width: 100%;
  background: #000;
  border-top: 1px solid #1a1a1d;
  padding: 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.d-footer p { font-size: 20px; color: #fff; }
.d-footer__links { color: #88888d !important; font-size: 17px !important; }

.m-footer {
  background: #000;
  border-top: 1px solid #1a1a1d;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.m-footer p { font-size: 13px; color: #fff; text-align: center; }
.m-footer__links { color: #88888d !important; }
