:root {
  --laranja: #f38c25;
  --laranja-esc: #D9760F;
  --laranja-claro: #FBE9D8;
  --escuro: #0D0D0D;
  --cinza-bg: #f4f4f4;
  --verde: #1E7A46;
  --verde-claro: #E2F1E8;
  --vermelho: #9B2226;
  --verm-claro: #F7E3E3;
  --texto: #2b2b2b;
  --texto-claro: #5a5a5a;
  --preto-escuro: #000000;
  --preto-claro: #0D0D0D;
  --texto-dark: #e9e9e9;
  --texto-dark-claro: #b3b3b3;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  color: var(--texto);
  line-height: 1.6;
  background: var(--preto-escuro);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Fundo das sections — preto escuro / preto claro */
section:nth-of-type(odd) {
  background: var(--preto-escuro);
}

section:nth-of-type(even) {
  background: var(--preto-claro);
}

img {
  max-width: 100%;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 64px 0;
  position: relative;
}

/* Divisor entre sections — linha fina com brilho laranja no centro */
section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(243, 140, 37, .55) 50%,
    transparent 100%);
}

/* Revelação ao rolar para uma nova section (fade + subir) */
section.reveal-init > .wrap {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .7s ease, transform .7s ease;
}

section.in-view > .wrap {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  section.reveal-init > .wrap {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

h1, h2, h3 {
  line-height: 1.2;
}

h2.titulo {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 14px;
  color: #fff;
}

h2.titulo .destaque {
  color: var(--laranja);
}

.sub {
  text-align: center;
  color: var(--texto-dark-claro);
  font-size: 22px;
  line-height: 1.45;
  max-width: 760px;
  margin: 0 auto 40px;
}

.destaque {
  color: var(--laranja);
}

/* Botão CTA */
.cta {
  display: inline-block;
  background: var(--laranja);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  padding: 20px 42px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(243, 140, 37, .38);
  transition: transform .15s, box-shadow .15s;
  text-align: center;
  border: none;
  cursor: pointer;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(243, 140, 37, .46);
}

.cta small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  opacity: .92;
  margin-top: 3px;
}

.cta-wrap {
  text-align: center;
  margin-top: 34px;
}

.selo-seg {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--texto-dark-claro);
}

/* Placeholder de imagem */
.ph {
  background: repeating-linear-gradient(45deg, #ececec, #ececec 12px, #f5f5f5 12px, #f5f5f5 24px);
  border: 2px dashed #c9c9c9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8a8a;
  font-size: 14px;
  font-style: italic;
  text-align: center;
  padding: 24px;
  min-height: 170px;
}

/* HERO */
.hero {
  background: linear-gradient(160deg, #000000 0%, #0D0D0D 100%);
  color: #fff;
  text-align: left;
  padding: 0 0 52px;
  overflow: hidden;
}

.hero-tarja {
  width: 100%;
  background: #ff1414;
  text-align: center;
  padding: 14px 20px;
}

.hero-tarja span {
  color: #fff;
  font-size: clamp(15px, 2vw, 22px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-tarja b {
  font-weight: 800;
}

.hero .wrap {
  max-width: 1200px;
}

.hero-top {
  display: block;
  position: relative;
  min-height: 500px;
}

.hero-left {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 0 28px;
}

.hero .tag {
  display: block;
  text-align: left;
  color: var(--laranja);
  font-size: clamp(17px, 2.2vw, 24px);
  font-weight: 600;
  line-height: 1.25;
  max-width: 360px;
  margin: -40px 0 24px;
}

.hero .tag b {
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 82px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .85), 0 0 4px rgba(0, 0, 0, .7);
}

.hero h1 .destaque {
  color: var(--laranja);
}

.hero-top .caminhos-img {
  position: absolute;
  z-index: 1;
  right: -6%;
  bottom: -130px;
  width: 72%;
  max-width: 905px;
  margin: 0;
  pointer-events: none;
}

.hero-top .caminhos-img img {
  display: block;
  width: 100%;
  height: auto;
}

.hero p.lead {
  position: relative;
  z-index: 2;
  font-size: clamp(18px, 2.7vw, 25px);
  color: #dcdcdc;
  max-width: none;
  margin: 40px 0 0;
  text-align: justify;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .55);
}

.hero p.lead b {
  color: var(--laranja);
}

.hero .mock {
  max-width: 520px;
  margin: 34px auto 0;
}

.hero .ph {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .25);
  color: #bbb;
  min-height: 230px;
}

/* Hero — faixa tablet (761px a 1100px): empilha texto e imagem */
@media (min-width: 761px) and (max-width: 1100px) {
  .hero-top {
    display: block;
    min-height: 0;
  }

  /* foto em cima, balões (2 colunas) embaixo */
  .rum-cena {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .rum-foto {
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-left {
    max-width: none;
    padding: 8px 0 0;
    text-align: center;
  }

  .hero .tag {
    text-align: center;
    max-width: none;
    margin: 0 0 16px;
  }

  .hero h1 {
    white-space: nowrap;
  }

  .hero-top .caminhos-img {
    position: static;
    width: 100%;
    max-width: 560px;
    margin: 24px auto 0;
  }

  .hero p.lead {
    margin-top: 28px;
  }
}

/* Caminhos / 2 vias (imagem) */
.caminhos-img {
  max-width: 560px;
  margin: 30px auto 0;
}

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

/* Ruminação */
.rum {
  background: var(--escuro);
  color: #fff;
}

.rum h2.titulo {
  color: #fff;
  text-align: left;
}

.rum .sub {
  color: var(--laranja);
  text-align: left;
  max-width: none;
  margin: 0 0 40px;
}

/* cena: empresário à esquerda, balões à direita */
.rum-cena {
  display: grid;
  grid-template-columns: minmax(320px, 460px) 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 18px;
}

.rum-foto {
  position: relative;
}

.rum-foto img {
  display: block;
  width: 100%;
  height: auto;
}

/* placeholder enquanto a imagem definitiva não chega */
.rum-foto-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 360px;
  border: 2px dashed rgba(243, 140, 37, .5);
  border-radius: 16px;
  color: var(--texto-dark-claro);
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.rum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px 44px;
}

.rum-cena .rum-grid {
  margin: -40px 0 0;
}

.pensamento {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 24px;
  padding: 28px 30px 30px;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: #ececec;
  animation: pensamento-flutua 6s ease-in-out infinite;
}

/* aspa decorativa no canto do balão */
.pensamento::before {
  content: "\201C";
  position: absolute;
  top: 2px;
  left: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
  color: var(--laranja);
  opacity: .5;
  pointer-events: none;
}

/* rabicho de balão de pensamento (duas bolhas) */
.pensamento::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -13px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: -15px 17px 0 -4px rgba(255, 255, 255, .06);
}

/* dessincroniza a flutuação pra parecer natural */
.pensamento:nth-child(3n) {
  animation-delay: -1.8s;
}
.pensamento:nth-child(3n + 1) {
  animation-delay: -3.6s;
}

@keyframes pensamento-flutua {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.rum .fecho {
  text-align: center;
  max-width: 780px;
  margin: 38px auto 0;
  font-size: 22px;
  line-height: 1.5;
  color: #fff;
}

.rum .fecho b {
  color: var(--laranja);
}

/* Está perdido? texto e foto */
.perdido {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 48px auto 0;
  position: relative;
  --ext-top: 0px;
  --ext-bottom: 0px;
}

/* barra laranja superior */
.perdido::before {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(50% - 50vw);
  width: calc(50vw - 50% + var(--ext-top));
  height: 5px;
  border-radius: 2px;
  background: var(--laranja);
  transition: width .12s ease-out;
}

/* barra laranja inferior */
.perdido::after {
  content: "";
  position: absolute;
  bottom: 56px;
  right: calc(50% - 50vw);
  width: calc(50vw - 50% + var(--ext-bottom));
  height: 5px;
  border-radius: 2px;
  background: var(--laranja);
  transition: width .12s ease-out;
}

.perdido-txt {
  position: relative;
  top: -30px;
}

.perdido-txt h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}

.perdido-txt p {
  font-size: 20px;
  line-height: 1.6;
  color: #e6e6e6;
  max-width: 560px;
  margin-bottom: 34px;
}

.perdido-foto {
  position: relative;
}

.perdido-foto img {
  display: block;
  width: 100%;
  height: auto;
}

.alerta {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--verm-claro);
  border: 1px solid #e6b8b8;
  border-left: 5px solid var(--vermelho);
  border-radius: 12px;
  padding: 22px 24px;
  text-align: left;
}

.alerta .ic {
  font-size: 30px;
  line-height: 1;
  flex: 0 0 auto;
}

.alerta b {
  display: block;
  color: var(--vermelho);
  font-size: 18px;
  margin-bottom: 4px;
}

.alerta p {
  color: var(--texto);
  font-size: 15px;
}

/* Depoimentos */
.depo-sec .wrap {
  max-width: 1200px;
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 10px;
}

.depo {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 34px 32px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .05);
}

.depo .estrelas {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 14px;
}

.depo p {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--texto);
  margin-bottom: 18px;
}

.depo .quem {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depo .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--laranja-claro);
  color: var(--laranja);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.depo .quem b {
  display: block;
  font-size: 14px;
}

.depo .quem span {
  font-size: 12px;
  color: var(--texto-claro);
}

/* Recortes de jornal — carrossel automático (conscientização) */
.jornais-carrossel {
  margin-top: 36px;
  overflow: hidden;
  /* esmaece levemente as bordas laterais */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2%, #000 98%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 2%, #000 98%, transparent 100%);
}

.jornais-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: jornais-scroll 40s linear infinite;
}

.jornais-carrossel:hover .jornais-track {
  animation-play-state: paused;
}

.jornal {
  margin: 0 26px 0 0;
  flex: 0 0 auto;
  height: 380px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .55);
}

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

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

@media (prefers-reduced-motion: reduce) {
  .jornais-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    gap: 20px;
  }
  .jornal { margin: 0; }
  .pensamento { animation: none; }
}

/* Passo a passo */
.passos {
  display: grid;
  gap: 22px;
  margin-top: 10px;
}

.passo {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: center;
  background: #141414;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .06);
}

.passo .num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--laranja);
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.passo h3 {
  font-size: 21px;
  margin-bottom: 6px;
  color: #fff;
}

.passo p {
  color: var(--texto-dark-claro);
}

/* Entregáveis / cards com ícone 3D no topo */
.alt {
  background: var(--cinza-bg);
}

/* subtitulo dos entregáveis em uma linha só */
.entrega-sec .sub {
  max-width: none;
  white-space: nowrap;
}

.entregaveis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 10px;
}

.entregavel {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 5px 16px rgba(0, 0, 0, .05);
}

.entregavel .ico {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--cinza-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.entregavel .ico img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.entregavel h3 {
  font-size: 19px;
  margin-bottom: 6px;
}

.entregavel p {
  font-size: 15px;
  color: var(--texto-claro);
}

.entregavel .resolve {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--laranja-esc);
  font-weight: 700;
  background: var(--laranja-claro);
  padding: 5px 12px;
  border-radius: 999px;
}

/* Bônus / boxes em 2 colunas */
.bonus .entregaveis {
  grid-template-columns: 1fr 1fr;
}

.bonus .entregavel {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, .06);
}

.bonus .entregavel .ico {
  background: rgba(255, 255, 255, .05);
}

.bonus .entregavel h3 {
  color: #fff;
}

.bonus .entregavel p {
  color: var(--texto-dark-claro);
}

.bonus .entregavel .resolve {
  color: #fff;
  background: var(--verde);
}

/* Entregáveis em lista */
.entrega-sec .entregaveis {
  grid-template-columns: 1fr;
  gap: 14px;
}

.entrega-sec .entregavel {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 24px;
  align-items: center;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 16px;
  padding: 20px 26px;
  box-shadow: none;
}

.entrega-sec .entregavel .ico {
  grid-row: 1 / span 2;
  width: 84px;
  height: 84px;
  background: none;
  border-radius: 0;
  margin: 0;
}

.entrega-sec .entregavel .ico img {
  width: 72px;
  height: 72px;
}

.entrega-sec .entregavel h3 {
  align-self: end;
  font-size: 20px;
  margin-bottom: 4px;
  color: var(--laranja);
}

.entrega-sec .entregavel p {
  align-self: start;
  font-size: 15px;
  color: var(--texto-dark-claro);
}

.entrega-sec .entregavel .resolve {
  display: block;
  width: fit-content;
  margin-top: 12px;
  padding: 6px 14px;
  font-size: 12.5px;
  color: #ffb877;
  background: rgba(243, 140, 37, .12);
  border: 1px solid rgba(243, 140, 37, .35);
}

/* entregáveis scroll */
.entrega-sec .entregavel {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .5s ease, transform .5s ease;
}

.entrega-sec .entregavel.reveal {
  opacity: 1;
  transform: none;
}

/* Para quem serve */
.serve {
  background: var(--escuro);
  color: #fff;
}

.serve h2.titulo {
  color: #fff;
}

.serve-box {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 36px;
}

.serve-box ul {
  margin: 0;
}

.serve-box li {
  list-style: none;
  padding: 12px 0 12px 38px;
  position: relative;
  font-size: 16px;
  color: #ececec;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.serve-box li:last-child {
  border-bottom: none;
}

.serve-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 24px;
  height: 24px;
  background: var(--verde);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}

.enfim {
  text-align: center;
  max-width: 820px;
  margin: 34px auto 0;
  font-size: 26px;
  line-height: 1.45;
  color: #fff;
}

.enfim b {
  color: var(--laranja);
}

/* Recap / valor */
.recap {
  background: var(--escuro);
  color: #fff;
}

.recap h2.titulo {
  color: #fff;
}

.recap-list {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .05);
  border-radius: 14px;
  padding: 36px 40px;
}

.recap-list li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .15);
  font-size: 18px;
}

.recap-list li:last-child {
  border-bottom: none;
}

.recap-list .item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.recap-list .item::before {
  content: "✓";
  color: var(--laranja);
  font-weight: 800;
}

.recap-list .preco {
  color: #bdbdbd;
  white-space: nowrap;
}

.ancora {
  text-align: center;
  margin-top: 30px;
}

.ancora .de {
  font-size: 24px;
  color: #b3b3b3;
}

.ancora .de s {
  color: #b3b3b3;
}

.ancora .por {
  font-size: 28px;
  font-weight: 800;
  margin-top: 10px;
  color: #fff;
}

/* Mockup acima da caixa de preço */
.preco-mock {
  max-width: 560px;
  margin: 0 auto 26px;
}

.preco-mock .ph {
  min-height: 220px;
  margin: 0;
}

/* Caixa de preço */
.preco-box {
  max-width: 480px;
  margin: 40px auto 0;
  background: #141414;
  border: 3px solid var(--laranja);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.preco-box .cta {
  width: 100%;
  box-shadow: none;
}

.preco-box .cta:hover {
  box-shadow: none;
}

/* Duas caixcas de preço lado a lado */
.precos-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 36px auto 0;
  align-items: start;
}

.precos-2 .preco-box {
  max-width: none;
  margin: 0;
}

/* Formas de pagamento dentro da box de valores */
.formas-pagamento {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
}

.formas-pagamento .fp-label {
  display: block;
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 10px;
}

.formas-pagamento .fp-icones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.formas-pagamento .fp-icones img {
  height: 26px;
  width: auto;
  background: #fff;
  border-radius: 5px;
  padding: 3px 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

.formas-pagamento .fp-selos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.formas-pagamento .fp-hotmart {
  display: block;
  height: 34px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 9px 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.formas-pagamento .fp-seguro {
  display: block;
  height: 34px;
  width: auto;
  border-radius: 8px;
}

.preco-box-simple {
  border: 1px solid rgba(255, 255, 255, .12);
}

.preco-box-simple .faixa {
  background: #2a2a2a;
  color: #cfcfcf;
}

.preco-box-destaque {
  box-shadow: 0 0 0 4px rgba(243, 140, 37, .12);
}

.preco-box .faixa {
  display: inline-block;
  background: var(--laranja);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.preco-box .de {
  color: var(--texto-dark-claro);
  font-size: 16px;
}

.preco-box .de s {
  color: #ff8c8c;
}

.preco-box .x {
  font-size: 18px;
  color: var(--texto-dark-claro);
  margin-top: 6px;
}

.preco-box .valor {
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 2px 0;
}

.preco-box .valor span {
  font-size: 28px;
  vertical-align: top;
}

.preco-box .avista {
  color: var(--texto-dark-claro);
  margin-bottom: 24px;
}

.preco-box .avista b {
  color: #fff;
}

/* Planos */
.planos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 44px auto 0;
  align-items: start;
}

.plano {
  position: relative;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 36px 30px;
  text-align: center;
}

.plano-destaque {
  border: 2px solid var(--laranja);
  box-shadow: 0 0 0 4px rgba(243, 140, 37, .12);
}

.plano-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--laranja);
  color: #fff;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .5px;
  padding: 7px 18px;
  border-radius: 999px;
  white-space: nowrap;
}

.plano-nome {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px;
}

.plano-nome .mais {
  color: var(--laranja);
}

.plano-de {
  color: var(--texto-dark-claro);
  font-size: 15px;
}

.plano-de s {
  color: #ff8c8c;
}

.plano-preco {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 4px 0;
}

.plano-preco .cifra {
  color: var(--laranja);
  font-size: 24px;
  font-weight: 800;
}

.plano-preco .num {
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.plano-parcela {
  color: var(--texto-dark-claro);
  font-size: 14px;
}

.plano-economia {
  color: #4caf50;
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px;
}

.plano-itens {
  list-style: none;
  text-align: left;
  margin: 22px 0 26px;
}

.plano-itens li {
  position: relative;
  padding: 9px 0 9px 30px;
  font-size: 15px;
  color: #e0e0e0;
}

.plano-itens li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  color: #4caf50;
  font-weight: 800;
}

.plano-itens .plano-mais {
  color: #fff;
  font-weight: 700;
}

.plano-itens .plano-hot {
  background: rgba(243, 140, 37, .1);
  border: 1px solid rgba(243, 140, 37, .3);
  border-radius: 10px;
  padding: 12px 14px 12px 38px;
  margin: 8px 0;
  color: #fff;
  font-weight: 600;
}

.plano-itens .plano-hot::before {
  content: "●";
  left: 15px;
  top: 14px;
  font-size: 11px;
  color: var(--laranja);
}

.plano .cta {
  width: 100%;
  box-shadow: none;
  margin-top: 4px;
}

.plano-cta-1 {
  background: #222;
  border: 1px solid rgba(255, 255, 255, .22);
}

.plano-cta-1:hover {
  background: #2b2b2b;
  box-shadow: none;
}

.plano-garantia {
  margin-top: 14px;
  font-size: 13px;
  color: var(--texto-dark-claro);
}

.garantia {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 560px;
  margin: 34px auto 0;
  background: var(--verde-claro);
  border: 1px solid #b6dcc4;
  border-radius: 14px;
  padding: 22px;
}

.garantia .selo {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--verde);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
}

.garantia b {
  color: var(--verde);
}

.garantia p {
  font-size: 15px;
  color: var(--texto);
}

/* Como acessar */
.acesso-sec {
  padding: 48px 0 40px;
}

.acesso {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}

.acesso .step {
  text-align: center;
  padding: 24px;
}

.acesso .bola {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--laranja);
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.acesso h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #fff;
}

.acesso p {
  font-size: 16px;
  color: var(--texto-dark-claro);
}

/* Autoridade */
.autor {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1080px;
  margin: 60px auto 0;
}

.nota-edit-left {
  text-align: left;
  margin-top: 6px;
  font-size: 15px;
}

.autor .foto img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.autor h3 {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 800;
  line-height: 1.02;
  margin-bottom: 4px;
  color: var(--laranja);
}

.autor .cargo {
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 18px;
}

.autor p {
  color: var(--texto-dark-claro);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* cascata scroll */
.autor h3,
.autor .cargo,
.autor p:not(.cargo) {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.autor.reveal h3 {
  transition-delay: 0s;
}

.autor.reveal .cargo {
  transition-delay: .15s;
}

.autor.reveal p:not(.cargo) {
  transition-delay: .3s;
}

.autor.reveal h3,
.autor.reveal .cargo,
.autor.reveal p:not(.cargo) {
  opacity: 1;
  transform: none;
}

/* Conversa séria */
.serie {
  background: var(--cinza-bg);
}

.opcoes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 780px;
  margin: 40px auto 0;
}

.opc {
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.opc .ico {
  font-size: 38px;
  margin-bottom: 12px;
}

.opc h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.opc p {
  font-size: 15px;
}

.opc-1 {
  background: var(--verm-claro);
  border: 1px solid #e6b8b8;
}

.opc-1 h3 {
  color: var(--vermelho);
}

.opc-2 {
  background: var(--verde-claro);
  border: 1px solid #b6dcc4;
}

.opc-2 h3 {
  color: var(--verde);
}

.serie .fecho {
  text-align: center;
  max-width: 680px;
  margin: 36px auto 0;
  font-size: 22px;
  color: var(--texto-dark);
}

.serie .fecho b {
  color: #fff;
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq details {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--laranja);
  font-size: 26px;
  font-weight: 400;
  transition: transform .2s;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  padding: 0 24px 22px;
  color: var(--texto-claro);
  font-size: 15px;
}

/* Footer */
footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #9a9a9a;
  text-align: center;
  padding: 46px 0;
  font-size: 13px;
}

footer .marca {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 10px;
}

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

footer .disc {
  max-width: 680px;
  margin: 16px auto 0;
  line-height: 1.5;
}

/* RESPONSIVO (mobile) */
@media (max-width: 760px) {
  section {
    padding: 46px 0;
  }

  .hero {
    text-align: center;
  }

  .hero h1 {
    white-space: normal;
  }

  .hero-top {
    display: block;
    min-height: 0;
  }

  .hero-left {
    max-width: none;
    text-align: center;
    padding: 0;
  }

  .hero .tag {
    text-align: center;
    max-width: none;
    margin: 0 0 14px;
  }

  .hero-top .caminhos-img {
    position: static;
    width: 100%;
    max-width: 440px;
    margin: 20px auto 0;
  }

  .hero p.lead {
    text-align: left;
  }

  .entrega-sec .sub {
    white-space: normal;
  }

  .rum-grid,
  .depo-grid,
  .acesso,
  .opcoes {
    grid-template-columns: 1fr;
  }

  /* na coluna única, altura natural (sem forçar todos iguais) */
  .rum-grid {
    grid-auto-rows: auto;
  }

  /* foto em cima, balões empilhados embaixo */
  .rum-cena {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .rum-foto {
    max-width: 300px;
    margin: 0 auto;
  }

  .entregaveis,
  .bonus .entregaveis {
    grid-template-columns: 1fr;
  }

  .planos,
  .precos-2 {
    grid-template-columns: 1fr;
  }

  .perdido {
    grid-template-columns: 1fr;
  }

  /* barras laranja bugam com 50vw no mobile / escondidas */
  .perdido::before,
  .perdido::after {
    display: none;
  }

  .perdido-txt {
    top: 0;
    text-align: center;
  }

  /* "Está perdido e gerindo" na 1ª linha, "no escuro?" na 2ª */
  .perdido-txt h2 .br1 {
    display: none;
  }

  .perdido-txt p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  /* fotos da Rose não ficam boas no mobile / escondidas */
  .perdido-foto {
    display: none;
  }

  .autor {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .autor .foto {
    display: none;
  }

  .passo {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .passo .num {
    margin: 0 auto;
  }

}
