:root {
  --cream: #f7edde;
  --sand: #efe0ca;
  --white: #fffdf9;
  --paper: #f9f7f2;
  --ink: #253127;
  --muted: #637067;
  --green: #24432f;
  --green-2: #31583d;
  --sage: #dce4d5;
  --lime: #6c8b36;
  --gold: #d89b2b;
  --gold-2: #f3c36a;
  --rose: #b14f4f;
  --line: rgba(36, 67, 47, 0.14);
  --shadow-sm: 0 8px 24px rgba(37, 49, 39, 0.08);
  --shadow-md: 0 22px 60px rgba(37, 49, 39, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  background: var(--green);
  color: #fff;
  padding: .75rem 1rem;
  border-radius: 10px;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 32px), var(--max)); margin-inline: auto; }
.container--narrow { width: min(calc(100% - 32px), 920px); }
.container--content { width: min(calc(100% - 32px), 980px); }
.section { position: relative; padding: 76px 0; overflow: hidden; }
.section--cream { background: var(--cream); }
.section--sand { background: var(--sand); }
.section--white { background: var(--white); }

.topbar {
  background: #172a1e;
  color: rgba(255,255,255,.86);
  font-size: .78rem;
  letter-spacing: .04em;
}
.topbar__inner {
  min-height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .55rem;
  white-space: nowrap;
  overflow: hidden;
}
.topbar__dot { width: 3px; height: 3px; border-radius: 99px; background: var(--gold-2); }

.brand { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 2.2rem; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green); color: #fff;
  font-family: Georgia, serif; font-weight: 700; letter-spacing: -.04em;
}
.brand__name { font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; font-weight: 700; }

.hero { min-height: 760px; display: grid; place-items: center; }
.hero::before {
  content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  border: 1px solid rgba(36,67,47,.1); right: -280px; top: -220px;
  box-shadow: 0 0 0 56px rgba(36,67,47,.025), 0 0 0 112px rgba(36,67,47,.018);
}
.hero__content { text-align: center; position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--lime);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
}
.eyebrow--light { color: #d6e7b0; }
h1, h2, h3, h4 { line-height: 1.14; letter-spacing: -.035em; margin-top: 0; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; }
h1 { max-width: 820px; margin-inline: auto; margin-bottom: 1.25rem; font-size: clamp(2.25rem, 6vw, 4.65rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.5rem); margin-bottom: 1.1rem; }
h3 { font-size: clamp(1.22rem, 2vw, 1.55rem); }
p { margin: 0 0 1rem; }
.hero__subheadline { max-width: 690px; margin: 0 auto 2.1rem; font-size: clamp(1rem, 2.2vw, 1.2rem); color: var(--muted); }
.video-shell {
  width: min(100%, 790px); margin: 0 auto;
  padding: 8px; border-radius: 24px;
  background: rgba(255,255,255,.7); border: 1px solid rgba(36,67,47,.1); box-shadow: var(--shadow-md);
}
.video-placeholder {
  aspect-ratio: 16/9; border-radius: 17px; overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(243,195,106,.25), transparent 38%),
    linear-gradient(145deg, #1a2e21, #294d35 55%, #17251d);
  color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; letter-spacing: .12em; font-size: .8rem;
}
.video-placeholder small { opacity: .62; letter-spacing: .02em; }
.video-placeholder__pulse {
  width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.32);
  box-shadow: 0 0 0 12px rgba(255,255,255,.05);
}
.play-icon { width: 0; height: 0; border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-left: 17px solid var(--gold-2); margin-left: 5px; }
.medical-note { margin: 1.1rem auto 0; color: #787f79; font-size: .75rem; }

.section-heading { max-width: 780px; margin-bottom: 2.8rem; }
.section-heading--center { text-align: center; margin-inline: auto; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }
.section-heading--light, .section-heading--light > p:last-child { color: #fff; }

.pain-grid { display: grid; gap: 12px; }
.pain-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pain-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.pain-card p { margin: 0; }
.icon-badge { flex: 0 0 28px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; font-weight: 800; }
.icon-badge--rose { background: rgba(177,79,79,.1); color: var(--rose); }
.statement-card {
  margin: 2rem auto 0; padding: 1.5rem; max-width: 820px; text-align: center;
  border: 1px solid rgba(108,139,54,.22); background: linear-gradient(135deg, #f4f7ee, #fff); border-radius: var(--radius-md);
}
.statement-card strong { display: block; color: var(--green); font-family: Georgia, serif; font-size: 1.35rem; margin-bottom: .55rem; }
.statement-card p { margin: 0; color: var(--muted); }

.mechanism-panel {
  display: grid; gap: 1.5rem; padding: 1.5rem; background: rgba(255,255,255,.72);
  border: 1px solid rgba(36,67,47,.12); border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
}
.mechanism-panel__intro { display: flex; gap: 1rem; align-items: flex-start; }
.mechanism-number { display: grid; place-items: center; flex: 0 0 52px; height: 52px; border-radius: 16px; background: var(--green); color: #fff; font-weight: 800; }
.mechanism-panel h3 { margin: .45rem 0 0; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .72rem; }
.check-list li { position: relative; padding-left: 1.8rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--lime); font-weight: 900; }
.check-list--negative li::before { content: "×"; color: var(--rose); }
.impact-banner {
  margin-top: 1.5rem; padding: 1.8rem; border-radius: var(--radius-md); text-align: center; color: #fff;
  background: linear-gradient(135deg, #412725, #2a1c1b); box-shadow: var(--shadow-md);
}
.impact-banner p, .impact-banner span { margin: 0; opacity: .75; }
.impact-banner strong { display: block; margin: .25rem 0; font-family: Georgia, serif; font-size: clamp(2rem, 5vw, 3rem); color: #f5c9bb; }
.turning-point { display: flex; align-items: center; justify-content: center; gap: .8rem; text-align: center; margin-top: 1.7rem; flex-wrap: wrap; }
.turning-point p { margin: 0; }
.turning-point strong { font-family: Georgia, serif; color: var(--green); font-size: 1.55rem; }
.turning-point__line { height: 1px; width: 70px; background: rgba(36,67,47,.25); }

.testimonials-grid { display: grid; gap: 1rem; }
.testimonial-placeholder {
  margin: 0; padding: .85rem; background: #fff; border-radius: var(--radius-sm); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.testimonial-placeholder__header { display: flex; align-items: center; gap: .65rem; padding: .4rem .25rem .8rem; }
.avatar-placeholder { width: 30px; height: 30px; border-radius: 50%; background: #e0e3df; }
.line-placeholder { height: 8px; border-radius: 99px; background: #e7e9e6; }
.line-placeholder--short { width: 40%; }
.message-placeholder { background: #eef6e9; border-radius: 12px 12px 3px 12px; padding: 1rem; display: grid; gap: .5rem; min-height: 150px; align-content: center; }
.message-placeholder span { display: block; height: 8px; background: rgba(36,67,47,.14); border-radius: 99px; }
.message-placeholder span:nth-child(2) { width: 88%; }
.message-placeholder span:nth-child(3) { width: 72%; }
.message-placeholder span:nth-child(4) { width: 42%; }
.testimonial-placeholder figcaption { font-size: .72rem; color: var(--muted); text-align: center; margin-top: .65rem; }
.placeholder-note { text-align: center; font-size: .78rem; color: var(--muted); margin-top: 1rem; }

.timeline { display: grid; gap: 1rem; position: relative; }
.timeline::before { content: ""; position: absolute; left: 25px; top: 30px; bottom: 30px; width: 1px; background: rgba(36,67,47,.18); }
.timeline-card {
  position: relative; display: grid; grid-template-columns: 52px 1fr; gap: 1rem;
  padding: 1.35rem; border-radius: var(--radius-md); background: rgba(255,255,255,.8); border: 1px solid rgba(36,67,47,.12);
}
.timeline-card__number {
  position: relative; z-index: 1; width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 16px; background: var(--green); color: #fff; font-weight: 900;
}
.timeline-card h3 { margin: .3rem 0 .65rem; }
.timeline-card p { color: var(--muted); }
.timeline-card__highlight { color: var(--green) !important; font-weight: 700; margin-bottom: 0; }
.timeline-card--featured { background: var(--green); color: #fff; box-shadow: var(--shadow-md); }
.timeline-card--featured .timeline-card__number { background: var(--gold); color: #1e2f23; }
.timeline-card--featured p, .timeline-card--featured .timeline-card__highlight { color: rgba(255,255,255,.82) !important; }
.science-card { margin-top: 1.5rem; display: flex; gap: 1.1rem; padding: 1.5rem; border-radius: var(--radius-md); background: #fff9ec; border: 1px solid rgba(216,155,43,.28); }
.science-card__icon { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(216,155,43,.15); color: #a26f13; }
.science-card h3 { margin-bottom: .45rem; }
.science-card p { margin: 0; color: var(--muted); }

.phases-grid { display: grid; gap: 1.2rem; align-items: stretch; }
.phase-card { padding: 1.5rem; border-radius: var(--radius-md); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.phase-card--accent { border-color: rgba(108,139,54,.45); box-shadow: 0 22px 50px rgba(108,139,54,.14); }
.phase-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.3rem; }
.phase-card__tag { padding: .35rem .7rem; border-radius: 99px; font-size: .7rem; font-weight: 800; background: var(--sage); color: var(--green); }
.phase-card__number { font-family: Georgia, serif; color: rgba(36,67,47,.16); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.phase-card h3 { min-height: 2.8em; }
.phase-card h4 { font-size: .9rem; margin: 1.2rem 0 .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--green); }
.phase-card__objective { padding: 1rem; background: var(--paper); border-radius: 12px; color: var(--muted); }
.phase-card .check-list { font-size: .92rem; }

.authority-section { background: linear-gradient(135deg, #24432f, #31583d); color: #fff; }
.authority-section::after { content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%; background: rgba(255,255,255,.035); right: -180px; bottom: -220px; }
.authority-grid { display: grid; gap: 2rem; align-items: center; position: relative; z-index: 1; }
.authority-copy h2 { max-width: 760px; }
.authority-copy h3 { font-family: Georgia, serif; font-size: 2rem; margin-bottom: .35rem; color: #e6efda; }
.authority-copy__role { color: #d6e7b0; font-weight: 700; }
.authority-copy > p { color: rgba(255,255,255,.76); }
.authority-stats { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; grid-template-columns: repeat(3,1fr); gap: .7rem; }
.authority-stats li { padding: 1rem .75rem; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.06); }
.authority-stats strong { display: block; font-family: Georgia, serif; font-size: 1.55rem; color: var(--gold-2); }
.authority-stats span { font-size: .72rem; color: rgba(255,255,255,.68); }
.authority-copy blockquote { margin: 1.7rem 0 0; padding: 1.25rem 1.4rem; border-left: 3px solid var(--gold-2); background: rgba(0,0,0,.12); color: rgba(255,255,255,.85); border-radius: 0 14px 14px 0; }
.authority-photo-placeholder { min-height: 480px; border-radius: var(--radius-lg); position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 2rem; text-align: center; background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.03)); border: 1px solid rgba(255,255,255,.16); }
.authority-photo-placeholder__shape { position: absolute; width: 260px; height: 360px; border-radius: 48% 48% 18px 18px; top: 52px; background: linear-gradient(180deg, #d6c3ad, #8f745d); opacity: .5; filter: blur(.3px); }
.authority-photo-placeholder span, .authority-photo-placeholder small { position: relative; z-index: 2; }
.authority-photo-placeholder span { font-weight: 800; letter-spacing: .12em; font-size: .78rem; }
.authority-photo-placeholder small { opacity: .55; }

.bonuses-grid { display: grid; gap: 1.2rem; align-items: stretch; }
.bonus-card { display: flex; flex-direction: column; padding: 1.45rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); }
.bonus-card--featured { border: 2px solid var(--green); transform: none; }
.bonus-card__header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.2rem; }
.bonus-card__index { padding: .35rem .7rem; border-radius: 99px; background: var(--green); color: #fff; font-size: .72rem; font-weight: 800; }
.bonus-card__value { color: var(--rose); text-decoration: line-through; font-weight: 800; }
.bonus-card > p { color: var(--muted); }
.bonus-card .check-list { font-size: .91rem; margin-top: .6rem; }
.bonus-card__footer { margin-top: auto !important; padding-top: 1rem; color: var(--green) !important; font-weight: 800; }

.offer-section { background: #1e3527; color: #fff; }
.offer-grid { display: grid; gap: 2rem; align-items: center; }
.value-summary h2 { max-width: 560px; }
.value-summary > p:not(.eyebrow):not(.value-summary__callout) { color: rgba(255,255,255,.7); }
.value-list { list-style: none; padding: 0; margin: 1.5rem 0 0; border-top: 1px solid rgba(255,255,255,.12); }
.value-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .95rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.value-list span { color: rgba(255,255,255,.72); }
.value-list strong { white-space: nowrap; }
.value-total { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; }
.value-total span { font-size: .75rem; letter-spacing: .12em; font-weight: 800; }
.value-total strong { font-family: Georgia, serif; color: var(--gold-2); font-size: 2rem; }
.value-summary__callout { padding: 1rem; border-radius: 12px; background: rgba(243,195,106,.13); color: var(--gold-2); text-align: center; font-weight: 900; letter-spacing: .04em; }
.price-card { padding: 2rem 1.5rem; border-radius: var(--radius-lg); background: #fff; color: var(--ink); text-align: center; box-shadow: 0 28px 80px rgba(0,0,0,.3); }
.price-card__label { display: inline-flex; padding: .42rem .8rem; border-radius: 99px; background: var(--sage); color: var(--green); font-size: .68rem; font-weight: 900; letter-spacing: .11em; }
.price-card > p { margin: .9rem 0 .35rem; color: var(--muted); }
.price-card__cash { display: flex; justify-content: center; align-items: flex-start; line-height: 1; margin-top: .5rem; }
.price-card__cash span { margin-top: .7rem; font-weight: 800; }
.price-card__cash strong { font-family: Georgia, serif; color: var(--green); font-size: clamp(4.2rem, 11vw, 6.4rem); letter-spacing: -.07em; }
.price-card__divider { display: flex; align-items: center; gap: .7rem; color: var(--muted); font-size: .75rem; margin: 1rem 0; }
.price-card__divider::before, .price-card__divider::after { content: ""; height: 1px; flex: 1; background: var(--line); }
.price-card__installments { font-size: 1.1rem; }
.price-card__installments strong { font-size: 1.7rem; color: var(--green); }
.price-card__saving { display: block; margin: 1rem auto 1.2rem; color: var(--lime); font-weight: 800; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 54px; padding: .9rem 1.25rem; border-radius: 14px; text-decoration: none; text-align: center; font-weight: 900; letter-spacing: .015em; transition: transform .2s ease, filter .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); filter: brightness(1.03); }
.button--gold { width: 100%; color: #1d2d21; background: linear-gradient(180deg, var(--gold-2), var(--gold)); box-shadow: 0 14px 30px rgba(216,155,43,.28); }
.button--large { max-width: 520px; min-height: 64px; }
.secure-buy { margin-top: .85rem; color: var(--muted); font-size: .72rem; }
.secure-buy span { color: var(--lime); }
.offer-extras { margin-top: 2rem; display: grid; gap: 1.2rem; }
.special-offer-card, .guarantee-card { padding: 1.5rem; border-radius: var(--radius-md); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); }
.special-offer-card h3, .guarantee-card h3 { color: #fff; }
.special-offer-card p { color: rgba(255,255,255,.7); }
.special-offer-card .check-list { margin: 1rem 0; }
.special-offer-card .check-list li { color: rgba(255,255,255,.82); }
.special-offer-card > strong { color: var(--gold-2); }
.guarantee-card { display: grid; gap: 1.2rem; align-items: start; background: #f9f2e6; color: var(--ink); }
.guarantee-card h3 { color: var(--green); }
.guarantee-card p { color: var(--muted); }
.guarantee-seal { width: 94px; height: 94px; border-radius: 50%; display: grid; place-items: center; align-content: center; background: var(--green); color: #fff; box-shadow: 0 0 0 8px rgba(36,67,47,.12); }
.guarantee-seal span { font-family: Georgia, serif; font-size: 2.4rem; line-height: 1; }
.guarantee-seal small { font-weight: 900; letter-spacing: .15em; font-size: .6rem; }
.inline-benefits { list-style: none; padding: 0; margin: 1rem 0; display: flex; flex-wrap: wrap; gap: .45rem; }
.inline-benefits li { padding: .35rem .65rem; border-radius: 99px; background: var(--sage); color: var(--green); font-size: .72rem; font-weight: 800; }

.faq-list { display: grid; gap: .75rem; }
.faq-item { border-radius: var(--radius-sm); background: #fff; border: 1px solid var(--line); overflow: hidden; box-shadow: 0 5px 18px rgba(37,49,39,.04); }
.faq-question { width: 100%; border: 0; background: transparent; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 1.2rem; text-align: left; font-weight: 800; cursor: pointer; }
.faq-icon { flex: 0 0 30px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--sage); color: var(--green); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-answer > p { overflow: hidden; padding: 0 1.2rem; margin: 0; color: var(--muted); }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding-bottom: 1.2rem; }

.choices-section { background: linear-gradient(145deg, #4f6e2b, #2d482b); color: #fff; }
.choices-grid { display: grid; gap: 1.2rem; }
.choice-card { padding: 1.5rem; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,.14); }
.choice-card--negative { background: rgba(31,22,22,.28); }
.choice-card--positive { background: rgba(255,255,255,.1); box-shadow: 0 18px 50px rgba(0,0,0,.16); }
.choice-card__label { font-size: .68rem; font-weight: 900; letter-spacing: .13em; color: var(--gold-2); }
.choice-card h3 { margin: .8rem 0 1rem; }
.choice-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.choice-card li { position: relative; padding-left: 1.5rem; color: rgba(255,255,255,.78); }
.choice-card--negative li::before { content: "×"; position: absolute; left: 0; color: #efb4ab; font-weight: 900; }
.choice-card--positive li::before { content: "✓"; position: absolute; left: 0; color: #d7ed9b; font-weight: 900; }
.choice-card > p { color: rgba(255,255,255,.68); margin-top: 1.2rem; }
.choice-card__result { margin-top: 1.3rem; padding: 1rem; display: grid; gap: .35rem; border-radius: 14px; background: rgba(0,0,0,.15); }
.choice-card__result span { color: rgba(255,255,255,.65); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.choice-card__result strong { color: #eef9da; }
.final-cta { text-align: center; margin-top: 2.8rem; }
.final-cta p { color: rgba(255,255,255,.72); }
.final-cta h3 { max-width: 720px; margin: .5rem auto 1rem; font-family: Georgia, serif; font-size: clamp(1.8rem, 4vw, 3rem); }
.final-cta .button { display: flex; margin: 1.5rem auto .8rem; }
.final-cta > span { font-size: .8rem; color: rgba(255,255,255,.6); }

.footer { background: #1d1111; color: rgba(255,255,255,.62); padding: 2.6rem 0; font-size: .76rem; }
.footer__inner { display: grid; gap: 1rem; text-align: center; justify-items: center; }
.footer__inner strong { color: rgba(255,255,255,.86); }
.footer__inner span { display: block; }
.footer__links { display: flex; gap: 1.2rem; }
.footer__links a { color: var(--gold-2); }
.footer__notice { max-width: 820px; font-size: .68rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 640px) {
  .container { width: min(calc(100% - 48px), var(--max)); }
  .container--narrow { width: min(calc(100% - 48px), 920px); }
  .container--content { width: min(calc(100% - 48px), 980px); }
  .section { padding: 96px 0; }
  .pain-grid, .testimonials-grid, .choices-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid figure:last-child { grid-column: 1 / -1; width: min(100%, 50%); justify-self: center; }
  .mechanism-panel { grid-template-columns: .85fr 1.15fr; padding: 2rem; }
  .guarantee-card { grid-template-columns: auto 1fr; padding: 2rem; }
}

@media (min-width: 860px) {
  .hero { min-height: 860px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid figure:last-child { grid-column: auto; width: auto; }
  .phases-grid, .bonuses-grid { grid-template-columns: repeat(3, 1fr); }
  .phase-card--accent, .bonus-card--featured { transform: translateY(-12px); }
  .authority-grid { grid-template-columns: 1.15fr .85fr; }
  .offer-grid { grid-template-columns: 1.08fr .92fr; gap: 4rem; }
  .choices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1080px) {
  .section { padding: 112px 0; }
  .pain-card { padding: 1.35rem 1.5rem; }
  .timeline-card { padding: 1.6rem 1.8rem; gap: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   V2 — refinamento visual aprovado para nova rodada
   ========================================================= */

:root {
  --cream-v2: #f8ecdc;
  --cream-deep-v2: #efd8bd;
  --forest-v2: #173d2a;
  --leaf-v2: #557a30;
  --sage-v2: #dce8cf;
  --terracotta-v2: #c96f4d;
  --blush-v2: #f4ddd2;
  --gold-v2: #e2a73d;
}

.hero {
  min-height: auto;
  padding-top: 56px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,.95), transparent 32%),
    linear-gradient(180deg, #fbf1e4 0%, #f6e5d0 100%);
}
.hero::before {
  width: 420px;
  height: 420px;
  right: -240px;
  top: -250px;
  border-color: rgba(201,111,77,.13);
  box-shadow: 0 0 0 46px rgba(201,111,77,.035), 0 0 0 92px rgba(85,122,48,.025);
}
.hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -170px;
  bottom: -150px;
  border-radius: 50%;
  background: rgba(85,122,48,.07);
  filter: blur(2px);
}
.hero h1 {
  max-width: 850px;
  font-size: clamp(2.35rem, 6.2vw, 4.9rem);
  color: #183426;
  text-wrap: balance;
  text-shadow: 0 1px 0 rgba(255,255,255,.7);
}
.hero__subheadline {
  max-width: 720px;
  margin-bottom: 2rem;
  color: #53665a;
  font-size: clamp(1.02rem, 2.3vw, 1.24rem);
}
.video-shell--vertical {
  width: min(100%, 390px);
  padding: 9px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(255,255,255,.62));
  border: 1px solid rgba(23,61,42,.14);
  box-shadow: 0 30px 80px rgba(23,61,42,.18), 0 0 0 8px rgba(255,255,255,.36);
}
.video-shell--vertical .video-placeholder {
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 25%, rgba(226,167,61,.26), transparent 30%),
    linear-gradient(160deg, #173d2a 0%, #2d5e3d 58%, #122e20 100%);
}
.medical-note {
  max-width: 600px;
  line-height: 1.45;
  margin-top: 1.25rem;
  color: #707a73;
}

/* Seção 2 — dor e identificação */
.pain-section {
  background:
    linear-gradient(180deg, #fffdf9 0%, #fff9f2 100%);
}
.pain-section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, var(--terracotta-v2), var(--gold-v2), var(--leaf-v2));
}
.pain-section .section-heading h2 { color: var(--forest-v2); }
.pain-section .section-heading::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 1.25rem auto 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--terracotta-v2), var(--gold-v2));
}
.pain-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem 1.35rem 1.35rem 1.55rem;
  border: 1px solid rgba(201,111,77,.18);
  border-left: 5px solid rgba(201,111,77,.78);
  background: linear-gradient(145deg, #fff 0%, #fff8f3 100%);
  box-shadow: 0 12px 32px rgba(105,67,45,.07);
}
.pain-card::after {
  content: "";
  position: absolute;
  width: 66px;
  height: 66px;
  right: -30px;
  bottom: -34px;
  border-radius: 50%;
  background: rgba(201,111,77,.08);
}
.pain-card .icon-badge--rose {
  background: var(--blush-v2);
  color: #a54b3d;
  box-shadow: 0 6px 18px rgba(201,111,77,.14);
}
.statement-card {
  padding: 1.8rem;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #234b32, #557a30);
  box-shadow: 0 22px 48px rgba(23,61,42,.19);
}
.statement-card strong { color: #fff4d4; font-size: 1.48rem; }
.statement-card p { color: rgba(255,255,255,.82); }

/* Seção 4 — depoimentos */
.testimonials-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(226,167,61,.14), transparent 26%),
    radial-gradient(circle at 90% 85%, rgba(85,122,48,.12), transparent 30%),
    linear-gradient(180deg, #f7faf3 0%, #edf4e7 100%);
}
.testimonials-section .section-heading h2 { color: var(--forest-v2); }
.testimonials-grid { gap: 1.35rem; }
.testimonial-placeholder {
  position: relative;
  padding: 1rem;
  border: 1px solid rgba(85,122,48,.18);
  background: rgba(255,255,255,.9);
  box-shadow: 0 20px 50px rgba(23,61,42,.12);
  transform: rotate(-.5deg);
}
.testimonial-placeholder:nth-child(2) { transform: translateY(14px) rotate(.7deg); }
.testimonial-placeholder:nth-child(3) { transform: rotate(-.3deg); }
.testimonial-placeholder::before {
  content: "“";
  position: absolute;
  top: -18px;
  right: 14px;
  color: rgba(85,122,48,.18);
  font: 700 5rem/1 Georgia, serif;
}
.message-placeholder {
  background: linear-gradient(145deg, #eff8e9, #e6f1df);
  border: 1px solid rgba(85,122,48,.12);
}

/* Seção 5 — método */
.method-section {
  background:
    linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px),
    linear-gradient(160deg, #f7e7d3 0%, #efd8bd 100%);
  background-size: 34px 34px, 34px 34px, auto;
}
.method-section .section-heading h2 { color: var(--forest-v2); }
.timeline { gap: 1.15rem; }
.timeline::before {
  width: 3px;
  left: 25px;
  background: linear-gradient(var(--terracotta-v2), var(--gold-v2), var(--leaf-v2));
}
.timeline-card {
  border: 1px solid rgba(23,61,42,.1);
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 42px rgba(91,60,38,.09);
}
.timeline-card:nth-child(odd) .timeline-card__number { background: var(--terracotta-v2); }
.timeline-card:nth-child(even) .timeline-card__number { background: var(--leaf-v2); }
.timeline-card:hover { transform: translateY(-3px); box-shadow: 0 22px 55px rgba(91,60,38,.14); }
.timeline-card--featured {
  background: linear-gradient(135deg, #173d2a, #315f3d);
  border-color: transparent;
}
.timeline-card--featured .timeline-card__number { background: var(--gold-v2); }
.science-card {
  border: 0;
  background: linear-gradient(145deg, #fffaf0, #fff3d8);
  box-shadow: 0 18px 42px rgba(134,92,29,.12);
}

/* Seção 6 — fases */
.phases-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(201,111,77,.12), transparent 24%),
    linear-gradient(180deg, #f8faf7 0%, #eef3ec 100%);
}
.phases-section .section-heading h2 { color: var(--forest-v2); }
.phase-card {
  position: relative;
  overflow: hidden;
  border: 0;
  background: #fff;
  box-shadow: 0 22px 55px rgba(23,61,42,.11);
}
.phase-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: var(--terracotta-v2);
}
.phase-card:nth-child(2)::before { background: var(--gold-v2); }
.phase-card:nth-child(3)::before { background: var(--leaf-v2); }
.phase-card__number {
  color: rgba(23,61,42,.12);
  font-size: 3.5rem;
}
.phase-card__tag {
  background: #f4e5d6;
  color: #8b4c38;
}
.phase-card--accent {
  background: linear-gradient(165deg, #173d2a, #315f3d);
  box-shadow: 0 28px 70px rgba(23,61,42,.25);
}
.phase-card--accent::before { background: var(--gold-v2); }

/* Seção 7 — autoridade */
.authority-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(226,167,61,.16), transparent 27%),
    linear-gradient(135deg, #173d2a 0%, #294f34 55%, #466a34 100%);
}
.authority-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -220px;
  bottom: -260px;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 0 0 54px rgba(255,255,255,.025), 0 0 0 108px rgba(255,255,255,.018);
}
.authority-copy h2 { color: #fff; }
.authority-copy h3 { color: #f4c86e; }
.authority-copy__role { color: #dce8cf !important; }
.authority-stats li {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.authority-copy blockquote {
  border-left: 4px solid var(--gold-v2);
  background: rgba(255,255,255,.08);
}
.authority-photo-placeholder {
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
}

/* FAQ */
.faq-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(226,167,61,.12), transparent 25%),
    linear-gradient(180deg, #f6ead9 0%, #f1ddc3 100%);
}
.faq-section .section-heading h2 { color: var(--forest-v2); }
.faq-item {
  border: 1px solid rgba(23,61,42,.12);
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 30px rgba(91,60,38,.07);
}
.faq-item.is-open {
  border-color: rgba(85,122,48,.42);
  box-shadow: 0 18px 42px rgba(23,61,42,.12);
}
.faq-question {
  padding: 1.25rem 1.3rem;
  color: var(--forest-v2);
}
.faq-item.is-open .faq-question { background: linear-gradient(90deg, rgba(220,232,207,.72), rgba(255,255,255,0)); }
.faq-icon {
  background: var(--forest-v2);
  color: #fff;
  box-shadow: 0 8px 18px rgba(23,61,42,.18);
}

/* Escolhas */
.choices-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(226,167,61,.2), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(201,111,77,.18), transparent 32%),
    linear-gradient(145deg, #173d2a 0%, #385b31 58%, #5a702d 100%);
}
.choices-grid { gap: 1.5rem; }
.choice-card {
  position: relative;
  overflow: hidden;
  padding: 1.8rem;
  backdrop-filter: blur(9px);
}
.choice-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
}
.choice-card--negative {
  background: linear-gradient(145deg, rgba(70,27,27,.58), rgba(44,19,19,.35));
  border-color: rgba(244,177,163,.22);
}
.choice-card--negative::after { background: rgba(201,111,77,.16); }
.choice-card--positive {
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.08));
  border-color: rgba(226,167,61,.35);
  box-shadow: 0 25px 65px rgba(0,0,0,.22);
}
.choice-card--positive::after { background: rgba(226,167,61,.16); }
.choice-card__label {
  display: inline-flex;
  padding: .4rem .7rem;
  border-radius: 999px;
  background: rgba(226,167,61,.15);
}
.choice-card__result {
  background: rgba(10,32,20,.35);
  border: 1px solid rgba(255,255,255,.1);
}
.final-cta {
  padding: 2rem 1rem 0;
}
.final-cta h3 { color: #fff2ca; }

/* Garantia dupla */
.guarantee-card {
  border: 1px solid rgba(226,167,61,.28);
  background: linear-gradient(145deg, #fffaf0, #f7ead5);
  box-shadow: 0 22px 55px rgba(0,0,0,.16);
}
.guarantee-seal {
  width: 108px;
  height: 108px;
  background: linear-gradient(145deg, #315f3d, #173d2a);
  box-shadow: 0 0 0 8px rgba(226,167,61,.17), 0 16px 35px rgba(23,61,42,.2);
}
.guarantee-seal span { font-size: 1.65rem; letter-spacing: -.04em; }
.guarantee-card h3 { font-size: clamp(1.55rem, 3vw, 2.15rem); }

@media (max-width: 639px) {
  .hero { padding-top: 42px; padding-bottom: 60px; }
  .hero h1 { font-size: clamp(2.05rem, 10.8vw, 3rem); }
  .video-shell--vertical { width: min(100%, 330px); }
  .pain-card { padding: 1.15rem; }
  .testimonial-placeholder,
  .testimonial-placeholder:nth-child(2),
  .testimonial-placeholder:nth-child(3) { transform: none; }
  .timeline-card { grid-template-columns: 46px 1fr; padding: 1.15rem; }
  .timeline-card__number { width: 46px; height: 46px; }
  .timeline::before { left: 22px; }
  .guarantee-seal { width: 92px; height: 92px; }
}

@media (min-width: 860px) {
  .hero { min-height: auto; padding-top: 72px; padding-bottom: 88px; }
  .pain-grid { gap: 16px; }
  .phase-card { transition: transform .25s ease, box-shadow .25s ease; }
  .phase-card:hover { transform: translateY(-8px); box-shadow: 0 32px 72px rgba(23,61,42,.17); }
  .phase-card--accent:hover { transform: translateY(-18px); }
}


/* =========================================================
   V3 — ajustes de contraste e limpeza dos títulos de seção
   ========================================================= */

/* A segunda fase continua em destaque, agora com fundo claro
   e contraste confortável para leitura em qualquer tela. */
.phase-card--accent {
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(226,167,61,.18), transparent 34%),
    linear-gradient(160deg, #f5f9ef 0%, #e5efda 100%);
  border: 1px solid rgba(85,122,48,.28);
  box-shadow: 0 28px 70px rgba(23,61,42,.16);
}
.phase-card--accent::before {
  background: linear-gradient(90deg, var(--leaf-v2), var(--gold-v2));
}
.phase-card--accent .phase-card__tag {
  background: var(--forest-v2);
  color: #fff;
}
.phase-card--accent .phase-card__number {
  color: rgba(23,61,42,.15);
}
.phase-card--accent h3,
.phase-card--accent h4 {
  color: var(--forest-v2);
}
.phase-card--accent .phase-card__objective {
  color: #405247;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(85,122,48,.15);
}
.phase-card--accent .check-list li {
  color: var(--ink);
}
.phase-card--accent .check-list li::before {
  color: var(--leaf-v2);
  background: rgba(85,122,48,.12);
}

/* Sem as frases curtas, os títulos principais respiram melhor. */
.section-heading h2:first-child,
.authority-copy h2:first-child,
.value-summary h2:first-child {
  margin-top: 0;
}

@media (min-width: 860px) {
  .phase-card--accent:hover {
    transform: translateY(-18px);
    box-shadow: 0 34px 78px rgba(23,61,42,.2);
  }
}


/* Imagens reais */
.testimonial-card {
  position: relative;
  margin: 0;
  padding: .65rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(85,122,48,.18);
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 50px rgba(23,61,42,.12);
  overflow: hidden;
  transform: rotate(-.5deg);
}

.testimonial-card:nth-child(2) {
  transform: translateY(14px) rotate(.7deg);
}

.testimonial-card:nth-child(3) {
  transform: rotate(-.3deg);
}

.testimonial-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-md) - .35rem);
  object-fit: contain;
}

.authority-photo {
  min-height: 480px;
  margin: 0;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
}

.authority-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 767px) {
  .testimonial-card,
  .testimonial-card:nth-child(2),
  .testimonial-card:nth-child(3) {
    transform: none;
  }

  .authority-photo,
  .authority-photo img {
    min-height: 420px;
  }
}

/* =========================================================
   MOLDURAS MODERNAS PARA FOTOS E DEPOIMENTOS
   ========================================================= */

/* Depoimentos: moldura limpa, uniforme e sem inclinações */
.testimonial-card,
.testimonial-card:nth-child(2),
.testimonial-card:nth-child(3) {
  position: relative;
  isolation: isolate;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  transform: none;
  border: 1px solid rgba(36, 67, 47, .16);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(247,245,239,.98));
  box-shadow:
    0 16px 38px rgba(23, 61, 42, .11),
    inset 0 0 0 1px rgba(255,255,255,.8);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 5px;
  pointer-events: none;
  border: 1px solid rgba(85, 122, 48, .11);
  border-radius: 17px;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: 68px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #7f9b58, #b2c58d);
  transform: translateX(-50%);
}

.testimonial-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(36, 67, 47, .08);
  border-radius: 14px;
  background: #ffffff;
}

@media (hover: hover) and (pointer: fine) {
  .testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(85, 122, 48, .3);
    box-shadow:
      0 24px 52px rgba(23, 61, 42, .16),
      inset 0 0 0 1px rgba(255,255,255,.9);
  }
}

/* Foto da Elaine: moldura clara sobre a seção escura */
.authority-photo {
  position: relative;
  isolation: isolate;
  min-height: 0;
  margin: 0;
  padding: 11px;
  overflow: visible;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.26), rgba(255,255,255,.08));
  box-shadow:
    0 28px 68px rgba(0,0,0,.25),
    inset 0 0 0 1px rgba(255,255,255,.1);
}

.authority-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 5px;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 24px;
}

.authority-photo::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -12px;
  bottom: -12px;
  width: 72%;
  height: 72%;
  border-radius: 28px;
  background: rgba(168, 191, 130, .2);
  filter: blur(.2px);
}

.authority-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
}

@media (max-width: 767px) {
  .testimonial-card,
  .testimonial-card:nth-child(2),
  .testimonial-card:nth-child(3) {
    padding: 8px;
    border-radius: 19px;
  }

  .testimonial-card::before {
    inset: 4px;
    border-radius: 15px;
  }

  .testimonial-card img {
    border-radius: 12px;
  }

  .authority-photo {
    min-height: 0;
    padding: 8px;
    border-radius: 24px;
  }

  .authority-photo::before {
    inset: 4px;
    border-radius: 19px;
  }

  .authority-photo::after {
    right: -7px;
    bottom: -7px;
    border-radius: 22px;
  }

  .authority-photo img {
    min-height: 0;
    border-radius: 17px;
  }
}
