:root {
  --ink: #17221f;
  --muted: #59665f;
  --ivory: #f6f0e5;
  --ivory-deep: #eee4d4;
  --paper: #fbf7ef;
  --sage: #dfe6dc;
  --sage-deep: #cbd8cc;
  --forest: #0b2822;
  --forest-mid: #12382f;
  --forest-light: #1e4b3e;
  --night: #061613;
  --gold: #d7b765;
  --gold-light: #f0d995;
  --gold-dark: #a67c2c;
  --turquoise: #2f9f95;
  --coral: #cf6f58;
  --line: rgba(25, 53, 44, 0.16);
  --line-light: rgba(234, 211, 151, 0.25);
  --shadow: 0 24px 70px rgba(18, 42, 34, 0.13);
  --shadow-deep: 0 34px 90px rgba(0, 0, 0, 0.34);
  --shadow-editorial:
    0 1px 0 rgba(255, 255, 255, 0.72) inset,
    0 18px 40px rgba(18, 42, 34, 0.1),
    0 48px 110px rgba(18, 42, 34, 0.08);
  --radius: 22px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 20%, rgba(215, 183, 101, 0.05), transparent 22%),
    var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--night);
  background: var(--gold-light);
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  text-wrap: balance;
}

h1,
h2,
h3,
p,
li,
summary {
  overflow-wrap: break-word;
}

h1 em,
h2 em {
  color: var(--gold);
  font-weight: 500;
}

section,
footer {
  position: relative;
}

main > section {
  isolation: isolate;
}

main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body,
  main {
    overflow-x: clip;
  }
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--night);
  background: var(--gold-light);
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  width: min(calc(100% - 48px), var(--max));
  min-height: 84px;
  transform: translateX(-50%);
  grid-template-columns: auto 1fr auto;
  gap: 42px;
  align-items: center;
  border-bottom: 1px solid rgba(236, 217, 165, 0.18);
  color: #f8f2e7;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(215, 183, 101, 0.68);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 13px;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
}

.desktop-nav a {
  color: rgba(248, 242, 231, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--gold-light);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 183, 101, 0.66);
  border-radius: 999px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.header-cta:hover {
  color: var(--night);
  background: var(--gold-light);
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 880px;
  overflow: hidden;
  color: #f8f3e9;
  background:
    radial-gradient(circle at 76% 42%, rgba(223, 188, 103, 0.26), transparent 29%),
    radial-gradient(circle at 22% 16%, rgba(65, 143, 121, 0.2), transparent 31%),
    linear-gradient(118deg, rgba(3, 18, 15, 0.99), rgba(7, 32, 27, 0.91) 52%, rgba(4, 24, 20, 0.98)),
    url("./hero-opcao-c-fundo.webp") center / cover no-repeat;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.42;
  background:
    repeating-linear-gradient(
      118deg,
      transparent 0 34px,
      rgba(236, 217, 165, 0.035) 35px,
      transparent 36px 70px
    );
  mix-blend-mode: screen;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 190px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent, rgba(3, 17, 14, 0.7)),
    radial-gradient(ellipse at 50% 115%, rgba(215, 183, 101, 0.14), transparent 54%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 48px), var(--max));
  min-height: 880px;
  margin: 0 auto;
  padding: 152px 0 90px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__copy::before {
  position: absolute;
  top: -46px;
  left: 0;
  width: 86px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--forest-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--gold-light);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(58px, 6.2vw, 88px);
  letter-spacing: -0.035em;
  text-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
}

.hero__lead {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(248, 243, 233, 0.76);
  font-size: 17px;
  line-height: 1.75;
}

.hero__lead strong {
  color: #fffaf0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 24px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  gap: 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  border-color: #f1dda1;
  color: #10241e;
  background: linear-gradient(145deg, #f6e5af, #d9bb68 55%, #b88c34);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.7),
    0 14px 30px rgba(0, 0, 0, 0.28);
}

.button--gold:hover {
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.8),
    0 18px 38px rgba(0, 0, 0, 0.34);
}

.button--outline-light {
  border-color: rgba(232, 210, 151, 0.56);
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.025);
}

.button--outline-light:hover {
  background: rgba(232, 210, 151, 0.1);
}

.button--full {
  width: 100%;
}

.evidence-link {
  display: inline-flex;
  min-height: 42px;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(238, 218, 160, 0.36);
  color: rgba(248, 243, 233, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.evidence-link span {
  color: var(--gold);
  font-size: 19px;
}

.hero__visual {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.hero__visual::before,
.hero__visual::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(215, 183, 101, 0.19);
  border-radius: 50%;
}

.hero__visual::before {
  width: 106%;
  aspect-ratio: 1;
  box-shadow:
    0 0 0 34px rgba(215, 183, 101, 0.025),
    0 0 0 68px rgba(215, 183, 101, 0.018);
}

.hero__visual::after {
  width: 78%;
  aspect-ratio: 1;
  border-style: dashed;
  opacity: 0.42;
}

.hero__halo {
  position: absolute;
  width: 92%;
  aspect-ratio: 1;
  border: 1px solid rgba(215, 183, 101, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 44%, rgba(244, 215, 137, 0.23), transparent 38%),
    radial-gradient(circle, rgba(215, 183, 101, 0.16), transparent 68%);
  filter: blur(0.2px);
}

.hero__visual img {
  position: relative;
  z-index: 2;
  width: min(610px, 110%);
  transform: translateY(10px) rotate(-0.8deg);
  filter:
    drop-shadow(0 42px 38px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 32px rgba(217, 183, 101, 0.1));
}

.hero__edition {
  position: absolute;
  z-index: 4;
  top: 9%;
  right: 0;
  display: grid;
  width: 112px;
  height: 112px;
  place-content: center;
  border: 1px solid rgba(240, 217, 149, 0.5);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(4, 23, 19, 0.74);
  box-shadow:
    inset 0 0 0 6px rgba(240, 217, 149, 0.045),
    0 18px 48px rgba(0, 0, 0, 0.24);
  text-align: center;
  backdrop-filter: blur(10px);
}

.hero__edition strong,
.hero__edition span {
  display: block;
}

.hero__edition strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero__edition span {
  margin-top: 2px;
  color: rgba(248, 243, 233, 0.55);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero__visual-caption {
  position: absolute;
  z-index: 4;
  right: 2%;
  bottom: 1%;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(240, 217, 149, 0.34);
  color: rgba(248, 243, 233, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-strip {
  z-index: 3;
  display: grid;
  min-height: 92px;
  color: #eee5d5;
  background: var(--night);
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(215, 183, 101, 0.18);
  border-bottom: 1px solid rgba(215, 183, 101, 0.14);
}

.trust-strip > div {
  display: flex;
  min-width: 0;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(215, 183, 101, 0.14);
}

.trust-strip > div:last-child {
  border-right: 0;
}

.trust-strip span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(215, 183, 101, 0.44);
  border-radius: 50%;
  color: var(--gold);
  font-size: 13px;
}

.trust-strip strong {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 142px max(24px, calc((100% - var(--max)) / 2)) 124px;
}

.section-folio {
  position: absolute;
  z-index: 4;
  top: 42px;
  left: max(24px, calc((100% - var(--max)) / 2));
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--forest);
  pointer-events: none;
}

.section-folio span {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.section-folio i {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), transparent);
}

.section-folio small {
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-folio--light {
  color: rgba(248, 242, 231, 0.58);
}

.section-folio--light span {
  color: var(--gold-light);
}

.section-folio--light i {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

/*
 * Keep the editorial folio outside the content flow. Section-specific rules
 * below set direct children to `position: relative`; without this explicit
 * override, the folio falls into the heading and overlaps its eyebrow.
 */
.section > .section-folio,
.product > .section-folio,
.offer > .section-folio {
  position: absolute;
}

.reveal-enabled [data-reveal] {
  translate: 0 26px;
  opacity: 0;
  transition:
    translate 760ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-enabled [data-reveal].is-inview {
  translate: none;
  opacity: 1;
}

.method-grid article:nth-child(2),
.proof-grid figure:nth-child(2),
.objections__grid article:nth-child(2) {
  --reveal-delay: 90ms;
}

.method-grid article:nth-child(3),
.proof-grid figure:nth-child(3) {
  --reveal-delay: 180ms;
}

.method-grid article:nth-child(4) {
  --reveal-delay: 270ms;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 54px;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 22px;
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.section-heading,
.hero__copy,
.product__copy,
.author__copy,
.offer__copy,
.price-card,
.cycle-flow li,
.method-grid article,
.objections__grid article {
  min-width: 0;
}

.section-heading > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.section-heading--center > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.cycle {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(171, 126, 53, 0.13), transparent 25%),
    radial-gradient(circle at 88% 78%, rgba(47, 159, 149, 0.09), transparent 27%),
    linear-gradient(180deg, #fffaf2, var(--ivory));
}

.cycle::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.42;
  background: repeating-linear-gradient(
    120deg,
    transparent 0 42px,
    rgba(91, 70, 43, 0.025) 43px,
    transparent 44px 86px
  );
}

.cycle::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.075;
  background: url("./hero-opcao-c-fundo.webp") center / cover no-repeat;
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 34%, #000);
  mask-image: linear-gradient(90deg, transparent, #000 34%, #000);
}

.cycle > * {
  position: relative;
  z-index: 1;
}

.cycle-flow {
  display: grid;
  margin: 0 0 46px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(49, 76, 66, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 253, 248, 0.68);
  box-shadow: var(--shadow-editorial);
  backdrop-filter: blur(10px);
}

.cycle-flow li {
  position: relative;
  min-height: 190px;
  padding: 30px 24px 25px;
  border-right: 1px solid rgba(49, 76, 66, 0.15);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
  transition:
    background 200ms ease,
    transform 200ms ease;
}

.cycle-flow li:last-child {
  border-right: 0;
}

.cycle-flow li:hover {
  z-index: 1;
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.76);
}

.cycle-flow li:nth-child(3) {
  box-shadow: inset 0 3px var(--coral);
}

.cycle-flow li:nth-child(5) {
  box-shadow: inset 0 3px var(--turquoise);
}

.cycle-flow li::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -12px;
  display: grid;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  content: "→";
  place-items: center;
  border: 1px solid rgba(49, 76, 66, 0.15);
  border-radius: 50%;
  color: var(--gold-dark);
  background: var(--paper);
  font-size: 11px;
}

.cycle-flow li:last-child::after {
  display: none;
}

.cycle-flow span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.cycle-flow li:nth-child(3) > span {
  color: var(--coral);
}

.cycle-flow li:nth-child(5) > span {
  color: var(--turquoise);
}

.cycle-flow strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.cycle-flow small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.editorial-note {
  display: grid;
  max-width: 900px;
  margin: 0 auto;
  padding: 38px 44px;
  grid-template-columns: auto 1fr;
  gap: 24px;
  border: 1px solid rgba(166, 124, 44, 0.2);
  border-left: 3px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.74), rgba(255, 253, 247, 0.42));
  box-shadow: 0 22px 54px rgba(18, 42, 34, 0.07);
}

.editorial-note__mark {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 82px;
  line-height: 0.8;
}

.editorial-note h3 {
  margin-bottom: 10px;
  font-size: 29px;
}

.editorial-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.method {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.82), transparent 25%),
    radial-gradient(circle at 12% 88%, rgba(47, 159, 149, 0.12), transparent 28%),
    linear-gradient(145deg, #e7ebe2, var(--sage-deep) 66%, #bfcec1);
}

.method::before {
  position: absolute;
  z-index: 0;
  right: 1.5vw;
  bottom: -0.23em;
  content: "RAEM";
  pointer-events: none;
  color: rgba(11, 40, 34, 0.045);
  font-family: var(--serif);
  font-size: clamp(180px, 24vw, 380px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.method::after {
  position: absolute;
  top: 80px;
  right: -110px;
  width: 330px;
  aspect-ratio: 1;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(66, 93, 82, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgba(255, 255, 255, 0.1),
    0 0 0 68px rgba(255, 255, 255, 0.08);
}

.method > * {
  position: relative;
  z-index: 1;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(38, 69, 58, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-editorial);
}

.method-grid article {
  position: relative;
  min-height: 330px;
  padding: 34px 28px;
  border-right: 1px solid rgba(38, 69, 58, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.88), rgba(247, 245, 236, 0.66));
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.method-grid article:last-child {
  border-right: 0;
}

.method-grid article:hover {
  z-index: 2;
  transform: translateY(-4px);
  background: rgba(255, 253, 247, 0.96);
}

.method-grid article::after {
  position: absolute;
  right: 28px;
  bottom: 27px;
  width: 34px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold-dark), transparent);
  opacity: 0.58;
}

.method-grid article:nth-child(2)::after {
  background: linear-gradient(90deg, var(--turquoise), transparent);
}

.method-grid article:nth-child(3)::after {
  background: linear-gradient(90deg, var(--coral), transparent);
}

.method-grid article > span {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 66px;
  place-items: center;
  border: 1px solid rgba(171, 126, 53, 0.48);
  border-radius: 50%;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 39px;
  box-shadow:
    inset 0 0 0 6px rgba(255, 255, 255, 0.34),
    0 12px 28px rgba(18, 42, 34, 0.08);
}

.method-grid article > small {
  position: absolute;
  top: 34px;
  right: 28px;
  color: rgba(34, 66, 55, 0.46);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.method-grid h3 {
  margin-bottom: 12px;
  font-size: 31px;
}

.method-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.section-action {
  margin-top: 42px;
  text-align: center;
}

.text-link {
  display: inline-flex;
  gap: 13px;
  align-items: center;
  border-bottom: 1px solid rgba(42, 74, 62, 0.32);
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.product {
  min-height: 930px;
  overflow: hidden;
  color: #f6f0e4;
  background: var(--night);
}

.product__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background:
    linear-gradient(90deg, rgba(5, 20, 17, 0.98) 0%, rgba(6, 24, 20, 0.84) 48%, rgba(5, 19, 16, 0.8) 100%),
    url("./ecossistema-raem-botanico.webp") center / cover no-repeat;
}

.product::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 50%, rgba(235, 202, 119, 0.2), transparent 27%),
    radial-gradient(circle at 13% 84%, rgba(47, 159, 149, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.2));
}

.product__inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 48px), var(--max));
  min-height: 930px;
  margin: 0 auto;
  padding: 132px 0 118px;
  grid-template-columns: 1.05fr 0.72fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.product__copy h2 {
  max-width: 670px;
  margin-bottom: 25px;
  font-size: clamp(52px, 5.7vw, 76px);
}

.product__copy > p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(246, 240, 228, 0.72);
}

.included-list {
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.included-list li {
  display: grid;
  min-height: 76px;
  padding: 15px 0;
  grid-template-columns: 45px 1fr;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  transition:
    padding-left 180ms ease,
    background 180ms ease;
}

.included-list li:hover {
  padding-left: 10px;
  background: linear-gradient(90deg, rgba(240, 217, 149, 0.06), transparent);
}

.included-list > li > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.included-list li:nth-child(2) > span {
  color: #66cfc4;
}

.included-list li:nth-child(3) > span {
  color: #e69a87;
}

.included-list strong,
.included-list small {
  display: block;
}

.product__microfacts {
  display: grid;
  margin: -10px 0 32px;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(235, 214, 156, 0.16);
  border-bottom: 1px solid rgba(235, 214, 156, 0.16);
}

.product__microfacts li {
  padding: 14px 10px;
  border-right: 1px solid rgba(235, 214, 156, 0.16);
  color: rgba(246, 240, 228, 0.52);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.product__microfacts li:last-child {
  border-right: 0;
}

.product__microfacts b {
  display: block;
  margin-bottom: 2px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.included-list strong {
  color: #fffaf0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.included-list small {
  color: rgba(246, 240, 228, 0.56);
  font-size: 11px;
}

.product__demo {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  justify-items: center;
  align-content: center;
}

.product__demo::before {
  position: absolute;
  z-index: 0;
  width: min(560px, 46vw);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(235, 214, 156, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 46%, rgba(229, 195, 111, 0.15), transparent 47%);
  box-shadow:
    0 0 0 38px rgba(235, 214, 156, 0.024),
    0 0 0 76px rgba(235, 214, 156, 0.018);
}

.product__demo::after {
  position: absolute;
  z-index: 0;
  right: -24px;
  bottom: 80px;
  width: 74%;
  height: 42px;
  content: "";
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.46);
  filter: blur(18px);
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: min(330px, 84vw);
  padding: 12px;
  border: 1px solid rgba(235, 214, 156, 0.46);
  border-radius: 44px;
  background: linear-gradient(145deg, #27352f, #050b09);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.12),
    var(--shadow-deep);
  transform: rotate(1.2deg);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product__demo:hover .phone-frame {
  transform: translateY(-7px) rotate(0.4deg);
}

.phone-frame::before {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 50%;
  width: 84px;
  height: 20px;
  transform: translateX(-50%);
  content: "";
  border-radius: 999px;
  background: #030605;
}

.phone-frame video {
  width: 100%;
  aspect-ratio: 1080 / 2340;
  border-radius: 34px;
  object-fit: cover;
  background: #061713;
}

.product__demo > p {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin: 32px 0 0;
  gap: 10px;
  align-items: center;
  color: rgba(246, 240, 228, 0.66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product__demo > p span {
  color: var(--gold);
}

.product__edition-stamp {
  position: absolute;
  z-index: 5;
  top: 13%;
  right: 0;
  display: grid;
  width: 108px;
  height: 108px;
  place-content: center;
  border: 1px solid rgba(240, 217, 149, 0.48);
  border-radius: 50%;
  color: rgba(246, 240, 228, 0.6);
  background: rgba(4, 22, 18, 0.74);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
  font-size: 8px;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.product__edition-stamp strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
}

.testimonials {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 183, 101, 0.14), transparent 24%),
    radial-gradient(circle at 92% 72%, rgba(47, 159, 149, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf6ed, var(--paper));
}

.testimonials::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  content: "";
  pointer-events: none;
  opacity: 0.07;
  background: url("./hero-opcao-c-fundo.webp") right center / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000);
  mask-image: linear-gradient(90deg, transparent, #000);
}

.testimonials > * {
  position: relative;
  z-index: 1;
}

.testimonials__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
}

.testimonials__head .section-heading {
  margin-bottom: 44px;
}

.proof-disclosure {
  margin-bottom: 50px;
  padding-left: 22px;
  border-left: 2px solid var(--gold);
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.proof-disclosure small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}

.proof-grid figure {
  position: relative;
  margin: 0;
  padding: 12px 12px 22px;
  border: 1px solid rgba(49, 76, 66, 0.18);
  border-radius: 2px;
  background:
    linear-gradient(145deg, #fffefa, #f4eee3);
  box-shadow: var(--shadow-editorial);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.proof-grid figure::before {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(240, 217, 149, 0.48);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(6, 27, 23, 0.86);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  content: "01";
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.proof-grid figure:nth-child(2)::before {
  content: "02";
}

.proof-grid figure:nth-child(3)::before {
  content: "03";
}

.proof-grid figure:nth-child(1) {
  transform: rotate(-1.1deg);
}

.proof-grid figure:nth-child(2) {
  transform: translateY(18px);
}

.proof-grid figure:nth-child(3) {
  transform: rotate(1.1deg);
}

.proof-grid figure:hover {
  transform: translateY(-7px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 30px 70px rgba(18, 42, 34, 0.16);
}

.proof-grid img {
  width: 100%;
  border: 1px solid rgba(49, 76, 66, 0.1);
  background: #e8e2d8;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

.proof-grid figure:nth-child(2) img,
.proof-grid figure:nth-child(3) img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
}

.proof-grid figcaption {
  padding: 15px 7px 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  text-align: center;
}

.swipe-hint {
  display: none;
}

.author {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  background:
    radial-gradient(circle at 13% 52%, rgba(215, 183, 101, 0.12), transparent 25%),
    linear-gradient(90deg, rgba(11, 40, 34, 0.08), transparent 48%),
    linear-gradient(145deg, #e2e8de, var(--sage-deep));
}

.author::before {
  position: absolute;
  z-index: 0;
  top: 22%;
  right: -7%;
  width: 340px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(49, 76, 66, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 36px rgba(255, 255, 255, 0.09),
    0 0 0 72px rgba(255, 255, 255, 0.06);
}

.author__portrait {
  position: relative;
  max-width: 490px;
  padding: 14px;
  border: 1px solid rgba(166, 124, 44, 0.34);
  background: rgba(255, 253, 247, 0.54);
  box-shadow: var(--shadow-editorial);
}

.author__portrait::before {
  position: absolute;
  z-index: 2;
  inset: 22px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(240, 217, 149, 0.24);
}

.author__portrait img {
  width: 100%;
  filter: saturate(0.78) contrast(1.05) sepia(0.035);
}

.author__seal {
  position: absolute;
  right: -28px;
  bottom: 38px;
  display: grid;
  width: 112px;
  height: 112px;
  place-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  background: var(--forest);
  box-shadow: 0 14px 32px rgba(9, 32, 27, 0.3);
  text-align: center;
}

.author__seal strong,
.author__seal span {
  display: block;
}

.author__seal strong {
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: 0.05em;
}

.author__seal span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.author__copy {
  max-width: 650px;
}

.author__copy h2 {
  margin-bottom: 8px;
  font-size: clamp(54px, 5.5vw, 78px);
}

.author__role {
  margin-bottom: 28px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.author__experience {
  display: flex;
  width: fit-content;
  margin: -6px 0 24px;
  padding: 12px 16px;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(166, 124, 44, 0.24);
  border-radius: 12px;
  background: rgba(255, 253, 247, 0.62);
  box-shadow: 0 10px 28px rgba(43, 62, 53, 0.06);
}

.author__experience strong {
  flex: 0 0 auto;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.05;
}

.author__experience span {
  max-width: 170px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-transform: uppercase;
}

.author__copy > p:not(.eyebrow, .author__role, .pillars-label, .author__principle) {
  color: var(--muted);
  font-size: 16px;
}

.pillars-label {
  margin: 28px 0 12px;
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pillars span {
  padding: 8px 12px;
  border: 1px solid rgba(49, 76, 66, 0.25);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 700;
}

.author__principle {
  width: fit-content;
  margin: 28px 0 0;
  padding: 10px 0 10px 18px;
  border-left: 2px solid var(--gold);
  color: var(--forest);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.1;
}

.signature {
  width: 190px;
  margin-top: 28px;
  opacity: 0.72;
}

.objections {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 105%, rgba(11, 40, 34, 0.08), transparent 35%),
    var(--paper);
}

.objections__grid {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.objections__grid article {
  position: relative;
  padding: 44px;
  overflow: hidden;
  border: 1px solid rgba(49, 76, 66, 0.17);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 46px rgba(18, 42, 34, 0.07);
}

.objections__grid article::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 118px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(166, 124, 44, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(166, 124, 44, 0.035);
}

.objections__grid h3 {
  margin-bottom: 15px;
  color: var(--forest);
  font-size: 33px;
}

.objections__grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.offer {
  min-height: 850px;
  overflow: hidden;
  color: #f7f1e5;
  background:
    radial-gradient(circle at 74% 42%, rgba(227, 192, 105, 0.22), transparent 24%),
    radial-gradient(circle at 12% 78%, rgba(47, 159, 149, 0.1), transparent 24%),
    linear-gradient(118deg, rgba(3, 18, 15, 0.98), rgba(7, 38, 31, 0.94) 58%, rgba(8, 29, 24, 0.96)),
    url("./ecossistema-raem-botanico.webp") center / cover no-repeat;
}

.offer::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  background:
    repeating-linear-gradient(
      118deg,
      transparent 0 30px,
      rgba(240, 217, 149, 0.04) 31px,
      transparent 32px 64px
    );
}

.offer::after {
  position: absolute;
  z-index: 0;
  bottom: -78px;
  left: 31%;
  width: min(520px, 42vw);
  aspect-ratio: 1058 / 945;
  content: "";
  pointer-events: none;
  opacity: 0.13;
  background: url("./hero-produto-neutro.webp") center / contain no-repeat;
  filter: saturate(0.78) drop-shadow(0 34px 45px rgba(0, 0, 0, 0.52));
  transform: rotate(-4deg);
}

.offer__inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  min-height: 850px;
  padding: 142px 0 124px;
  grid-template-columns: 1fr minmax(390px, 0.75fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.offer__copy h2 {
  margin-bottom: 14px;
  font-size: clamp(54px, 5.5vw, 78px);
}

.offer__definition {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(247, 241, 229, 0.68);
  font-size: 17px;
}

.offer__edition-label {
  width: fit-content;
  margin: 0 0 24px;
  padding: 9px 13px;
  border: 1px solid rgba(240, 217, 149, 0.25);
  border-radius: 999px;
  color: rgba(247, 241, 229, 0.56);
  background: rgba(255, 255, 255, 0.035);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.offer__promise {
  max-width: 600px;
  margin: 0 0 26px;
  color: rgba(247, 241, 229, 0.76);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.42;
}

.offer__copy .offer__included {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.offer__copy .offer__included li {
  padding: 15px 0 15px 30px;
  border-bottom: 1px solid var(--line-light);
  color: #f8f2e7;
  font-size: 13px;
}

.offer__copy .offer__included li::before {
  position: absolute;
  margin-top: 3px;
  margin-left: -29px;
  color: var(--gold);
  content: "✓";
  font-weight: 800;
}

.offer__included strong,
.offer__included small {
  display: block;
}

.offer__included strong {
  margin-bottom: 3px;
  color: #fff9ec;
  font-size: 13px;
  line-height: 1.45;
}

.offer__included small {
  color: rgba(247, 241, 229, 0.56);
  font-size: 10px;
  line-height: 1.5;
}

.price-card {
  position: relative;
  padding: 42px 38px 34px;
  overflow: hidden;
  border: 1px solid rgba(236, 213, 155, 0.48);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 8%, rgba(240, 217, 149, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.024));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.11),
    var(--shadow-deep);
  backdrop-filter: blur(18px);
}

.price-card::before {
  position: absolute;
  inset: 8px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(236, 213, 155, 0.12);
  border-radius: 12px;
}

.price-card::after {
  position: absolute;
  top: -40%;
  left: -38%;
  width: 38%;
  height: 180%;
  content: "";
  pointer-events: none;
  opacity: 0.24;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.17), transparent);
  transform: rotate(18deg);
  transition: left 780ms cubic-bezier(0.22, 1, 0.36, 1);
}

.price-card:hover::after {
  left: 118%;
}

.price-card > * {
  position: relative;
  z-index: 2;
}

.price-card__emblem {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(240, 217, 149, 0.42);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 14px;
}

.price-card > span {
  display: block;
  color: rgba(247, 241, 229, 0.64);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  display: flex;
  margin: 18px 0 8px;
  gap: 8px;
  align-items: flex-start;
  color: var(--gold-light);
}

.price sup {
  padding-top: 16px;
  font-family: var(--serif);
  font-size: 28px;
}

.price strong {
  font-family: var(--serif);
  font-size: 100px;
  font-weight: 500;
  line-height: 0.85;
}

.price > small {
  margin-top: auto;
  padding-bottom: 8px;
  color: rgba(247, 241, 229, 0.54);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card__installments {
  margin: 0 0 18px;
  color: rgba(247, 241, 229, 0.72);
  font-size: 11px;
  line-height: 1.5;
}

.price-card__installments strong {
  color: var(--gold-light);
}

.payment-methods {
  display: grid;
  margin-bottom: 24px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.payment-methods > span {
  display: block;
  padding: 14px 8px;
  border-right: 1px solid var(--line-light);
}

.payment-methods > span:first-child {
  padding-left: 0;
}

.payment-methods > span:last-child {
  padding-right: 0;
  border-right: 0;
}

.payment-methods b,
.payment-methods small {
  display: block;
}

.payment-methods b {
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-methods small {
  color: rgba(247, 241, 229, 0.68);
  font-size: 9px;
  line-height: 1.45;
}

.access-steps {
  margin-bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(236, 213, 155, 0.16);
  border-radius: 12px;
  background: rgba(2, 19, 16, 0.24);
}

.access-steps__title {
  margin: 0 0 13px;
  color: rgba(247, 241, 229, 0.6);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.access-steps ol {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.access-steps li {
  display: grid;
  min-width: 0;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.access-steps li > b {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(240, 217, 149, 0.32);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 9px;
}

.access-steps li span,
.access-steps li strong,
.access-steps li small {
  display: block;
}

.access-steps li strong {
  margin-bottom: 2px;
  color: #fff9ec;
  font-size: 10px;
  line-height: 1.45;
}

.access-steps li small {
  color: rgba(247, 241, 229, 0.53);
  font-size: 9px;
  line-height: 1.5;
}

.price-card > .price-card__trust {
  display: block;
  margin-top: 13px;
  color: rgba(247, 241, 229, 0.54);
  font-size: 9px;
  text-align: center;
}

.guarantee {
  display: grid;
  width: min(calc(100% - 48px), 980px);
  margin: 58px auto;
  padding: 52px 58px;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(49, 76, 66, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 10%, rgba(215, 183, 101, 0.13), transparent 24%),
    rgba(255, 253, 247, 0.66);
  box-shadow: var(--shadow-editorial);
}

.guarantee__icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(49, 76, 66, 0.18);
  border-radius: 50%;
  color: var(--gold-dark);
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.34));
  box-shadow: inset 0 0 0 7px rgba(166, 124, 44, 0.045);
}

.guarantee__icon svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.guarantee h2 {
  margin-bottom: 10px;
  font-size: 40px;
}

.guarantee p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.guarantee a {
  border-bottom: 1px solid rgba(166, 124, 44, 0.42);
  color: var(--gold-dark);
  font-weight: 700;
}

.faq {
  display: grid;
  padding-top: 104px;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 8vw, 100px);
  background: linear-gradient(180deg, var(--ivory-deep), var(--ivory));
}

.faq .section-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.faq__list {
  border-top: 1px solid rgba(49, 76, 66, 0.2);
}

.faq__list details {
  border-bottom: 1px solid rgba(49, 76, 66, 0.2);
}

.faq__list summary {
  display: flex;
  min-height: 82px;
  cursor: pointer;
  list-style: none;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.faq__list summary::-webkit-details-marker {
  display: none;
}

.faq__list summary span {
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq__list details[open] summary span {
  transform: rotate(45deg);
}

.faq__list details p {
  max-width: 670px;
  padding: 0 42px 25px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  overflow: hidden;
  padding: 82px max(24px, calc((100% - var(--max)) / 2)) 32px;
  color: rgba(247, 241, 229, 0.7);
  background:
    linear-gradient(180deg, rgba(4, 18, 15, 0.75), rgba(4, 17, 14, 0.98)),
    url("./paisagem-rodape.webp") center / cover no-repeat,
    var(--night);
}

.footer__inner {
  display: grid;
  padding-bottom: 50px;
  grid-template-columns: 1fr auto;
  gap: 50px;
  border-bottom: 1px solid rgba(215, 183, 101, 0.18);
}

.footer .brand {
  color: #f7f1e5;
}

.footer__inner p {
  margin: 15px 0 0;
  font-size: 12px;
}

.footer nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 9px 34px;
  align-content: start;
}

.footer nav a {
  font-size: 11px;
  font-weight: 700;
}

.footer nav a:hover {
  color: var(--gold-light);
}

.footer__legal {
  display: grid;
  padding-top: 25px;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}

.footer__identity {
  display: grid;
  gap: 3px;
  margin: 0;
  color: rgba(247, 241, 229, 0.58);
  font-size: 9px;
  font-style: normal;
  line-height: 1.55;
}

.footer__identity strong {
  color: rgba(247, 241, 229, 0.78);
  font-size: 10px;
  font-weight: 600;
}

.footer__identity a {
  color: var(--gold-light);
  width: fit-content;
}

.footer__legal small {
  justify-self: end;
  color: rgba(247, 241, 229, 0.45);
  font-size: 9px;
  text-align: right;
}

/* Página secundária: somente os três registros reais. */
.proof-page {
  min-height: 100vh;
  color: #f8f2e7;
  background:
    radial-gradient(circle at 80% 12%, rgba(215, 183, 101, 0.14), transparent 24%),
    linear-gradient(145deg, var(--night), var(--forest));
}

.proof-page__header {
  display: flex;
  width: min(calc(100% - 48px), var(--max));
  min-height: 84px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(215, 183, 101, 0.18);
}

.proof-page__back {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
}

.proof-page__intro {
  width: min(calc(100% - 48px), 860px);
  margin: 0 auto;
  padding: 92px 0 62px;
  text-align: center;
}

.proof-page__intro h1 {
  margin-bottom: 24px;
  font-size: clamp(54px, 6vw, 82px);
}

.proof-page__intro > p:last-child {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(248, 242, 231, 0.68);
}

.proof-page .proof-grid {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding-bottom: 90px;
  color: var(--ink);
}

.proof-page__note {
  width: min(calc(100% - 48px), 760px);
  margin: 0 auto;
  padding: 0 0 90px;
  color: rgba(248, 242, 231, 0.58);
  font-size: 11px;
  text-align: center;
}

.proof-page__footer {
  padding: 30px 24px;
  border-top: 1px solid rgba(215, 183, 101, 0.18);
  color: rgba(248, 242, 231, 0.48);
  font-size: 10px;
  text-align: center;
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    width: min(calc(100% - 30px), var(--max));
    min-height: 70px;
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .site-header .brand {
    font-size: 16px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 42px;
    height: 42px;
    cursor: pointer;
    list-style: none;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(215, 183, 101, 0.44);
    border-radius: 50%;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    display: block;
    width: 17px;
    height: 1px;
    background: var(--gold-light);
  }

  .mobile-menu nav {
    position: absolute;
    top: 52px;
    right: 0;
    display: grid;
    width: 230px;
    padding: 12px;
    border: 1px solid rgba(215, 183, 101, 0.36);
    border-radius: 12px;
    background: rgba(5, 25, 21, 0.97);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.45);
  }

  .mobile-menu nav a {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(215, 183, 101, 0.12);
    color: #f8f2e7;
    font-size: 12px;
    font-weight: 700;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
    color: var(--gold-light);
  }

  .hero,
  .hero__inner {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 124px 0 64px;
    gap: 12px;
  }

  .hero__copy {
    max-width: 740px;
  }

  .hero h1 {
    font-size: clamp(54px, 10vw, 76px);
  }

  .hero__visual {
    min-height: 430px;
  }

  .hero__visual img {
    width: min(580px, 92vw);
    transform: none;
  }

  .hero__edition {
    top: 4%;
    right: 8%;
  }

  .hero__visual-caption {
    right: 10%;
    bottom: 0;
  }

  .section {
    padding-top: 116px;
    padding-bottom: 96px;
  }

  .section-folio {
    top: 30px;
  }

  .cycle-flow {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .cycle-flow li {
    scroll-snap-align: start;
  }

  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-grid article:nth-child(2) {
    border-right: 0;
  }

  .method-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(38, 69, 58, 0.16);
  }

  .product__inner {
    padding: 116px 0 96px;
    grid-template-columns: 1fr;
  }

  .product__copy {
    max-width: 760px;
  }

  .product__demo {
    padding-top: 10px;
  }

  .product__demo::before {
    width: min(560px, 72vw);
  }

  .testimonials__head {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .proof-disclosure {
    margin-top: -25px;
  }

  .author {
    grid-template-columns: minmax(280px, 0.75fr) 1.25fr;
    gap: 48px;
  }

  .offer__inner {
    grid-template-columns: 1fr;
  }

  .offer::after {
    right: -3%;
    bottom: -54px;
    left: auto;
    width: 420px;
    opacity: 0.08;
  }

  .price-card {
    max-width: 600px;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq .section-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    width: calc(100% - 24px);
  }

  .site-header .brand {
    max-width: 230px;
    font-size: 14px;
    line-height: 1.1;
    white-space: normal;
  }

  .brand-mark {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
  }

  .hero__inner,
  .product__inner,
  .offer__inner {
    width: calc(100% - 32px);
  }

  .hero__inner {
    padding-top: 112px;
    padding-bottom: 42px;
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 9px;
    letter-spacing: 0.17em;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(46px, 14vw, 61px);
  }

  .hero__lead {
    margin-bottom: 26px;
    font-size: 14px;
    line-height: 1.68;
  }

  .hero__actions {
    display: grid;
    gap: 15px;
    justify-items: start;
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
  }

  .evidence-link {
    min-height: 36px;
  }

  .hero__visual {
    min-height: 370px;
  }

  .hero__visual img {
    width: min(440px, 104vw);
    margin-left: -3vw;
  }

  .hero__visual::before {
    width: 102%;
    box-shadow:
      0 0 0 20px rgba(215, 183, 101, 0.025),
      0 0 0 40px rgba(215, 183, 101, 0.016);
  }

  .hero__edition {
    top: 2%;
    right: 1%;
    width: 84px;
    height: 84px;
  }

  .hero__edition strong {
    font-size: 19px;
  }

  .hero__edition span {
    font-size: 6px;
  }

  .hero__visual-caption {
    right: 4%;
    bottom: -2px;
    max-width: 230px;
    font-size: 6px;
    text-align: right;
  }

  .trust-strip {
    min-height: 76px;
  }

  .trust-strip > div {
    padding: 12px 6px;
    gap: 7px;
    text-align: center;
  }

  .trust-strip span {
    display: none;
  }

  .trust-strip strong {
    font-size: 8px;
    letter-spacing: 0.05em;
  }

  .section {
    padding: 98px 16px 80px;
  }

  .section-folio {
    top: 27px;
    left: 16px;
  }

  .section-folio span {
    font-size: 18px;
  }

  .section-folio i {
    width: 30px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    margin-bottom: 17px;
    font-size: clamp(42px, 12vw, 56px);
  }

  .section-heading > p:last-child {
    font-size: 14px;
  }

  .cycle-flow {
    width: calc(100vw - 16px);
    margin-left: 0;
    grid-template-columns: repeat(5, 78vw);
    border-radius: 16px 0 0 16px;
    box-shadow: 0 18px 45px rgba(18, 42, 34, 0.1);
  }

  .cycle-flow li {
    min-height: 166px;
    padding: 24px 22px;
  }

  .cycle-flow strong {
    font-size: 27px;
  }

  .editorial-note {
    padding: 26px 22px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .editorial-note__mark {
    height: 38px;
    font-size: 70px;
  }

  .editorial-note h3 {
    font-size: 27px;
  }

  .method::after {
    display: none;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-grid article,
  .method-grid article:nth-child(2) {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid rgba(38, 69, 58, 0.16);
  }

  .method-grid article:last-child {
    border-bottom: 0;
  }

  .method-grid article > span {
    margin-bottom: 34px;
  }

  .product__inner {
    min-height: auto;
    padding: 102px 0 88px;
    gap: 58px;
  }

  .product {
    min-height: auto;
  }

  .product__copy h2 {
    font-size: clamp(44px, 12.5vw, 58px);
  }

  .included-list strong {
    font-size: 20px;
  }

  .phone-frame {
    width: min(300px, 82vw);
  }

  .product__microfacts li {
    padding: 12px 5px;
    font-size: 7px;
    letter-spacing: 0.05em;
  }

  .product__microfacts b {
    font-size: 20px;
  }

  .product__demo {
    min-height: 590px;
  }

  .product__demo::before {
    width: 104vw;
  }

  .product__edition-stamp {
    top: 5%;
    right: -2%;
    width: 88px;
    height: 88px;
  }

  .product__edition-stamp strong {
    font-size: 17px;
  }

  .testimonials {
    padding-right: 0;
  }

  .testimonials__head {
    padding-right: 16px;
  }

  .proof-disclosure {
    margin: -14px 16px 30px 0;
  }

  .proof-grid {
    display: flex;
    width: calc(100vw - 16px);
    gap: 14px;
    overflow-x: auto;
    padding: 6px 20vw 30px 3px;
    scroll-padding-left: 3px;
    scroll-snap-type: x mandatory;
  }

  .proof-grid figure,
  .proof-grid figure:nth-child(1),
  .proof-grid figure:nth-child(2),
  .proof-grid figure:nth-child(3) {
    flex: 0 0 78vw;
    transform: none;
    scroll-snap-align: start;
  }

  .proof-grid figure:hover {
    transform: none;
  }

  .swipe-hint {
    display: flex;
    margin: 10px 16px 0 0;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    color: var(--gold-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .author {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .author__portrait {
    width: calc(100% - 20px);
    max-width: 430px;
  }

  .author__seal {
    right: -18px;
    bottom: 24px;
    width: 96px;
    height: 96px;
  }

  .author__copy h2 {
    font-size: 56px;
  }

  .author__principle {
    font-size: 22px;
  }

  .objections__grid {
    grid-template-columns: 1fr;
  }

  .objections__grid article {
    padding: 30px 26px;
  }

  .offer__inner {
    min-height: auto;
    padding: 106px 0 88px;
  }

  .offer {
    min-height: auto;
  }

  .offer::after {
    right: -32%;
    bottom: -34px;
    width: 420px;
    opacity: 0.065;
  }

  .offer__copy h2 {
    font-size: 52px;
  }

  .price-card {
    padding: 30px 22px;
  }

  .price-card__emblem {
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
  }

  .price strong {
    font-size: 78px;
  }

  .payment-methods {
    grid-template-columns: 1fr;
  }

  .payment-methods > span,
  .payment-methods > span:first-child,
  .payment-methods > span:last-child {
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .payment-methods > span:last-child {
    border-bottom: 0;
  }

  .guarantee {
    width: calc(100% - 32px);
    margin: 24px auto;
    padding: 38px 28px;
    grid-template-columns: 1fr;
  }

  .guarantee h2 {
    font-size: 35px;
  }

  .faq {
    gap: 0;
  }

  .faq__list summary {
    min-height: 72px;
    font-size: 21px;
    line-height: 1.1;
  }

  .footer {
    padding: 64px 16px 38px;
  }

  .footer__inner,
  .footer__legal {
    grid-template-columns: 1fr;
  }

  .footer nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer__legal {
    gap: 16px;
  }

  .footer__legal small {
    justify-self: start;
    text-align: left;
  }

  .proof-page__header {
    width: calc(100% - 28px);
    min-height: 70px;
  }

  .proof-page__header .brand {
    font-size: 14px;
  }

  .proof-page__intro {
    width: calc(100% - 32px);
    padding: 68px 0 46px;
  }

  .proof-page__intro h1 {
    font-size: 50px;
  }

  .proof-page .proof-grid {
    width: 100%;
    padding-bottom: 50px;
    padding-left: 16px;
  }

  .proof-page__note {
    width: calc(100% - 32px);
    padding-bottom: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }

  .reveal-enabled [data-reveal] {
    translate: none;
    opacity: 1;
  }
}
