/* Start custom CSS */@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,500;1,9..144,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root{
  --bg: #FAF6F0;
  --bg-alt: #F0E6D8;
  --bg-cream: #F5EDE0;
  --bg-dark: #1A0F0A;
  --bg-deep: #2A1810;
  --text: #2A1810;
  --text-soft: #4A3528;
  --text-muted: #8A7868;
  --text-light: #FAF6F0;
  --gold: #C9A961;
  --gold-soft: #D9BD7A;
  --gold-dark: #9B7E3F;
  --terracotta: #B8553B;
  --terracotta-dark: #95412C;
  --rose: #C5526A;
  --sage: #7A8D6B;
  --border: rgba(42, 24, 16, 0.12);
  --shadow-soft: 0 4px 24px rgba(42, 24, 16, 0.08);
  --shadow-card: 0 8px 32px rgba(42, 24, 16, 0.10);
  --shadow-deep: 0 16px 48px rgba(42, 24, 16, 0.18);
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'DM Sans',sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
  font-size:17px;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}

.serif{font-family:'Fraunces',serif;}
.italic{font-style:italic;}
.container{max-width:1180px;margin:0 auto;padding:0 24px;}
.container-narrow{max-width:880px;margin:0 auto;padding:0 24px;}

/* TIPOGRAFIA BASE */
h1,h2,h3,h4{font-family:'Fraunces',serif;font-weight:500;line-height:1.15;letter-spacing:-0.02em;color:var(--text);}
h1{font-size:clamp(2.2rem,5.5vw,4.2rem);}
h2{font-size:clamp(1.8rem,4vw,3rem);}
h3{font-size:clamp(1.4rem,2.6vw,2rem);}
h4{font-size:clamp(1.2rem,2vw,1.5rem);}

.eyebrow{
  font-family:'DM Sans',sans-serif;
  font-size:0.75rem;
  font-weight:500;
  letter-spacing:0.25em;
  text-transform:uppercase;
  color:var(--gold-dark);
  margin-bottom:1.5rem;
  display:inline-block;
}

.lead{
  font-size:clamp(1.05rem,1.6vw,1.25rem);
  color:var(--text-soft);
  font-weight:300;
  line-height:1.6;
}

/* PLACEHOLDER DE IMAGEM */
.img-placeholder{
  background:linear-gradient(135deg,#E8D9C0 0%,#D4BFA3 100%);
  position:relative;
  overflow:hidden;
  border-radius:4px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:1.5rem;
}
.img-placeholder::before{
  content:'';
  position:absolute;inset:0;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 12px, rgba(155,126,63,0.08) 12px, rgba(155,126,63,0.08) 13px);
}
.img-placeholder span{
  position:relative;z-index:1;
  font-family:'DM Sans',sans-serif;
  font-size:0.75rem;
  color:var(--gold-dark);
  letter-spacing:0.15em;
  text-transform:uppercase;
  font-weight:500;
  max-width:240px;
}

/* BOTÃO PRINCIPAL */
.btn-cta{
  display:inline-flex;
  align-items:center;
  gap:0.75rem;
  background:var(--terracotta);
  color:var(--text-light);
  padding:1.2rem 2.4rem;
  border:none;
  border-radius:6px;
  font-family:'DM Sans',sans-serif;
  font-size:1.05rem;
  font-weight:600;
  letter-spacing:0.02em;
  cursor:pointer;
  transition:all 0.3s ease;
  box-shadow:0 6px 20px rgba(184,85,59,0.35);
  text-decoration:none;
}
.btn-cta:hover{
  background:var(--terracotta-dark);
  transform:translateY(-2px);
  box-shadow:0 10px 28px rgba(184,85,59,0.45);
}
.btn-cta-large{
  padding:1.5rem 3rem;
  font-size:1.15rem;
}

.btn-arrow{
  display:inline-block;
  transition:transform 0.3s ease;
}
.btn-cta:hover .btn-arrow{transform:translateX(4px);}

/* ============================ */
/* BLOCO 1-3 — HERO            */
/* ============================ */
.hero{
  background:var(--bg-cream);
  padding:80px 0 100px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;
  top:-200px;right:-200px;
  width:600px;height:600px;
  background:radial-gradient(circle,rgba(201,169,97,0.15) 0%,transparent 70%);
  border-radius:50%;
  z-index:0;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
  position:relative;
  z-index:1;
}
.hero-text .eyebrow{margin-bottom:1.5rem;}
.hero-headline{
  margin-bottom:1.5rem;
}
.hero-headline .accent{
  color:var(--terracotta);
  font-style:italic;
  font-weight:400;
}
.hero-sub{
  font-size:1.15rem;
  color:var(--text-soft);
  margin-bottom:2.5rem;
  font-weight:300;
  line-height:1.55;
  max-width:520px;
}
.hero-meta{
  display:flex;
  gap:2rem;
  margin-top:2.5rem;
  padding-top:2.5rem;
  border-top:1px solid var(--border);
  flex-wrap:wrap;
}
.hero-meta-item{
  display:flex;
  flex-direction:column;
  gap:0.25rem;
}
.hero-meta-item strong{
  font-family:'Fraunces',serif;
  font-size:2rem;
  color:var(--text);
  font-weight:500;
}
.hero-meta-item span{
  font-size:0.8rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--text-muted);
}

.hero-image-wrap{
  position:relative;
  aspect-ratio:4/5;
}
.hero-image-main{
  width:100%;
  height:100%;
  border-radius:4px;
}
.hero-image-badge{
  position:absolute;
  bottom:-30px;left:-30px;
  background:var(--bg-deep);
  color:var(--text-light);
  padding:1.5rem 2rem;
  border-radius:4px;
  font-family:'Fraunces',serif;
  font-style:italic;
  font-size:0.95rem;
  max-width:240px;
  line-height:1.4;
  box-shadow:var(--shadow-deep);
}
.hero-image-badge strong{
  display:block;
  font-style:normal;
  font-weight:600;
  color:var(--gold);
  font-size:1.5rem;
  margin-bottom:0.25rem;
}

/* ============================ */
/* BLOCO 4 — PROMESSA VOLUME   */
/* ============================ */
.promise-bar{
  background:var(--bg-deep);
  color:var(--text-light);
  padding:50px 0;
  text-align:center;
}
.promise-bar h2{
  color:var(--text-light);
  font-weight:400;
  max-width:760px;
  margin:0 auto;
}
.promise-bar h2 .accent{color:var(--gold);font-style:italic;}

/* ============================ */
/* BLOCO 5 — CERTIFICAÇÃO      */
/* ============================ */
.cert-section{
  padding:80px 0;
  background:var(--bg);
}
.cert-grid{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:50px;
  align-items:center;
  max-width:900px;
  margin:0 auto;
}
.cert-badge{
  width:180px;height:180px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold-soft) 0%,var(--gold-dark) 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-family:'Fraunces',serif;
  color:var(--text-light);
  font-size:0.95rem;
  line-height:1.3;
  padding:1rem;
  box-shadow:var(--shadow-card);
  font-weight:500;
}
.cert-badge strong{font-size:1.4rem;display:block;margin-bottom:0.25rem;}
.cert-text p{
  font-size:1.05rem;
  color:var(--text-soft);
  line-height:1.65;
}
.cert-text strong{color:var(--text);font-weight:600;}

/* ============================ */
/* BLOCO 6 — 4 ÍCONES BENEFÍCIO */
/* ============================ */
.benefits-icons{
  padding:60px 0 80px;
  background:var(--bg);
  border-top:1px solid var(--border);
}
.benefits-icons-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}
.benefit-icon{
  text-align:center;
}
.benefit-icon-circle{
  width:64px;height:64px;
  border-radius:50%;
  background:var(--bg-cream);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 1.5rem;
  font-size:1.6rem;
  border:1px solid var(--border);
}
.benefit-icon h4{
  font-size:1.15rem;
  margin-bottom:0.5rem;
  font-weight:600;
}
.benefit-icon p{
  font-size:0.92rem;
  color:var(--text-muted);
  line-height:1.5;
}

/* ============================ */
/* BLOCO 7 — VANTAGENS         */
/* ============================ */
.advantages{
  padding:100px 0;
  background:var(--bg-cream);
}
.section-header{
  text-align:center;
  max-width:720px;
  margin:0 auto 70px;
}
.section-header .eyebrow{display:inline-block;}
.section-header h2{margin-bottom:1rem;}

.advantage-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  margin-bottom:80px;
}
.advantage-card:last-child{margin-bottom:0;}
.advantage-card.reverse{direction:rtl;}
.advantage-card.reverse > *{direction:ltr;}
.advantage-image{
  aspect-ratio:4/3;
  border-radius:4px;
}
.advantage-content h3{
  margin-bottom:1.2rem;
  color:var(--text);
}
.advantage-content h3 .accent{
  color:var(--terracotta);
  font-style:italic;
}
.advantage-content p{
  color:var(--text-soft);
  line-height:1.65;
  font-size:1.05rem;
}
.advantage-number{
  font-family:'Fraunces',serif;
  font-size:3.5rem;
  font-weight:300;
  color:var(--gold);
  line-height:1;
  margin-bottom:1rem;
  font-style:italic;
}

/* ============================ */
/* BLOCO 7B — FATURAMENTO      */
/* ============================ */
.income-section{
  background:var(--bg-deep);
  color:var(--text-light);
  padding:100px 0;
  position:relative;
  overflow:hidden;
}
.income-section::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%,rgba(201,169,97,0.08) 0%,transparent 40%),
    radial-gradient(circle at 80% 70%,rgba(184,85,59,0.08) 0%,transparent 40%);
}
.income-content{position:relative;z-index:1;}
.income-section h2{
  color:var(--text-light);
  text-align:center;
  margin-bottom:0.5rem;
}
.income-section h2 .accent{color:var(--gold);font-style:italic;}
.income-section .section-sub{
  text-align:center;
  color:rgba(250,246,240,0.7);
  max-width:600px;
  margin:0 auto 60px;
  font-size:1.05rem;
}

.income-table{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  max-width:960px;
  margin:0 auto;
}
.income-card{
  background:rgba(250,246,240,0.04);
  border:1px solid rgba(201,169,97,0.2);
  padding:40px 32px;
  border-radius:8px;
  text-align:center;
  backdrop-filter:blur(10px);
  transition:transform 0.3s ease,border-color 0.3s ease;
}
.income-card:hover{
  transform:translateY(-4px);
  border-color:rgba(201,169,97,0.5);
}
.income-card .label{
  font-size:0.85rem;
  text-transform:uppercase;
  letter-spacing:0.15em;
  color:var(--gold);
  margin-bottom:1.5rem;
  display:block;
}
.income-card .value{
  font-family:'Fraunces',serif;
  font-size:2.8rem;
  color:var(--text-light);
  line-height:1;
  margin-bottom:0.5rem;
  font-weight:400;
}
.income-card .desc{
  font-size:0.9rem;
  color:rgba(250,246,240,0.6);
  line-height:1.5;
}
.income-disclaimer{
  text-align:center;
  margin-top:50px;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
  font-size:0.85rem;
  color:rgba(250,246,240,0.5);
  font-style:italic;
}

/* ============================ */
/* BLOCO 8 — QUEBRA OBJEÇÃO    */
/* ============================ */
.objection-section{
  padding:100px 0;
  background:var(--bg);
  text-align:center;
}
.objection-section h2{
  max-width:760px;
  margin:0 auto 1.5rem;
}
.objection-section h2 .accent{
  color:var(--terracotta);
  font-style:italic;
}
.objection-section .lead{
  max-width:680px;
  margin:0 auto;
}

/* ============================ */
/* BLOCO 9-10 — LISTA TÉCNICAS */
/* ============================ */
.techniques-section{
  background:var(--bg-cream);
  padding:100px 0;
}
.techniques-intro{
  text-align:center;
  max-width:720px;
  margin:0 auto 60px;
}
.techniques-intro h2{margin-bottom:1rem;}
.techniques-list{
  background:var(--bg);
  padding:50px 60px;
  border-radius:8px;
  box-shadow:var(--shadow-card);
  border:1px solid var(--border);
  position:relative;
}
.techniques-list::before{
  content:'';
  position:absolute;
  top:24px;left:24px;
  width:50px;height:1px;
  background:var(--gold);
}
.techniques-label{
  font-family:'DM Sans',sans-serif;
  font-size:0.8rem;
  text-transform:uppercase;
  letter-spacing:0.2em;
  color:var(--gold-dark);
  margin-bottom:2rem;
  display:block;
}
.techniques-text{
  font-size:1.05rem;
  line-height:1.85;
  color:var(--text-soft);
}
.techniques-text .dot{
  color:var(--gold);
  margin:0 0.4rem;
  font-weight:600;
}

/* ============================ */
/* BLOCO 11 — GRID MÓDULOS     */
/* ============================ */
.modules-grid-section{
  padding:80px 0;
  background:var(--bg);
}
.modules-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.module-thumb{
  aspect-ratio:3/4;
  border-radius:4px;
}
.module-thumb:nth-child(odd){
  background:linear-gradient(135deg,#E8D9C0 0%,#C9A961 100%);
}
.module-thumb:nth-child(even){
  background:linear-gradient(135deg,#D4BFA3 0%,#9B7E3F 100%);
}

/* ============================ */
/* BLOCO 12 — VIDEOAULAS      */
/* ============================ */
.video-content-section{
  padding:100px 0;
  background:var(--bg-cream);
}
.video-content-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.video-content-image{
  aspect-ratio:4/5;
  border-radius:4px;
}
.video-content-text h2{margin-bottom:2rem;}
.video-content-text p{
  color:var(--text-soft);
  margin-bottom:1.25rem;
  line-height:1.7;
}
.video-content-text p:last-child{margin-bottom:0;}

/* ============================ */
/* BLOCO 13-14 — VILÃO         */
/* ============================ */
.villain-section{
  background:var(--bg-dark);
  color:var(--text-light);
  padding:120px 0;
  position:relative;
  overflow:hidden;
}
.villain-section::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:1px;
  background:linear-gradient(90deg,transparent 0%,var(--gold) 50%,transparent 100%);
}
.villain-eyebrow{
  text-align:center;
  display:block;
  color:var(--gold);
  margin-bottom:2rem;
  font-size:0.75rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
}
.villain-title{
  text-align:center;
  color:var(--text-light);
  font-weight:300;
  max-width:840px;
  margin:0 auto 80px;
}
.villain-title .accent{
  color:var(--gold);
  font-style:italic;
  font-weight:400;
}
.villain-body{
  max-width:760px;
  margin:0 auto;
}
.villain-body p{
  color:rgba(250,246,240,0.85);
  margin-bottom:1.5rem;
  font-size:1.08rem;
  line-height:1.8;
}
.villain-body p .highlight{
  color:var(--gold);
  font-weight:500;
}
.villain-body p strong{
  color:var(--text-light);
  font-weight:500;
}
.villain-solution{
  margin-top:80px;
  padding:40px;
  border-left:3px solid var(--gold);
  background:rgba(201,169,97,0.05);
}
.villain-solution h3{
  color:var(--gold);
  font-style:italic;
  font-weight:400;
  margin-bottom:1rem;
}
.villain-solution p{color:rgba(250,246,240,0.9);margin-bottom:0;}

/* ============================ */
/* BLOCO 14B — POR QUE AGORA   */
/* ============================ */
.why-now-section{
  padding:100px 0;
  background:var(--bg);
  text-align:center;
}
.why-now-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:60px;
  max-width:900px;
  margin:60px auto 0;
}
.stat-item{text-align:center;}
.stat-item .stat-value{
  font-family:'Fraunces',serif;
  font-size:3.5rem;
  color:var(--terracotta);
  font-weight:500;
  line-height:1;
  margin-bottom:0.75rem;
  font-style:italic;
}
.stat-item .stat-label{
  font-size:0.95rem;
  color:var(--text-muted);
  line-height:1.5;
}

/* ============================ */
/* BLOCO 15-16 — MÓDULOS       */
/* ============================ */
.modules-detail-section{
  padding:100px 0;
  background:var(--bg-cream);
}
.modules-detail-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
  margin-top:60px;
}
.module-card{
  background:var(--bg);
  padding:36px 32px;
  border-radius:6px;
  border:1px solid var(--border);
  transition:transform 0.3s ease,box-shadow 0.3s ease;
}
.module-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-card);
}
.module-card-num{
  font-family:'Fraunces',serif;
  font-size:0.95rem;
  letter-spacing:0.15em;
  color:var(--gold-dark);
  text-transform:uppercase;
  margin-bottom:1rem;
  display:block;
  font-style:italic;
}
.module-card h4{
  font-size:1.3rem;
  margin-bottom:1rem;
  font-weight:600;
  line-height:1.25;
}
.module-card p{
  color:var(--text-soft);
  font-size:0.95rem;
  line-height:1.6;
}

/* ============================ */
/* BLOCO 17 — BÔNUS GUIA       */
/* ============================ */
.bonus-guide{
  padding:80px 0;
  background:var(--bg);
}
.bonus-guide-card{
  background:linear-gradient(135deg,var(--bg-cream) 0%,var(--bg-alt) 100%);
  padding:60px;
  border-radius:8px;
  max-width:880px;
  margin:0 auto;
  border:1px solid var(--border);
  position:relative;
}
.bonus-guide-card::before{
  content:'BÔNUS';
  position:absolute;
  top:-12px;left:60px;
  background:var(--terracotta);
  color:var(--text-light);
  padding:6px 16px;
  font-size:0.7rem;
  letter-spacing:0.2em;
  font-weight:600;
}
.bonus-guide-card h3{
  margin-bottom:2rem;
  color:var(--text);
}
.bonus-guide-card h3 .accent{color:var(--terracotta);font-style:italic;}
.bonus-list{
  list-style:none;
}
.bonus-list li{
  padding:14px 0;
  padding-left:32px;
  position:relative;
  border-bottom:1px solid rgba(42,24,16,0.08);
  color:var(--text-soft);
}
.bonus-list li:last-child{border-bottom:none;}
.bonus-list li::before{
  content:'✓';
  position:absolute;
  left:0;top:14px;
  width:20px;height:20px;
  background:var(--sage);
  color:var(--text-light);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.7rem;
  font-weight:700;
}

/* ============================ */
/* BLOCO 18 — PROVA SOCIAL     */
/* ============================ */
.social-proof{
  padding:100px 0;
  background:var(--bg-cream);
}
.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:60px;
}
.testimonial-print{
  background:#E5DDD5;
  padding:8px;
  border-radius:8px;
  box-shadow:var(--shadow-card);
  position:relative;
}
.testimonial-print::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:28px;
  background:#075E54;
  border-radius:8px 8px 0 0;
}
.testimonial-bubble{
  background:#FFFFFF;
  padding:16px 18px;
  border-radius:8px;
  margin-top:36px;
  font-size:0.92rem;
  color:#111;
  line-height:1.5;
  position:relative;
  font-family:'DM Sans',sans-serif;
}
.testimonial-bubble::before{
  content:'';
  position:absolute;
  top:-6px;left:14px;
  width:0;height:0;
  border-left:6px solid transparent;
  border-right:6px solid transparent;
  border-bottom:8px solid #FFFFFF;
}
.testimonial-name{
  font-size:0.7rem;
  color:#075E54;
  font-weight:600;
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:0.05em;
}
.testimonial-time{
  display:block;
  text-align:right;
  font-size:0.7rem;
  color:#999;
  margin-top:8px;
}

/* ============================ */
/* BLOCO 19 — BÔNUS 1-7        */
/* ============================ */
.bonuses-section{
  padding:100px 0;
  background:var(--bg);
}
.bonuses-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:60px;
}
.bonus-card{
  background:var(--bg-cream);
  padding:32px;
  border-radius:6px;
  border:1px solid var(--border);
  position:relative;
}
.bonus-card .bonus-num{
  font-family:'Fraunces',serif;
  font-style:italic;
  font-size:0.85rem;
  letter-spacing:0.15em;
  color:var(--gold-dark);
  text-transform:uppercase;
  margin-bottom:1rem;
  display:block;
}
.bonus-card h4{
  font-size:1.2rem;
  margin-bottom:0.75rem;
  font-weight:600;
  line-height:1.3;
}
.bonus-card p{
  color:var(--text-soft);
  font-size:0.92rem;
  line-height:1.6;
}

/* ============================ */
/* BLOCO 20 — BÔNUS PREMIUM    */
/* ============================ */
.premium-bonuses{
  padding:100px 0;
  background:var(--bg-cream);
}
.premium-bonus-card{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:60px;
  align-items:center;
  margin-bottom:80px;
  background:var(--bg);
  padding:50px;
  border-radius:8px;
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
}
.premium-bonus-card:last-child{margin-bottom:0;}
.premium-bonus-card.reverse{
  grid-template-columns:1.2fr 1fr;
}
.premium-bonus-card.reverse .premium-bonus-image{order:2;}
.premium-bonus-image{
  aspect-ratio:4/3;
  border-radius:4px;
}
.premium-bonus-content .premium-tag{
  display:inline-block;
  background:var(--terracotta);
  color:var(--text-light);
  padding:6px 14px;
  font-size:0.7rem;
  letter-spacing:0.2em;
  font-weight:600;
  margin-bottom:1.5rem;
  border-radius:2px;
}
.premium-bonus-content h3{
  margin-bottom:1.5rem;
  color:var(--text);
}
.premium-bonus-content p{
  color:var(--text-soft);
  line-height:1.7;
}

/* ============================ */
/* BLOCO 20B — ROTEIRO         */
/* ============================ */
.roadmap-section{
  padding:100px 0;
  background:var(--bg-deep);
  color:var(--text-light);
}
.roadmap-grid{
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:80px;
  align-items:center;
}
.roadmap-section h2{color:var(--text-light);}
.roadmap-section h2 .accent{color:var(--gold);font-style:italic;}
.roadmap-section .lead{color:rgba(250,246,240,0.75);}
.roadmap-section p{color:rgba(250,246,240,0.8);line-height:1.7;}
.roadmap-content p{margin-bottom:1.25rem;}
.roadmap-content strong{color:var(--gold);font-weight:500;}
.roadmap-image{
  aspect-ratio:4/5;
  border-radius:4px;
}

/* ============================ */
/* BLOCO 21 — GARANTIA         */
/* ============================ */
.guarantee-section{
  padding:100px 0;
  background:var(--bg);
  text-align:center;
}
.guarantee-badge{
  width:160px;height:160px;
  border-radius:50%;
  background:var(--sage);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  margin:0 auto 40px;
  color:var(--text-light);
  font-family:'Fraunces',serif;
  text-align:center;
  box-shadow:var(--shadow-card);
}
.guarantee-badge .days{
  font-size:3rem;
  font-weight:500;
  line-height:1;
  margin-bottom:0.25rem;
}
.guarantee-badge .label{
  font-size:0.8rem;
  letter-spacing:0.2em;
  text-transform:uppercase;
  font-family:'DM Sans',sans-serif;
}
.guarantee-section h2{
  max-width:720px;
  margin:0 auto 1.5rem;
}
.guarantee-section p{
  max-width:640px;
  margin:0 auto;
  color:var(--text-soft);
  line-height:1.7;
}

/* ============================ */
/* BLOCO 22-23 — ACESSO/CERT   */
/* ============================ */
.access-cert{
  padding:100px 0;
  background:var(--bg-cream);
}
.access-cert-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
}
.access-card,.cert-card{
  background:var(--bg);
  padding:50px;
  border-radius:6px;
  border:1px solid var(--border);
}
.access-card-icon,.cert-card-icon{
  width:48px;height:48px;
  margin-bottom:1.5rem;
  background:var(--bg-cream);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.3rem;
  border:1px solid var(--border);
}
.access-card h3,.cert-card h3{
  margin-bottom:1rem;
}
.access-card p,.cert-card p{
  color:var(--text-soft);
  line-height:1.65;
}

/* ============================ */
/* BLOCO 24-25 — TRANSIÇÃO     */
/* ============================ */
.transition-section{
  padding:80px 0 40px;
  background:var(--bg);
  text-align:center;
}
.transition-section h2{
  max-width:840px;
  margin:0 auto;
  font-weight:400;
}
.transition-section h2 .accent{
  color:var(--terracotta);
  font-style:italic;
}

/* ============================ */
/* BLOCO 26 — URGÊNCIA         */
/* ============================ */
.urgency-bar{
  background:var(--terracotta);
  color:var(--text-light);
  padding:18px 0;
  text-align:center;
  font-size:0.95rem;
  letter-spacing:0.05em;
  font-weight:500;
}
.urgency-bar strong{
  font-family:'Fraunces',serif;
  font-style:italic;
  font-weight:600;
  margin-right:0.5rem;
}

/* ============================ */
/* BLOCO 27 — OFERTA           */
/* ============================ */
.offer-section{
  padding:80px 0 60px;
  background:var(--bg);
}
.offer-card{
  max-width:780px;
  margin:0 auto;
  background:var(--bg-cream);
  border-radius:12px;
  padding:60px;
  box-shadow:var(--shadow-deep);
  border:2px solid var(--gold);
  position:relative;
}
.offer-card::before{
  content:'OFERTA ESPECIAL';
  position:absolute;
  top:-16px;left:50%;
  transform:translateX(-50%);
  background:var(--bg-deep);
  color:var(--gold);
  padding:8px 24px;
  font-size:0.75rem;
  letter-spacing:0.25em;
  font-weight:600;
  border-radius:2px;
}
.offer-card h2{
  text-align:center;
  margin-bottom:1rem;
  font-weight:500;
}
.offer-card h2 .accent{color:var(--terracotta);font-style:italic;}
.offer-card .offer-sub{
  text-align:center;
  color:var(--text-soft);
  margin-bottom:2.5rem;
  font-style:italic;
  font-family:'Fraunces',serif;
}
.offer-list{
  list-style:none;
  margin:30px 0;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0 32px;
}
.offer-list li{
  padding:10px 0 10px 28px;
  position:relative;
  font-size:0.92rem;
  color:var(--text-soft);
  border-bottom:1px solid rgba(42,24,16,0.06);
}
.offer-list li::before{
  content:'✓';
  position:absolute;
  left:0;top:10px;
  color:var(--sage);
  font-weight:700;
  font-size:0.95rem;
}

/* ============================ */
/* BLOCO 28 — PREÇO + CTA      */
/* ============================ */
.price-block{
  text-align:center;
  margin-top:40px;
  padding-top:40px;
  border-top:1px solid var(--border);
}
.price-from{
  color:var(--text-muted);
  font-family:'Fraunces',serif;
  font-style:italic;
  margin-bottom:0.5rem;
}
.price-from .strike{
  text-decoration:line-through;
}
.price-main{
  font-family:'Fraunces',serif;
  font-size:clamp(3rem,7vw,5rem);
  color:var(--terracotta);
  font-weight:500;
  line-height:1;
  margin-bottom:0.5rem;
}
.price-installments{
  color:var(--text-muted);
  font-size:1rem;
  margin-bottom:2rem;
}
.price-cta{margin-bottom:1.5rem;}
.price-features{
  font-size:0.85rem;
  color:var(--text-muted);
  letter-spacing:0.03em;
}
.price-features span{margin:0 8px;}

/* ============================ */
/* BLOCO 29 — BÔNUS 100 PRIM   */
/* ============================ */
.final-bonus{
  padding:60px 0;
  background:var(--bg-deep);
  color:var(--text-light);
  text-align:center;
}
.final-bonus-eyebrow{
  color:var(--gold);
  font-size:0.7rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
  margin-bottom:1rem;
  display:block;
}
.final-bonus h3{
  color:var(--text-light);
  max-width:720px;
  margin:0 auto 1.5rem;
  font-weight:400;
}
.final-bonus h3 .accent{color:var(--gold);font-style:italic;}
.final-bonus p{
  color:rgba(250,246,240,0.7);
  font-style:italic;
}
.counter{
  margin-top:30px;
  padding-top:30px;
  border-top:1px solid rgba(201,169,97,0.2);
  font-size:0.9rem;
  color:rgba(250,246,240,0.6);
}
.counter strong{color:var(--gold);font-family:'Fraunces',serif;font-size:1.2rem;margin-right:0.5rem;}

/* ============================ */
/* RODAPÉ                      */
/* ============================ */
footer{
  background:#0F0805;
  color:rgba(250,246,240,0.5);
  padding:50px 0;
  font-size:0.82rem;
  line-height:1.65;
  text-align:center;
}
footer p{margin-bottom:1rem;max-width:880px;margin-left:auto;margin-right:auto;}
footer .copyright{
  border-top:1px solid rgba(250,246,240,0.1);
  padding-top:30px;
  margin-top:30px;
}

/* ============================ */
/* CTA STICKY MOBILE           */
/* ============================ */
.sticky-cta{
  display:none;
  position:fixed;
  bottom:0;left:0;right:0;
  background:var(--bg-deep);
  padding:14px 20px;
  z-index:100;
  box-shadow:0 -4px 20px rgba(0,0,0,0.2);
}
.sticky-cta .btn-cta{
  width:100%;
  justify-content:center;
  padding:1rem;
  font-size:0.95rem;
}

/* ============================ */
/* RESPONSIVE                  */
/* ============================ */
@media (max-width:980px){
  /* Hero: reordenar elementos no mobile via flexbox + order */
  .hero-grid{
    display:flex;
    flex-direction:column;
    gap:24px;
  }
  .hero-text{display:contents;}
  .hero-text > .eyebrow{order:1;margin-bottom:0;}
  .hero-headline{order:2;margin-bottom:0;}
  .hero-sub{order:3;margin-bottom:0;max-width:100%;}
  .hero-image-wrap{
    order:4;
    aspect-ratio:4/3;
    width:100%;
    max-width:520px;
    margin:8px auto 28px;
  }
  .hero-text > .btn-cta-large{order:5;align-self:center;}
  .hero-meta{justify-content:center;text-align:center;}
  .hero-meta-item{align-items:center;}
  .hero-meta{
    order:6;
    margin-top:1rem;
    padding-top:2rem;
    border-top:1px solid var(--border);
    gap:2rem;
  }
  .hero-image-badge{bottom:-20px;left:20px;padding:1rem 1.25rem;font-size:0.85rem;max-width:200px;}
  .hero-image-badge strong{font-size:1.2rem;}
  .cert-grid{grid-template-columns:1fr;text-align:center;gap:30px;}
  .cert-badge{margin:0 auto;}
  .benefits-icons-grid{grid-template-columns:repeat(2,1fr);gap:30px;}
  .advantage-card{grid-template-columns:1fr;gap:32px;}
  .advantage-card.reverse{direction:ltr;}
  .income-table{grid-template-columns:1fr;}
  .modules-grid{grid-template-columns:repeat(2,1fr);}
  .video-content-grid{grid-template-columns:1fr;gap:40px;}
  .why-now-stats{grid-template-columns:1fr;gap:40px;}
  .modules-detail-grid{grid-template-columns:1fr;gap:20px;}
  .testimonials-grid{grid-template-columns:1fr;}
  .bonuses-grid{grid-template-columns:1fr;}
  .premium-bonus-card,.premium-bonus-card.reverse{grid-template-columns:1fr;gap:30px;padding:32px;}
  .premium-bonus-card.reverse .premium-bonus-image{order:0;}
  .roadmap-grid{grid-template-columns:1fr;gap:40px;}
  .access-cert-grid{grid-template-columns:1fr;}
  .offer-card{padding:36px 28px;}
  .offer-list{grid-template-columns:1fr;}
  .bonus-guide-card{padding:36px 28px;}
  .techniques-list{padding:36px 28px;}
}

@media (max-width:680px){
  body{padding-bottom:80px;}
  .sticky-cta{display:block;}
  .hero{padding:60px 0 80px;}
  .promise-bar{padding:40px 0;}
  .cert-section,.advantages,.income-section,.objection-section,
  .techniques-section,.video-content-section,.villain-section,
  .why-now-section,.modules-detail-section,.social-proof,
  .bonuses-section,.premium-bonuses,.roadmap-section,
  .guarantee-section,.access-cert{padding:70px 0;}
  .hero-meta{gap:1.5rem;}
  .hero-meta-item strong{font-size:1.5rem;}
  .modules-grid{grid-template-columns:1fr 1fr;gap:16px;}
}/* End custom CSS */
