:root {
  --bg: oklch(0.115 0.012 160);
  --surface: oklch(0.155 0.015 160);
  --surface-2: oklch(0.19 0.018 160);
  --line: oklch(0.27 0.022 160);
  --line-soft: oklch(0.215 0.018 160);
  --text: oklch(0.965 0.008 160);
  --muted: oklch(0.73 0.018 160);
  --dim: oklch(0.56 0.018 160);
  --accent: oklch(0.82 0.17 160);
  --accent-soft: oklch(0.9 0.09 160);
  --danger: oklch(0.68 0.22 25);
  --sans: "Red Hat Display", system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;
  --serif: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --side: 20px;
  --radius: 12px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 180px;
  pointer-events: none;
  background: radial-gradient(70% 120% at 50% 0%, oklch(0.5 0.09 160 / .12), transparent 72%);
  z-index: -1;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
p, h1, h2, h3, figure, ul { margin: 0; }
ul { padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.shell {
  width: min(100% - (var(--side) * 2), 1120px);
  margin-inline: auto;
}

.narrow { max-width: 760px; }

.section {
  padding-block: clamp(64px, 17vw, 92px);
  border-top: 1px solid var(--line-soft);
}

.section-heading { margin-bottom: 34px; }
.section-heading.compact { margin-bottom: 24px; }
.section-index {
  margin-bottom: 14px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
}

h1, h2, h3 { text-wrap: balance; }
h1 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 4.2rem, 5vw);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .98;
}
h1 em {
  color: var(--accent-soft);
  font-family: var(--serif);
  font-weight: 400;
  padding-inline: .08em;
  background: linear-gradient(transparent 58%, oklch(0.68 0.15 158 / .34) 58%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
h2 {
  max-width: 15ch;
  font-size: clamp(1.94rem, 3rem, 5vw);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.04;
}
h3 { font-size: 21px; line-height: 1.2; }

.section-heading > p:last-child {
  max-width: 50ch;
  margin-top: 18px;
  color: var(--muted);
}

.button {
  --mag-x: 0px;
  --mag-y: 0px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  transform: translate3d(var(--mag-x), var(--mag-y), 0);
  transition: background-color .24s var(--ease), color .24s var(--ease), border-color .24s var(--ease), box-shadow .3s var(--ease), transform .24s var(--ease);
}
.button-primary { background: var(--accent); color: oklch(0.14 0.03 160); }
.button-primary::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -35% auto -35% -45%;
  width: 26%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, oklch(0.98 0.02 160 / .7), transparent);
  transform: skewX(-18deg) translateX(0);
  animation: cta-sweep 4.8s var(--ease) infinite;
}
.button-primary:hover {
  background: var(--accent-soft);
  box-shadow: 0 18px 42px oklch(0.68 0.15 158 / .32);
  transform: translate3d(var(--mag-x), calc(var(--mag-y) - 2px), 0) scale(1.015);
}
.button-primary:active { transform: translate3d(var(--mag-x), var(--mag-y), 0) scale(.98); }
@keyframes cta-sweep {
  0%, 72% { transform: skewX(-18deg) translateX(0); opacity: 0; }
  76% { opacity: 1; }
  92%, 100% { transform: skewX(-18deg) translateX(650%); opacity: 0; }
}
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 5px;
}

/* Hero */
.hero { overflow: hidden; }
.hero-layout {
  position: relative;
  display: flex;
  width: 100%;
  min-height: max(48rem, 100svh);
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-layout::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(2, 7, 5, .02) 14%, rgba(2, 7, 5, .1) 36%, rgba(2, 7, 5, .78) 64%, var(--bg) 100%),
    linear-gradient(to right, rgba(2, 7, 5, .16), transparent 62%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 760px);
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  padding: clamp(2rem, 12svh, 14rem) clamp(20px, 4vw, 32px) 1.5rem;
  text-align: center;
  overflow: hidden;
}
.hero-badges { display: flex; justify-content: center; gap: 7px; margin-bottom: 16px; }
.hero-badges span,
.apply-badge {
  padding: 7px 9px;
  border: 1px solid oklch(0.76 0.16 158 / .5);
  border-radius: 5px;
  background: oklch(0.18 0.035 158 / .76);
  color: var(--accent-soft);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kicker {
  margin-bottom: 28px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.kicker span { margin-left: 8px; color: var(--accent); }
.hero-lead {
  max-width: 40ch;
  margin-top: 24px;
  color: rgba(242, 246, 243, .8);
  font-size: 15px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 20px;
  margin-top: 28px;
}
.hero-actions .button { min-width: 190px; }
.hero-actions .button-primary {
  width: min(100%, 350px);
  min-height: 58px;
  border-radius: 10px;
  box-shadow: 0 14px 38px oklch(0.68 0.15 158 / .22);
  text-transform: uppercase;
}
.hero-actions .button-primary span,
.apply-box .button-primary span { margin-left: 9px; font-size: 18px; }

.countdown {
  width: min(100%, 430px);
  max-width: 100%;
  margin-top: 26px;
  padding: 15px 14px 13px;
  border: 1px solid oklch(0.62 0.12 158 / .42);
  border-radius: 12px;
  background: oklch(0.1 0.018 160 / .84);
  box-shadow: inset 0 0 24px oklch(0.5 0.11 158 / .08), 0 16px 50px rgba(0, 0, 0, .3);
  backdrop-filter: blur(10px);
  text-align: center;
  overflow: hidden;
}
.countdown-alert {
  display: block;
  color: var(--accent-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.countdown-label {
  margin: 7px 0 12px;
  color: var(--dim);
  font-size: 12px;
}
.countdown-values {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(6px, 1.6vw, 10px);
  flex-wrap: wrap;
}
.countdown-values span { min-width: clamp(42px, 8vw, 48px); }
.countdown-values strong {
  display: block;
  font-family: var(--mono);
  font-size: clamp(20px, 4.3vw, 24px);
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-values small {
  display: block;
  margin-top: 6px;
  color: var(--dim);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.countdown-values i { color: var(--dim); font-family: var(--mono); font-size: 20px; font-style: normal; line-height: 1; }
.countdown-over { color: var(--accent); font-weight: 700; }

.hero-media {
  --hero-parallax: 0px;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--surface);
}
.hero-media picture,
.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-media picture {
  position: absolute;
  inset: 0;
}
.hero-media img {
  object-fit: cover;
  object-position: 53% 50%;
  transform: none;
  will-change: auto;
}
/* Enquanto o print real não for adicionado, o slot mostra uma
   moldura com o nome do arquivo. Ao soltar a imagem, ela substitui
   a moldura automaticamente. */
.media-slot.is-missing {
  display: grid; place-items: center; min-height: 130px;
  border: 1px dashed oklch(0.5 0.05 158 / .55); border-radius: 12px;
  background: repeating-linear-gradient(135deg, transparent 0 9px, oklch(0.3 0.03 158 / .16) 9px 18px);
}
.media-slot.is-missing > picture,
.media-slot.is-missing > img { display: none; }
.media-slot.is-missing::after {
  content: attr(data-label);
  padding: 16px; text-align: center; line-height: 1.7;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: oklch(0.72 0.03 158);
}
.media-slot.is-missing:not([data-label])::after { content: "Imagem a adicionar"; }

.quick-proof { overflow: hidden; margin-top: 0; border-top: 1px solid oklch(0.62 0.12 158 / .34); border-bottom: 1px solid oklch(0.62 0.12 158 / .34); background: var(--accent); }
.quick-proof-track {
  display: flex;
  width: max-content;
  overflow: visible;
}
.quick-proof-group {
  display: flex;
  flex: none;
  align-items: center;
  animation: proof-marquee 18s linear infinite;
}
.quick-proof-track span {
  display: flex;
  flex: none;
  align-items: center;
  padding: 14px 26px;
  color: oklch(0.12 0.025 160);
  font-size: 12px;
  white-space: nowrap;
}
.quick-proof-track span::before { content: "✓"; margin-right: 9px; font-weight: 900; }
.quick-proof-track b { font-weight: 800; }
@keyframes proof-marquee { to { transform: translateX(-100%); } }

/* Conteúdo */
.desire { text-align: center; background: radial-gradient(circle at 50% 0%, oklch(0.28 0.055 158 / .2), transparent 46%), var(--bg); }
.desire .section-heading { display: grid; justify-items: center; }
.result-signal { display: grid; gap: 5px; width: min(100%, 430px); margin-inline: auto; padding: 18px; border: 1px solid oklch(0.65 0.14 158 / .44); border-radius: 14px; background: var(--surface); }
.result-signal strong { color: var(--accent-soft); font-family: var(--mono); font-size: 28px; line-height: 1; }
.result-signal span { color: var(--muted); font-size: 14px; }

.bonus { background: oklch(0.095 0.014 160); }
.bonus-card { position: relative; overflow: hidden; padding: 26px 20px; border: 1px solid oklch(0.68 0.15 158 / .58); border-radius: 18px; background: radial-gradient(circle at 100% 0%, oklch(0.48 0.11 158 / .24), transparent 42%), var(--surface); box-shadow: 0 24px 70px rgba(0, 0, 0, .3); }
.bonus-label { display: inline-flex; margin-bottom: 18px; padding: 6px 8px; border-radius: 5px; background: var(--accent); color: oklch(0.12 0.025 160); font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.bonus-card > p:not(.bonus-label) { margin-top: 16px; color: var(--muted); }
.bonus-card ul { display: grid; gap: 10px; margin-top: 20px; }
.bonus-card li { position: relative; padding-left: 20px; color: var(--text); font-size: 14px; }
.bonus-card li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

.offer { background: linear-gradient(180deg, var(--bg), oklch(0.135 0.018 160)); }
.offer-list { display: grid; gap: 9px; border: 0; }
.offer-item { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.offer-button {
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 16px;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
}
.offer-button span { font-size: 19px; font-weight: 650; letter-spacing: -.015em; }
.offer-button i { position: relative; width: 18px; height: 18px; flex: 0 0 18px; }
.offer-button i::before, .offer-button i::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 1px;
  background: var(--muted);
  transform: translate(-50%, -50%);
  transition: transform .24s var(--ease);
}
.offer-button i::after { transform: translate(-50%, -50%) rotate(90deg); }
.offer-item.is-open .offer-button i::after { transform: translate(-50%, -50%) rotate(0); }
.offer-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s var(--ease); }
.offer-panel > div { min-height: 0; overflow: hidden; }
.offer-item.is-open .offer-panel { grid-template-rows: 1fr; }
.offer-panel ul { padding: 0 16px 22px; }
.offer-panel li {
  position: relative;
  padding: 7px 0 7px 18px;
  color: var(--muted);
  font-size: 15px;
}
.offer-panel li::before { content: ""; position: absolute; left: 0; top: 18px; width: 5px; height: 1px; background: var(--accent); }

/* Origem */
.origin { overflow: hidden; }
.origin-track {
  display: flex;
  width: calc(100% + var(--side));
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-right: var(--side);
  padding-bottom: 8px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0 var(--side);
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.origin-track.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.origin-track::-webkit-scrollbar { display: none; }
.origin-track:focus-visible { outline-offset: -2px; }
.origin-card {
  position: relative;
  flex: 0 0 82vw;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: var(--surface);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.origin-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(to top, oklch(0.08 0.012 160 / .94), transparent);
}
.origin-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .45s var(--ease); }
.origin-card figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.carousel-controls {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 14px;
}
.carousel-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  font-size: 19px;
  transition: color .22s var(--ease), background-color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}
.carousel-controls button:hover { border-color: var(--accent); background: var(--accent); color: oklch(0.14 0.03 160); transform: translateY(-2px); }
.carousel-controls button:active { transform: scale(.94); }
.carousel-controls button:disabled { opacity: .32; cursor: default; transform: none; }
.carousel-controls span { min-width: 42px; color: var(--muted); font-family: var(--mono); font-size: 11px; text-align: center; }

/* Prints */
.proof { overflow: hidden; }
.proof-track {
  display: flex;
  width: calc(100% + var(--side));
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  padding-right: var(--side);
  padding-bottom: 8px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  /* prioriza os feedbacks fortes no começo: o fim vai esmaecendo */
  -webkit-mask-image: linear-gradient(to right, #000 78%, transparent);
          mask-image: linear-gradient(to right, #000 78%, transparent);
}
.proof-track::-webkit-scrollbar { display: none; }
.proof-shot {
  flex: 0 0 min(78vw, 330px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  scroll-snap-align: center;
}
.proof-shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), filter .45s var(--ease); }
.swipe-hint { margin-top: 12px; color: var(--dim); font-size: 12px; }

/* Mentor */
.mentor { background: oklch(0.1 0.012 160); }
.mentor-layout { display: grid; gap: 30px; }
.mentor-gallery { margin-top: 14px; }
.mentor-copy { max-width: 48ch; }
.mentor-copy p { color: var(--muted); }
.mentor-copy p + p { margin-top: 18px; }
.mentor-copy .text-link { margin-top: 18px; }

/* Entregas */
.included { background: linear-gradient(180deg, oklch(0.135 0.018 160), var(--bg)); }
.included-list { display: grid; gap: 9px; border: 0; }
.included-list li {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}
.included-list p { display: grid; gap: 4px; font-size: 16px; line-height: 1.3; }
.included-list strong { font-weight: 700; }
.included-list small { color: var(--muted); font-size: 13px; font-weight: 400; line-height: 1.4; }

/* Por dentro da operação */
.operation {
  position: relative;
  border-top: 1px solid oklch(0.62 0.12 158 / .3);
  border-bottom: 1px solid oklch(0.62 0.12 158 / .3);
  background:
    radial-gradient(130% 78% at 50% 0%, oklch(0.46 0.11 158 / .28), transparent 58%),
    radial-gradient(120% 62% at 50% 100%, oklch(0.42 0.1 158 / .16), transparent 55%),
    oklch(0.135 0.018 160);
}
.operation-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px; }
.operation-list li {
  display: flex; gap: 14px; align-items: baseline;
  padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
}
.operation-list .op-n { flex: none; font-family: var(--mono); font-size: 12px; color: var(--accent); line-height: 1.5; }
.operation-list p { display: grid; gap: 3px; }
.operation-list strong { font-weight: 700; font-size: 16px; line-height: 1.3; }
.operation-list small { color: var(--muted); font-size: 13px; line-height: 1.45; }
.operation-more { margin-top: 16px; color: var(--accent-soft); font-weight: 600; font-size: 15px; }

/* Aplicação */
.apply { text-align: center; }
.apply-box { display: flex; flex-direction: column; align-items: center; padding: 34px 18px; border: 1px solid oklch(0.64 0.13 158 / .4); border-radius: 20px; background: radial-gradient(circle at 50% 0%, oklch(0.32 0.07 158 / .32), transparent 48%), var(--surface); box-shadow: 0 30px 70px rgba(0, 0, 0, .28); }
.apply-badge { margin-bottom: 18px; border-color: transparent; }
.apply-box h2 { max-width: 13ch; text-wrap: balance; }
.apply-box > p:not(.section-index) { max-width: 46ch; margin-top: 18px; color: var(--muted); }
.apply-box .button { width: 100%; max-width: 360px; min-height: 58px; margin-top: 28px; border-radius: 10px; text-transform: uppercase; }
.apply-box small { margin-top: 12px; color: var(--dim); }

/* FAQ */
.faq details { margin-top: 8px; padding-inline: 15px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--dim); font-size: 20px; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 0 22px; color: var(--muted); font-size: 15px; }

footer { padding: 16px 0 calc(64px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line-soft); color: var(--dim); }
.footer-compact { display: grid; gap: 5px; font-size: 11px; line-height: 1.45; }
.footer-compact p:first-child { color: var(--muted); font-weight: 650; }

.mobile-dock {
  position: fixed;
  z-index: 50;
  left: 16px; right: 16px;
  bottom: max(10px, env(safe-area-inset-bottom));
  display: block;
  transition: transform .35s var(--ease), opacity .25s ease;
}
body:not(.past-hero) .mobile-dock { transform: translateY(130%); opacity: 0; pointer-events: none; }
.mobile-dock .button {
  width: 100%;
  min-height: 56px;
  padding-inline: 24px;
  box-shadow: 0 12px 34px var(--accent-glow);
}

@media (hover: hover) and (pointer: fine) {
  .result-signal,
  .bonus-card,
  .offer-item,
  .origin-card,
  .proof-shot,
  .included-list li,
  .faq details {
    transition: transform .38s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .38s var(--ease);
  }
  .result-signal:hover,
  .bonus-card:hover,
  .origin-card:hover,
  .proof-shot:hover,
  .included-list li:hover {
    transform: translate3d(0, -4px, 0);
    border-color: oklch(0.68 0.15 158 / .58);
    box-shadow: 0 20px 48px oklch(0.04 0.01 160 / .42);
  }
  .origin-card:hover img,
  .proof-shot:hover img { transform: scale(1.035); filter: saturate(1.06) contrast(1.03); }
  .offer-item:hover,
  .faq details:hover { transform: translate3d(4px, 0, 0); border-color: oklch(0.68 0.15 158 / .48); }
  .offer-button span { transition: color .24s var(--ease), transform .3s var(--ease); }
  .offer-item:hover .offer-button span { color: var(--accent-soft); transform: translateX(3px); }
  .text-link { transition: color .24s var(--ease), text-decoration-color .24s var(--ease), transform .24s var(--ease); }
  .text-link:hover { color: var(--text); text-decoration-color: var(--accent); transform: translateX(3px); }
}

@keyframes hero-rise {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
.reveal-ready .hero-copy.is-visible > h1,
.reveal-ready .hero-copy.is-visible > .hero-lead,
.reveal-ready .hero-copy.is-visible > .hero-actions,
.reveal-ready .hero-copy.is-visible > .countdown {
  animation: hero-rise .72s var(--ease) both;
}
.reveal-ready .hero-copy.is-visible > .hero-lead { animation-delay: .08s; }
.reveal-ready .hero-copy.is-visible > .hero-actions { animation-delay: .16s; }
.reveal-ready .hero-copy.is-visible > .countdown { animation-delay: .24s; }

/* Reveal progressivo: sem esta classe do JavaScript, o conteúdo permanece visível. */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .7s var(--ease);
}
.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[hidden] { display: none !important; }

@media (min-width: 700px) {
  :root { --side: 32px; }
  .hero-copy {
    width: min(100%, 760px);
    max-width: 100%;
    align-items: flex-start;
    padding: 240px clamp(24px, 4vw, 32px) 56px clamp(24px, 4vw, 32px);
    text-align: left;
  }
  .hero-actions { justify-content: flex-start; }
  .countdown { text-align: left; }
  .countdown-values { justify-content: flex-start; }
  .quick-proof-track span { flex: none; }
  .origin-card { flex-basis: min(48vw, 360px); }
  .proof-shot { flex-basis: 320px; }
  .mentor-layout { grid-template-columns: 1fr 1fr; align-items: start; }
}

@media (min-width: 920px) {
  .hero-layout { min-height: clamp(660px, 52vw, 820px); }
  .hero-copy { max-width: 720px; padding-bottom: 72px; }
  .hero-media { position: absolute; inset: 0; aspect-ratio: auto; }
  .hero-media img { top: -16px; height: calc(100% + 32px); transform: translate3d(0, var(--hero-parallax), 0); will-change: transform; }
  .hero-layout::after {
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(3, 8, 6, .05) 20%, rgba(3, 8, 6, .14) 52%, rgba(3, 8, 6, .92) 100%),
      linear-gradient(to right, rgba(3, 8, 6, .82), rgba(3, 8, 6, .16) 62%, transparent 85%);
  }
  .section { padding-block: 96px; }
  .bonus-card { padding: 38px; }
  .origin-track {
    display: grid;
    width: min(100%, 960px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
    margin-inline: auto;
    padding: 0;
  }
  .origin-card { width: 100%; }
  .mentor-gallery { grid-column: 1 / -1; margin-top: 30px; }
  .carousel-controls { display: none; }
  /* no desktop os prints viram grade de 3 colunas, igual à galeria do mentor:
     todas as fotos aparecem de uma vez, sem scroll horizontal */
  .proof-track {
    display: grid;
    width: min(100%, 960px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
    margin-inline: auto;
    padding: 0;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .proof-shot { width: 100%; flex: none; }
  .swipe-hint { display: none; }
  .mobile-dock { display: none; }
  footer { padding: 22px 0; }
}

@media (min-width: 1080px) {
  :root { --side: 48px; }

  .shell { width: min(calc(100% - 96px), 1180px); }
  .narrow { max-width: none; }
  .section { padding-block: clamp(96px, 8vw, 124px); }
  h2 { max-width: 16ch; font-size: clamp(44px, 3.7vw, 58px); }
  .section-heading > p:last-child { max-width: 54ch; font-size: 17px; line-height: 1.62; }

  .hero-layout {
    min-height: clamp(620px, 84vh, 880px);
    height: auto;
  }
  .hero-copy {
    width: min(100%, 760px);
    max-width: 100%;
    padding: 104px clamp(24px, 4vw, 48px) 52px clamp(24px, 4vw, 48px);
  }
  .hero-copy h1 { max-width: 11.5ch; font-size: clamp(68px, 5.5vw, 84px); }
  .hero-lead { max-width: 44ch; margin-top: 26px; font-size: 17px; }
  .hero-actions { margin-top: 30px; }
  .hero-actions .button-primary { width: 360px; }
  .countdown { max-width: 520px; margin-top: 28px; padding: 17px 18px 15px; }
  .countdown-values { gap: 14px; }
  .countdown-values span { min-width: 56px; }
  .hero-media img { object-position: 52% 50%; }

  .desire { text-align: left; }
  .desire .narrow {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    align-items: center;
    gap: clamp(72px, 8vw, 128px);
  }
  .desire .section-heading { justify-items: start; margin-bottom: 0; }
  .desire .section-heading h2 { max-width: 12ch; }
  .result-signal { width: 100%; margin: 0; padding: 30px; text-align: left; }
  .result-signal strong { font-size: 42px; }
  .result-signal span { max-width: 34ch; font-size: 16px; }

  .mentor-layout {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    column-gap: clamp(72px, 8vw, 118px);
    row-gap: 58px;
  }
  .mentor-layout .section-heading { margin-bottom: 0; }
  .mentor-layout .section-heading h2 { max-width: 11ch; }
  .mentor-copy { max-width: 52ch; padding-top: 8px; font-size: 17px; line-height: 1.68; }
  .mentor-gallery { width: 100%; max-width: none; gap: 22px; margin-top: 10px; }
  .origin-card { aspect-ratio: 4 / 5; }

  .bonus .narrow { width: min(calc(100% - 96px), 1180px); }
  .bonus-card {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    grid-template-rows: auto 1fr auto;
    column-gap: clamp(72px, 8vw, 120px);
    padding: 58px 64px;
  }
  .bonus-label { grid-column: 1; grid-row: 1; justify-self: start; }
  .bonus-card h2 { grid-column: 1; grid-row: 2 / span 2; max-width: 11ch; }
  .bonus-card > p:not(.bonus-label) { grid-column: 2; grid-row: 1 / span 2; align-self: end; margin-top: 0; font-size: 17px; line-height: 1.62; }
  .bonus-card ul { grid-column: 2; grid-row: 3; margin-top: 26px; }
  .bonus-card li { font-size: 15px; }

  .offer .narrow,
  .included .narrow,
  .operation .narrow {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(72px, 8vw, 120px);
  }
  .offer .section-heading,
  .included .section-heading,
  .operation .section-heading { margin-bottom: 0; }
  .offer .section-heading h2,
  .included .section-heading h2,
  .operation .section-heading h2 { max-width: 12ch; }
  .operation-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .operation-more { grid-column: 2; margin-top: 18px; }
  .offer-list { gap: 12px; }
  .offer-button { min-height: 82px; padding-inline: 22px; }
  .offer-panel ul { padding: 0 22px 26px; }

  .included-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .included-list li { min-height: 118px; padding: 22px; }
  .included-list li:first-child { grid-column: 1 / -1; min-height: 132px; }
  .included-list p { gap: 8px; font-size: 18px; }
  .included-list small { max-width: 38ch; font-size: 14px; }

  .proof .shell { width: min(calc(100% - 96px), 1180px); }
  .proof .section-heading { margin-bottom: 38px; }
  .proof .section-heading h2 { max-width: 12ch; }
  .proof-track { gap: 18px; }

  .apply-box {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    grid-template-rows: auto auto auto;
    align-items: start;
    column-gap: clamp(72px, 8vw, 120px);
    padding: 64px;
    text-align: left;
  }
  .apply-box > p.apply-badge { grid-column: 1; grid-row: 1; justify-self: start; margin: 0 0 22px; color: var(--accent-soft); }
  .apply-box h2 { grid-column: 1; grid-row: 2 / span 2; max-width: 17ch; }
  .apply-box > p:not(.apply-badge) { grid-column: 2; grid-row: 1; margin-top: 0; font-size: 17px; line-height: 1.62; }
  .apply-box .button { grid-column: 2; grid-row: 2; width: 100%; max-width: none; margin-top: 28px; }
  .apply-box small { grid-column: 2; grid-row: 3; margin-top: 14px; }

  .faq .narrow {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    align-items: start;
    column-gap: clamp(72px, 8vw, 120px);
  }
  .faq .section-heading { grid-column: 1; grid-row: 1 / span 5; margin-bottom: 0; }
  .faq .section-heading h2 { max-width: 8ch; }
  .faq details { grid-column: 2; margin-top: 10px; padding-inline: 22px; }
  .faq details:first-of-type { margin-top: 0; }
  .faq summary { min-height: 74px; font-size: 17px; }

  .footer-compact { grid-template-columns: 1fr auto; align-items: center; gap: 28px; }
  .footer-compact p:last-child { text-align: right; }
}

@media (max-width: 359px) {
  :root { --side: 16px; }
  h1 { font-size: 36px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .countdown-values { gap: 5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
  .quick-proof-group { animation: none; }
  .quick-proof-group[aria-hidden="true"] { display: none; }
  .button-primary::before { animation: none; }
  .reveal-ready .hero-copy.is-visible > * { animation: none; }
  .hero-media img {
    top: 0;
    height: 100%;
    transform: none;
    will-change: auto;
  }
}
