/* =========================================================
   Consultoria Marcelo Cria — Landing Page
   Paleta e tipografia derivadas do design original.
   ========================================================= */

:root {
  /* Marca */
  --orange:        #f59b3f;
  --orange-deep:   #d9741a;
  --orange-soft:   #ffb367;
  --orange-pale:   #ffd9b3;

  /* Fundo escuro */
  --bg:            #150801;
  --bg-deep:       #0c0400;

  /* Texto sobre escuro */
  --ink-hi:        #ffffff;
  --ink:           #f4ede6;
  --ink-mid:       #e6ddd4;
  --ink-low:       #cfc4b8;
  --ink-faint:     #bdb0a2;
  --ink-eyebrow:   #b09880;
  --ink-note:      #c9a882;

  /* Texto sobre claro */
  --dark-hi:       #2b1608;
  --dark:          #3d2413;
  --dark-mid:      #55361f;
  --dark-low:      #6f4b31;
  --dark-eyebrow:  #8f6a4c;
  --dark-bullet:   #a98259;

  /* Superfícies */
  --line:          rgba(255, 205, 155, .16);
  --line-strong:   rgba(225, 175, 120, .38);
  --card:          linear-gradient(180deg, rgba(255, 228, 200, .065), rgba(255, 228, 200, .018));
  --card-shadow:   inset 0 1px 0 rgba(255, 220, 180, .1), 0 24px 50px -34px rgba(0, 0, 0, .75);
  --light-bg:      radial-gradient(70% 60% at 50% 28%, rgba(214, 113, 26, .08), transparent 74%),
                   linear-gradient(180deg, #fdf5ec 0%, #f7eade 55%, #f2e3d3 100%);

  --grad-cta:      linear-gradient(100deg, #8f4614 0%, #c2661a 42%, #e9a35f 100%);
  --grad-check:    linear-gradient(160deg, #ffb367, var(--orange-deep));

  /* Ritmo */
  --wrap-sm:       1000px;
  --wrap-md:       1120px;
  --wrap-lg:       1140px;
  --gutter:        clamp(20px, 5vw, 24px);
  --radius:        14px;
}

/* ---------------------------------------------------------
   Reset
   --------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: Figtree, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: var(--ink-mid);
  background:
    radial-gradient(120% 42% at 50% 0%,   rgba(226, 124, 28, .10), transparent 62%),
    radial-gradient(90%  38% at 100% 46%, rgba(226, 124, 28, .11), transparent 66%),
    radial-gradient(80%  34% at 0% 74%,   rgba(226, 124, 28, .10), transparent 64%),
    linear-gradient(180deg, #160802 0%, #221004 14%, #2a1206 30%, #200c04 48%, #1a0b02 70%, #130701 88%, var(--bg-deep) 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-pale); }

:focus-visible {
  outline: 2px solid var(--orange-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 18px;
  background: var(--orange-deep);
  color: #fff;
  font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; color: #fff; }

/* ---------------------------------------------------------
   Utilitários
   --------------------------------------------------------- */
.wrap { width: 100%; margin-inline: auto; padding-inline: var(--gutter); }
.wrap--sm { max-width: calc(var(--wrap-sm) + var(--gutter) * 2); }
.wrap--md { max-width: calc(var(--wrap-md) + var(--gutter) * 2); }
.wrap--lg { max-width: calc(var(--wrap-lg) + var(--gutter) * 2); }

.center { text-align: center; }
.thin   { font-weight: 300; }
.strong { font-weight: 800; }
.accent { color: var(--orange); }
.accent--dark { color: var(--orange-deep); }

.section { position: relative; padding-block: clamp(58px, 8vw, 96px); }
.section--tight { padding-block: clamp(44px, 6vw, 72px); }

.section--light {
  background: var(--light-bg);
  color: var(--dark);
}
.section--light .h2,
.section--light h3 { color: var(--dark-hi); }

/* Recorte diagonal na base do bloco claro (como no design) */
.section--notch { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 48px)); padding-bottom: clamp(74px, 9vw, 122px); }
.section--notch-bottom { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 54px)); padding-bottom: clamp(80px, 9vw, 118px); }

/* Curva que separa a etapa 3 da etapa 4.

   O recorte é feito com máscara no próprio bloco claro, e não com um
   retângulo escuro por cima: assim o que aparece acima da curva é o
   gradiente do body, exatamente a mesma cor da seção anterior, sem
   emenda. Um escuro chapado nunca bateria, porque o fundo da página é
   um degradê com brilhos radiais que mudam de cor ao longo da rolagem.

   --dome-depth = o quanto a curva desce no centro. */
.section--dome {
  --dome-depth: clamp(38px, 4.4vw, 62px);
  padding-top: clamp(96px, 11vw, 150px);
  -webkit-mask-image: radial-gradient(ellipse 78% var(--dome-depth) at 50% 0%, transparent 99%, #000 100%);
          mask-image: radial-gradient(ellipse 78% var(--dome-depth) at 50% 0%, transparent 99%, #000 100%);
}

.section--glow-left::before,
.section--glow-right::before,
.section--glow-center::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.section--glow-left::before   { background: radial-gradient(58% 62% at 12% 38%, rgba(226, 124, 28, .30), transparent 68%); }
.section--glow-right::before  { background: radial-gradient(46% 52% at 86% 42%, rgba(226, 124, 28, .16), transparent 72%); }
.section--glow-center::before { background: radial-gradient(58% 44% at 50% 40%, rgba(226, 124, 28, .16), transparent 72%); }
.section--glow-left > .wrap,
.section--glow-right > .wrap,
.section--glow-center > .wrap { position: relative; }

/* ---------------------------------------------------------
   Tipografia recorrente
   --------------------------------------------------------- */
.eyebrow {
  font-size: clamp(11px, 1.6vw, 14px);
  font-weight: 600;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--ink-eyebrow);
  margin-bottom: 14px;
}
.eyebrow--dark { color: var(--dark-eyebrow); text-align: center; }
.eyebrow--sm { font-size: clamp(11px, 1.4vw, 13px); margin-bottom: 10px; }

.eyebrow-logo { width: clamp(84px, 10vw, 104px); margin: 0 auto 14px; }

.h2 {
  font-size: clamp(25px, 3.4vw, 34px);
  line-height: 1.14;
  font-weight: 800;
  color: var(--ink-hi);
  letter-spacing: .01em;
  text-wrap: pretty;
  margin-bottom: clamp(26px, 3.5vw, 44px);
}
.h2--dark { color: var(--dark-hi); }
.h2--thin { font-weight: 300; letter-spacing: 0; }

.lead {
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.42;
  color: var(--ink-mid);
  text-wrap: pretty;
}
.lead--center { max-width: 800px; margin-inline: auto; font-size: clamp(16px, 2.1vw, 20px); }

/* ---------------------------------------------------------
   Botões

   Pílula na cor da marca com um acabamento discreto de verniz:
   um brilho na quina de cima, uma sombra fina embaixo e o reflexo
   da borda, tudo em box-shadow interno. Herdado do efeito pearl,
   mas em escala contida — o botão é um convite, não um bloco.

   Pontos de ajuste, todos aqui em cima:

   --btn-bg     fundo da pílula. Padrão: o gradiente laranja da marca.
                Para a versão preta do pearl original, use .btn--dark.

   --btn-fade   onde o brilho do texto começa a cair. Sutil de
                propósito: em corpo pequeno, apagar demais a base das
                letras vira borrão, não verniz.
   --------------------------------------------------------- */
.btn {
  --btn-bg: var(--grad-cta);
  --btn-fade: 62%;

  display: inline-block;
  position: relative;
  border: 0;
  outline: none;
  cursor: pointer;
  border-radius: 100px;
  background: var(--btn-bg);
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow:
    inset 0  .10rem .32rem rgba(255, 255, 255, .34),
    inset 0 -.05rem .16rem rgba(0, 0, 0, .30),
    inset 0 -.16rem .34rem rgba(255, 255, 255, .22),
    0 10px 22px -10px rgba(160, 80, 20, .55);
}

/* Camada que recorta o verniz e segura o texto */
.btn__wrap {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  padding: clamp(12px, 1.5vw, 15px) clamp(22px, 2.8vw, 32px);
  font-size: clamp(13px, 1.5vw, 15px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}

/* Bolha de luz que sobe no hover */
.btn__wrap::before {
  content: "";
  position: absolute;
  left: -15%;
  right: -15%;
  top: -100%;
  bottom: 30%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .07);
  transition: transform .3s ease;
}

/* Verniz superior: o reflexo na quina de cima */
.btn__wrap::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 8%;
  bottom: 46%;
  border-radius: 100px 100px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .18) 0%, rgba(255, 255, 255, .02) 70%, rgba(255, 255, 255, 0) 100%);
  transition: opacity .3s ease, transform .3s ease;
}

.btn__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0;
  line-height: 1.25;
  transition: transform .2s ease;
}

/* O degradê no texto é o que sobrou do acabamento de pérola: as letras
   nascem brancas e perdem um pouco de brilho na base.

   O componente original usa mask-image na caixa toda, o que apaga a
   segunda linha inteira quando o texto quebra — e os CTAs daqui são
   longos. Aqui o mesmo degradê é recortado no texto e repetido a cada
   linha (background-size = 1 linha + repeat-y), então toda linha recebe
   o mesmo acabamento. Sem background-clip, o texto fica branco sólido. */
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .btn__label {
    background-image: linear-gradient(to bottom, #fff var(--btn-fade), rgba(255, 255, 255, .72));
    background-size: 100% 1.25em;
    background-repeat: repeat-y;
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
  }
}

/* Faísca: troca de glifo no hover */
.btn__spark { flex: none; font-size: .92em; }
.btn__spark--alt { display: none; }
.btn:hover .btn__spark { display: none; }
.btn:hover .btn__spark--alt { display: inline-block; }

.btn:hover {
  color: inherit;
  transform: translateY(-1px);
  box-shadow:
    inset 0  .10rem .32rem rgba(255, 255, 255, .46),
    inset 0 -.05rem .16rem rgba(0, 0, 0, .30),
    inset 0 -.16rem .34rem rgba(255, 255, 255, .34),
    0 14px 26px -10px rgba(160, 80, 20, .68);
}
.btn:hover .btn__wrap::before { transform: translateY(-6%); }
.btn:hover .btn__wrap::after  { opacity: .55; transform: translateY(6%); }

.btn:active {
  transform: translateY(1px);
  box-shadow:
    inset 0  .10rem .3rem rgba(255, 255, 255, .5),
    inset 0 -.05rem .16rem rgba(0, 0, 0, .38),
    inset 0 -.16rem .3rem rgba(255, 255, 255, .2),
    0 6px 14px -8px rgba(160, 80, 20, .6);
}

/* Tamanhos — a diferença entre eles é de hierarquia, não de volume */
.btn--xl .btn__wrap {
  font-size: clamp(14px, 1.7vw, 17px);
  padding: clamp(14px, 1.8vw, 18px) clamp(26px, 3.4vw, 40px);
}
.btn--block { display: block; width: 100%; }
.btn--block .btn__wrap { padding-block: 14px; font-size: 14px; }

/* Pérola preta do componente original */
.btn--dark {
  --btn-bg: #080808;
  box-shadow:
    inset 0  .10rem .32rem rgba(255, 255, 255, .30),
    inset 0 -.05rem .16rem rgba(0, 0, 0, .7),
    inset 0 -.16rem .34rem rgba(255, 255, 255, .34),
    0 10px 22px -10px rgba(0, 0, 0, .7);
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--bg);
  isolation: isolate;
}
.hero__bg img { width: 100%; height: auto; }

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 7, 1, .9) 0%, rgba(15, 7, 1, .6) 28%, rgba(15, 7, 1, .08) 54%, transparent 72%),
    linear-gradient(0deg, var(--bg) 0%, rgba(21, 8, 1, .6) 14%, transparent 34%);
}

.hero__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1390px;
  margin-inline: auto;
  padding-left: clamp(24px, 16vw, 224px);
  padding-right: var(--gutter);
}
.hero__copy { width: min(470px, 100%); }

.hero__logo { width: clamp(120px, 12vw, 168px); margin: 0 0 18px -4px; }

.hero__title {
  font-size: clamp(28px, 3.6vw, 38px);
  line-height: 1.14;
  font-weight: 800;
  color: #fdf7f1;
  letter-spacing: -.01em;
  text-wrap: pretty;
  margin-bottom: 16px;
}

.hero__lead {
  font-size: clamp(14px, 1.6vw, 15px);
  line-height: 1.45;
  color: #e8ded4;
  margin-bottom: 24px;
}

.hero__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.hero__note { font-size: 13px; color: var(--ink-note); }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(62, 28, 7, .75);
  border: 1px solid var(--line-strong);
  color: #f7e0c8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  animation: bob 2.4s ease-in-out infinite;
}
.hero__scroll:hover { color: #fff; background: rgba(90, 42, 10, .9); }

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 6px); }
}

/* ---------------------------------------------------------
   Faixa deslizante
   --------------------------------------------------------- */
.band {
  position: relative;
  z-index: 3;
  height: clamp(52px, 6vw, 66px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, var(--bg) 0%, #6f350a 24%, #c2701c 56%, #f2d5b0 100%);
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, .8);
}

.band__track,
.modules__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.band__track.is-looping,
.modules__track.is-looping {
  animation: marquee var(--marquee-duration, 40s) linear infinite;
}
.band__track:hover,
.modules__track:hover { animation-play-state: paused; }

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

.band__item {
  white-space: nowrap;
  padding-inline: clamp(24px, 4vw, 46px);
  font-size: clamp(14px, 2vw, 19px);
  font-weight: 400;
  color: #fff;
  mix-blend-mode: difference;
}

/* ---------------------------------------------------------
   Problemas
   --------------------------------------------------------- */
.problems {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 800px;
  margin-inline: auto;
}

.problem-card {
  border: 1px solid rgba(90, 45, 12, .2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .18));
  box-shadow: 0 1px 0 rgba(255, 255, 255, .7) inset, 0 12px 30px -18px rgba(70, 34, 8, .32);
  padding: 26px 26px 30px;
}
.problem-card__title {
  font-size: clamp(18px, 2.3vw, 21px);
  line-height: 1.25;
  font-weight: 700;
  color: var(--dark-hi);
  text-wrap: pretty;
  margin-bottom: 16px;
}

/* ---------------------------------------------------------
   Listas com bullet
   --------------------------------------------------------- */
.bullets { display: flex; flex-direction: column; gap: 6px; }
.bullets li {
  position: relative;
  padding-left: 18px;
  font-size: clamp(15px, 1.8vw, 16.5px);
  line-height: 1.38;
  color: var(--ink-low);
}
.bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #a08a72;
}
.bullets--dark li { color: var(--dark-low); font-weight: 400; }
.bullets--dark li::before { color: var(--dark-bullet); }
.bullets--sm li { font-size: 12.5px; line-height: 1.32; padding-left: 14px; }

/* ---------------------------------------------------------
   Listas com check
   --------------------------------------------------------- */
.checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px clamp(20px, 3vw, 34px);
  max-width: 900px;
  margin: 0 auto clamp(26px, 4vw, 34px);
}
.checks li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: clamp(15px, 1.9vw, 18px);
  color: var(--ink);
  text-align: left;
}
.checks li::before {
  content: "✓";
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--grad-check);
  color: #3a1c05;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}
.checks--dark li { color: var(--dark); }

.checks--stack {
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 16px;
  margin: 0;
}
.checks--stack li { align-items: flex-start; font-size: 15.5px; line-height: 1.3; color: var(--ink); }
.checks--stack li::before { margin-top: 2px; background: linear-gradient(160deg, #ffd0a2, var(--orange-deep)); }

.checks--lg {
  max-width: 700px;
  gap: 20px clamp(22px, 3.5vw, 36px);
  margin-bottom: clamp(30px, 4vw, 40px);
}
.checks--lg li { font-size: clamp(17px, 2.4vw, 24px); color: var(--dark); }
.checks--lg li::before { width: 28px; height: 28px; border-radius: 6px; font-size: 16px; background: linear-gradient(160deg, #ffd0a2, var(--orange-deep)); }

/* ---------------------------------------------------------
   Split: conheça a consultoria
   --------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split__kicker {
  font-size: clamp(18px, 2.3vw, 21px);
  color: var(--ink);
  margin-bottom: 32px;
}
.split__kicker strong { font-weight: 700; }

.steps { display: flex; flex-direction: column; gap: 26px; }
.step { position: relative; padding-bottom: 26px; }
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 380px;
  height: 1px;
  background: rgba(225, 175, 120, .28);
}
.step__num {
  display: block;
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 800;
  color: var(--ink-hi);
  line-height: 1;
  margin-bottom: 10px;
}
.step__title {
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--ink-hi);
  text-wrap: pretty;
  margin-bottom: 14px;
}
.step .bullets li { color: #ded4c9; }

/* ---------------------------------------------------------
   Etapas
   --------------------------------------------------------- */
.stage {
  font-size: clamp(21px, 2.8vw, 27px);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 14px;
}
.stage strong { font-weight: 800; }
.stage--dark { color: var(--dark); }
.stage--dark strong { color: var(--dark-hi); }
.stage--lg { font-size: clamp(22px, 3.2vw, 31px); color: var(--ink-hi); }

.stage__sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: #efe7de;
  margin-bottom: 18px;
}
.stage__sub--dark { color: var(--dark-mid); }
.stage__sub--lg { font-size: clamp(18px, 2.5vw, 23px); }

.stage__text {
  max-width: 560px;
  margin: 0 auto clamp(20px, 3vw, 26px);
  font-size: clamp(15px, 1.9vw, 16.5px);
  line-height: 1.45;
  color: var(--ink-mid);
  text-wrap: pretty;
}
.stage__text--dark { color: var(--dark-low); }

.stage__cue {
  font-size: clamp(19px, 2.5vw, 23px);
  font-weight: 700;
  color: var(--dark-hi);
  margin-bottom: 24px;
}

/* ---------------------------------------------------------
   Carrossel de módulos
   --------------------------------------------------------- */
.modules {
  overflow: hidden;
  padding-block: 28px 30px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.module {
  flex: none;
  width: 250px;
  margin-right: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 228, 200, .07), rgba(255, 228, 200, .02));
  box-shadow: inset 0 1px 0 rgba(255, 220, 180, .1), 0 20px 40px -28px rgba(0, 0, 0, .7);
  padding: 22px 20px 26px;
}
.module__tag {
  display: inline-block;
  background: linear-gradient(90deg, #c2661a, #ffbe80);
  color: #3a1c05;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.module__title {
  font-size: 21px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--ink-hi);
  text-wrap: pretty;
  margin-bottom: 18px;
}
.module__label {
  font-size: 13px;
  font-weight: 600;
  color: #f2eae2;
  margin-bottom: 8px;
}
.module .bullets { margin-bottom: 20px; }
.module .bullets:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------
   Quem conduz
   --------------------------------------------------------- */
.bio {
  display: grid;
  grid-template-columns: 305px 1fr;
  gap: clamp(30px, 4.5vw, 52px);
  align-items: start;
}
.bio__photo img {
  width: 100%;
  height: clamp(360px, 42vw, 440px);
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 205, 155, .18);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .8);
}

.bio__hook {
  font-size: clamp(19px, 2.6vw, 23px);
  line-height: 1.3;
  color: #f6efe8;
  font-weight: 400;
  text-wrap: pretty;
  margin-bottom: 22px;
}
.bio__text {
  font-size: clamp(15px, 1.9vw, 16.5px);
  line-height: 1.45;
  color: #ddd3c9;
  margin-bottom: 20px;
}
.bio__text strong { font-weight: 700; color: #f6efe8; }
.bio__cue {
  font-size: clamp(15px, 1.9vw, 16.5px);
  line-height: 1.45;
  color: #efe7de;
  font-weight: 400;
  margin-bottom: 6px;
}
.bio .bullets { margin-bottom: 20px; gap: 3px; }
.bio .bullets li { color: #ddd3c9; line-height: 1.4; }

.bio__handle {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  color: #efe7de;
  font-weight: 400;
  margin-top: 10px;
}
.bio__handle i { flex: 1; height: 1px; background: var(--line-strong); }
.bio__handle b {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: repeating-linear-gradient(135deg, rgba(255, 196, 140, .12) 0 6px, transparent 6px 12px), #2a1204;
}

/* ---------------------------------------------------------
   Investimento
   --------------------------------------------------------- */
.offer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.card {
  border: 1px solid rgba(255, 205, 155, .15);
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--card-shadow);
  padding: clamp(26px, 3.5vw, 36px) clamp(22px, 3vw, 30px);
}
.card--wide { margin-top: 22px; }

.card__title {
  font-size: clamp(19px, 2.5vw, 23px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--ink-hi);
  margin-bottom: 26px;
}

.price__line {
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.3;
  color: #f2eae2;
  margin-bottom: 20px;
}
.price__line strong { font-weight: 700; }
.price__line--lg { font-size: clamp(19px, 2.6vw, 24px); margin-bottom: 0; }

.price__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-note);
  margin-bottom: 6px;
}
.price__value {
  font-size: clamp(34px, 4.6vw, 44px);
  line-height: 1.05;
  font-weight: 800;
  color: var(--orange-soft);
  margin-bottom: 18px;
}

.proposal { counter-reset: p; margin-bottom: 26px; }
.proposal li {
  counter-increment: p;
  font-size: clamp(17px, 2.3vw, 21px);
  line-height: 1.35;
  color: #f2eae2;
  margin-bottom: 10px;
}
.proposal li::before { content: counter(p) ". "; }
.proposal li:last-child { font-size: clamp(18px, 2.4vw, 22px); color: var(--ink-hi); margin-bottom: 0; }

.fineprint { margin-top: 16px; font-size: 13px; color: var(--ink-note); }

/* ---------------------------------------------------------
   CTA final + garantia
   --------------------------------------------------------- */
.guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 26px);
  max-width: 820px;
  margin: clamp(40px, 6vw, 56px) auto 0;
  text-align: left;
}
.guarantee__seal {
  flex: none;
  width: clamp(112px, 14vw, 150px);
  height: clamp(112px, 14vw, 150px);
  border-radius: 50%;
  background: #1e0c03;
  display: grid;
  place-items: center;
}
.guarantee__seal img { width: 92%; }
.guarantee__title {
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 800;
  color: var(--dark-hi);
  margin-bottom: 8px;
}
.guarantee__text {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.45;
  color: var(--dark-low);
  text-wrap: pretty;
}

/* ---------------------------------------------------------
   Rodapé
   --------------------------------------------------------- */
.footer { padding-bottom: 40px; text-align: center; }
.footer__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 205, 155, .28), transparent);
  margin: clamp(44px, 7vw, 70px) 0 30px;
}
.footer__logo { width: clamp(96px, 11vw, 120px); margin: 0 auto 22px; }
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 26px;
  font-size: 13.5px;
  color: var(--ink-faint);
}

/* ---------------------------------------------------------
   CTA fixo (apenas mobile — remova este bloco e o <div class="sticky-cta">
   do HTML se não quiser a barra fixa)
   --------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(12, 4, 0, .55), rgba(12, 4, 0, .95));
  backdrop-filter: blur(8px);
  transform: translateY(110%);
  transition: transform .25s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn {
  min-height: 52px;
  font-size: 15px;
  box-shadow: 0 10px 24px -10px rgba(180, 90, 20, .8);
}

/* =========================================================
   Responsivo
   ========================================================= */

/* --- até 1100px: hero com respiro menor, split mais estreito --- */
@media (max-width: 1100px) {
  .split { gap: 40px; }
  .bio { grid-template-columns: 260px 1fr; }
}

/* --- até 900px: layouts de duas colunas viram uma --- */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .offer { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { max-width: 100%; }
}

/* --- até 760px: bio empilhada --- */
@media (max-width: 760px) {
  .bio { grid-template-columns: 1fr; justify-items: center; }
  .bio__photo { width: min(305px, 100%); }
  .bio__body { width: 100%; }
  .guarantee { flex-direction: column; text-align: center; }
}

/* --- até 700px: hero com a foto de fundo e o texto por cima --- */
@media (max-width: 700px) {
  /* A foto é fundo, não um bloco empilhado: o hero tem exatamente a altura
     dela e o texto fica sobreposto, como no desktop. Empilhar imagem e texto
     somava as duas alturas e abria um vão enorme antes do título. */
  .hero__bg img { width: 100%; height: auto; }

  /* Escurece a metade de baixo para o texto ter chão. A foto continua
     inteira — nada de max-height ou object-fit, que cortariam o refletor. */
  .hero__scrim {
    inset: auto 0 0 0;
    height: 60%;
    background: linear-gradient(0deg, var(--bg) 8%, rgba(21, 8, 1, .78) 34%, rgba(21, 8, 1, .42) 66%, transparent 100%);
  }

  .hero__inner {
    inset: auto 0 0 0;
    align-items: flex-end;
    padding: 0 var(--gutter) clamp(26px, 6vw, 38px);
  }
  .hero__copy { width: 100%; }
  .hero__title { font-size: clamp(27px, 7.6vw, 34px); }
  .hero__lead { font-size: 15px; }
  .hero__actions { align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 400px; }
  .hero__note { text-align: center; }
  .hero__scroll { display: none; }

  .problems { grid-template-columns: 1fr; gap: 16px; }
  .problem-card { padding: 22px 20px 24px; }

  .checks { justify-content: flex-start; text-align: left; }
  .checks li { width: 100%; align-items: flex-start; }
  .checks li::before { margin-top: 1px; }
  .checks--lg { max-width: 420px; margin-inline: auto; }

  .stage__text, .lead--center { text-align: left; }

  .footer__row { flex-direction: column; gap: 10px; text-align: center; }

  .section--notch, .section--notch-bottom { clip-path: none; }
}

/* --- até 700px: textos e cards centralizados ---
   Bloco separado de propósito: no desktop o alinhamento à esquerda é o do
   design; aqui tudo vai para o eixo central, que é como a página respira
   numa coluna só. --------------------------------------------------------- */
@media (max-width: 700px) {
  .hero__copy,
  .problem-card,
  .step,
  .split__intro,
  .split__list,
  .bio__body,
  .card,
  .module,
  .eyebrow,
  .lead,
  .lead--center,
  .stage__text { text-align: center; }

  .hero__logo { margin-inline: auto; }

  /* O marcador sai do position:absolute e volta para o fluxo do texto —
     preso na margem esquerda, ele ficaria órfão da linha centralizada. */
  .bullets li { padding-left: 0; }
  .bullets li::before { position: static; margin-right: 8px; }

  /* Checks: o item deixa de ser flex e a caixinha do ✓ vira um inline-block
     no começo do texto. Como flex, o bloco de texto ocupava a largura toda
     e empurrava o ✓ para a margem sempre que o rótulo quebrava em duas
     linhas — o ✓ ficava na borda e o texto centralizado, desencontrados. */
  .checks { justify-content: center; }
  .checks li {
    display: block;
    width: 100%;
    text-align: center;
  }
  .checks li::before {
    display: inline-flex;
    vertical-align: -5px;
    margin-right: 8px;
  }
  .checks--lg li::before { vertical-align: -7px; }

  .step:not(:last-child)::after { margin-inline: auto; }

  /* A linha do @ é elástica no desktop; aqui vira um traço fixo para o
     conjunto inteiro poder centralizar. */
  .bio__handle { justify-content: center; }
  .bio__handle i { flex: none; width: 44px; }

  /* O letter-spacing largo do eyebrow deixa um vão depois da última letra,
     o que joga o texto centralizado para a direita. O recuo compensa. */
  .eyebrow { text-indent: .38em; }
}

/* --- até 460px: ajustes finos --- */
@media (max-width: 460px) {
  .module { width: 232px; }
  .price__value { white-space: normal; }

  /* Aperta o botão o suficiente para o rótulo mais longo caber em uma
     linha só nesta largura — quebrar em duas dobra a altura da pílula. */
  .btn__wrap,
  .btn--xl .btn__wrap { padding-inline: 17px; font-size: 12.5px; letter-spacing: .02em; }
  .btn__label { gap: 7px; }
}

/* --- Movimento reduzido --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .band__track.is-looping,
  .modules__track.is-looping { animation: none; }
  .modules { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .hero__scroll { animation: none; }
  .btn { transition: none; }
  .sticky-cta { transition: none; }
}

/* --- Impressão --- */
@media print {
  .sticky-cta, .hero__scroll, .band { display: none !important; }
  body { background: #fff; color: #000; }
}
