:root{
  --bg:#f7f3ef;
  --bg-soft:#fbf8f5;
  --text:#2f241a;
  --muted:#6b6258;
  --primary:#b5713a;
  --primary-dark:#9a6131;
  --border:#e8ddd2;
  --white:#ffffff;
  --shadow:0 18px 40px rgba(47,36,26,.08);
  --radius:28px;
  --radius-sm:18px;
  --max:1180px;
  --max-narrow:860px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

main{
  overflow:hidden;
}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

.container-narrow{
  width:min(var(--max-narrow), calc(100% - 32px));
  margin:0 auto;
}

.section{
  padding:84px 0;
}

.section-sm{
  padding:56px 0;
}

.hero{
  padding:34px 0 72px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:44px;
  align-items:center;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:18px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border:1px solid var(--border);
  border-radius:999px;
  background:rgba(255,255,255,.75);
  color:var(--text);
  font-size:.95rem;
  font-weight:600;
}

.title{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2.4rem,5vw,4.5rem);
  line-height:1.06;
  letter-spacing:-.03em;
}

.highlight{
  color:var(--primary);
}

.lead{
  margin:18px 0 0;
  font-size:1.1rem;
  color:var(--muted);
  max-width:680px;
}

.actions{
  margin-top:28px;
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 28px;
  border-radius:18px;
  background:var(--primary);
  color:#fff;
  font-weight:800;
  font-size:1rem;
  box-shadow:0 14px 28px rgba(181,113,58,.25);
  transition:transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.price-note{
  margin-top:14px;
  font-weight:700;
  color:var(--text);
}

.mini-note{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:12px;
  color:var(--muted);
  font-size:.95rem;
}

.hero-photo,
.rounded-photo{
  border-radius:32px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#ddd;
}

.center-title{
  text-align:center;
  margin-bottom:28px;
}

.center-title h2{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(2rem,4vw,3.2rem);
  line-height:1.08;
}

.center-title p{
  margin:12px auto 0;
  max-width:760px;
  color:var(--muted);
}

.cards-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 10px 26px rgba(47,36,26,.05);
}

.pad{
  padding:28px;
}

.center{
  text-align:center;
}

.big-number{
  font-family:Georgia,"Times New Roman",serif;
  color:var(--primary);
  font-size:2.4rem;
  font-weight:700;
  line-height:1;
  margin-bottom:10px;
}

.banner{
  background:linear-gradient(180deg,#fff 0%,#f8f3ee 100%);
  border:1px solid var(--border);
  border-radius:30px;
  padding:38px 28px;
  text-align:center;
  box-shadow:var(--shadow);
}

.banner h2{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.8rem,3vw,2.6rem);
  line-height:1.1;
}

.banner p{
  margin:12px auto 0;
  max-width:700px;
  color:var(--muted);
}

.split-grid{
  display:grid;
  grid-template-columns:.96fr 1.04fr;
  gap:42px;
  align-items:center;
}

.cards-ebooks{
  display:grid;
  gap:22px;
}

.ebook{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:24px;
  overflow:hidden;
}

.ebook .image{
  background:#f1ebe5;
}

.ebook .content{
  padding:24px 24px 24px 0;
}

.ebook-badge{
  display:inline-block;
  padding:8px 12px;
  background:#f8f2ec;
  color:var(--primary);
  border-radius:999px;
  font-weight:700;
  font-size:.88rem;
  margin-bottom:12px;
}

.ebook h3{
  margin:0 0 8px;
  font-size:1.35rem;
  line-height:1.2;
}

.ebook p{
  margin:0;
  color:var(--muted);
}

.bullets{
  margin:16px 0 0;
  padding-left:20px;
}

.bullets li{
  margin:8px 0;
  color:var(--text);
}

.reinforcement{
  background:linear-gradient(180deg,#f5eee7 0%,#efe5dc 100%);
}

.reinforcement h2{
  margin:0 0 14px;
  text-align:center;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.9rem,3.8vw,3rem);
  line-height:1.1;
}

.offer-box{
  padding:38px 28px;
}

.price-block{
  margin-top:18px;
}

.strike{
  color:var(--muted);
  text-decoration:line-through;
  font-size:1.2rem;
  margin-bottom:8px;
}

.big-price{
  font-family:Georgia,"Times New Roman",serif;
  color:var(--primary);
  font-size:clamp(2.6rem,6vw,4.4rem);
  font-weight:700;
  line-height:1;
}

.faq-item{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  margin:14px 0;
  overflow:hidden;
}

.faq-q{
  width:100%;
  background:none;
  border:0;
  text-align:left;
  padding:20px 22px;
  font:inherit;
  font-weight:700;
  color:var(--text);
  cursor:pointer;
}

.faq-a{
  display:none;
  padding:0 22px 20px;
  color:var(--muted);
}

.faq-item.open .faq-a{
  display:block;
}

.final-band{
  background:#2f241a;
  color:#fff;
  border-radius:30px;
  padding:42px 26px;
  text-align:center;
  box-shadow:var(--shadow);
}

.final-band h2{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(1.8rem,3vw,2.7rem);
  line-height:1.12;
}

.final-band p{
  margin:12px 0 0;
  color:rgba(255,255,255,.82);
}

.footer{
  padding:26px 16px 36px;
  text-align:center;
  color:var(--muted);
  font-size:.95rem;
}

/* bloco extra da seção de benefícios */
.feature-section{align-items:center}
.feature-cards{
  display:grid;
  gap:16px;
  margin-top:18px;
}
.feature-card{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:18px;
  align-items:flex-start;
  background:#fff;
  border:1px solid var(--border);
  border-radius:24px;
  padding:18px 18px 18px 16px;
  box-shadow:0 10px 22px rgba(47,36,26,.05);
  transition:.22s ease;
}
.feature-card h3{
  margin:4px 0 6px;
  font-size:1.2rem;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.25;
}
.feature-card p{
  margin:0;
  color:var(--muted);
}
.feature-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  background:#f8f2ec;
  display:grid;
  place-items:center;
}
.svg-icon svg{
  width:26px;
  height:26px;
  color:var(--primary);
}

.hover-lift,
.hover-lift-soft{
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease, background-color .24s ease;
}
.hover-lift:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 38px rgba(47,36,26,.12);
}
.hover-lift-soft:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(47,36,26,.10);
}
.feature-card:hover{
  transform:translateY(-2px);
  border-color:rgba(154,96,49,.22);
  box-shadow:0 16px 30px rgba(47,36,26,.08);
}
.cta:hover,
.cta:focus-visible{
  background:var(--primary-dark);
  transform:translateY(-1px) scale(1.01);
}

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .65s ease, transform .65s ease;
}
.reveal.in-view{
  opacity:1;
  transform:none;
}
.reveal-delay-1{
  transition-delay:.1s;
}
.reveal-delay-2{
  transition-delay:.18s;
}

@media (max-width:980px){
  .hero-grid,
  .split-grid,
  .cards-3,
  .ebook{
    grid-template-columns:1fr;
  }

  .ebook .content{
    padding:0 24px 24px;
  }

  .feature-card{
    grid-template-columns:56px 1fr;
    padding:16px;
  }
}

@media (max-width:640px){
  .section{padding:64px 0}
  .section-sm{padding:42px 0}
  .hero{padding:24px 0 56px}

  .title{
    font-size:clamp(2rem,10vw,3rem);
  }

  .badge{
    font-size:.85rem;
    padding:8px 12px;
  }

  .cta{
    width:100%;
    text-align:center;
  }

  .pad,
  .offer-box,
  .banner{
    padding:22px 18px;
  }

  .feature-card{
    border-radius:22px;
  }

  .feature-card h3{
    font-size:1.05rem;
  }

  .svg-icon svg{
    width:24px;
    height:24px;
  }

  .mini-note{
    flex-direction:column;
    gap:6px;
  }
}