:root {
  --cream:      #F7F0E6;
  --cream-dark: #EDE3D4;
  --rust:       #9B3D1E;
  --rust-light: #C4552A;
  --rust-pale:  #F2DDD6;
  --dark:       #1A130C;
  --brown:      #4D2E18;
  --muted:      #7A6455;
  --sand:       #E2D0BB;
  --white:      #FEFBF7;
  --green:      #5C6B4A;
  --green-deep: #3E4A31;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

.serif { font-family: 'Cormorant Garamond', serif; }
.container       { max-width: 780px;  margin: 0 auto; padding: 0 28px; }
.container--wide { max-width: 1060px; margin: 0 auto; padding: 0 28px; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.on { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ── IMAGENS (.img) ──
   Cada .img mostra um placeholder listrado com a legenda (data-cap)
   enquanto a foto não existir em /public/images. Ao adicionar a foto
   com o nome certo, ela aparece por cima e cobre o placeholder.
   Se a foto não for encontrada, o onerror esconde o <img> e o
   placeholder volta a aparecer — nunca quebra. */
.img {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--cream-dark);
  border-radius: 0;
}
.img::after {
  content: attr(data-cap);
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 18px;
  font-family: 'Jost', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; line-height: 1.6;
  color: var(--muted);
  background:
    repeating-linear-gradient(45deg,
      var(--cream-dark) 0, var(--cream-dark) 11px,
      #E6D8C5 11px, #E6D8C5 22px);
}
.img img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.img--rounded { border-radius: 6px; }
.img--circle  { border-radius: 50%; }
.sec--dark .img, .hero .img { background: rgba(255,255,255,.04); }
.sec--dark .img::after, .hero .img::after {
  color: rgba(254,251,247,.4);
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 11px,
      rgba(255,255,255,.07) 11px, rgba(255,255,255,.07) 22px);
}

.photo { position: relative; }
.photo-cap {
  font-family: 'Jost', sans-serif;
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 12px; display: flex; align-items: center; gap: 8px;
}
.photo-cap::before { content: ''; width: 14px; height: 1px; background: var(--rust); flex-shrink: 0; }
.sec--dark .photo-cap { color: rgba(254,251,247,.4); }
.sec--dark .photo-cap::before { background: var(--rust-light); }

/* STICKY NAV */
.snav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(26,19,12,.96); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 36px;
  transform: translateY(-110%); transition: transform .4s ease;
}
.snav.show { transform: translateY(0); }
.snav-brand { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: var(--rust-light); }
.snav-btn {
  background: var(--rust); color: var(--white);
  font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 24px; text-decoration: none; transition: background .25s;
}
.snav-btn:hover { background: var(--rust-light); }

/* HERO */
.hero {
  background: var(--dark);
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 120px 28px 70px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(155,61,30,.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(155,61,30,.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--rust-light);
  margin-bottom: 32px; position: relative; z-index: 1;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600; line-height: 1.1;
  color: var(--white); max-width: 800px;
  margin: 0 auto 28px; position: relative; z-index: 1;
}
.hero-title em { color: var(--rust-light); font-style: italic; }
.hero-lead {
  font-size: 17px; font-weight: 300;
  color: rgba(254,251,247,.6);
  max-width: 560px; margin: 0 auto 44px; line-height: 1.75;
  position: relative; z-index: 1;
}
/* HERO IMAGE */
.hero-photo {
  position: relative; z-index: 1;
  width: min(680px, 100%);
  margin: 0 auto 44px;
}
.hero-photo .img {
  width: 100%; height: 340px;
  border: 1px solid rgba(196,85,42,.28);
}
.hero-photo .photo-cap { justify-content: center; }
.hero-scroll {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(254,251,247,.3); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(155,61,30,.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(.5); opacity: .4; }
}

/* SECTIONS */
.sec { padding: 90px 0; }
.sec--white  { background: var(--white); }
.sec--cream  { background: var(--cream); }
.sec--dark   { background: var(--dark); }
.sec--sand   { background: var(--cream-dark); }

.sec-label {
  font-size: 11px; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--rust); margin-bottom: 14px;
}
.sec-label--light { color: var(--rust-light); }
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.2; margin-bottom: 28px;
}
.sec-title--white { color: var(--white); }
.rule { width: 40px; height: 2px; background: var(--rust); margin: 20px 0; }

/* QUALIFY */
.qualify-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-style: italic; line-height: 1.35;
  color: var(--dark); margin-bottom: 48px; max-width: 640px;
}
.questions-list { list-style: none; border-top: 1px solid var(--sand); }
.q-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--sand);
  transition: all .2s; cursor: default;
}
.q-item:hover { background: rgba(242,221,214,.25); padding: 24px 16px; margin: 0 -16px; }
.q-check {
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid var(--rust-light); flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.q-item:hover .q-check { background: var(--rust); border-color: var(--rust); }
.q-check-mark { display: none; color: var(--white); font-size: 13px; font-weight: 700; }
.q-item:hover .q-check-mark { display: block; }
.q-text { font-size: 17px; color: var(--dark); line-height: 1.6; }
.q-text strong { color: var(--rust); font-weight: 600; }
.qualify-close {
  margin-top: 48px; padding: 32px;
  background: var(--rust-pale); border-left: 4px solid var(--rust);
}
.qualify-close p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; line-height: 1.5; color: var(--brown);
}

/* NARRATIVE */
.narrative-body { font-size: 18px; line-height: 1.85; color: var(--dark); max-width: 680px; }
.narrative-body p { margin-bottom: 22px; }
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-style: italic; line-height: 1.35;
  color: var(--rust); margin: 48px 0; padding-left: 28px;
  border-left: 3px solid var(--rust);
}
/* SABOTADORES */
.saboteurs { margin: 52px 0 8px; }
.saboteurs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.saboteur .img { width: 100%; height: 150px; }
.saboteur-name {
  font-size: 12px; font-weight: 500; color: var(--brown);
  margin-top: 8px; letter-spacing: .02em;
}
.saboteur-name span { display: block; font-size: 11px; color: var(--rust); font-weight: 600; margin-top: 1px; }
.saboteurs-note { font-size: 13px; color: var(--muted); margin-top: 16px; font-style: italic; }

/* TURN */
.turn-body p {
  font-size: 18px; font-weight: 300;
  color: rgba(254,251,247,.7); margin-bottom: 22px; line-height: 1.85; max-width: 680px;
}
.turn-body p strong { color: var(--white); font-weight: 500; }
.turn-body p.turn-dim { color: rgba(254,251,247,.55); }
.turn-body p.turn-dim strong { color: var(--white); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin: 48px 0; }
.pillar { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); padding: 28px 24px; }
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; color: var(--rust-light); opacity: .4; line-height: 1; margin-bottom: 12px;
}
.pillar h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.pillar p  { font-size: 13px; color: rgba(254,251,247,.45); line-height: 1.6; }
/* PRATO POSSÍVEL */
.plate-show { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; margin: 56px 0 8px; }
.plate-show .img { width: 100%; height: 400px; border: 1px solid rgba(196,85,42,.3); }
.plate-formula h4 {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.5rem; color: var(--white); font-weight: 500; margin-bottom: 20px; line-height: 1.3;
}
.plate-bar { display: flex; height: 14px; border-radius: 2px; overflow: hidden; margin-bottom: 18px; }
.plate-bar i { display: block; height: 100%; }
.plate-bar .pv { width: 50%; background: var(--green); }
.plate-bar .pp { width: 38%; background: var(--rust-light); }
.plate-bar .pg { width: 12%; background: var(--sand); }
.plate-legend { display: flex; flex-direction: column; gap: 12px; }
.plate-legend div { display: flex; align-items: baseline; gap: 10px; font-size: 14px; color: rgba(254,251,247,.7); }
.plate-legend b { font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.plate-legend .dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; align-self: center; }

/* ── RESSIGNIFICAÇÃO ── */
.ressig-intro { max-width: 680px; font-size: 18px; line-height: 1.85; color: var(--dark); }
.ressig-intro p { margin-bottom: 22px; }
.ressig-intro strong { color: var(--rust); font-weight: 600; }
.trade { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 52px 0; border: 1px solid var(--sand); }
.trade-head {
  padding: 22px 28px; font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.trade-head.leave { background: var(--cream-dark); color: var(--brown); }
.trade-head.gain  { background: var(--rust); color: var(--white); }
.trade-head .th-ico { width: 18px; height: 18px; flex-shrink: 0; }
.trade-row {
  padding: 22px 28px; border-top: 1px solid var(--sand);
  font-size: 16px; line-height: 1.55; display: flex; gap: 14px; align-items: flex-start;
}
.trade-row.leave { background: var(--white); color: var(--muted); }
.trade-row.gain  { background: var(--rust-pale); color: var(--brown); }
.trade-row .arc {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; line-height: 1;
  flex-shrink: 0; margin-top: 3px; opacity: .55;
}
.trade-row.leave .arc { color: var(--muted); }
.trade-row.gain .arc  { color: var(--rust); opacity: 1; }
.trade-row strong { font-weight: 600; }
.trade-row.leave strong { color: var(--brown); }
.trade-row.gain  strong { color: var(--rust); }

.ressig-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 8px 0 52px; }
.ressig-photos .img { width: 100%; height: 300px; }
.ressig-photos .photo-cap { font-size: 11px; }

.patamar { background: var(--dark); color: var(--white); padding: 56px 48px; margin-top: 8px; position: relative; overflow: hidden; }
.patamar::before {
  content: ''; position: absolute; top: -150px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(92,107,74,.22) 0%, transparent 65%);
  pointer-events: none;
}
.patamar-inner { position: relative; z-index: 1; max-width: 640px; }
.patamar .patamar-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: #93A87B; margin-bottom: 18px;
}
.patamar h3 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 600; line-height: 1.25; color: var(--white); margin-bottom: 22px;
}
.patamar h3 em { color: #93A87B; font-style: italic; }
.patamar p { font-size: 17px; font-weight: 300; color: rgba(254,251,247,.65); line-height: 1.8; }
.patamar p strong { color: var(--white); font-weight: 500; }

/* INSIDE */
.inside-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; }
.inside-card { background: var(--cream); padding: 30px 28px; border-top: 2px solid transparent; transition: border-color .3s, transform .3s; }
.inside-card:hover { border-color: var(--rust); transform: translateY(-3px); }
.card-tag {
  display: inline-block; background: var(--rust); color: var(--white);
  font-size: 10px; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; padding: 3px 9px; margin-bottom: 12px;
}
.card-tag--guia { background: var(--dark); }
.inside-card h3 { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.inside-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-top: 48px; }
.step { background: var(--white); padding: 24px 16px; text-align: center; }
.step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; color: var(--rust); opacity: .2; line-height: 1; margin-bottom: 10px;
}
.step h4 { font-size: 12px; font-weight: 600; color: var(--dark); line-height: 1.35; margin-bottom: 6px; }
.step p  { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* AUTHOR */
.author-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.author-side  { background: var(--cream-dark); padding: 36px 28px; text-align: center; }
.author-photo { width: 150px; height: 150px; margin: 0 auto 20px; }
.author-photo .img { width: 150px; height: 150px; }
.author-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.author-cred { font-size: 12px; color: var(--muted); line-height: 1.5; }
.author-social { margin-top: 16px; font-size: 13px; color: var(--rust); font-weight: 500; }
.author-text p { font-size: 17px; line-height: 1.85; color: var(--dark); margin-bottom: 20px; }
.author-text em { font-style: italic; color: var(--rust); }

/* OFFER */
.offer-box { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; text-align: center; }
.offer-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--rust-light); margin-bottom: 20px; }
.offer-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 600; color: var(--white);
  line-height: 1.15; margin-bottom: 16px;
}
.offer-title em { color: var(--rust-light); font-style: italic; }
.offer-sub { font-size: 16px; font-weight: 300; color: rgba(254,251,247,.55); margin-bottom: 48px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.offer-includes { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 48px; text-align: left; }
.oi { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); padding: 18px 20px; display: flex; gap: 12px; align-items: flex-start; }
.oi-check { color: var(--rust-light); font-size: 14px; flex-shrink: 0; margin-top: 3px; }
.oi-text { font-size: 13px; color: rgba(254,251,247,.7); line-height: 1.55; }
.oi-text strong { color: var(--white); display: block; margin-bottom: 2px; font-weight: 500; }
.price-block { background: rgba(255,255,255,.06); border: 1px solid rgba(155,61,30,.3); padding: 40px 36px; margin-bottom: 24px; }
.price-was { font-size: 14px; color: rgba(254,251,247,.3); text-decoration: line-through; margin-bottom: 4px; }
.price-now { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; font-weight: 600; color: var(--white); line-height: 1; margin-bottom: 4px; }
.price-note { font-size: 13px; color: rgba(254,251,247,.4); margin-bottom: 28px; }
.btn-hotmart {
  display: block; width: 100%; background: var(--rust); color: var(--white);
  font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 20px 36px; text-decoration: none; transition: all .3s;
}
.btn-hotmart:hover { background: var(--rust-light); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(155,61,30,.4); }
.btn-sub { font-size: 12px; color: rgba(254,251,247,.3); margin-top: 12px; }
.guarantee {
  display: flex; gap: 20px; align-items: center;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  padding: 24px 28px; margin-top: 24px; text-align: left;
}
.guarantee-ring {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid rgba(155,61,30,.5);
  display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0;
}
.guarantee-ring span:first-child { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--rust-light); line-height: 1; }
.guarantee-ring span:last-child  { font-size: 9px; color: var(--rust-light); letter-spacing: .06em; }
.guarantee-copy strong { display: block; font-size: 14px; color: rgba(254,251,247,.85); font-weight: 600; margin-bottom: 4px; }
.guarantee-copy span  { font-size: 13px; color: rgba(254,251,247,.45); line-height: 1.6; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 2px; margin-top: 48px; }
.faq-item { background: var(--white); padding: 28px 32px; border-left: 3px solid transparent; transition: border-color .3s; }
.faq-item:hover { border-color: var(--rust); }
.faq-item h4 { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.faq-item p  { font-size: 15px; color: var(--muted); line-height: 1.7; }

/* FINAL CTA */
.final { background: var(--rust); padding: 100px 28px; text-align: center; }
.final-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.final-title em { font-style: italic; opacity: .8; }
.final-lead { font-size: 17px; font-weight: 300; color: rgba(254,251,247,.75); max-width: 500px; margin: 0 auto 40px; line-height: 1.75; }
.btn-final {
  display: inline-block; background: var(--white); color: var(--rust);
  font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 20px 48px; text-decoration: none; transition: all .3s;
}
.btn-final:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(0,0,0,.25); }

/* FOOTER */
footer { background: var(--dark); padding: 48px 28px; text-align: center; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--rust-light); display: block; margin-bottom: 10px; }
footer p { font-size: 13px; color: rgba(254,251,247,.28); line-height: 1.6; }
footer a { color: rgba(254,251,247,.45); text-decoration: none; }
footer a:hover { color: var(--rust-light); }
.footer-legal { margin-top: 20px; max-width: 580px; margin-left: auto; margin-right: auto; font-size: 11px; color: rgba(254,251,247,.18); line-height: 1.7; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .pillars       { grid-template-columns: 1fr 1fr; }
  .inside-grid   { grid-template-columns: 1fr; }
  .steps         { grid-template-columns: repeat(4, 1fr); }
  .author-inner  { grid-template-columns: 1fr; }
  .offer-includes{ grid-template-columns: 1fr; }
  .plate-show    { grid-template-columns: 1fr; gap: 28px; }
  .plate-show .img { height: 320px; }
  .saboteurs-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .steps   { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .snav    { padding: 13px 18px; }
  .price-now { font-size: 3.5rem; }
  .trade   { grid-template-columns: 1fr; }
  .ressig-photos { grid-template-columns: 1fr; }
  .patamar { padding: 40px 26px; }
}
