:root {
  --cedro: #1e1a17;
  --cedro-2: #2b241f;
  --linho: #f3e9db;
  --linho-2: #fbf6ef;
  --cobre: #a86a3d;
  --cobre-2: #8f552f;
  --argila: #b77263;
  --oliva: #55604b;
  --oliva-soft: #e7e8df;
  --nevoa: #d8cabb;
  --text: #211c18;
  --light: #f8f1e7;
  --white: #ffffff;
  --border: rgba(30, 26, 23, 0.12);
  --shadow: 0 22px 60px rgba(30, 26, 23, 0.11);
  --shadow-soft: 0 14px 36px rgba(30, 26, 23, 0.08);
  --container: 1180px;
  --display: "Fraunces", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  background: var(--linho);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -80px;
  padding: 12px 18px;
  background: var(--cedro);
  color: var(--light);
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; overflow: hidden; }
.section-light { background: var(--linho); }
.section-nevoa { background: linear-gradient(145deg, #e8ded1 0%, var(--nevoa) 50%, #eee5da 100%); }
.section-oliva { background: linear-gradient(145deg, #eef0e9 0%, var(--oliva-soft) 50%, #f5efe5 100%); }
.section-community { background: linear-gradient(135deg, #f7f1e8 0%, #e7eadf 100%); }

h1, h2, h3, blockquote { font-family: var(--display); }
h1, h2, h3 { margin: 0; color: var(--cedro); font-weight: 500; letter-spacing: -0.025em; }
h1 { font-size: clamp(3.25rem, 5.9vw, 6rem); line-height: .98; }
h2 { font-size: clamp(2.45rem, 4.3vw, 4.45rem); line-height: 1.04; }
h3 { font-size: clamp(1.45rem, 2.1vw, 2.1rem); line-height: 1.15; }
em { color: var(--cobre); font-style: italic; }
p { margin: 0 0 1.25em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--oliva);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--cobre);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border: 1px solid var(--cobre);
  border-radius: 999px;
  background: var(--cobre);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(168, 106, 61, .22);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--cobre-2); box-shadow: 0 18px 40px rgba(168, 106, 61, .28); }
.btn:focus-visible { outline: 3px solid var(--oliva); outline-offset: 4px; }
.btn-small { min-height: 46px; padding: 0 22px; font-size: .92rem; }
.btn-full { width: 100%; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(30, 26, 23, .08);
  background: rgba(243, 233, 219, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { width: 220px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: 26px; font-size: .91rem; font-weight: 600; }
.main-nav > a:not(.btn) { text-decoration: none; position: relative; }
.main-nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 2px; background: var(--cobre); transition: width .2s ease; }
.main-nav > a:not(.btn):hover::after { width: 100%; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 6px 0; background: var(--cedro); transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; padding: 74px 0 48px; overflow: hidden; }
.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 12%;
  width: 52vw;
  height: 52vw;
  max-width: 760px;
  max-height: 760px;
  border: 1px solid rgba(168,106,61,.22);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(.2px); }
.hero-orb-one { width: 420px; height: 420px; right: -160px; top: -210px; background: rgba(216, 202, 187, .55); }
.hero-orb-two { width: 300px; height: 300px; left: -170px; bottom: -90px; background: rgba(183, 114, 99, .10); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr); gap: 44px; align-items: center; }
.hero-copy { padding: 38px 0 50px; }
.hero-lead { margin: 30px 0 18px; font-size: clamp(1.2rem, 2vw, 1.52rem); line-height: 1.45; }
.hero-lead strong { color: var(--cobre); }
.hero-copy > p:not(.eyebrow):not(.hero-lead):not(.microcopy) { max-width: 710px; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; margin: 32px 0 26px; }
.microcopy { margin: 0; color: rgba(33, 28, 24, .68); font-size: .83rem; }
.authority-line { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; max-width: 680px; padding-top: 20px; border-top: 1px solid var(--border); }
.authority-line p { margin: 0; font-size: .94rem; }
.authority-mark { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--cobre); position: relative; }
.authority-mark::before, .authority-mark::after { content: ""; position: absolute; top: 13px; width: 8px; height: 1px; background: var(--cobre); }
.authority-mark::before { left: 6px; transform: rotate(28deg); }
.authority-mark::after { right: 6px; transform: rotate(-28deg); }
.hero-visual { position: relative; align-self: stretch; display: flex; align-items: flex-end; justify-content: center; min-height: 680px; }
.hero-image-frame { position: relative; z-index: 2; width: min(100%, 590px); margin: auto auto 0; }
.hero-image-frame img { width: 100%; height: auto; filter: drop-shadow(0 30px 28px rgba(30, 26, 23, .15)); }
.trust-grid { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-soft); }
.trust-item { min-height: 82px; display: flex; align-items: center; gap: 12px; padding: 18px 22px; background: rgba(255,255,255,.42); font-size: .91rem; font-weight: 600; }
.trust-item + .trust-item { border-left: 1px solid var(--border); }
.trust-icon { display: inline-grid; place-items: center; flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%; background: var(--oliva); color: #fff; font-size: .78rem; }

.section-heading { max-width: 880px; margin-bottom: 52px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.scene-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.scene-card { position: relative; min-height: 255px; display: flex; align-items: flex-end; padding: 30px; border: 1px solid rgba(30,26,23,.11); border-radius: 22px; background: rgba(243,233,219,.72); box-shadow: var(--shadow-soft); overflow: hidden; }
.scene-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px; border: 1px solid rgba(168,106,61,.2); border-radius: 50%; }
.scene-number { position: absolute; left: 28px; top: 22px; color: var(--cobre); font-family: var(--display); font-size: 2rem; }
.scene-card p { margin: 0; font-size: 1.02rem; }
.editorial-quote { max-width: 910px; margin: 58px auto 0; color: var(--cedro); font-size: clamp(2.1rem, 4vw, 4rem); line-height: 1.08; text-align: center; font-style: italic; }

.split-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 90px; align-items: start; }
.content-column { padding-top: 12px; }
.callout { margin: 28px 0; padding: 24px 26px; border-left: 4px solid var(--cobre); border-radius: 0 18px 18px 0; background: rgba(243,233,219,.7); box-shadow: var(--shadow-soft); }
.callout-argila { background: rgba(183,114,99,.12); }
.cycle { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 16px; margin-top: 70px; }
.cycle-step { min-height: 180px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 28px; border: 1px solid var(--border); border-radius: 22px; background: #f8f0e5; box-shadow: var(--shadow-soft); }
.cycle-step span { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 18px; border-radius: 50%; background: var(--cobre); color: #fff; font-weight: 700; }
.cycle-step strong { font-family: var(--display); font-size: 1.35rem; line-height: 1.18; }
.cycle-step small { margin-top: 8px; color: rgba(33,28,24,.65); }
.cycle-arrow { color: var(--cobre); font-size: 2.1rem; }

.railton-grid { display: grid; grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr); gap: 82px; align-items: center; }
.railton-photo { position: relative; }
.photo-shell { position: relative; z-index: 2; overflow: hidden; border-radius: 180px 180px 24px 24px; box-shadow: var(--shadow); }
.photo-shell img { width: 100%; aspect-ratio: 5 / 6; object-fit: cover; object-position: 50% 20%; }
.brand-watermark { position: absolute; z-index: 1; width: 270px; right: -55px; bottom: -45px; opacity: .16; }
.railton-copy .callout { background: rgba(243,233,219,.82); }
.fine-note { color: rgba(33,28,24,.72); font-size: .92rem; }

.method-list { position: relative; max-width: 980px; margin: 0 auto; }
.method-list::before { content: ""; position: absolute; left: 45px; top: 60px; bottom: 60px; width: 1px; background: linear-gradient(var(--cobre), rgba(168,106,61,.05)); }
.method-card { position: relative; display: grid; grid-template-columns: 92px 1fr; gap: 28px; align-items: center; padding: 30px 32px 30px 0; border-bottom: 1px solid var(--border); }
.method-letter { position: relative; z-index: 2; display: grid; place-items: center; width: 92px; height: 92px; border: 1px solid rgba(168,106,61,.35); border-radius: 50%; background: var(--linho); color: var(--cobre); font-family: var(--display); font-size: 3.7rem; line-height: 1; }
.method-card h3 { margin-bottom: 8px; }
.method-card p { margin: 0; max-width: 780px; }
.bible-card { max-width: 900px; margin: 70px auto 0; padding: 42px 50px; border: 1px solid rgba(85,96,75,.25); border-radius: 28px; background: rgba(85,96,75,.08); text-align: center; }
.bible-symbol { display: block; height: 34px; color: var(--cobre); font-family: var(--display); font-size: 4.5rem; line-height: .8; }
.bible-card blockquote { margin: 12px 0 4px; font-size: clamp(2rem, 3.4vw, 3.6rem); line-height: 1.08; }
.bible-card cite { color: var(--cobre); font-style: normal; font-weight: 700; }
.bible-card p { max-width: 720px; margin: 22px auto 0; }
.center-action { margin-top: 38px; text-align: center; }

.community-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr); gap: 60px; align-items: center; }
.check-list, .dash-list { margin: 0; padding: 0; list-style: none; }
.check-list li, .dash-list li { position: relative; padding-left: 34px; margin-bottom: 14px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 2px; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--cobre); color: white; font-size: .72rem; font-weight: 700; }
.dash-list li::before { content: "—"; position: absolute; left: 0; top: 0; color: var(--argila); font-weight: 700; }
.three-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 32px 0; }
.three-steps div { min-height: 105px; display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 18px; border: 1px solid rgba(85,96,75,.19); border-radius: 16px; background: rgba(243,233,219,.72); }
.three-steps span { color: var(--cobre); font-family: var(--display); font-size: 1.6rem; }
.three-steps strong { font-size: .93rem; line-height: 1.35; }
.community-visual img { width: 115%; max-width: none; margin-left: -6%; filter: drop-shadow(0 28px 28px rgba(30,26,23,.12)); }

.fit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.fit-card { padding: 42px; border-radius: 24px; box-shadow: var(--shadow-soft); }
.fit-yes { background: var(--nevoa); }
.fit-no { border: 1px solid rgba(183,114,99,.25); background: rgba(243,233,219,.68); }
.safety-note { margin-top: 28px; padding: 22px 26px; border: 1px solid rgba(183,114,99,.25); border-radius: 18px; background: rgba(183,114,99,.09); }

.pricing-section { position: relative; padding: 118px 0; background: var(--cedro); color: var(--light); overflow: hidden; }
.pricing-section::before, .pricing-section::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.pricing-section::before { width: 500px; height: 500px; right: -200px; top: -240px; border: 1px solid rgba(168,106,61,.28); }
.pricing-section::after { width: 360px; height: 360px; left: -180px; bottom: -190px; background: rgba(85,96,75,.12); }
.light-heading h2, .pricing-section .eyebrow, .pricing-section h3 { color: var(--light); }
.pricing-section .eyebrow { color: var(--nevoa); }
.pricing-grid { position: relative; z-index: 2; max-width: 920px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.price-card { position: relative; padding: 42px; border: 1px solid rgba(243,233,219,.13); border-radius: 26px; background: rgba(255,255,255,.035); box-shadow: 0 24px 60px rgba(0,0,0,.18); }
.price-featured { border-color: rgba(168,106,61,.85); background: linear-gradient(160deg, rgba(168,106,61,.14), rgba(255,255,255,.04)); }
.price-badge { position: absolute; right: 24px; top: 24px; padding: 8px 13px; border-radius: 999px; background: var(--cobre); color: white; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.price { display: flex; align-items: baseline; gap: 5px; margin: 8px 0 18px; color: var(--light); }
.price span { font-size: 1.2rem; font-weight: 600; }
.price strong { font-family: var(--display); font-size: 5.8rem; line-height: .9; font-weight: 500; }
.price small { color: var(--nevoa); }
.equivalent { color: var(--nevoa); }
.check-light li::before { background: var(--oliva); }
.price-card .check-list { min-height: 150px; margin: 26px 0; }
.pricing-microcopy { position: relative; z-index: 2; margin: 24px 0 0; text-align: center; color: rgba(248,241,231,.68); font-size: .86rem; }

.guarantee-card { display: grid; grid-template-columns: 160px 1fr; gap: 48px; align-items: center; padding: 52px; border: 1px solid rgba(30,26,23,.1); border-radius: 30px; background: var(--nevoa); box-shadow: var(--shadow-soft); }
.guarantee-icon { display: grid; place-items: center; align-content: center; width: 150px; height: 150px; border: 1px solid rgba(168,106,61,.38); border-radius: 50%; color: var(--cobre); }
.guarantee-icon span { font-family: var(--display); font-size: 4.9rem; line-height: .8; }
.guarantee-icon small { font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.learning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.learning-card { min-height: 170px; padding: 28px; border: 1px solid rgba(30,26,23,.1); border-radius: 20px; background: rgba(243,233,219,.75); box-shadow: var(--shadow-soft); }
.learning-card span { display: block; margin-bottom: 24px; color: var(--cobre); font-family: var(--display); font-size: 1.8rem; }
.learning-card p { margin: 0; font-size: 1.02rem; }
.center-note { max-width: 720px; margin: 32px auto 0; text-align: center; color: rgba(33,28,24,.68); font-size: .92rem; }

.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.faq-heading { position: sticky; top: 130px; }
.faq-heading p:last-child { margin-top: 20px; color: rgba(33,28,24,.67); }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { position: relative; padding: 24px 48px 24px 0; cursor: pointer; list-style: none; font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 19px; display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid rgba(168,106,61,.32); border-radius: 50%; color: var(--cobre); font-size: 1.35rem; font-weight: 400; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 50px 24px 0; color: rgba(33,28,24,.72); }

.final-cta { position: relative; overflow: hidden; background: var(--cedro); color: var(--light); }
.final-cta::before { content: ""; position: absolute; left: -20%; bottom: -70%; width: 900px; height: 900px; border: 2px solid rgba(168,106,61,.15); border-radius: 50%; }
.final-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; min-height: 720px; }
.final-copy { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 100px 70px 100px 0; }
.final-copy h2 { color: var(--light); }
.final-copy .eyebrow { color: var(--nevoa); }
.final-highlight { margin: 25px 0; color: var(--cobre); font-family: var(--display); font-size: clamp(1.7rem, 2.8vw, 2.8rem); line-height: 1.15; }
.microcopy-light { margin-top: 12px; color: rgba(248,241,231,.68); }
.ps { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(243,233,219,.14); color: rgba(248,241,231,.72); font-size: .9rem; }
.final-photo { position: relative; overflow: hidden; }
.final-photo::before { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, var(--cedro) 0%, rgba(30,26,23,.1) 45%, transparent 100%); }
.final-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }

.site-footer { padding: 48px 0 28px; background: var(--cedro); color: rgba(248,241,231,.72); border-top: 1px solid rgba(243,233,219,.08); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-brand img { width: 230px; padding: 8px; border-radius: 10px; background: var(--linho); }
.footer-brand p { margin: 10px 0 0; font-family: var(--display); font-style: italic; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--light); }
.footer-bottom { display: grid; grid-template-columns: .4fr 1.6fr; gap: 30px; margin-top: 35px; padding-top: 22px; border-top: 1px solid rgba(243,233,219,.08); font-size: .76rem; }
.footer-bottom p { margin: 0; }

.config-alert { position: fixed; z-index: 9999; right: 20px; bottom: 20px; max-width: 380px; padding: 16px 20px; border-radius: 14px; background: var(--cedro); color: var(--light); box-shadow: 0 20px 50px rgba(0,0,0,.3); font-size: .9rem; }

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

@media (max-width: 1060px) {
  .main-nav { gap: 17px; font-size: .84rem; }
  .hero-grid { grid-template-columns: 1fr .78fr; }
  .hero-visual { min-height: 610px; }
  .scene-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: 1fr; }
  .community-visual { max-width: 820px; margin: 0 auto; }
  .community-visual img { width: 100%; margin: 0; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 80px; }
  .header-inner { min-height: 76px; }
  .brand { width: 180px; }
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .main-nav { position: fixed; z-index: 1001; inset: 76px 0 auto; display: grid; justify-content: stretch; gap: 0; padding: 18px 20px 28px; border-bottom: 1px solid var(--border); background: var(--linho); box-shadow: 0 20px 36px rgba(30,26,23,.12); transform: translateY(-130%); opacity: 0; visibility: hidden; transition: transform .25s ease, opacity .25s ease, visibility .25s ease; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav > a { padding: 14px 8px; }
  .main-nav .btn { margin-top: 10px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero { padding-top: 44px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero-visual { min-height: auto; max-width: 590px; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--border); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--border); }
  .split-grid, .railton-grid, .faq-layout { grid-template-columns: 1fr; gap: 54px; }
  .faq-heading { position: static; }
  .cycle { grid-template-columns: 1fr; }
  .cycle-arrow { transform: rotate(90deg); text-align: center; }
  .railton-photo { max-width: 620px; margin: 0 auto; }
  .pricing-grid { max-width: 620px; grid-template-columns: 1fr; }
  .guarantee-card { grid-template-columns: 1fr; text-align: center; }
  .guarantee-icon { margin: 0 auto; }
  .learning-grid { grid-template-columns: repeat(2, 1fr); }
  .final-grid { grid-template-columns: 1fr; }
  .final-copy { padding: 82px 0 45px; }
  .final-photo { height: 620px; }
  .final-photo::before { background: linear-gradient(180deg, var(--cedro) 0%, transparent 40%); }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 76px 0; }
  .hero { padding-top: 28px; }
  h1 { font-size: clamp(2.65rem, 12vw, 4.2rem); }
  h2 { font-size: clamp(2.15rem, 9vw, 3.3rem); }
  .hero-lead { font-size: 1.14rem; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { margin-top: 16px; }
  .trust-grid, .scene-grid, .fit-grid, .learning-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-left: 0; border-top: 1px solid var(--border); }
  .scene-card { min-height: 220px; }
  .section-heading { margin-bottom: 38px; }
  .editorial-quote { margin-top: 44px; }
  .method-list::before { left: 32px; }
  .method-card { grid-template-columns: 65px 1fr; gap: 18px; padding-right: 0; }
  .method-letter { width: 65px; height: 65px; font-size: 2.6rem; }
  .bible-card { padding: 34px 24px; }
  .three-steps { grid-template-columns: 1fr; }
  .fit-card { padding: 30px 24px; }
  .price-card { padding: 36px 26px; }
  .price strong { font-size: 4.8rem; }
  .guarantee-card { padding: 36px 24px; }
  .faq-item summary { padding-right: 44px; }
  .final-photo { height: 520px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-bottom { grid-template-columns: 1fr; }
}

/* Hero — caber na primeira dobra (100vh) sem cortar elementos */
@media (min-width: 901px) {
  .header-inner { min-height: 60px; }
  .brand { width: 160px; }
  .hero { padding: 1.4vh 0 1.4vh; }
  .hero-copy { padding: 0; }
  .eyebrow { margin-bottom: .8vh; font-size: .7rem; }
  .hero h1 { font-size: clamp(1.8rem, 3.9vh, 3.05rem); line-height: 1.05; }
  .hero-lead { margin: 1.2vh 0 .8vh; font-size: clamp(.9rem, 1.9vh, 1.08rem); line-height: 1.3; }
  .hero-copy > p:not(.eyebrow):not(.hero-lead):not(.microcopy) { margin-bottom: 1vh; font-size: .88rem; }
  .hero-actions { margin: 1.2vh 0 .9vh; gap: 6px; }
  .hero-actions .btn { min-height: 44px; padding: 0 20px; font-size: .9rem; }
  .microcopy { font-size: .72rem; }
  .authority-line { padding-top: .9vh; max-width: 600px; }
  .authority-line p { font-size: .8rem; }
  .authority-mark { width: 24px; height: 24px; }
  .hero-visual { min-height: 0; }
  .hero-image-frame { width: min(70%, 36vh, 340px); }
}

/* Hero mobile — remove header e foto, garante o botao na primeira dobra */
@media (max-width: 900px) {
  .site-header { display: none; }
  .hero-visual { display: none; }
  .hero { padding: 3vh 0 3vh; }
  .eyebrow { margin-bottom: 1.2vh; }
  .hero h1 { font-size: clamp(1.6rem, 6.6vh, 2.3rem); line-height: 1.08; }
  .hero-lead { margin: 1.4vh 0 .9vh; font-size: clamp(.92rem, 2.6vh, 1.08rem); line-height: 1.32; }
  .hero-copy > p:not(.eyebrow):not(.hero-lead):not(.microcopy) { margin-bottom: 1.2vh; font-size: .9rem; }
  .hero-actions { margin: 1.4vh 0 .9vh; }
  .hero-actions .btn { min-height: 48px; }
}

@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; }
}
