
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --bg:#f2ebe3;
  --paper:#fbf7f1;
  --paper2:#efe5da;
  --ink:#241a15;
  --muted:#6f6158;
  --brown:#432d22;
  --brown2:#765542;
  --accent:#a66b55;
  --line:rgba(115,81,61,.16);
  --line2:rgba(115,81,61,.26);
  --radius:30px;
  --shadow:0 22px 54px rgba(51,33,22,.09);
  --max:1120px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(circle at 4% 0%,rgba(166,107,85,.08),transparent 26%),
    linear-gradient(180deg,var(--bg),#ece2d8);
  color:var(--ink);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
}
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.22;
  background-image:radial-gradient(circle, rgba(86,61,46,.13) 0 1px, transparent 1.4px);
  background-size:24px 24px;
  mix-blend-mode:soft-light;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.serif{font-family:"Cormorant Garamond",Georgia,serif;font-weight:400;letter-spacing:-.035em}
.wrap{width:min(var(--max),calc(100% - 32px));margin:0 auto}
.topbar{
  position:sticky;
  top:12px;
  z-index:20;
  margin-top:12px;
  border:1px solid rgba(255,255,255,.68);
  background:rgba(251,247,241,.84);
  backdrop-filter:blur(16px);
  box-shadow:0 14px 34px rgba(51,33,22,.08);
  border-radius:24px;
}
.nav{min-height:66px;display:flex;align-items:center;justify-content:center;gap:14px;padding:11px 14px}
.brand{display:flex;align-items:center;gap:12px}
.mark{
  width:42px;height:42px;border-radius:15px;
  display:grid;place-items:center;
  border:1px solid var(--line);
  background:linear-gradient(145deg,#fffaf5,#eadfd4);
  font-family:Georgia,serif;color:var(--brown);font-size:15px;
}
.brand strong{display:block;font-size:10px;letter-spacing:.19em;text-transform:uppercase;color:var(--brown)}
.brand span span{display:block;margin-top:2px;font-size:12px;color:var(--muted)}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  min-height:46px;padding:0 18px;
  border-radius:16px;
  background:var(--brown);color:#fff;
  border:1px solid var(--brown);
  font-size:9px;letter-spacing:.14em;text-transform:uppercase;font-weight:800;
  box-shadow:0 14px 28px rgba(67,45,34,.16);
}
.btn.light{background:rgba(255,255,255,.55);color:var(--brown);border-color:var(--line2);box-shadow:none}
.eyebrow{
  margin:0 0 10px;
  font-size:9px;letter-spacing:.24em;text-transform:uppercase;font-weight:800;color:var(--brown2);
}
section{padding:24px 0}
.hero{padding-top:24px}
.hero-card{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.72);
  background:
    radial-gradient(circle at 95% 12%,rgba(166,107,85,.10),transparent 25%),
    rgba(251,247,241,.78);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.hero-grid{display:grid;grid-template-columns:1.04fr .96fr;gap:0;align-items:stretch}
.hero-copy{padding:44px 42px}
.hero-title-row{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
  align-items:end;
  margin-bottom:22px;
}
.ebook-name{
  margin:0;
  font-size:clamp(52px,7vw,84px);
  line-height:.86;
}
.hero-subtitle{
  margin:0;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(30px,4vw,46px);
  line-height:.98;
  color:#4f3f35;
}
.hero-copy .lead{margin:0;max-width:620px;color:var(--muted);font-size:15px;line-height:1.68}
.hero-highlight{
  margin:20px 0 0;
  padding:18px 20px;
  border-left:3px solid var(--accent);
  background:rgba(255,255,255,.48);
  border-radius:0 20px 20px 0;
  color:#4f3f35;
  font-weight:600;
  line-height:1.55;
}
.hero-media{min-height:480px;padding:14px}
.hero-media img{width:100%;height:100%;object-fit:cover;border-radius:24px;object-position:center center}
.price-strip{
  margin-top:16px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:16px;
  align-items:center;
  padding:26px;
  border-radius:26px;
  background:
    radial-gradient(circle at 92% 20%,rgba(255,255,255,.12),transparent 24%),
    linear-gradient(135deg,#37251d,#73513f);
  color:#fff;
  border:1px solid rgba(255,255,255,.20);
  box-shadow:0 22px 46px rgba(51,33,22,.16);
}
.price-strip .eyebrow{color:rgba(255,255,255,.62)}
.price-strip strong{font-family:"Cormorant Garamond",Georgia,serif;font-size:56px;font-weight:500;color:#fff;line-height:.9}
.price-strip p{margin:8px 0 0;color:rgba(255,255,255,.72);font-size:13px;line-height:1.5}
.price-strip .btn{background:#fff;color:var(--brown);border-color:#fff;box-shadow:none}
.section-box{
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.72);
  background:rgba(251,247,241,.70);
  box-shadow:var(--shadow);
  padding:30px;
  position:relative;
  overflow:hidden;
}
.section-box.alt{background:rgba(239,229,218,.72)}
.section-box:after{
  content:"";
  position:absolute;right:-110px;top:-110px;width:250px;height:250px;border:1px solid var(--line);border-radius:50%;
  pointer-events:none;
}
.title-row{display:flex;justify-content:space-between;gap:20px;align-items:flex-end;margin-bottom:18px}
.title-row h2{margin:0;font-size:clamp(34px,4.3vw,52px);line-height:.95}
.problem-copy{max-width:800px;color:var(--muted);font-size:15px;line-height:1.72}
.problem-copy p{margin:0 0 16px}
.quote{
  margin:18px 0;
  padding:22px 24px;
  border-radius:22px;
  border:1px solid rgba(166,107,85,.25);
  background:rgba(255,255,255,.42);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(29px,4vw,44px);
  line-height:1.05;
  color:var(--brown);
}
.line-star{display:flex;align-items:center;gap:14px;margin:18px 0;color:var(--accent)}
.line-star:before,.line-star:after{content:"";height:1px;flex:1;background:rgba(166,107,85,.28)}
.compact-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
.fit-card,.learn-card{
  padding:18px 18px;
  border-radius:18px;
  background:rgba(255,255,255,.50);
  border:1px solid var(--line);
}
.fit-card span{
  display:block;
  margin-bottom:10px;
  color:var(--accent);
  font-size:10px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.fit-card p,.learn-card p{margin:0;color:#55463c;font-size:14px;line-height:1.55}
.learn-list{display:grid;gap:10px}
.learn-card{display:grid;grid-template-columns:auto 1fr;gap:14px;align-items:start}
.check{
  width:28px;height:28px;border-radius:50%;display:grid;place-items:center;
  border:1px solid var(--accent);color:var(--accent);font-weight:800;font-size:13px;flex:none;
}
.included{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.included-card{
  padding:24px;
  border-radius:22px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.55);
}
.included-card.wide{grid-column:1 / -1}
.included-card h3{
  margin:0 0 10px;
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:32px;line-height:1;
  color:var(--brown);
}
.included-card p{margin:0;color:#55463c;font-size:14.5px;line-height:1.72}
.about-section{padding-bottom:18px}
.about-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:18px;align-items:stretch}
.about-photo{padding:10px;border-radius:24px;background:rgba(255,255,255,.42);border:1px solid var(--line)}
.about-photo img{width:100%;height:100%;min-height:380px;object-fit:cover;border-radius:18px;object-position:center 18%}
.about-copy{display:flex;flex-direction:column;justify-content:center}
.about-copy h2{margin:0;font-size:clamp(34px,4.5vw,52px);line-height:.94}
.about-copy p{color:#55463c;font-size:14px;line-height:1.65;margin:12px 0 0}
.about-quote{
  margin-top:14px;
  padding:16px;
  border-radius:18px;
  border-top:1px solid var(--line2);
  border-bottom:1px solid var(--line2);
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:26px;
  line-height:1.08;
  text-align:center;
  color:var(--brown)
}
.checkout{
  background:linear-gradient(135deg,#3b281f,#765542);
  color:#fff;
}
.checkout:after{border-color:rgba(255,255,255,.10)}
.checkout .title-row h2,.checkout strong{color:#fff}
.checkout p{color:rgba(255,255,255,.72)}
.checkout-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:14px}
.checkout-item{padding:16px;border-radius:18px;border:1px solid rgba(255,255,255,.15);background:rgba(255,255,255,.06)}
.checkout-item span{display:block;font-size:8px;letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.55);font-weight:800;margin-bottom:8px}
.final-price{font-family:"Cormorant Garamond",Georgia,serif;font-size:54px;line-height:.9;margin:0}
.footer{padding:26px 0 42px;text-align:center;color:var(--muted);font-size:13px}
.reveal{opacity:0;transform:translateY(14px);transition:.55s ease}
.reveal.is-visible{opacity:1;transform:translateY(0)}
@media(max-width:880px){
  .hero-grid,.included,.about-grid,.checkout-grid{grid-template-columns:1fr}
  .hero-title-row{grid-template-columns:1fr}
  .hero-media{min-height:400px}
}
@media(max-width:640px){
  .wrap{width:min(var(--max),calc(100% - 20px))}
  section{padding:16px 0}
  .nav{min-height:62px}
  .hero-copy{padding:32px 20px}
  .ebook-name{font-size:50px}
  .hero-subtitle{font-size:32px}
  .hero-media{min-height:340px;padding:10px}
  .price-strip{grid-template-columns:1fr;padding:22px}
  .price-strip strong{font-size:48px}
  .price-strip .btn{width:100%}
  .section-box{padding:24px 16px;border-radius:26px}
  .title-row{display:block;margin-bottom:16px}
  .title-row h2{font-size:36px}
  .compact-list{grid-template-columns:1fr}
  .fit-card,.learn-card{padding:17px}
  .included-card{padding:20px}
  .included-card h3{font-size:28px}
  .about-photo img{min-height:320px}
  .about-quote{font-size:24px}
}


/* V4 ajuste foto bio proporcional nas duas páginas */
.about-grid{grid-template-columns:.62fr 1.38fr}
.about-photo img{min-height:260px!important;max-height:340px!important}
@media(max-width:880px){.about-grid{grid-template-columns:1fr}.about-photo{max-width:420px;margin:0 auto}.about-photo img{min-height:260px!important;max-height:330px!important}}
@media(max-width:640px){.about-photo{max-width:310px}.about-photo img{min-height:240px!important;max-height:300px!important}}
