:root {
  --green: #10B981;
  --green-hover: #0E9F6E;
  --green-text: #34D399;
  --green-100: #D1FAE5;
  --navy: #111827;
  --black: #000000;
  --pink: #FEE2E2;
  --gold: #FFD24D;
  --red: #EC5858;
  --red-50: #FEF2F2;
  --ink: #111827;
  --body: #4B5563;
  --muted: #9CA3AF;
  --bg: #FFFFFF;
  --bg-soft: #F7F9F8;
  --border: #E5E7EB;
  --r-pill: 999px;
  --r-card: 16px;
  --r-pill-sm: 6px;
  --shadow-card: 0 4px 24px rgba(17, 24, 40, .06);
  --shadow-soft: 0 2px 10px rgba(17, 24, 40, .05);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 22px;
}

section {
  padding: 58px 0;
}

.center {
  text-align: center;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -.01em;
  line-height: 1.2;
}

.h-sec {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
}

.h-sec .accent {
  color: var(--green);
}

.lead {
  color: var(--body);
  font-size: 17px;
}

.red-em {
  color: var(--red);
  font-weight: 800;
}

/* ---- Cabeçalho (Header acima da topbar) ---- */
.hero-header {
  text-align: center;
  padding: 24px 22px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-badge {
  font-size: 10px;
  font-weight: 800;
  color: var(--green);
  border: 1.5px solid var(--green-100);
  padding: 4px 10px;
  border-radius: var(--r-pill-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.logo-main {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.logo-sub {
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* ---- top bar ---- */
.topbar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
}

.topbar b {
  color: var(--green-text);
}

/* ---- botão (mantido do DS) ---- */
.btn-cta {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  text-align: center;
  padding: 18px 40px;
  border-radius: var(--r-pill);
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.25;
  box-shadow: 0 10px 24px rgba(16, 185, 129, .30);
  transition: transform .15s ease, background .15s ease;
}

.btn-cta:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
}

.btn-cta small {
  display: block;
  font-weight: 600;
  font-size: 12px;
  text-transform: none;
  opacity: .92;
  margin-top: 4px;
}

.cta-trust {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 13px;
  color: var(--body);
}

.s-navy .cta-trust,
.s-black .cta-trust {
  color: #CBD5E1;
}

.cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-trust .ck {
  color: var(--green);
  font-weight: 800;
}

/* ---- faixa-divisória (banner) com pill ---- */
.divider {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 40px 22px;
}

.divider .pill-tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

.divider h2 {
  font-size: 24px;
  font-weight: 800;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.3;
}

.divider h2 .accent {
  color: var(--green-text);
}

/* ---- placeholder imagem ---- */
.ph {
  border: 2px dashed #CBD5D1;
  border-radius: 14px;
  background: #EFF3F2;
  color: #94A3B8;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  padding: 18px;
  min-height: 120px;
  overflow: hidden;
  position: relative;
}

.s-navy .ph,
.s-black .ph {
  border-color: #33405A;
  background: rgba(255, 255, 255, .04);
  color: #7C8AA0;
}

/* Estilo para imagens reais dentro dos placeholders/containers */
.ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 12px;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  text-align: center;
  padding: 36px 0 70px;
  background: var(--bg-soft);
}

.hero h1 {
  font-size: 34px;
  font-weight: 800;
  max-width: 820px;
  margin: 0 auto 24px;
  line-height: 1.25;
  color: var(--navy);
}

.hero h1 .accent {
  color: var(--green);
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 700;
  color: var(--body);
  box-shadow: var(--shadow-soft);
}

.hero-badge .check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.hero-media-container {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.hero-media-wrapper {
  overflow: hidden;
  background: transparent;
}

.hero-media-wrapper .ph {
  border: none;
  background: transparent;
}

.hero-media-wrapper .ph img {
  position: relative;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.scroll-indicator {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--green);
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  border: none;
  text-decoration: none;
}

.scroll-btn:hover {
  background: var(--green-hover);
  transform: translateY(2px);
}

.scroll-btn svg {
  width: 30px;
  height: 30px;
  stroke: #ffffff;
  stroke-width: 3;
  fill: none;
}

.hero-cta-wrap {
  margin-top: 50px;
}

.hero-cta-wrap .btn-cta {
  margin-bottom: 12px;
}

.hero-cap {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--body);
  font-weight: 600;
}

.hero-cap .ck {
  color: var(--green);
  font-weight: 800;
}

/* =====================================================
   DOR (texto + imagem com balões)
   ===================================================== */
.pain-intro {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.35;
}

.pain-mid {
  text-align: center;
  font-weight: 800;
  color: var(--red);
  margin: 22px 0 24px;
  font-size: 16px;
}

.pain-figure {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.pain-figure .ph {
  min-height: 0;
  border: none;
  background: transparent;
}

.pain-figure .ph img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
}

.bubble {
  position: absolute;
  background: #A62B2B;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  max-width: 190px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
  z-index: 2;
}

.bubble.b1 {
  top: 10%;
  left: -35px;
}

.bubble.b2 {
  top: 30%;
  right: -35px;
}

.bubble.b3 {
  top: 52%;
  left: -45px;
}

.bubble.b4 {
  top: 74%;
  right: -25px;
}



.pain-after {
  text-align: center;
  max-width: 640px;
  margin: 32px auto 0;
  color: var(--body);
  font-size: 16px;
}

.pain-after .red-em {
  display: block;
  margin-top: 10px;
  font-size: 18px;
}

/* =====================================================
   WARNING BOX (pergunta)
   ===================================================== */
.qbox {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1.5px solid var(--green-100);
  border-left: 5px solid var(--green);
  border-radius: 14px;
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-card);
}

.qbox .ic {
  flex: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-100);
  display: grid;
  place-items: center;
  font-size: 24px;
}

.qbox h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.qbox p {
  color: var(--body);
  font-size: 15px;
}

.qanswer {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  max-width: 620px;
  margin: 28px auto 0;
  line-height: 1.4;
}

.qanswer .accent {
  color: var(--green);
}

/* =====================================================
   GRADE DE BENEFÍCIOS (ícones 2x2)
   ===================================================== */
.benefit-h {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 32px;
}

.benefit-h .accent {
  color: var(--green);
}

.bengrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}

.ben {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 26px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.ben .ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-100);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}

.ben .ic svg {
  width: 28px;
  height: 28px;
  stroke: var(--green-hover);
}

.ben p {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

/* =====================================================
   LINHAS DE ENTREGÁVEIS (texto esq + imagem dir)
   ===================================================== */
.rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}

.row-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: center;
}

.row-card .txt h4 {
  font-size: 19px;
  font-weight: 800;
  margin: 10px 0 8px;
}

.row-card .txt p {
  color: var(--body);
  font-size: 14.5px;
}

.row-card .media .ph {
  min-height: 170px;
}

.pill {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-hover);
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-pill-sm);
}

/* variante escura (bônus) */
.divider+section .row-card.dark,
.row-card.dark {
  background: #161616;
  border-color: #2a2a2a;
}

.row-card.dark .txt h4 {
  color: #fff;
}

.row-card.dark .txt p {
  color: #B8BCC2;
}

.row-card.dark .pill {
  background: rgba(52, 211, 153, .16);
  color: var(--green-text);
}

.row-card.dark .ph {
  border: none;
  background: transparent;
  padding: 0;
}

.row-card.dark .ph img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 100%;
  object-fit: contain;
}

/* =====================================================
   PARA QUEM SERVE (imagem esq + checklist dir)
   ===================================================== */
.foryou {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 36px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.foryou .ph {
  min-height: 240px;
}

.clist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.clist li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--body);
}

.clist .i {
  flex: none;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin-top: 2px;
  background: var(--green);
}

.bridge {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  max-width: 680px;
  margin: 40px auto 0;
  line-height: 1.4;
}

.bridge .accent {
  color: var(--green);
}

/* =====================================================
   RECAPITULANDO (value stack)
   ===================================================== */
.stack {
  max-width: 600px;
  margin: 30px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.stack .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.stack .row span:first-child {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--ink);
}

.stack .row .ck {
  color: var(--green);
  font-weight: 800;
  flex: none;
}

.stack .row .val {
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
}

.stack .total {
  padding: 18px 22px;
  text-align: center;
  font-weight: 700;
  color: var(--body);
  font-size: 15px;
}

.stack .total s {
  color: var(--muted);
}

/* =====================================================
   PREÇO (mockup esq + preço/botão dir)
   ===================================================== */
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}

.price-row .ph {
  min-height: 380px;
}

/* ---- Cartão de Checkout Premium (Seção de Preço) ---- */
.price-card {
  background: #F4F6F5;
  border-radius: 24px;
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.price-card .card-badge {
  font-size: 10px;
  font-weight: 800;
  color: var(--green);
  border: 1.5px solid var(--green-100);
  padding: 4px 10px;
  border-radius: var(--r-pill-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card .card-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.price-card .card-subtitle {
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card .card-divider {
  width: 100%;
  border-top: 1.5px dashed var(--border);
  margin: 6px 0;
}

.price-card .price-tag {
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.price-card .price-sub {
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
  margin-top: -4px;
}

.price-card .btn-buy {
  display: inline-block;
  width: 100%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  padding: 18px 24px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.25;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
  transition: transform 0.15s ease, background 0.15s ease;
}

.price-card .btn-buy:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
}

.price-card .btn-buy small {
  display: block;
  font-weight: 600;
  font-size: 12px;
  text-transform: none;
  opacity: 0.92;
  margin-top: 4px;
}

.price-card .trust-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 6px;
}

.price-card .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--body);
}

.price-card .trust-item svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  opacity: 0.7;
}

.value-time {
  max-width: 600px;
  margin: 34px auto 0;
  text-align: center;
  color: var(--body);
  font-size: 15.5px;
}

.value-time b {
  color: var(--ink);
}

.value-time .big2 {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin: 8px 0;
}

/* =====================================================
   PASSOS DE COMPRA (3 colunas)
   ===================================================== */
.buy-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 34px auto 0;
}

.bstep {
  text-align: center;
}

.bstep .ic {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green-100);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 24px;
}

.bstep h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}

.bstep p {
  font-size: 13.5px;
  color: var(--body);
}

/* =====================================================
   AUTOR (texto esq + foto dir) — navy
   ===================================================== */
.author {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.author .label {
  color: var(--green-text);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}

.author h3 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.author .role {
  color: #9CA3AF;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 18px;
}

.author p {
  color: #CBD5E1;
  font-size: 15px;
  margin-bottom: 16px;
}

.author .clist li {
  color: #D6DAE0;
}

.author .photo {
  min-height: 300px;
  border-radius: 18px;
}

/* =====================================================
   DUAS OPÇÕES
   ===================================================== */
.options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 820px;
  margin: 30px auto 0;
}

.opt {
  border-radius: var(--r-card);
  padding: 26px;
  border: 1.5px solid;
}

.opt.bad {
  background: var(--red-50);
  border-color: #FBD5D5;
}

.opt.good {
  background: #F2FCF8;
  border-color: var(--green-100);
}

.opt h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.opt.bad h4 {
  color: var(--red);
}

.opt.good h4 {
  color: var(--green-hover);
}

.opt .i.neg {
  background: var(--red);
}

.serious-close {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  max-width: 680px;
  margin: 32px auto 0;
}

/* guarantee */
.guarantee {
  max-width: 660px;
  margin: 30px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.guarantee .seal {
  font-size: 30px;
}

.guarantee h4 {
  font-size: 18px;
  font-weight: 800;
  margin: 8px 0;
}

.guarantee p {
  color: var(--body);
  font-size: 14.5px;
}

.guarantee b {
  color: var(--ink);
}

/* FAQ */
.faq {
  max-width: 720px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

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

.faq summary::after {
  content: "+";
  color: var(--green);
  font-weight: 800;
  font-size: 22px;
  flex: none;
}

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

.faq .ans {
  padding: 0 22px 20px;
  color: var(--body);
  font-size: 14.5px;
}

/* footer */
footer {
  background: var(--navy);
  color: #94A3B8;
  padding: 42px 0;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.7;
}

footer a {
  color: var(--green-text);
  text-decoration: none;
}

footer .legal {
  max-width: 680px;
  margin: 16px auto 0;
  font-size: 12px;
  color: #64748B;
}

/* responsivo */
@media(max-width: 820px) {
  .row-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .foryou,
  .price-row,
  .author {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .author {
    text-align: center;
  }

  .author .clist li {
    text-align: left;
  }
}

@media(max-width: 640px) {
  section {
    padding: 46px 0;
  }

  .hero h1 {
    font-size: 27px;
  }

  .h-sec,
  .benefit-h,
  .divider h2 {
    font-size: 21px;
  }

  .bengrid,
  .buy-steps,
  .options {
    grid-template-columns: 1fr;
  }

  .btn-cta {
    width: 100%;
    padding: 17px 24px;
  }





  .price-card {
    padding: 24px 16px;
  }

  .price-card .trust-badges {
    gap: 12px;
  }

  .price-card .trust-item {
    font-size: 10px;
  }

  .row-card {
    padding: 20px;
  }

  .bubble {
    width: 60%;
    max-width: none;
    font-size: 11.5px;
    padding: 8px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .bubble.b1 { top: 6%; left: 6%; right: auto; }
  .bubble.b2 { top: 29%; left: 6%; right: auto; }
  .bubble.b3 { top: 52%; left: 6%; right: auto; }
  .bubble.b4 { top: 75%; left: 6%; right: auto; }
}