.wrap{max-width:760px;}
.wrap-wide{max-width:960px; margin:0 auto; padding:0 24px;}
.wrap-narrow{max-width:640px; margin:0 auto; padding:0 24px;}

/* ---------- CTA (âncora ou checkout, reutilizado em toda a página) ---------- */
.cta-block{text-align:center; margin:40px 0 0;}
.btn-cta{
  display:inline-block;
  padding:16px 32px;
  border-radius:8px;
  font-family:'Work Sans', sans-serif;
  font-weight:600;
  font-size:15.5px;
  text-decoration:none;
  transition:transform .15s ease, background .15s ease;
  position:relative;
}
.btn-cta.on-dark{background:var(--coral); color:var(--white);}
.btn-cta.on-dark:hover{background:var(--coral-dim); transform:translateY(-1px);}
.btn-cta.on-light{background:var(--wine); color:var(--paper);}
.btn-cta.on-light:hover{background:var(--wine-soft); transform:translateY(-1px);}

/* estado de carregamento ao clicar num botão de compra (antes de ir para o checkout) */
.btn-cta.is-loading{pointer-events:none; color:transparent; transform:none !important;}
.btn-cta.is-loading::after{
  content:'';
  position:absolute; left:50%; top:50%;
  width:18px; height:18px;
  margin:-9px 0 0 -9px;
  border:2.5px solid rgba(255,255,255,0.4);
  border-top-color:#fff;
  border-radius:50%;
  animation:btn-spin .6s linear infinite;
}
.btn-cta.is-done{color:transparent;}
.btn-cta.is-done::after{
  content:'';
  position:absolute; left:50%; top:50%;
  width:20px; height:12px;
  margin:-6px 0 0 -10px;
  border-left:3px solid #fff;
  border-bottom:3px solid #fff;
  transform:rotate(-45deg) scale(0);
  animation:btn-check .3s ease forwards;
}
@keyframes btn-spin{to{transform:rotate(360deg);}}
@keyframes btn-check{to{transform:rotate(-45deg) scale(1);}}

/* ---------- FUNDOS ANIMADOS (secções com mais texto) ---------- */
.animated-bg{position:relative; overflow:hidden; isolation:isolate;}
.animated-bg::before, .animated-bg::after{
  content:'';
  position:absolute;
  width:420px; height:420px;
  border-radius:50%;
  filter:blur(90px);
  opacity:0.16;
  z-index:-1;
  pointer-events:none;
}
.animated-bg::before{
  background:var(--coral);
  top:-140px; left:-120px;
  animation:blob-a 17s ease-in-out infinite;
}
.animated-bg::after{
  background:var(--sage);
  bottom:-150px; right:-110px;
  animation:blob-b 20s ease-in-out infinite;
}
@keyframes blob-a{0%,100%{transform:translate(0,0) scale(1);}50%{transform:translate(60px,50px) scale(1.18);}}
@keyframes blob-b{0%,100%{transform:translate(0,0) scale(1);}50%{transform:translate(-50px,-40px) scale(1.12);}}
@media (prefers-reduced-motion: reduce){
  .animated-bg::before, .animated-bg::after{animation:none;}
}

/* ---------- HERO ---------- */
.hero{
  background:var(--wine);
  color:var(--paper);
  padding:88px 0 64px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;
  top:-30%; left:50%;
  transform:translateX(-50%);
  width:900px; height:900px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.05);
}
.hero .wrap{position:relative;}
.hero h1{
  font-size:clamp(28px, 5.5vw, 46px);
  font-weight:600;
  line-height:1.24;
  max-width:660px;
  margin:0 auto 8px;
}

/* ---------- SUBHERO ---------- */
.subhero{background:var(--paper); padding:56px 0; text-align:center;}
.subhero p.lead{
  font-size:19px;
  color:var(--ink-mute);
  max-width:44ch;
  margin:0 auto 18px;
}
.subhero p.tagline{
  font-family:'Fraunces', serif;
  font-style:italic;
  font-size:clamp(19px,2.6vw,24px);
  color:var(--wine);
  max-width:32ch;
  margin:0 auto;
  line-height:1.4;
}

/* ---------- DOR / INTRO ---------- */
.section{padding:60px 0;}
.intro p{font-size:18px; color:var(--ink-mute); margin-bottom:20px;}
.intro p:last-child{margin-bottom:0;}
.intro strong{color:var(--wine);}

/* ---------- REVELAÇÃO ---------- */
.reveal{background:var(--wine); color:var(--paper); padding:64px 0;}
.reveal .wrap-narrow{max-width:680px;}
.reveal p{font-size:17px; line-height:1.65; color:#F0E1D9; margin-bottom:18px; text-align:center;}
.reveal p:last-of-type{margin-bottom:0;}
.factor-tags{display:flex; flex-wrap:wrap; gap:16px; justify-content:center; margin:34px 0;}
.factor-tag{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  width:108px;
  padding:20px 10px;
  border-radius:18px;
  border:1px solid rgba(240,169,143,0.22);
  background:rgba(255,255,255,0.04);
  color:var(--sage-light);
  transition:transform .25s ease, border-color .25s ease, background .25s ease;
}
.factor-tag:hover{transform:translateY(-5px); border-color:var(--coral-light); background:rgba(255,255,255,0.09);}
.factor-tag .icon-circle{
  width:44px; height:44px;
  border-radius:50%;
  background:rgba(201,214,196,0.14);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .25s ease, transform .25s ease;
  animation:tag-float 4s ease-in-out infinite;
}
.factor-tag:nth-child(2) .icon-circle{animation-delay:.35s;}
.factor-tag:nth-child(3) .icon-circle{animation-delay:.7s;}
.factor-tag:nth-child(4) .icon-circle{animation-delay:1.05s;}
.factor-tag:nth-child(5) .icon-circle{animation-delay:1.4s;}
.factor-tag:hover .icon-circle{background:var(--coral); transform:scale(1.1);}
.factor-tag .icon-circle .icon{width:20px; height:20px; color:var(--sage-light); transition:color .25s ease;}
.factor-tag:hover .icon-circle .icon{color:var(--white);}
.factor-tag .label{font-family:'IBM Plex Mono', monospace; font-size:11.5px; text-align:center; line-height:1.3;}
@keyframes tag-float{0%,100%{transform:translateY(0);}50%{transform:translateY(-6px);}}
@media (prefers-reduced-motion: reduce){
  .factor-tag .icon-circle{animation:none;}
}

/* ---------- QUEM ESTÁ POR TRÁS ---------- */
.founder-heading{
  text-align:center;
  font-size:clamp(22px,3vw,28px);
  font-weight:600;
  color:var(--wine);
  margin-bottom:40px;
}
.founder-grid{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:44px;
  align-items:start;
  max-width:880px;
  margin:0 auto;
}
@media(max-width:720px){
  .founder-grid{grid-template-columns:1fr; gap:28px;}
}
.founder-col-photo{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
  position:sticky;
  top:24px;
}
@media(max-width:720px){ .founder-col-photo{position:static;} }
.founder-photo{
  width:100%;
  max-width:260px;
  aspect-ratio:1/1;
  border-radius:50%;
  object-fit:cover;
  display:block;
  box-shadow:0 0 0 4px var(--white), 0 0 0 7px var(--coral), 0 18px 36px rgba(92,31,48,0.2);
}
.founder-name{
  font-family:'Fraunces', serif;
  font-weight:600;
  font-size:19px;
  color:var(--wine);
}
.founder-col-bio{min-width:0;}
.founder-bio-box{
  max-height:360px;
  overflow-y:auto;
  padding:28px 26px;
  background:var(--white);
  border:1px solid var(--paper-deep);
  border-radius:16px;
  scrollbar-color:var(--coral) var(--paper-deep);
  scrollbar-width:thin;
}
.founder-bio-box::-webkit-scrollbar{width:9px;}
.founder-bio-box::-webkit-scrollbar-track{background:var(--paper-deep); border-radius:8px;}
.founder-bio-box::-webkit-scrollbar-thumb{background:var(--coral); border-radius:8px;}
.founder-intro{
  font-family:'Fraunces', serif;
  font-style:italic;
  font-size:clamp(17px,2.2vw,19px);
  color:var(--wine);
  margin-bottom:18px;
}
.founder-bio-box p{font-size:15.5px; color:var(--ink-mute); margin-bottom:16px; line-height:1.65;}
.founder-bio-box p:last-child{margin-bottom:0;}
.founder-emphasis{
  font-family:'Fraunces', serif;
  font-style:italic;
  font-size:clamp(17px,2.4vw,19px);
  color:var(--coral-dim) !important;
  margin:20px 0 !important;
}
.founder-col-bio .cta-block{margin-top:28px;}

/* ---------- GUIA ---------- */
.guide-heading{
  text-align:center;
  font-size:clamp(24px,3.4vw,32px);
  font-weight:600;
  color:var(--wine);
  max-width:30ch;
  margin:0 auto 28px;
}
.guide-intro{max-width:640px; margin:0 auto 44px;}
.guide-intro p{font-size:17px; color:var(--ink-mute); margin-bottom:16px; line-height:1.6;}
.guide-intro strong{color:var(--wine);}
.guide-intro em{font-style:italic; color:var(--coral-dim);}

.promise-path{position:relative; max-width:660px; margin:0 auto;}
.promise-path::before{
  content:'';
  position:absolute;
  left:22.5px;
  top:24px;
  bottom:24px;
  width:1.5px;
  background:var(--paper-deep);
}
.promise-item{position:relative; display:flex; gap:20px; padding:19px 0;}
.promise-item .icon-badge{
  position:relative;
  z-index:1;
  width:46px; height:46px;
  border-radius:50%;
  background:var(--paper);
  border:1.5px solid var(--paper-deep);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:20px;
  line-height:1;
}
.promise-item .item-title{font-weight:600; color:var(--wine); font-size:15.5px; margin-bottom:4px;}
.promise-item p.item-desc{font-size:15px; color:var(--ink-mute); line-height:1.6;}

.bonus-note-wrap{text-align:center; margin:40px 0 0;}
.bonus-note{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 34px;
  border-radius:100px;
  background:var(--coral);
  color:var(--white);
  font-family:'Fraunces', serif;
  font-weight:600;
  font-size:clamp(19px,2.6vw,24px);
  letter-spacing:0.01em;
  animation:bonus-pulse 2.4s ease-in-out infinite;
}
@keyframes bonus-pulse{
  0%,100%{box-shadow:0 0 0 0 rgba(226,121,95,0.35);}
  50%{box-shadow:0 0 0 14px rgba(226,121,95,0);}
}
@media (prefers-reduced-motion: reduce){
  .bonus-note{animation:none;}
}

/* ---------- BÔNUS ---------- */
.bonus-section{padding:24px 0 0;}
.bonus-card{
  background:var(--white);
  border:1.5px solid var(--coral);
  border-radius:16px;
  padding:40px;
  max-width:660px;
  margin:0 auto;
  display:grid;
  grid-template-columns:auto 1fr;
  gap:26px;
  align-items:center;
}
@media(max-width:600px){ .bonus-card{grid-template-columns:1fr; text-align:center; padding:32px 24px;} }
.bonus-icon{
  width:56px; height:56px;
  border-radius:14px;
  background:var(--coral);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:24px;
}
@media(max-width:600px){ .bonus-icon{margin:0 auto;} }
.bonus-label{
  font-family:'IBM Plex Mono', monospace;
  font-size:11px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--coral);
  margin-bottom:8px;
}
.bonus-card h3{font-family:'Fraunces', serif; font-weight:600; font-size:clamp(18px,2.4vw,22px); color:var(--wine); line-height:1.3; margin-bottom:6px;}
.bonus-card p{font-size:14.5px; color:var(--ink-soft);}

/* ---------- MAPA ---------- */
.map-section{background:var(--wine); color:var(--paper); padding:64px 0; margin-top:50px;}
.map-section .wrap-narrow{max-width:640px; text-align:center;}
.map-section p{font-size:17px; line-height:1.65; color:#F0E1D9; margin-bottom:18px;}
.map-section p.emphasis{font-family:'Fraunces', serif; font-style:italic; font-size:clamp(19px,2.6vw,22px); color:var(--paper);}
.step-chain{display:flex; flex-wrap:wrap; gap:6px; justify-content:center; align-items:stretch; margin:34px auto; max-width:760px;}
.step-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  width:128px;
  padding:14px 8px;
  text-align:center;
}
.step-num{
  width:36px; height:36px;
  border-radius:50%;
  background:var(--coral);
  color:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Fraunces', serif;
  font-weight:600;
  font-size:15px;
  box-shadow:0 0 0 6px rgba(226,121,95,0.14);
  transition:box-shadow .3s ease, transform .3s ease;
}
.step-card:hover .step-num{box-shadow:0 0 0 9px rgba(226,121,95,0.2); transform:scale(1.06);}
.step-text{font-family:'IBM Plex Mono', monospace; font-size:11.5px; color:var(--coral-light); line-height:1.35;}
.step-arrow{display:flex; align-items:center; justify-content:center; width:20px; color:var(--coral-light); opacity:0.6;}
.step-arrow svg{width:18px; height:18px; animation:step-arrow-pulse 1.6s ease-in-out infinite;}
@keyframes step-arrow-pulse{0%,100%{opacity:0.4; transform:translateX(0);}50%{opacity:1; transform:translateX(3px);}}
@media (prefers-reduced-motion: reduce){
  .step-arrow svg{animation:none;}
}
@media(max-width:640px){ .step-arrow{transform:rotate(90deg);} }

/* ---------- PARA QUEM É ---------- */
.who-heading{
  text-align:center;
  font-size:clamp(24px,3.4vw,30px);
  font-weight:600;
  color:var(--wine);
  margin-bottom:8px;
}
.who-intro{text-align:center; font-size:16px; color:var(--ink-soft); margin-bottom:36px;}
.checklist{display:flex; flex-direction:column; gap:16px; max-width:620px; margin:0 auto;}
.checklist-item{display:flex; gap:14px; align-items:flex-start;}
.checklist-item .check-icon{
  width:22px; height:22px;
  border-radius:50%;
  background:var(--sage-light);
  color:var(--sage);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  margin-top:2px;
}
.checklist-item .check-icon svg{width:12px; height:12px;}
.checklist-item p{font-size:15.5px; color:var(--ink-mute); line-height:1.55;}
.checklist-item p strong{color:var(--wine);}

/* ---------- PREÇO ---------- */
.price-section{background:var(--wine); color:var(--paper); padding:72px 0; text-align:center; position:relative; overflow:hidden;}
.price-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-family:'IBM Plex Mono', monospace;
  font-size:11.5px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--coral-light);
  margin-bottom:22px;
}
.pulse-dot{
  position:relative;
  width:8px; height:8px;
  border-radius:50%;
  background:var(--coral);
  flex-shrink:0;
}
.pulse-dot::before{
  content:'';
  position:absolute;
  inset:0;
  border-radius:50%;
  background:var(--coral);
  animation:pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring{
  0%{transform:scale(1); opacity:0.7;}
  100%{transform:scale(2.8); opacity:0;}
}
@media (prefers-reduced-motion: reduce){
  .pulse-dot::before{animation:none;}
}
.countdown{display:flex; gap:10px; justify-content:center; margin:0 0 36px;}
.countdown .unit{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(240,169,143,0.25);
  border-radius:10px;
  padding:14px 12px;
  min-width:62px;
}
.countdown .unit strong{display:block; font-family:'Fraunces', serif; font-size:26px; color:var(--paper); font-variant-numeric:tabular-nums;}
.countdown .unit span{display:block; font-family:'IBM Plex Mono', monospace; font-size:10px; text-transform:uppercase; letter-spacing:0.07em; color:var(--coral-light); margin-top:4px;}
.price-card{
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(240,169,143,0.28);
  border-radius:20px;
  padding:32px 40px 28px;
  max-width:340px;
  margin:0 auto 22px;
  animation:price-glow 3.2s ease-in-out infinite;
}
@keyframes price-glow{
  0%,100%{box-shadow:0 0 0 0 rgba(226,121,95,0.18);}
  50%{box-shadow:0 0 0 14px rgba(226,121,95,0);}
}
@media (prefers-reduced-motion: reduce){
  .price-card{animation:none;}
}
.price-top-row{display:flex; align-items:center; justify-content:center; gap:10px; margin-bottom:8px;}
.price-old{font-family:'Work Sans', sans-serif; font-size:16px; color:rgba(240,169,143,0.75); text-decoration:line-through;}
.save-badge{
  font-family:'IBM Plex Mono', monospace;
  font-size:12px;
  font-weight:600;
  background:var(--coral);
  color:var(--white);
  padding:3px 10px;
  border-radius:100px;
  letter-spacing:0.02em;
  white-space:nowrap;
}
.price-new{font-family:'Fraunces', serif; font-size:clamp(44px,7vw,60px); font-weight:600; color:var(--paper); line-height:1;}
.price-save-note{font-family:'Work Sans', sans-serif; font-size:13.5px; color:var(--coral-light); margin-top:10px;}
.price-note{font-family:'IBM Plex Mono', monospace; font-size:12.5px; color:var(--coral-light); margin-bottom:8px;}

/* ---------- GARANTIA ---------- */
.guarantee-wrap{text-align:center; padding:44px 0;}
.guarantee-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--paper-deep);
  border-radius:100px;
  padding:12px 24px;
  font-family:'Work Sans', sans-serif;
  font-weight:600;
  font-size:14.5px;
  color:var(--wine);
}
.guarantee-badge .icon{width:19px; height:19px; color:var(--coral-dim); flex-shrink:0;}
.guarantee-note{
  font-size:12.5px;
  color:var(--ink-soft);
  max-width:38ch;
  margin:14px auto 0;
  line-height:1.5;
}

/* ---------- FAQ ---------- */
.faq-heading{text-align:center; font-size:clamp(22px,3vw,26px); font-weight:600; color:var(--wine); max-width:26ch; margin:0 auto 40px;}
.faq{max-width:680px; margin:0 auto;}
details.faq-item{border-bottom:1px solid var(--paper-deep); padding:18px 4px;}
details.faq-item summary{
  cursor:pointer;
  font-weight:600;
  color:var(--wine);
  font-size:15.5px;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  line-height:1.4;
}
details.faq-item summary::-webkit-details-marker{display:none;}
details.faq-item summary::after{content:'+'; font-size:22px; line-height:1; color:var(--coral); flex-shrink:0; transition:transform .2s ease;}
details.faq-item[open] summary::after{transform:rotate(45deg);}
details.faq-item p{margin-top:12px; font-size:15px; color:var(--ink-mute); line-height:1.6;}

/* ---------- QUOTE / FINAL ---------- */
.quote-block{padding:64px 0 12px; text-align:center;}
.quote-block p{
  font-family:'Fraunces', serif;
  font-size:clamp(19px, 2.8vw, 24px);
  font-style:italic;
  color:var(--wine);
  max-width:36ch;
  margin:0 auto 20px;
  line-height:1.5;
}
.quote-block p.question{color:var(--coral-dim);}

.final-section{padding:20px 0 80px; text-align:center;}
