/* ===================================================================
   Curso Plano de Cargos e Salários — Solute RH
   Folha de estilos
   =================================================================== */

:root {
  --red: #f26a21;          /* laranja da marca */
  --red-dark: #d4541a;     /* laranja escuro (hover) */
  --ink: #eef1f5;          /* texto claro primário */
  --ink-2: #c4c9d2;        /* texto claro secundário */
  --paper: #0d1014;        /* (legado) */
  --paper-2: #222730;      /* chip/ícone elevado */
  --muted: #8b919c;        /* texto suave */
  --line: rgba(255, 255, 255, .09);
  --gold: #c9a45a;         /* detalhe sóbrio */
  --white: #1a1e26;        /* superfície de card (elevada) */
  --black: #0a0c10;        /* superfícies escuras fixas (nav, faixa, dots) */
  --radius: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .55);
  --shadow-sm: 0 10px 26px rgba(0, 0, 0, .38);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  /* CANVAS escuro com a grade contínua (fixa) — os painéis flutuam por cima */
  background-color: #06070a;
  background-image:
    radial-gradient(1100px 700px at 80% -200px, rgba(242, 106, 33, .12), transparent 60%),
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
  background-attachment: fixed;
}

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

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.narrow {
  max-width: 820px;
}

.serif {
  font-family: 'Montserrat', Georgia, serif;
}

h1, h2, h3 {
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -.01em;
  color: var(--ink);
}

h1 {
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 700;
}

h2 {
  font-size: clamp(28px, 3.8vw, 42px);
}

h3 {
  font-size: 21px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
}

p {
  color: var(--ink-2);
}

.lead {
  font-size: clamp(18px, 2vw, 21px);
  color: var(--muted);
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  margin-bottom: 20px;
}

.center {
  text-align: center;
}

.center .eyebrow {
  justify-content: center;
}

.hl {
  color: var(--red);
}

.strike {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

section {
  padding: 96px 0;
}

.divider {
  height: 1px;
  background: var(--line);
  max-width: 1140px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
header.nav {
  position: relative;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav .logo {
  color: #fff;
}

.logo {
  font-family: 'Montserrat', serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.01em;
  color: var(--ink);
  text-decoration: none;
}

.logo b {
  color: var(--red);
}

.nav-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: .2s;
}

.nav-cta:hover {
  background: var(--red-dark);
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: .01em;
  box-shadow: 0 14px 30px rgba(242, 106, 33, .28);
  transition: transform .15s, box-shadow .15s, background .2s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
  box-shadow: 0 18px 38px rgba(242, 106, 33, .34);
}

.btn.dark {
  background: var(--black);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .4);
}

.btn.dark:hover {
  background: #000;
}

.btn-sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  opacity: .85;
  margin-top: 7px;
  letter-spacing: 0;
}

.btn-note {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background:
    radial-gradient(900px 500px at 78% -5%, rgba(242, 106, 33, .14), transparent 60%),
    linear-gradient(180deg, #15171c 0%, #1b1e24 100%);
  color: #fff;
  overflow: hidden;
  padding: 56px 0 110px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(700px 400px at 75% 10%, #000, transparent 70%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-areas:
    "intro card"
    "trust card";
  column-gap: 54px;
  row-gap: 0;
  align-items: center;
}

.hero-intro { grid-area: intro; }
.hero .hero-card { grid-area: card; }
.hero .trust { grid-area: trust; }

.hero h1 {
  color: #fff;
}

.hero .lead {
  color: #c8cad1;
  margin-top: 24px;
}

.hero .eyebrow {
  color: #ff9d52;
}

.hero .eyebrow::before {
  background: #ff9d52;
}

.hero .cta-area {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero .trust {
  display: flex;
  gap: 26px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero .trust div {
  border-left: 2px solid rgba(255, 255, 255, .16);
  padding-left: 14px;
}

.hero .trust b {
  font-family: 'Montserrat', serif;
  font-size: 26px;
  color: #fff;
  display: block;
  line-height: 1.1;
}

.hero .trust span {
  font-size: 13px;
  color: #9a9ea8;
}

.hero-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
  transform: rotate(.6deg);
  backdrop-filter: blur(4px);
}

.hero-card .tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #ff9d52;
}

.hero-card h3 {
  margin: 8px 0 16px;
  font-size: 19px;
  color: #fff;
}

.method {
  margin-top: 6px;
}

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

.spine {
  stroke: rgba(255, 255, 255, .12);
  stroke-width: 2;
}

.spine-flow {
  stroke: #f26a21;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 2 10;
  opacity: .8;
  animation: mFlow 1.3s linear infinite;
}

@keyframes mFlow {
  to { stroke-dashoffset: -12; }
}

.node {
  fill: #15171c;
  stroke: #3a3f49;
  stroke-width: 2;
}

.node.n1 { animation: mNode 4.5s ease-out infinite .3s; }
.node.n2 { animation: mNode 4.5s ease-out infinite 1.2s; }
.node.n3 { animation: mNode 4.5s ease-out infinite 2.2s; }
.node.n4 { animation: mNode 4.5s ease-out infinite 3.1s; }

@keyframes mNode {
  0%   { stroke: #f26a21; fill: #3a2110; }
  16%  { stroke: #3a3f49; fill: #15171c; }
  100% { stroke: #3a3f49; fill: #15171c; }
}

.pulse {
  fill: #ff9d52;
  transform-box: fill-box;
  filter: drop-shadow(0 0 5px rgba(242, 106, 33, .9));
  animation: mTravel 4.5s cubic-bezier(.5, 0, .5, 1) infinite;
}

@keyframes mTravel {
  0%   { transform: translateY(0);     opacity: 0; }
  8%   { opacity: 1; }
  78%  { transform: translateY(232px); opacity: 1; }
  100% { transform: translateY(232px); opacity: 0; }
}

.lbl {
  fill: #c8cad1;
  font: 600 13px 'Inter', sans-serif;
}

.chips rect {
  fill: rgba(255, 255, 255, .05);
  stroke: rgba(255, 255, 255, .12);
  stroke-width: 1.5;
}

.pills rect {
  fill: rgba(242, 106, 33, .16);
  stroke: rgba(242, 106, 33, .35);
  stroke-width: 1.5;
}

.badge {
  transform-box: fill-box;
  transform-origin: center;
  animation: mBadge 4.5s ease-out infinite;
}

.badge rect {
  fill: rgba(242, 106, 33, .14);
  stroke: rgba(242, 106, 33, .4);
  stroke-width: 1.5;
}

.pts {
  fill: #ff9d52;
  font: 700 13px 'Montserrat', sans-serif;
  text-anchor: middle;
}

@keyframes mBadge {
  0%, 52% { opacity: .55; transform: scale(.96); }
  64%     { opacity: 1;   transform: scale(1.03); }
  82%     { opacity: 1;   transform: scale(1); }
  100%    { opacity: .55; transform: scale(.96); }
}

.bar {
  fill: url(#mbar);
  transform-box: fill-box;
  transform-origin: left center;
}

.bars .b1 { animation: mGrow 4.5s cubic-bezier(.2, .7, .2, 1) infinite both; }
.bars .b2 { animation: mGrow 4.5s cubic-bezier(.2, .7, .2, 1) infinite both .12s; }
.bars .b3 { animation: mGrow 4.5s cubic-bezier(.2, .7, .2, 1) infinite both .24s; }
.bars .b4 { animation: mGrow 4.5s cubic-bezier(.2, .7, .2, 1) infinite both .36s; }

@keyframes mGrow {
  0%, 58% { transform: scaleX(0); opacity: .35; }
  74%     { transform: scaleX(1); opacity: 1; }
  92%     { transform: scaleX(1); opacity: 1; }
  100%    { transform: scaleX(0); opacity: .35; }
}

@media (prefers-reduced-motion: reduce) {
  .spine-flow, .pulse, .node, .badge, .bar { animation: none; }
  .bar { transform: scaleX(1); }
  .pulse { opacity: 0; }
}

@media (max-width: 920px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "card"
      "trust";
    column-gap: 0;
    row-gap: 40px;
  }
  .hero-card {
    transform: none;
    max-width: 460px;
  }
  .hero .trust {
    margin-top: 0;
  }
}

/* ===== DORES (cards) ===== */
.grid {
  display: grid;
  gap: 24px;
}

.g2 {
  grid-template-columns: repeat(2, 1fr);
}

.g3 {
  grid-template-columns: repeat(3, 1fr);
}

.g4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 960px) {
  .g3, .g4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .g2, .g3, .g4 {
    grid-template-columns: 1fr;
  }
}

.pain {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: .2s;
}

.pain:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.pain .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.pain h3 {
  margin-bottom: 8px;
}

.pain p {
  font-size: 15.5px;
  color: var(--muted);
}

/* ===== SECTION dark (promessa) ===== */
.dark-sec {
  background: linear-gradient(180deg, #16181d, #1c1f25);
  color: #fff;
}

.dark-sec h2,
.dark-sec h3 {
  color: #fff;
}

.dark-sec p {
  color: #c1c4cc;
}

.dark-sec .eyebrow {
  color: #ff9d52;
}

.dark-sec .eyebrow::before {
  background: #ff9d52;
}

/* ===== CHECKLIST ===== */
ul.check {
  list-style: none;
  display: grid;
  gap: 16px;
}

ul.check li {
  position: relative;
  padding-left: 40px;
  font-size: 17px;
  color: var(--ink-2);
}

ul.check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--red);
  background-image: linear-gradient(135deg, var(--red), var(--red-dark));
}

ul.check li::after {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.dark-sec ul.check li {
  color: #d6d8dd;
}

/* ===== STEPS (legado) ===== */
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
}

.step .n {
  font-family: 'Montserrat', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--paper-2);
  line-height: .8;
  position: absolute;
  top: 20px;
  right: 24px;
}

.step .badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  font-size: 15.5px;
  color: var(--muted);
}

/* ===== DELIVERABLES ===== */
.deliv {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 30px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
  transition: .2s;
}

.deliv:hover {
  box-shadow: var(--shadow);
}

.deliv .thumb {
  height: 150px;
  border-radius: 11px;
  background: linear-gradient(135deg, #171b22, #1f242c);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7c828d;
  font-size: 13px;
  text-align: center;
  padding: 14px;
  border: 1px dashed rgba(255, 255, 255, .14);
}

.deliv .thumb.art {
  padding: 0;
  border-style: solid;
  border-color: rgba(255, 255, 255, .08);
  overflow: hidden;
}

.deliv .thumb.art svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.deliv .thumb.art img {
  display: block;
  max-width: 92%;
  max-height: 92%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.step {
  fill: rgba(255, 255, 255, .05);
  stroke: rgba(255, 255, 255, .1);
  stroke-width: 1;
}

.tread {
  fill: #f26a21;
}

.arrow-head {
  fill: none;
  stroke: #ff9d52;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-lbl {
  fill: #c8cad1;
  font: 600 11px 'Inter', sans-serif;
  text-anchor: middle;
}

.bt-panel {
  fill: rgba(255, 255, 255, .04);
  stroke: rgba(255, 255, 255, .1);
  stroke-width: 1;
}

.bt-head {
  fill: #8b919c;
  font: 700 9px 'Inter', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bt-div {
  stroke: rgba(255, 255, 255, .08);
  stroke-width: 1;
}

.bt-lbl {
  fill: #c8cad1;
  font: 500 11px 'Inter', sans-serif;
}

.bt-bar {
  fill: rgba(242, 106, 33, .35);
}

.bt-pts {
  fill: #ff9d52;
  font: 700 11px 'Montserrat', sans-serif;
}

.bt-total-lbl {
  fill: #c8cad1;
  font: 600 10px 'Inter', sans-serif;
}

.bt-total {
  fill: #ff9d52;
  font: 800 13px 'Montserrat', sans-serif;
}

.bt-end,
.bt-pts,
.bt-total {
  text-anchor: end;
}

.sv-sheet {
  fill: #252930;
  stroke: #32373d;
  stroke-width: 1.5;
}

.sv-tab {
  fill: #f26a21;
}

.sv-title {
  fill: #fff;
  opacity: .85;
}

.sv-div {
  stroke: #32373d;
  stroke-width: 1.5;
}

.sv-label {
  fill: #8b919c;
}

.sv-line {
  fill: #32373d;
}

.seal-core {
  fill: #f26a21;
  stroke: #252930;
  stroke-width: 2.5;
}

.seal-check {
  fill: none;
  stroke: #fff;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seal-ring {
  fill: none;
  stroke: #f26a21;
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: svPulse 2.8s ease-out infinite;
}

@keyframes svPulse {
  0%   { transform: scale(.85); opacity: .7; }
  70%  { opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .seal-ring { animation: none; opacity: 0; }
}

.cr-path {
  fill: none;
  stroke: #f26a21;
  stroke-width: 2.5;
  stroke-linecap: round;
}

.cr-dot {
  fill: #252930;
  stroke: #8b919c;
  stroke-width: 2;
}

.cr-node {
  fill: #252930;
  stroke: #8b919c;
  stroke-width: 2.5;
}

.cr-fork {
  fill: #f26a21;
}

.cr-end {
  fill: #f26a21;
  stroke: #252930;
  stroke-width: 2;
}

.cr-lbl {
  fill: #fff;
  font: 700 12px 'Montserrat', sans-serif;
  text-anchor: middle;
}

.cr-base {
  fill: #8b919c;
  font: 600 10px 'Inter', sans-serif;
  text-anchor: middle;
}

.im-rail {
  stroke: #32373d;
  stroke-width: 3;
}

.im-check {
  fill: #f26a21;
}

.im-tick {
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.im-lbl {
  fill: #8b919c;
  font: 600 12px 'Inter', sans-serif;
}

.deliv .kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
}

.deliv h3 {
  margin: 6px 0 8px;
}

.deliv p {
  font-size: 15.5px;
  color: var(--muted);
}

.deliv.star {
  border-color: rgba(242, 106, 33, .4);
  background: linear-gradient(180deg, #1b1f27, #241a13);
}

@media (max-width: 680px) {
  .deliv {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===== ALERTA (legado) ===== */
.alert {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fdf6ec;
  border: 1px solid #f0dcb8;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 24px 26px;
}

.alert .ic {
  font-size: 24px;
  line-height: 1.2;
}

.alert p {
  color: #6a5a36;
  font-size: 16px;
}

/* ===== PRICE ===== */
.price-wrap {
  background: linear-gradient(180deg, #16181d, #1c1f25);
  color: #fff;
}

.price-box {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 22px;
  max-width: 560px;
  margin: 0 auto;
  padding: 46px 40px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
  position: relative;
}

.price-box .ribbon {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 50px;
  white-space: nowrap;
}

.price-box .old {
  color: var(--muted);
  font-size: 16px;
  margin-top: 8px;
}

.price-box .big {
  font-family: 'Montserrat', serif;
  font-size: clamp(40px, 7vw, 58px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin: 8px 0;
}

.price-box .big small {
  display: block;
  font-family: 'Inter';
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 10px;
}

.price-box .pix {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.guarantee {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background: var(--paper-2);
  color: var(--ink-2);
  padding: 11px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 24px;
}

.price-box .pay {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.price-box .pay img {
  width: 52px;
  height: 34px;
  object-fit: contain;
  background: #fff;
  border-radius: 7px;
  padding: 5px;
}

/* ===== ACESSAR em passos (legado) ===== */
.access {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 640px) {
  .access {
    grid-template-columns: 1fr;
  }
}

.access .item {
  text-align: center;
}

.access .circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Montserrat', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--red);
}

/* ===== TESTIMONIALS ===== */
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.quote::before {
  content: "“";
  font-family: 'Montserrat', serif;
  font-size: 70px;
  color: var(--paper-2);
  position: absolute;
  top: 6px;
  left: 18px;
  line-height: 1;
}

.quote p {
  font-size: 16px;
  color: var(--ink-2);
  position: relative;
  z-index: 1;
  font-style: italic;
}

.quote .who {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2f38, #1c2129);
  flex: 0 0 44px;
}

.quote .who b {
  display: block;
  font-style: normal;
  font-size: 15px;
}

.quote .who span {
  color: var(--muted);
  font-size: 13px;
}

/* ===== AUTHORITY ===== */
.auth {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: center;
}

.auth .photo {
  width: 100%;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: var(--shadow);
}

.auth .photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.18);
  transform-origin: center top;
}

.auth blockquote {
  font-family: 'Montserrat', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--ink);
  border-left: 3px solid var(--red);
  padding-left: 20px;
  margin-top: 24px;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .auth {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .auth .photo {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ===== OPTIONS (legado) ===== */
.opt {
  border-radius: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.opt.bad {
  border-top: 4px solid #c9ccd2;
}

.opt.good {
  border-top: 4px solid var(--red);
  background: linear-gradient(180deg, #fff, #fdf6f7);
}

.opt .ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
  background: var(--paper-2);
}

.opt.good .ic {
  background: var(--red);
  color: #fff;
}

.opt h3 {
  margin-bottom: 8px;
}

.opt p {
  color: var(--muted);
  font-size: 16px;
}

/* ===== FAQ ===== */
details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 26px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  transition: .2s;
}

details[open] {
  box-shadow: var(--shadow);
}

details summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  color: var(--ink);
}

details summary::after {
  content: "+";
  color: var(--red);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
  margin-left: 16px;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
}

/* ===== CTA final ===== */
.final {
  background: var(--red);
  color: #fff;
  text-align: center;
}

.final h2 {
  color: #fff;
}

.final p {
  color: #ffd9df;
}

/* ===== FOOTER ===== */
footer {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: #9a9ea8;
  padding: 60px 0 40px;
  text-align: center;
  font-size: 13.5px;
}

footer .logo {
  color: #fff;
  display: inline-block;
  margin-bottom: 14px;
}

footer a {
  color: #c8cad1;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

footer .legal {
  max-width: 780px;
  margin: 16px auto 0;
  line-height: 1.8;
  color: #787c85;
}

/* ===== NOTA de placeholder (apenas edição) ===== */
.ph-note {
  background: #fff8dd;
  border: 1px solid #ecd98a;
  color: #7a6a1e;
  border-radius: 3px;
  padding: 1px 6px;
  font-size: .92em;
  font-weight: 600;
  font-style: normal;
}

/* ===== TIMELINE / jornada ===== */
.timeline {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(var(--red), var(--paper-2));
}

.tl-item {
  position: relative;
  padding-left: 78px;
  padding-bottom: 38px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .4);
}

.tl-item.on .tl-dot {
  background: var(--red);
  box-shadow: 0 10px 24px rgba(242, 106, 33, .4);
}

.tl-item h3 {
  margin-bottom: 8px;
}

.tl-item p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 12px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips span {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 50px;
}

/* ===== BÔNUS empilhados ===== */
.bonus-stack {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.bonus {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.bonus::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--red);
}

.bonus .tag {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  align-self: stretch;
  display: flex;
  align-items: center;
}

.bonus h3 {
  margin-bottom: 5px;
}

.bonus p {
  color: var(--muted);
  font-size: 15px;
}

.bonus .val {
  text-align: right;
  white-space: nowrap;
}

.bonus .val .x {
  display: block;
  color: var(--muted);
  font-size: 13px;
  text-decoration: line-through;
}

.bonus .val .free {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--red);
  font-size: 17px;
}

@media (max-width: 640px) {
  .bonus {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .bonus .tag {
    writing-mode: horizontal-tb;
    transform: none;
    justify-content: center;
  }
  .bonus .val {
    text-align: center;
  }
}

/* ===== PARA QUEM (duas colunas é/não é) ===== */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }
}

.fit {
  border-radius: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.fit.yes {
  border-top: 4px solid var(--red);
}

.fit.no {
  background: #0f1319;
  border-top: 4px solid rgba(255, 255, 255, .14);
}

.fit h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 18px;
}

.fit h3 .b {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}

.fit.yes h3 .b {
  background: var(--red);
}

.fit.no h3 .b {
  background: #9aa0ab;
}

.fit ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.fit li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  color: var(--ink-2);
}

.fit.yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 800;
}

.fit.no li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  color: #9aa0ab;
  font-weight: 800;
}

.fit.no li {
  color: var(--muted);
}

/* ===== ANTES x DEPOIS ===== */
.ba {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.ba-head,
.ba-row {
  display: grid;
  grid-template-columns: 1fr 46px 1fr;
  align-items: center;
  gap: 14px;
}

.ba-h {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ba-h-antes {
  color: var(--muted);
}

.ba-h-depois {
  color: var(--red);
}

.ba-antes,
.ba-depois {
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 15.5px;
  line-height: 1.4;
}

.ba-antes {
  background: #0f1319;
  border: 1px solid var(--line);
  color: var(--muted);
}

.ba-depois {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  color: var(--ink);
  font-weight: 600;
}

.ba-arrow {
  text-align: center;
  color: var(--red);
  font-size: 22px;
  font-weight: 800;
}

section:has(.ba) {
  padding-top: 24px;
  padding-bottom: 44px;
}

html.js .ba-row {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}

html.js .bg-paper.in .ba-row {
  opacity: 1;
  transform: none;
}

html.js .bg-paper.in .ba-row:nth-child(2) { transition-delay: .05s; }
html.js .bg-paper.in .ba-row:nth-child(3) { transition-delay: .13s; }
html.js .bg-paper.in .ba-row:nth-child(4) { transition-delay: .21s; }
html.js .bg-paper.in .ba-row:nth-child(5) { transition-delay: .29s; }
html.js .bg-paper.in .ba-row:nth-child(6) { transition-delay: .37s; }

.bg-paper.in .ba-arrow {
  animation: baNudge 1.6s ease-in-out infinite;
}

.ba-row:nth-child(3) .ba-arrow { animation-delay: .15s; }
.ba-row:nth-child(4) .ba-arrow { animation-delay: .3s; }
.ba-row:nth-child(5) .ba-arrow { animation-delay: .45s; }
.ba-row:nth-child(6) .ba-arrow { animation-delay: .6s; }

@keyframes baNudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}

@media (prefers-reduced-motion: reduce) {
  html.js .ba-row {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .bg-paper.in .ba-arrow {
    animation: none;
  }
}

@media (max-width: 920px) {
  .ba-head {
    display: none;
  }
  .ba-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .ba-arrow {
    transform: rotate(90deg);
    font-size: 18px;
  }
  .bg-paper.in .ba-arrow {
    animation: none;
  }
}

/* ===== ACESSO em faixa ===== */
.access-band {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.access-band .ab {
  padding: 20px 24px;
  text-align: center;
  color: #fff;
}

.access-band .ab .k {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--red);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.access-band .ab b {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  margin-bottom: 4px;
}

.access-band .ab span {
  color: #9a9ea8;
  font-size: 13.5px;
  line-height: 1.5;
}

.access-band .arrow {
  color: var(--red);
  font-size: 22px;
  font-weight: 700;
}

@media (max-width: 920px) {
  .access-band {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
  }
  .access-band .ab {
    padding: 14px 16px;
  }
  .access-band .arrow {
    display: none;
  }
  .access-band .ab:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, .08);
  }
}

/* ===== MENSAGEM pessoal ===== */
.letter {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 48px 50px;
  box-shadow: var(--shadow);
  position: relative;
}

.letter .mark {
  font-family: 'Montserrat', sans-serif;
  font-size: 90px;
  color: var(--paper-2);
  line-height: .7;
  position: absolute;
  top: 24px;
  left: 34px;
}

.letter p {
  font-size: 18px;
  color: var(--ink-2);
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.letter .sign {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.letter .sign .av {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  flex: 0 0 54px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(255, 255, 255, .12);
}

.letter .sign b {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

.letter .sign span {
  color: var(--muted);
  font-size: 13.5px;
}

@media (max-width: 640px) {
  .letter {
    padding: 36px 26px;
  }
}

/* ===== PAINÉIS FLUTUANTES SOBRE O CANVAS ESCURO =====
   cada section vira um painel com respiro entre eles —
   o canvas escuro com grade aparece nos vãos */
section {
  position: relative;
  width: min(1280px, calc(100% - 56px));
  margin: 38px auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 80px -36px rgba(0, 0, 0, .65);
}

/* painéis claros: pop contra o fundo escuro */
.bg-white {
  background: #0f1319;
}

.bg-paper {
  background: #0b0e13;
}

.bg-soft {
  background: #13171f;
}

.bg-white,
.bg-paper,
.bg-soft {
  border: 1px solid rgba(255, 255, 255, .06);
}

/* painéis escuros: borda sutil para o gume aparecer contra o canvas */
.dark-sec,
.price-wrap,
.final {
  border: 1px solid rgba(255, 255, 255, .08);
}

.price-wrap {
  padding-top: 60px;
}

/* grade interna nos painéis escuros (fio condutor da marca) */
.dark-sec::after,
.price-wrap::after,
.final::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(760px 420px at 78% 0%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(760px 420px at 78% 0%, #000, transparent 72%);
}

.final::after {
  mask-image: radial-gradient(760px 420px at 50% 0%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(760px 420px at 50% 0%, #000, transparent 72%);
  background-image:
    linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
}

.dark-sec .wrap,
.price-wrap .wrap,
.final .wrap {
  position: relative;
  z-index: 2;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

@media (max-width: 920px) {
  .promise-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* HERO continua full-bleed (showpiece), sem virar painel */
.hero {
  width: auto;
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

@media (max-width: 680px) {
  section {
    width: calc(100% - 24px);
    margin: 20px auto;
    border-radius: 20px;
  }
}

/* ===== REVELAÇÃO AO ROLAR (JS) — sutil, executivo =====
   estado inicial só quando o JS está ativo
   (evita "flash" e mantém acessível sem JS) */
html.js .bg-white,
html.js .bg-paper,
html.js .bg-soft,
html.js .dark-sec,
html.js .price-wrap,
html.js .final {
  opacity: 0;
  transform: translateY(30px) scale(.992);
  transition:
    opacity .8s cubic-bezier(.16, .84, .44, 1),
    transform .8s cubic-bezier(.16, .84, .44, 1);
  will-change: opacity, transform;
}

html.js .in {
  opacity: 1 !important;
  transform: none !important;
}

/* fio de luz que corre no topo do painel quando ele entra (detalhe discreto) */
.bg-white::after,
.bg-paper::after,
.bg-soft::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(242, 106, 33, .55), transparent);
  opacity: 0;
  transition: opacity .9s ease .15s;
}

.bg-white.in::after,
.bg-paper.in::after,
.bg-soft.in::after {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html.js .bg-white,
  html.js .bg-paper,
  html.js .bg-soft,
  html.js .dark-sec,
  html.js .price-wrap,
  html.js .final {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
