@charset "UTF-8";
/* =========================================================================
   Código da Lesão® — Landing Page
   Alvaro Andreson
   Layout base: Figma 1920 px. Medidas proporcionais em % / vw.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. TOKENS
   ---------------------------------------------------------------------- */
:root {
  /* Cores da identidade */
  --c-yellow:      #FFE100;
  --c-mint:        #5FE3C0;
  --c-gold:        #D8A24A;
  --c-gold-dark:   #B9822F;
  --c-coral:       #E86A5C;

  --c-cream:       #F2EEE6;
  --c-gray:        #B9BEC7;
  --c-gray-dim:    #7E858F;

  --c-ink:         #0B0F16;
  --c-navy:        #141B26;
  --c-blue-deep:   #00074D;
  --c-black:       #000000;
  --c-n-950:       #161616;
  --c-n-900:       #1F1F1F;
  --c-n-850:       #262626;
  --c-placeholder: #D9D9D9;

  --c-line-soft:   rgba(242, 238, 230, .10);
  --c-line:        rgba(242, 238, 230, .18);
  --c-line-strong: rgba(242, 238, 230, .40);

  /* Tipografia */
  --f-sans:    "Rubik", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --f-display: "Space Grotesk", "Rubik", "Segoe UI", Helvetica, Arial, sans-serif;
  --f-mono:    "Space Mono", ui-monospace, Consolas, "Courier New", monospace;
  --f-serif:   "Source Serif 4", Georgia, "Times New Roman", serif;

  /* Escala fluida — valor máximo = medida do Figma em 1920 px */
  --fs-h1:      clamp(2.125rem, 4.06vw, 4.875rem);   /* 78 px  */
  --fs-h2:      clamp(1.75rem, 2.83vw, 3.4rem);      /* 54.4px */
  --fs-lead:    clamp(1rem, 1.25vw, 1.5rem);         /* 24 px  */
  --fs-body:    clamp(.9375rem, 1.02vw, 1.0875rem);  /* 17.4px */
  --fs-small:   clamp(.875rem, .833vw, 1rem);        /* 16 px  */
  --fs-fine:    clamp(.8125rem, .79vw, .95rem);      /* 15.2px */
  --fs-eyebrow: clamp(.6875rem, .6vw, .719rem);      /* 11.5px */

  /* Espaçamentos */
  --gutter:     clamp(20px, 8.854vw, 170px);   /* 170 / 1920 */
  --gutter-mid: clamp(20px, 19.22vw, 369px);   /* 369 / 1920 */
  --gutter-sm:  clamp(20px, 20.52vw, 394px);   /* 394 / 1920 */
  --wrap:       1580px;
  --wrap-mid:   1182px;
  --wrap-sm:    1132px;
  --sp-section: clamp(64px, 7.6vw, 146px);
  --header-h:   clamp(64px, 4.5vw, 86px);
  --radius-lg:  14px;
  --radius-xl:  25px;
}

/* -------------------------------------------------------------------------
   2. RESET / BASE
   ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--c-black);
  color: var(--c-cream);
  font-family: var(--f-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

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

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

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--c-yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--c-yellow);
  color: #000;
  font-family: var(--f-display);
  font-weight: 700;
  border-radius: 0 0 8px 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* -------------------------------------------------------------------------
   3. CONTAINERS
   ---------------------------------------------------------------------- */
.wrap {
  width: min(var(--wrap), 100% - 2 * var(--gutter));
  margin-inline: auto;
}
.wrap--mid {
  width: min(var(--wrap-mid), 100% - 2 * var(--gutter-mid));
}
.wrap--sm {
  width: min(var(--wrap-sm), 100% - 2 * var(--gutter-sm));
}

/* Camada de imagem de fundo (full-bleed) */
.bg-layer,
.hero__bg, .intro__bg, .pilares__bg, .perguntas__bg,
.competencias__bg, .transparencia__bg, .publico__bg,
.nao-publico__bg, .formato__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg img, .intro__bg img, .pilares__bg img, .perguntas__bg img,
.nao-publico__bg img, .formato__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------------------------------------------------
   4. TIPOGRAFIA UTILITÁRIA
   ---------------------------------------------------------------------- */
.h-display {
  font-family: var(--f-sans);
  font-weight: 500;
  font-style: italic;
  font-size: var(--fs-h2);
  line-height: .98;
  letter-spacing: -.01em;
  color: var(--c-cream);
  text-wrap: balance;
}
.h-display--loose { line-height: 1.1; }
.h-display--grotesk {
  font-family: var(--f-display);
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.38;
  color: #fff;
  font-weight: 400;
}

.fineprint {
  font-size: var(--fs-fine);
  font-style: italic;
  line-height: 1.35;
  color: #fff;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: var(--fs-eyebrow);
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-mint);
  line-height: 1.7;
}
.eyebrow::before { content: "["; color: var(--c-gray-dim); margin-right: .6em; }
.eyebrow::after  { content: "]"; color: var(--c-gray-dim); margin-left: .6em; }
.eyebrow--brackets-yellow::before,
.eyebrow--brackets-yellow::after { color: var(--c-yellow); }
.eyebrow--yellow { color: var(--c-yellow); letter-spacing: .2em; }
.eyebrow--plain  { letter-spacing: .18em; }
.eyebrow--muted  { color: var(--c-gray-dim); letter-spacing: .18em; }
.eyebrow--gold   { color: var(--c-gold); letter-spacing: .18em; }
.eyebrow--yellow::before, .eyebrow--yellow::after,
.eyebrow--plain::before,  .eyebrow--plain::after,
.eyebrow--muted::before,  .eyebrow--muted::after,
.eyebrow--gold::before,   .eyebrow--gold::after { content: none; }

/* Linha de apoio em amarelo, acima do título da seção */
.kicker {
  font-family: var(--f-sans);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1rem, 1.15vw, 1.375rem);
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-yellow);
}

.section-head { display: grid; gap: clamp(18px, 1.7vw, 32px); }
.section-head .eyebrow + .kicker { margin-top: calc(-1 * clamp(8px, .85vw, 16px)); }
.section-head .kicker + .h-display { margin-top: calc(-1 * clamp(6px, .6vw, 12px)); }
.section-head--center { justify-items: center; text-align: center; }
.section-head--right  { justify-items: end;    text-align: right; }

/* -------------------------------------------------------------------------
   5. BOTÕES
   ---------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  min-height: 48px;
  padding: clamp(13px, 1.1vw, 21px) clamp(22px, 1.77vw, 34px);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(.8125rem, .94vw, 1.125rem);
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  border-radius: 50px;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn--primary { background: var(--c-yellow); color: #000; }
.btn--primary:hover { background: #FFEB57; transform: translateY(-2px); }
.btn--ghost { border: 1px solid var(--c-yellow); color: var(--c-yellow); }
.btn--ghost:hover { background: rgba(255, 225, 0, .12); transform: translateY(-2px); }
.btn--sm { min-height: 40px; padding: 10px 20px; font-size: .8125rem; }
.btn--block { display: flex; width: 100%; }

/* -------------------------------------------------------------------------
   6. CABEÇALHO
   ---------------------------------------------------------------------- */
/* O cabeçalho começa oculto e desce quando a página é rolada.
   `:focus-within` garante que quem navega por teclado alcance o menu no topo. */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 15, 22, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line-soft);
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition: transform .35s cubic-bezier(.22, .8, .3, 1), opacity .25s ease;
}
.site-header.is-scrolled,
.site-header:focus-within {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 40px);
}

.site-header__brand {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.site-header__brand img { width: auto; height: clamp(30px, 2.2vw, 42px); }

.nav-main { margin-left: auto; }
.nav-main__list { display: flex; align-items: center; gap: clamp(16px, 1.7vw, 32px); }
.nav-main__list a {
  position: relative;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(.8125rem, .78vw, .9375rem);
  color: var(--c-cream);
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-main__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--c-yellow);
  transition: width .25s ease;
}
.nav-main__list a:hover { color: var(--c-yellow); }
.nav-main__list a:hover::after { width: 100%; }

/* Botão hambúrguer */
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  background: rgba(11, 15, 22, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nav-toggle__bars { display: grid; gap: 5px; width: 22px; }
.nav-toggle__bars span {
  display: block;
  height: 2px;
  background: var(--c-cream);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease, background-color .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   7. MENU LATERAL (drawer — desliza a partir da esquerda)
   ---------------------------------------------------------------------- */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .35s ease;
}
.drawer-backdrop[hidden] { display: none; }
.drawer-backdrop.is-visible { opacity: 1; }

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: min(86vw, 380px);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 26px calc(22px + env(safe-area-inset-bottom));
  background: var(--c-ink);
  border-right: 1px solid var(--c-line);
  box-shadow: 24px 0 60px rgba(0, 0, 0, .6);
  transform: translateX(-100%);
  visibility: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  transition: transform .38s cubic-bezier(.22, .8, .3, 1), visibility .38s;
}
.drawer.is-open { transform: translateX(0); visibility: visible; }

.drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-line-soft);
}
.drawer__logo { width: auto; height: 40px; }
.drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  font-size: 1.05rem;
  color: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  transition: color .2s ease, border-color .2s ease;
}
.drawer__close:hover { color: var(--c-yellow); border-color: var(--c-yellow); }

.drawer__nav { flex: 1 1 auto; padding: 12px 0; }
.drawer__nav ul { display: grid; }
.drawer__nav a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 4px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1.25;
  color: var(--c-cream);
  border-bottom: 1px solid var(--c-line-soft);
  transition: color .2s ease, padding-left .2s ease;
}
.drawer__nav a:hover { color: var(--c-yellow); padding-left: 10px; }
.drawer__num {
  flex: 0 0 auto;
  font-family: var(--f-mono);
  font-size: .6875rem;
  letter-spacing: .1em;
  color: var(--c-yellow);
}

.drawer__foot { display: grid; gap: 12px; padding-top: 16px; }
.drawer__note {
  font-family: var(--f-mono);
  font-size: .6875rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-gray-dim);
  text-align: center;
}

/* -------------------------------------------------------------------------
   8. HERÓI
   ---------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(600px, 50.1vw, 962px);
  padding-block: calc(var(--header-h) + 24px) clamp(48px, 4vw, 80px);
  background: var(--c-black);
  overflow: hidden;
}
.hero__bg::after {
  /* véu para garantir contraste do texto sobre a imagem */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .45) 45%, rgba(0, 0, 0, 0) 70%);
}
.hero__inner { position: relative; z-index: 1; }
.hero__logo { width: 39.5%; max-width: 467px; height: auto; }
.hero__title {
  max-width: 56.6%;
  margin-top: clamp(24px, 4.7vw, 90px);
  font-family: var(--f-sans);
  font-weight: 500;
  font-style: italic;
  font-size: var(--fs-h1);
  line-height: .87;
  letter-spacing: -.015em;
  color: #fff;
}
.hero__lead {
  max-width: 56.6%;
  margin-top: clamp(18px, 1.9vw, 36px);
  font-size: var(--fs-lead);
  line-height: 1.28;
  color: #fff;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, .78vw, 15px);
  margin-top: clamp(26px, 2.5vw, 48px);
}

/* -------------------------------------------------------------------------
   9. FAIXA DE DESTAQUES
   ---------------------------------------------------------------------- */
.strip {
  background: var(--c-n-900);
  padding-block: clamp(18px, 2vw, 40px);
}
.strip__list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.pill {
  padding: 7px 13px;
  font-family: var(--f-mono);
  font-size: clamp(.6875rem, .615vw, .7375rem);
  letter-spacing: .04em;
  line-height: 1.7;
  color: var(--c-gray);
  background: rgba(255, 255, 255, .02);
  border: 2px solid var(--c-line);
  border-radius: 40px;
  white-space: nowrap;
}
.pill--hi { color: var(--c-yellow); font-weight: 700; }

/* -------------------------------------------------------------------------
   10. A FORMAÇÃO (intro)
   ---------------------------------------------------------------------- */
.intro {
  position: relative;
  background: var(--c-black);
  padding-block: clamp(64px, 7.6vw, 147px) clamp(64px, 9.2vw, 176px);
  overflow: hidden;
}
.intro__inner { position: relative; z-index: 1; }
.intro__content {
  margin-left: auto;
  text-align: right;
  display: grid;
  justify-items: end;
  gap: clamp(18px, 1.4vw, 27px);
}
.intro__content .h-display { max-width: 45.1%; }
.intro__content .lead { max-width: 34.4%; }
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
  max-width: 46%;
  margin-top: clamp(8px, .9vw, 18px);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 4px 22px 4px 5px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(.875rem, .875vw, 1.05rem);
  color: var(--c-cream);
  background: var(--c-navy);
  border: 1px solid var(--c-line);
  border-radius: 50px;
}
.chip__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  font-family: var(--f-mono);
  font-size: .8rem;
  color: var(--c-yellow);
  background: var(--c-navy);
  border: 1px solid var(--c-line);
  border-radius: 50%;
}

/* -------------------------------------------------------------------------
   11. OBJETIVO (cartão sobre azul profundo)
   ---------------------------------------------------------------------- */
.objetivo {
  background: var(--c-blue-deep);
  padding-block: 0 clamp(28px, 3.5vw, 67px);
}
.objetivo__card {
  position: relative;
  width: 90.6%;
  margin-inline: auto;
  min-height: clamp(360px, 27.9vw, 536px);
  background: var(--c-n-850);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.objetivo__body {
  width: 51.5%;
  padding: clamp(32px, 3vw, 58px) 0 clamp(32px, 3vw, 58px) 8.7%;
  display: grid;
  gap: clamp(20px, 2.3vw, 45px);
}
.objetivo__lead {
  font-size: var(--fs-lead);
  line-height: 1.38;
  color: #fff;
}
.objetivo__kicker {
  font-family: var(--f-sans);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(.9375rem, .94vw, 1.125rem);
  line-height: 1.44;
  letter-spacing: .154em;
  text-transform: uppercase;
  color: var(--c-yellow);
}
.arrow-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, .75vw, 14px) clamp(16px, 1.6vw, 30px);
  margin-top: clamp(-8px, -.6vw, 0px);
}
.arrow-list li {
  position: relative;
  padding-left: 30px;
  font-size: clamp(.875rem, .875vw, 1.05rem);
  line-height: 1.7;
  color: #fff;
}
.arrow-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--c-yellow);
}
/* A imagem acompanha a altura do cartão: sem sobra acima nem abaixo */
.objetivo__img {
  position: absolute;
  right: 7.4%;
  top: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

/* -------------------------------------------------------------------------
   12. ORIGEM (Nem toda lesão começa onde dói)
   ---------------------------------------------------------------------- */
.origem {
  background: var(--c-n-950);
  padding-block: clamp(56px, 5.6vw, 108px) clamp(64px, 6.7vw, 128px);
  overflow-x: clip;
}
.origem__inner {
  display: grid;
  grid-template-columns: 61% 39%;
  align-items: start;
}
.origem__text {
  display: grid;
  gap: clamp(20px, 2.3vw, 44px);
  max-width: 87.1%;
}

.dot-list { display: grid; gap: clamp(8px, .6vw, 12px); }
.dot-list li {
  position: relative;
  padding-left: 35px;
  font-weight: 500;
  font-size: clamp(.9375rem, .92vw, 1.1rem);
  line-height: 1.7;
  color: var(--c-cream);
}
.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 16px;
  height: 16px;
  background: var(--c-ink);
  border: 2px solid var(--c-yellow);
  border-radius: 50%;
}

.origem__media {
  position: relative;
  width: 141.6%;          /* extravasa a coluna, como no layout original */
  aspect-ratio: 653 / 674;
}
.origem__media img {
  position: absolute;
  width: 57.12%;
  aspect-ratio: 373 / 602;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-xl);
}
.origem__media img:first-child { left: 0; top: 0; }
.origem__media img:last-child  { left: 42.88%; bottom: 0; }

/* -------------------------------------------------------------------------
   13. PILARES
   ---------------------------------------------------------------------- */
.pilares {
  position: relative;
  background: var(--c-black);
  padding-block: clamp(64px, 4.8vw, 93px) clamp(64px, 6vw, 116px);
  overflow: hidden;
}
.pilares__inner { position: relative; z-index: 1; }
.pilares__inner .section-head .h-display { max-width: 45.1%; }
.pilares__inner .section-head .lead { max-width: 42%; }

.pilares__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  column-gap: clamp(20px, 1vw, 16px);
  width: 77.5%;
  margin: clamp(32px, 2.7vw, 52px) auto 0;
}
.pilar {
  display: grid;
  grid-template-columns: clamp(56px, 4.43vw, 85px) 1fr;
  padding: clamp(20px, 1.7vw, 33px) 0 clamp(24px, 2.2vw, 42px);
  border-top: 1px solid var(--c-line-strong);
}
.pilar__num {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.83vw, 2.2rem);
  line-height: 1.2;
  color: var(--c-yellow);
  opacity: .9;
}
.pilar__body { padding-top: clamp(4px, .73vw, 14px); display: grid; gap: 9px; }
.pilar__body h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.25vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--c-cream);
}
.pilar__body p {
  font-family: var(--f-serif);
  font-size: var(--fs-small);
  line-height: 1.7;
  color: var(--c-gray);
}
.pilares__closing {
  width: 77.5%;
  margin: clamp(24px, 1.8vw, 34px) auto 0;
  text-align: right;
}

/* -------------------------------------------------------------------------
   14. TRÊS PERGUNTAS
   ---------------------------------------------------------------------- */
.perguntas {
  position: relative;
  background: var(--c-n-950);
  padding-block: clamp(56px, 4vw, 76px) clamp(56px, 4.6vw, 88px);
  overflow: hidden;
}
.perguntas__inner { position: relative; z-index: 1; }
.perguntas__inner .h-display { max-width: 51%; }

.perguntas__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.25vw, 24px);
  width: 71.6%;
  margin: clamp(28px, 2.4vw, 46px) auto 0;
}
.pergunta {
  position: relative;
  display: grid;
  align-content: start;
  gap: clamp(10px, .94vw, 18px);
  padding: clamp(24px, 2.08vw, 40px) clamp(20px, 1.67vw, 32px);
  background: var(--c-navy);
  border: 1px solid var(--c-yellow);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pergunta__ghost {
  position: absolute;
  top: -.12em;
  right: clamp(10px, 1.1vw, 18px);
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: clamp(3rem, 4.17vw, 5rem);
  line-height: 1;
  color: var(--c-cream);
  opacity: .18;
  pointer-events: none;
}
.pergunta h3 {
  position: relative;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.42vw, 1.7rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--c-cream);
}
.perguntas__closing {
  max-width: 45.1%;
  margin: clamp(28px, 2.7vw, 52px) auto 0;
  text-align: center;
}

/* -------------------------------------------------------------------------
   15. COMPETÊNCIAS (Você não sai daqui…)
   ---------------------------------------------------------------------- */
.competencias {
  position: relative;
  background: var(--c-black);
  padding-block: clamp(56px, 5.8vw, 112px) clamp(64px, 6.4vw, 123px);
  overflow: hidden;
}
.competencias__bg { right: auto; width: 49.7%; }
.competencias__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.competencias__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 55%, #000 100%);
}
.competencias__inner { position: relative; z-index: 1; }
.competencias__inner .h-display { max-width: 45.1%; }

.skill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.05vw, 20px);
  width: 62%;
  margin-left: auto;
  margin-top: clamp(28px, 3.3vw, 63px);
}
.skill {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: clamp(22px, 1.85vw, 35px) clamp(18px, 1.46vw, 28px) clamp(22px, 1.56vw, 30px);
  background: var(--c-navy);
  border: 1px solid var(--c-line-soft);
  border-radius: 8px;
}
.skill__tag {
  font-family: var(--f-mono);
  font-size: clamp(.6875rem, .667vw, .8rem);
  letter-spacing: .1em;
  color: var(--c-gold);
}
.skill h3 {
  margin-top: 3px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.125vw, 1.35rem);
  line-height: 1.1;
  letter-spacing: .02em;
  color: var(--c-cream);
}
.skill__desc {
  font-family: var(--f-serif);
  font-size: var(--fs-small);
  line-height: 1.7;
  color: var(--c-gray);
}

/* -------------------------------------------------------------------------
   16. TRANSPARÊNCIA (O que você não vai encontrar aqui)
   ---------------------------------------------------------------------- */
.transparencia {
  position: relative;
  background: var(--c-black);
  padding-block: clamp(56px, 7.3vw, 141px) clamp(56px, 6.1vw, 117px);
  overflow: hidden;
}
.transparencia__bg img { width: 100%; height: 100%; object-fit: cover; }
.transparencia__portrait {
  position: absolute;
  right: 9.4%;
  bottom: 0;
  z-index: 0;
  width: 41.2%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.transparencia__inner { position: relative; z-index: 1; display: grid; gap: clamp(16px, 1.35vw, 26px); }
.transparencia__inner .h-display { max-width: 45.6%; }
.transparencia__inner .lead { max-width: 41.4%; }

.cross-list { display: grid; gap: 4px; }
.cross-list--2col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(16px, 1.6vw, 32px);
  margin-top: clamp(6px, .9vw, 18px);
  max-width: 51.4%;
}
.cross-list li {
  position: relative;
  padding-left: 28px;
  font-family: var(--f-display);
  font-size: clamp(.875rem, .94vw, 1.125rem);
  line-height: 1.6;
  color: #fff;
}
.cross-list li::before {
  content: "\2715";
  position: absolute;
  left: 0;
  color: var(--c-coral);
}
.cross-list--yellow li { font-family: var(--f-sans); color: var(--c-gray); }
.cross-list--yellow li::before { color: var(--c-yellow); }

.focus-label {
  margin-top: clamp(14px, 1.6vw, 30px);
  font-family: var(--f-sans);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1rem, 1.15vw, 1.375rem);
  text-transform: uppercase;
  color: var(--c-gold);
}
.gold-pills { display: flex; flex-wrap: wrap; gap: clamp(8px, .63vw, 12px); max-width: 56%; }
.gold-pills li {
  padding: 8px 20px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(.9375rem, .96vw, 1.15rem);
  line-height: 1.7;
  color: var(--c-gold);
  background: rgba(216, 162, 74, .12);
  border: 1px solid var(--c-gold);
  border-radius: 40px;
}
.transparencia .fineprint { margin-top: clamp(12px, 1.3vw, 26px); max-width: 44.8%; }

/* -------------------------------------------------------------------------
   17. PARA QUEM É
   ---------------------------------------------------------------------- */
.publico {
  position: relative;
  background: var(--c-black);
  padding-block: clamp(56px, 2.5vw, 47px) clamp(64px, 5.6vw, 108px);
  overflow: hidden;
}
.publico__bg { left: 29.4%; right: auto; width: 81.5%; }
.publico__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.publico__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .55) 22%, rgba(0, 0, 0, .1) 50%);
}
.publico__inner { position: relative; z-index: 1; padding-top: clamp(24px, 3.5vw, 67px); }
.publico__inner .section-head .h-display { max-width: 64.3%; }

.publico__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, .85vw, 16px);
  margin-top: clamp(32px, 3.9vw, 75px);
}
.publico-card {
  flex: 0 1 calc(33.333% - 11px);
  display: grid;
  align-content: start;
  background: var(--c-navy);
  border: 1px solid var(--c-yellow);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
}
.publico-card__media {
  display: none;
  aspect-ratio: 387 / 207;
  background: var(--c-placeholder);
}
.publico-card__media img { width: 100%; height: 100%; object-fit: cover; }
.publico-card h3 {
  padding: clamp(20px, 1.67vw, 32px) clamp(18px, 1.67vw, 32px) 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.08vw, 1.3rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--c-cream);
}
.publico-card p {
  padding: clamp(12px, .95vw, 18px) clamp(18px, 1.67vw, 32px) clamp(20px, 1.67vw, 32px);
  font-size: var(--fs-small);
  line-height: 1.7;
  color: var(--c-gray);
}

.note-bar {
  width: 47.8%;
  margin: clamp(32px, 3vw, 58px) auto 0;
  padding: 12px 0 12px 20px;
  border-left: 1px solid var(--c-yellow);
  font-size: var(--fs-fine);
  font-style: italic;
  line-height: 1.45;
  color: #fff;
}

/* -------------------------------------------------------------------------
   18. PARA QUEM NÃO É
   ---------------------------------------------------------------------- */
.nao-publico {
  position: relative;
  background: var(--c-black);
  padding-block: clamp(56px, 5.2vw, 100px) clamp(56px, 6.5vw, 126px);
  overflow: hidden;
}
.nao-publico__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .55) 42%, rgba(0, 0, 0, .1) 75%);
}
.nao-publico__inner { position: relative; z-index: 1; display: grid; gap: clamp(18px, 1.4vw, 27px); }
.nao-publico__inner .h-display { max-width: 47.7%; line-height: 1.1; }

.plain-list { display: grid; gap: clamp(4px, .35vw, 7px); max-width: 47.7%; }
.plain-list li {
  font-size: var(--fs-lead);
  line-height: 1.3;
  color: var(--c-cream);
}
.nao-publico .cross-list { margin-top: clamp(10px, 1vw, 20px); max-width: 47.7%; }

/* -------------------------------------------------------------------------
   19. MÓDULOS
   ---------------------------------------------------------------------- */
.modulos {
  background: var(--c-n-950);
  padding-block: clamp(56px, 7.3vw, 140px) clamp(56px, 5.7vw, 110px);
}
.modulos__inner .section-head .h-display { max-width: 40.4%; }
.modulos__inner .section-head .lead { max-width: 40.4%; }

.modulos__list {
  width: 49.9%;
  margin: clamp(32px, 4.6vw, 88px) auto 0;
  border-top: 1px solid var(--c-line-strong);
}
.modulo {
  display: grid;
  grid-template-columns: clamp(70px, 6.35vw, 122px) 1fr;
  padding: clamp(20px, 1.45vw, 28px) 0 clamp(20px, 1.5vw, 29px);
  border-bottom: 1px solid var(--c-line-strong);
}
.modulo__index { display: grid; gap: 2px; }
.modulo__label {
  font-family: var(--f-mono);
  font-size: clamp(.6875rem, .682vw, .82rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-yellow);
}
.modulo__num {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: clamp(1.375rem, 1.67vw, 2rem);
  line-height: 1;
  letter-spacing: .04em;
  color: var(--c-cream);
}
.modulo__body { display: grid; gap: 7px; }
.modulo__body h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.21vw, 1.45rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--c-cream);
}
.modulo__body p {
  font-size: clamp(.9375rem, .85vw, 1.02rem);
  line-height: 1.7;
  color: var(--c-gray);
}

/* -------------------------------------------------------------------------
   20. COMO FUNCIONA
   ---------------------------------------------------------------------- */
.formato {
  background: var(--c-navy);
  padding-block: clamp(56px, 5.1vw, 98px) clamp(56px, 5.2vw, 99px);
}
.formato__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-black);
}
.formato__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .55) 55%, rgba(0, 0, 0, .35) 100%);
}
.formato__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(32px, 4.3vw, 68px) clamp(36px, 6vw, 96px);
  padding-inline: max(22px, 12.6%);
  display: grid;
  gap: clamp(14px, 1.1vw, 21px);
}
.formato__inner .h-display { max-width: 64.3%; line-height: 1.1; }

.formato__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.05vw, 20px);
  margin-top: clamp(20px, 2.6vw, 50px);
}
.formato-card {
  display: grid;
  align-content: start;
  gap: 7px;
  padding: clamp(22px, 1.9vw, 30px);
  background: var(--c-navy);
  border: 1px solid var(--c-yellow);
  border-radius: var(--radius-lg);
}
.formato-card h3 {
  margin-top: 5px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.04vw, 1.25rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--c-cream);
}
.formato-card p {
  font-size: var(--fs-small);
  line-height: 1.7;
  color: var(--c-gray);
}

/* -------------------------------------------------------------------------
   21. O QUE VOCÊ RECEBE
   ---------------------------------------------------------------------- */
.entrega {
  position: relative;
  background: var(--c-black);
  padding-block: clamp(56px, 3.5vw, 67px) clamp(56px, 4vw, 78px);
  overflow: hidden;
}
.entrega__img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 36.4%;
  height: auto;
  object-fit: contain;
  object-position: right bottom;
}
.entrega__inner { position: relative; z-index: 1; display: grid; gap: clamp(16px, 1.35vw, 26px); }
.entrega__inner .h-display { max-width: 41.6%; }

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.15vw, 22px) clamp(20px, 1.9vw, 36px);
  width: 58%;
  margin-top: clamp(14px, 1.4vw, 27px);
}
.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: clamp(1rem, 1.15vw, 1.375rem);
  line-height: 1.4;
  color: var(--c-cream);
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--c-yellow);
}
.entrega__cta { justify-self: start; margin-top: clamp(16px, 1.8vw, 34px); }

/* -------------------------------------------------------------------------
   22. BÔNUS EXCLUSIVOS
   ---------------------------------------------------------------------- */
.bonus {
  position: relative;
  background: var(--c-black);
  padding-block: clamp(56px, 6.4vw, 123px) clamp(56px, 6.4vw, 123px);
  overflow: hidden;
}
.bonus__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.bonus__bg img { width: 100%; height: 100%; object-fit: cover; }
.bonus__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .55) 55%, rgba(0, 0, 0, .25) 100%);
}
.bonus__inner { position: relative; z-index: 1; }
.bonus__inner .section-head .h-display { max-width: 64.3%; }

.bonus__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.05vw, 20px);
  margin-top: clamp(32px, 4.2vw, 80px);
}
.bonus-card {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: clamp(24px, 1.82vw, 35px);
  background: linear-gradient(135deg, var(--c-navy) 0%, #1A2331 100%);
  border: 1px solid var(--c-yellow);
  border-radius: var(--radius-lg);
}
.bonus-card h3 {
  margin-top: 5px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.08vw, 1.3rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--c-cream);
}
.bonus-card p:last-child {
  font-size: var(--fs-small);
  line-height: 1.7;
  color: var(--c-gray);
}

/* -------------------------------------------------------------------------
   23. QUEM ESTÁ POR TRÁS (mentor)
   ---------------------------------------------------------------------- */
.mentor {
  background: var(--c-navy);
  padding-block: clamp(56px, 5.7vw, 109px) clamp(56px, 6.1vw, 117px);
}
.mentor__inner {
  display: grid;
  grid-template-columns: 40.35% 54.57%;
  gap: 5.08%;
  align-items: start;
}
.mentor__card {
  position: relative;
  margin: 0;
  aspect-ratio: 477 / 596;
  background: linear-gradient(180deg, #1A2331 0%, var(--c-ink) 100%);
  border: 1px solid var(--c-yellow);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.mentor__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(216, 162, 74, .14) 0%, rgba(216, 162, 74, 0) 60%);
  pointer-events: none;
}
.mentor__card img {
  position: absolute;
  inset: 0;
  width: 101.7%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.mentor__tag {
  position: absolute;
  top: 4.4%;
  left: 5.7%;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: clamp(.6875rem, .651vw, .78rem);
  letter-spacing: .2em;
  color: var(--c-yellow);
}
.mentor__badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 14px 20px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(.8125rem, .79vw, .95rem);
  line-height: 1.7;
  color: #1A1206;
  background: var(--c-yellow);
  border-radius: 12px 0 0 0;
}

.mentor__body { display: grid; gap: clamp(14px, 1.1vw, 21px); }
.mentor__name { font-size: clamp(1.6rem, 2.42vw, 2.9rem); line-height: 1.1; }
.mentor__role {
  font-family: var(--f-mono);
  font-size: clamp(.75rem, .682vw, .82rem);
  line-height: 2;
  letter-spacing: .04em;
  color: var(--c-yellow);
}
.mentor__text {
  font-size: clamp(.9375rem, .9vw, 1.08rem);
  line-height: 1.7;
  color: var(--c-gray);
}
.mentor__text--serif { font-family: var(--f-serif); }

.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-block: clamp(4px, .5vw, 10px); }
.tag-list li {
  padding: 5px 12px;
  font-family: var(--f-mono);
  font-size: clamp(.6875rem, .615vw, .7375rem);
  line-height: 1.7;
  color: var(--c-yellow);
  border: 1px solid var(--c-yellow);
  border-radius: 6px;
}

/* -------------------------------------------------------------------------
   24. POR QUE APRENDER COMIGO
   ---------------------------------------------------------------------- */
.porque {
  position: relative;
  background: var(--c-black);
  padding-block: clamp(56px, 6.25vw, 120px);
  overflow: hidden;
}
.porque__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.porque__bg img { width: 100%; height: 100%; object-fit: cover; }
.porque__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .6) 50%, rgba(0, 0, 0, .35) 100%);
}
.porque__inner { position: relative; z-index: 1; display: grid; gap: clamp(16px, 1.12vw, 21px); }
.porque__title {
  max-width: 72.4%;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.92vw, 2.3rem);
  line-height: 1.25;
  color: var(--c-cream);
}
.porque__lead {
  max-width: 55%;
  font-size: clamp(1rem, 1.02vw, 1.22rem);
  line-height: 1.7;
  color: var(--c-gray);
}

.proposta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.05vw, 20px);
  margin-top: clamp(18px, 1.6vw, 30px);
}
.proposta__card {
  display: grid;
  align-content: start;
  gap: 3px;
  padding: clamp(24px, 1.82vw, 35px) clamp(20px, 1.46vw, 28px) clamp(22px, 1.46vw, 28px);
  background: var(--c-navy);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-lg);
}
.proposta__card--gold { border-color: rgba(216, 162, 74, .35); }
.proposta__label { color: #fff; letter-spacing: .14em; }
.proposta__value {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.08vw, 1.3rem);
  line-height: 1.7;
  color: var(--c-cream);
}
.proposta__value--yellow { color: var(--c-yellow); }

/* -------------------------------------------------------------------------
   25. TURMA FUNDADORA
   ---------------------------------------------------------------------- */
.fundadora {
  position: relative;
  background: var(--c-ink);
  padding-block: clamp(56px, 6.25vw, 120px);
  overflow: hidden;
}
.fundadora::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(95, 227, 192, .10) 0%, rgba(95, 227, 192, 0) 60%);
  pointer-events: none;
}
.fundadora__inner { position: relative; z-index: 1; }
.fundadora__card {
  display: grid;
  gap: clamp(10px, .68vw, 13px);
  width: 56.96%;
  margin-inline: auto;
  padding: clamp(28px, 2.92vw, 56px);
  background: linear-gradient(180deg, var(--c-navy) 0%, #0F141D 100%);
  border: 1px solid var(--c-yellow);
  border-radius: var(--radius-lg);
}
.fundadora__eyebrow { letter-spacing: .24em; }
.fundadora__card .h-display { font-size: clamp(1.5rem, 2.33vw, 2.8rem); margin-top: 7px; }
.fundadora__text {
  font-size: clamp(.9375rem, .92vw, 1.1rem);
  line-height: 1.7;
  color: var(--c-gray);
}
.fundadora__text--serif { font-family: var(--f-serif); }

/* -------------------------------------------------------------------------
   26. INVESTIMENTO
   ---------------------------------------------------------------------- */
.investimento {
  position: relative;
  background: var(--c-black);
  padding-block: clamp(56px, 6.25vw, 120px);
  overflow: hidden;
}
.investimento__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.investimento__bg img { width: 100%; height: 100%; object-fit: cover; }
.investimento__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .35) 45%, rgba(0, 0, 0, .7) 100%);
}
.investimento__inner { position: relative; z-index: 1; }
.investimento__inner .section-head .h-display { max-width: 48.1%; }

.preco {
  width: 45.6%;
  margin: clamp(32px, 4.2vw, 80px) auto 0;
  background: var(--c-navy);
  border: 1px solid var(--c-line);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .5);
  overflow: hidden;
}
.preco__inclui {
  padding: clamp(28px, 2.29vw, 44px) clamp(24px, 2.29vw, 44px) clamp(22px, 1.56vw, 30px);
  border-bottom: 1px solid var(--c-line-soft);
}
.preco__inclui h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.33vw, 1.6rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  text-align: center;
  color: var(--c-cream);
}
.preco__lista {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px clamp(14px, 1.25vw, 24px);
  margin-top: clamp(16px, 1.15vw, 22px);
}
.preco__lista li {
  position: relative;
  padding-left: 22px;
  font-size: var(--fs-small);
  line-height: 1.7;
  color: var(--c-gray);
}
.preco__lista li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--c-mint);
}
.preco__valor {
  display: grid;
  justify-items: center;
  gap: clamp(8px, .6vw, 12px);
  padding: clamp(30px, 2.4vw, 46px) clamp(24px, 2.29vw, 44px);
  background: var(--c-ink);
  text-align: center;
}
.preco__valor .eyebrow { letter-spacing: .2em; }
.preco__numero {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 3.33vw, 4rem);
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--c-cream);
}
.preco__numero span {
  font-weight: 500;
  font-size: .35em;
  color: var(--c-gray);
  vertical-align: baseline;
}
.preco__nota {
  max-width: 30ch;
  font-size: clamp(.875rem, .85vw, 1.02rem);
  line-height: 1.5;
  color: var(--c-yellow);
}
.preco__cta { margin-top: clamp(6px, .7vw, 14px); box-shadow: 0 8px 30px rgba(216, 162, 74, .28); }

/* -------------------------------------------------------------------------
   27. GARANTIA
   ---------------------------------------------------------------------- */
.garantia {
  background: #0F141D;
  padding-block: clamp(56px, 6.25vw, 120px);
}
.garantia__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 1.87vw, 36px);
  width: 53.2%;
  margin-inline: auto;
  padding: clamp(26px, 2.29vw, 44px);
  background: var(--c-navy);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-lg);
}
.garantia__selo {
  display: grid;
  place-content: center;
  justify-items: center;
  width: clamp(76px, 5.2vw, 100px);
  height: clamp(76px, 5.2vw, 100px);
  border: 2px solid var(--c-yellow);
  border-radius: 50%;
  color: var(--c-yellow);
  font-family: var(--f-mono);
  text-align: center;
}
.garantia__selo strong { font-size: clamp(1.5rem, 1.67vw, 2rem); line-height: 1.1; }
.garantia__selo span { font-size: clamp(.8125rem, .94vw, 1.125rem); line-height: 1.1; }
.garantia__body { display: grid; gap: 9px; }
.garantia__title {
  font-family: var(--f-sans);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.15rem, 1.17vw, 1.4rem);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--c-cream);
}
.garantia__body p {
  font-size: var(--fs-small);
  line-height: 1.7;
  color: var(--c-gray);
}

/* -------------------------------------------------------------------------
   28. PERGUNTAS FREQUENTES
   ---------------------------------------------------------------------- */
.faq {
  background: var(--c-black);
  padding-block: clamp(56px, 6.56vw, 126px) clamp(56px, 6.25vw, 120px);
}
.faq__inner .section-head .h-display { max-width: 48.1%; }
.faq__list {
  width: 51.9%;
  margin: clamp(32px, 4.2vw, 80px) auto 0;
  border-top: 1px solid var(--c-line-soft);
}
.faq-item { border-bottom: 1px solid var(--c-line-soft); }
.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(18px, 1.5vw, 28px) 0;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(.9375rem, .96vw, 1.15rem);
  line-height: 1.7;
  color: var(--c-cream);
  cursor: pointer;
  list-style: none;
  transition: color .2s ease;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--f-mono);
  font-size: clamp(1.25rem, 1.25vw, 1.5rem);
  line-height: 1;
  color: var(--c-gold);
  transition: transform .25s ease;
}
.faq-item[open] > summary::after { content: "\2013"; }
.faq-item > summary:hover { color: var(--c-yellow); }
.faq-item__answer {
  padding: 0 clamp(36px, 3vw, 56px) clamp(20px, 1.6vw, 30px) 0;
  font-family: var(--f-serif);
  font-size: var(--fs-small);
  line-height: 1.75;
  color: var(--c-gray);
}
.faq-item__answer p + p { margin-top: .7em; }
.faq-item__verdict {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05em;
  line-height: 1.4;
}
.faq-item__verdict--sim { color: var(--c-mint); }
.faq-item__verdict--nao { color: var(--c-coral); }

/* -------------------------------------------------------------------------
   29. A DECISÃO
   ---------------------------------------------------------------------- */
.decisao {
  position: relative;
  background: var(--c-ink);
  padding-block: clamp(56px, 6.25vw, 120px) clamp(56px, 6.98vw, 134px);
  overflow: hidden;
}
.decisao::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(216, 162, 74, .12) 0%, rgba(216, 162, 74, 0) 60%);
  pointer-events: none;
}
.decisao__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: clamp(12px, .9vw, 17px);
  text-align: center;
}
.decisao__lead {
  max-width: 30.5%;
  font-size: clamp(1rem, .96vw, 1.15rem);
  line-height: 1.7;
  color: var(--c-gray);
}
.decisao__title {
  max-width: 50.6%;
  margin-top: clamp(6px, .5vw, 10px);
  line-height: 1.15;
  color: var(--c-cream);
}
.decisao__opcoes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.05vw, 20px);
  width: 44.3%;
  margin-top: clamp(16px, 1.4vw, 27px);
}
.opcao {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: clamp(20px, 1.46vw, 28px);
  background: var(--c-navy);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--radius-lg);
}
.opcao--gold { background: rgba(216, 162, 74, .12); border-color: var(--c-gold); }
.opcao__text {
  font-size: clamp(.9375rem, .875vw, 1.05rem);
  line-height: 1.7;
  color: var(--c-cream);
}
.decisao__closing {
  max-width: 36.5%;
  margin-top: clamp(14px, 1.2vw, 23px);
  font-family: var(--f-serif);
  font-size: clamp(1rem, 1vw, 1.2rem);
  line-height: 1.7;
  color: var(--c-cream);
}

/* -------------------------------------------------------------------------
   30. FECHAMENTO
   ---------------------------------------------------------------------- */
.fechamento {
  position: relative;
  background: var(--c-black);
  padding-block: clamp(56px, 6.25vw, 120px);
  overflow: hidden;
}
.fechamento__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.fechamento__bg img { width: 100%; height: 100%; object-fit: cover; }
.fechamento__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}
.fechamento__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: clamp(8px, .35vw, 7px);
  text-align: center;
}
.fechamento__kicker {
  font-family: var(--f-mono);
  font-size: clamp(.6875rem, .667vw, .8rem);
  letter-spacing: .3em;
  color: var(--c-mint);
}
.fechamento__title {
  margin-top: clamp(10px, .9vw, 17px);
  font-size: clamp(1.9rem, 3.33vw, 4rem);
  line-height: 1.1;
  letter-spacing: -.02em;
}
.fechamento__sub {
  font-family: var(--f-sans);
  font-style: italic;
  font-size: clamp(1.05rem, 1.17vw, 1.4rem);
  line-height: 1.7;
  color: var(--c-yellow);
}
.fechamento__pills {
  justify-content: center;
  max-width: 67.1%;
  margin-top: clamp(14px, 1.2vw, 23px);
}
.fechamento__preco {
  margin-top: clamp(16px, 1.4vw, 27px);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2vw, 2.4rem);
  line-height: 1.7;
  color: var(--c-cream);
}
.fechamento__nota {
  max-width: 44.5%;
  font-size: clamp(.9375rem, .94vw, 1.125rem);
  line-height: 1.7;
  color: var(--c-gray);
}
.fechamento__cta {
  margin-top: clamp(18px, 1.5vw, 29px);
  box-shadow: 0 8px 30px rgba(216, 162, 74, .28);
}

/* -------------------------------------------------------------------------
   31. RODAPÉ
   ---------------------------------------------------------------------- */
.site-footer {
  background: var(--c-ink);
  border-top: 1px solid var(--c-line-soft);
  padding-block: clamp(40px, 3.33vw, 64px) clamp(24px, 2.08vw, 40px);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 56.3% 40.2%;
  gap: 3.5%;
  padding-bottom: clamp(28px, 2.08vw, 40px);
}
.site-footer__brand img {
  width: auto;
  height: clamp(40px, 2.8vw, 54px);
  margin-bottom: clamp(14px, 1.15vw, 22px);
}
.site-footer__brand p {
  max-width: 40ch;
  font-size: var(--fs-small);
  line-height: 1.7;
  color: var(--c-gray);
}
.site-footer__legal {
  font-size: clamp(.8125rem, .75vw, .9rem);
  line-height: 1.7;
  color: var(--c-gray-dim);
}
.site-footer__bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: clamp(18px, 1.3vw, 25px);
  border-top: 1px solid var(--c-line-soft);
}
.site-footer__bar p {
  font-family: var(--f-mono);
  font-size: clamp(.6875rem, .635vw, .7625rem);
  line-height: 1.7;
  letter-spacing: .04em;
  color: var(--c-gray-dim);
}

.credits {
  background: var(--c-black);
  padding-block: clamp(12px, .8vw, 15px);
  text-align: center;
}
.credits p {
  font-family: var(--f-sans);
  font-size: clamp(.75rem, .7vw, .84rem);
  line-height: 1.7;
  color: var(--c-gray-dim);
}
.credits a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}
.credits a:hover,
.credits a:focus-visible { color: #00AEEF; }

/* -------------------------------------------------------------------------
   32. CTA FLUTUANTE
   ---------------------------------------------------------------------- */
.floating-cta {
  position: fixed;
  right: clamp(16px, 2vw, 32px);
  bottom: clamp(16px, 2vw, 32px);
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: 14px 24px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(.875rem, .79vw, .95rem);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #1A1206;
  background: var(--c-yellow);
  border-radius: 60px;
  box-shadow: 0 8px 30px rgba(255, 225, 0, .28);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.floating-cta[hidden] { display: none; }
.floating-cta.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.floating-cta:hover { transform: translateY(-2px); }

/* -------------------------------------------------------------------------
   33. RESPONSIVO
   ---------------------------------------------------------------------- */

/* ---- ≤ 1180 px : ajustes de densidade ---- */
@media (max-width: 1180px) {
  .nav-main__list { gap: 16px; }
  .intro__content .h-display { max-width: 62%; }
  .intro__content .lead { max-width: 52%; }
  .chips { max-width: 60%; }
  .pilares__inner .section-head .h-display,
  .pilares__inner .section-head .lead { max-width: 62%; }
  .pilares__list, .pilares__closing { width: 92%; }
  .perguntas__inner .h-display { max-width: 70%; }
  .perguntas__list { width: 92%; }
  .perguntas__closing { max-width: 68%; }
  .competencias__inner .h-display { max-width: 60%; }
  .skill-grid { width: 72%; }
  .modulos__inner .section-head .h-display,
  .modulos__inner .section-head .lead { max-width: 60%; }
  .modulos__list { width: 72%; }
  .publico__inner .section-head .h-display { max-width: 82%; }
  .note-bar { width: 72%; }
  .formato__inner .h-display { max-width: 85%; }
  .entrega__inner .h-display { max-width: 58%; }
  .check-list { width: 72%; }
  .transparencia__inner .h-display { max-width: 62%; }
  .transparencia__inner .lead { max-width: 56%; }
  .transparencia .cross-list--2col { max-width: 72%; }
  .transparencia .gold-pills { max-width: 68%; }
  .transparencia .fineprint { max-width: 62%; }

  .bonus__inner .section-head .h-display { max-width: 82%; }
  .porque__title { max-width: 92%; }
  .porque__lead { max-width: 78%; }
  .fundadora__card { width: 82%; }
  .investimento__inner .section-head .h-display { max-width: 70%; }
  .preco { width: 70%; }
  .garantia__card { width: 80%; }
  .faq__inner .section-head .h-display { max-width: 70%; }
  .faq__list { width: 80%; }
  .decisao__lead { max-width: 54%; }
  .decisao__title { max-width: 78%; }
  .decisao__opcoes { width: 70%; }
  .decisao__closing { max-width: 60%; }
  .fechamento__pills { max-width: 90%; }
  .fechamento__nota { max-width: 68%; }
}

/* ---- ≤ 980 px : passa para menu lateral e blocos empilhados ---- */
@media (max-width: 980px) {
  :root {
    --gutter: clamp(18px, 5vw, 44px);
    --gutter-mid: var(--gutter);
    --gutter-sm: var(--gutter);
  }

  .nav-main, .site-header__cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header__brand { opacity: 1; visibility: visible; transform: none; }
  .site-header { background: rgba(11, 15, 22, .55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

  /* Herói */
  .hero { min-height: auto; padding-block: calc(var(--header-h) + 48px) 56px; }
  .hero__bg img { object-position: 72% center; }
  .hero__bg::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .78) 55%, rgba(0, 0, 0, .92) 100%);
  }
  .hero__logo { width: 62%; max-width: 300px; }
  .hero__title, .hero__lead { max-width: 100%; }
  .hero__title { margin-top: 28px; line-height: .95; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }

  /* Faixa: rolagem horizontal com encaixe */
  .strip__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .strip__list::-webkit-scrollbar { display: none; }
  .pill { scroll-snap-align: start; }

  /* Intro */
  .intro__content { text-align: left; justify-items: start; }
  .intro__content .h-display, .intro__content .lead, .chips { max-width: 100%; }
  .chips { justify-content: flex-start; }

  /* Objetivo */
  .objetivo__card { width: 100%; }
  .objetivo__body { width: 100%; padding: 32px 26px 0; }
  .arrow-list { grid-template-columns: 1fr; }
  .objetivo__img {
    position: static;
    width: min(320px, 70%);
    height: auto;
    margin: 24px auto 0;
  }

  /* Origem */
  .origem__inner { grid-template-columns: 1fr; gap: 40px; }
  .origem__text { max-width: 100%; }
  .origem__media { width: 100%; max-width: 460px; }

  /* Pilares */
  .pilares__list {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    width: 100%;
  }
  .pilares__closing { width: 100%; text-align: left; }
  .pilares__inner .section-head { justify-items: start; text-align: left; }
  .pilares__inner .section-head .h-display,
  .pilares__inner .section-head .lead { max-width: 100%; }

  /* Perguntas */
  .perguntas__list { grid-template-columns: 1fr; width: 100%; }
  .perguntas__inner .h-display { max-width: 100%; }
  .perguntas__inner .section-head { justify-items: start; text-align: left; }
  .perguntas__closing { max-width: 100%; text-align: left; }

  /* Competências */
  .competencias__bg { width: 100%; opacity: .35; }
  .competencias__bg::after { background: linear-gradient(180deg, rgba(0, 0, 0, .4) 0%, #000 92%); }
  .competencias__inner .section-head { justify-items: start; text-align: left; }
  .competencias__inner .h-display { max-width: 100%; }
  .skill-grid { grid-template-columns: 1fr; width: 100%; }

  /* Transparência */
  .transparencia__portrait { display: none; }
  .transparencia__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .62);
  }
  .transparencia__inner .h-display,
  .transparencia__inner .lead,
  .transparencia .gold-pills,
  .transparencia .fineprint { max-width: 100%; }
  .cross-list--2col { grid-template-columns: 1fr; max-width: 100%; }

  /* Para quem é */
  .publico__bg { left: 0; width: 100%; }
  .publico__bg img { opacity: .3; }
  .publico__bg::after { background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, #000 90%); }
  .publico__inner .section-head { justify-items: start; text-align: left; }
  .publico__inner .section-head .h-display { max-width: 100%; }
  .publico-card { flex: 1 1 100%; text-align: left; }
  .note-bar { width: 100%; }

  /* Para quem não é */
  .nao-publico__inner .h-display,
  .plain-list,
  .nao-publico .cross-list { max-width: 100%; }
  .nao-publico__bg::after { background: rgba(0, 0, 0, .68); }

  /* Módulos */
  .modulos__inner .section-head { justify-items: start; text-align: left; }
  .modulos__inner .section-head .h-display,
  .modulos__inner .section-head .lead { max-width: 100%; }
  .modulos__list { width: 100%; }
  .modulo { grid-template-columns: 1fr; gap: 10px; }
  .modulo__index { display: flex; align-items: baseline; gap: 8px; }

  /* Como funciona */
  .formato__inner { padding: 34px 22px 44px; }
  .formato__inner .h-display { max-width: 100%; }
  .formato__grid { grid-template-columns: 1fr; }

  /* O que você recebe */
  .entrega__img {
    position: static;
    width: min(300px, 62%);
    margin: 32px 0 0 auto;
  }
  .entrega__inner .h-display { max-width: 100%; }
  .check-list { grid-template-columns: 1fr; width: 100%; }
  .entrega__cta { justify-self: stretch; }

  /* Bônus */
  .bonus__inner .section-head .h-display { max-width: 100%; }
  .bonus__grid { grid-template-columns: 1fr; }
  .bonus__bg::after { background: rgba(0, 0, 0, .72); }

  /* Mentor */
  .mentor__inner { grid-template-columns: 1fr; gap: 32px; }
  .mentor__card { max-width: 420px; }

  /* Por que aprender comigo */
  .porque__title, .porque__lead { max-width: 100%; }
  .porque { padding-block: clamp(56px, 9vw, 90px); }
  .proposta { grid-template-columns: 1fr; }
  .porque__bg::after { background: rgba(0, 0, 0, .72); }

  /* Turma Fundadora */
  .fundadora__card { width: 100%; }

  /* Investimento */
  .investimento__inner .section-head .h-display { max-width: 100%; }
  .preco { width: 100%; }
  .preco__lista { grid-template-columns: 1fr; }
  .preco__cta { width: 100%; }

  /* Garantia */
  .garantia__card { width: 100%; grid-template-columns: 1fr; justify-items: start; }

  /* FAQ */
  .faq__inner .section-head .h-display { max-width: 100%; }
  .faq__list { width: 100%; }
  .faq-item__answer { padding-right: 0; }

  /* A decisão */
  .decisao__lead, .decisao__title, .decisao__closing { max-width: 100%; }
  .decisao__opcoes { width: 100%; grid-template-columns: 1fr; }

  /* Fechamento */
  .fechamento__pills {
    flex-wrap: wrap;
    overflow: visible;
    max-width: 100%;
  }
  .fechamento__nota { max-width: 100%; }
  .fechamento__cta { width: 100%; }

  /* Rodapé */
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__bar { flex-direction: column; gap: 8px; }
  /* espaço para o CTA fixo não cobrir a última linha */
  .credits { padding-bottom: 84px; }

  /* CTA flutuante ocupa a largura na base */
  .floating-cta {
    left: clamp(16px, 4vw, 32px);
    right: clamp(16px, 4vw, 32px);
    bottom: 16px;
    justify-content: center;
  }
}

/* ---- ≤ 560 px : telefones ---- */
@media (max-width: 560px) {
  :root { --sp-section: 56px; }
  .hero__logo { width: 74%; }
  .hero__title { font-size: clamp(1.9rem, 8.6vw, 2.6rem); }
  .publico-card__media { aspect-ratio: 16 / 9; }
  .pergunta__ghost { font-size: 3.25rem; }
  .drawer { width: min(90vw, 340px); }
}

/* -------------------------------------------------------------------------
   34. PREFERÊNCIAS / IMPRESSÃO
   ---------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  .site-header, .drawer, .drawer-backdrop, .floating-cta, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  .hero__bg, .intro__bg, .pilares__bg, .perguntas__bg,
  .competencias__bg, .transparencia__bg, .publico__bg,
  .nao-publico__bg, .formato__bg, .bonus__bg, .porque__bg,
  .investimento__bg, .fechamento__bg { display: none; }
  .faq-item__answer { display: block !important; }
}
