/* ============================================================
   MYRON GOLDEN · WEALTH LIBRARY
   Aesthetic: editorial luxury. Ink black, warm paper, struck gold.
   Didone display (Bodoni Moda) against a grotesque body (Archivo).
   ============================================================ */

:root {
  /* ── palette ── */
  --ink:        #0A0A0C;
  --ink-2:      #121216;
  --ink-3:      #1B1B21;
  --paper:      #F2EEE6;
  --paper-2:    #E4DED1;
  --gold:       #C99B3F;
  --gold-lit:   #E7C169;
  --gold-deep:  #8A6620;
  --navy:       #16233F;
  --smoke:      rgba(242, 238, 230, .62);
  --hair:       rgba(201, 155, 63, .28);
  --hair-soft:  rgba(242, 238, 230, .12);

  /* ── type ── */
  --display: "Bodoni Moda", "Didot", "Times New Roman", serif;
  --body:    "Archivo", "Helvetica Neue", sans-serif;

  /* ── metrics ── */
  --gutter: clamp(1.25rem, 5vw, 6rem);
  --maxw:   1320px;
  --ease:   cubic-bezier(.22, 1, .36, 1);
}

/* ── reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; color: inherit; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(.95rem, .35vw + .88rem, 1.0625rem);
  line-height: 1.7;
  letter-spacing: .006em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--ink); }

/* ── film grain over everything ── */
.grain {
  position: fixed; inset: -50%;
  z-index: 9999; pointer-events: none;
  opacity: .038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(4) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0) }
  25% { transform: translate(-3%, 2%) }
  50% { transform: translate(2%, -3%) }
  75% { transform: translate(-2%, -2%) }
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--gold); color: var(--ink); padding: .75rem 1.25rem; font-weight: 600;
}
.skip:focus { left: 1rem; top: 1rem; }

/* ============================================================
   SHARED TYPE
   ============================================================ */

.kicker {
  font-family: var(--body);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: .9rem;
}
.kicker::after {
  content: ""; height: 1px; flex: 1; max-width: 90px;
  background: linear-gradient(90deg, var(--hair), transparent);
}
.kicker--dark { color: var(--gold-deep); }
.kicker--dark::after { background: linear-gradient(90deg, rgba(138,102,32,.4), transparent); }

.sect-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.6vw, 4.75rem);
  line-height: .98;
  letter-spacing: -.02em;
}
.sect-title em { font-style: italic; color: var(--gold); font-weight: 400; }

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

/* ── buttons ── */
.btn {
  --btn-bg: transparent;
  position: relative;
  /* isolate so the sliding fill (z-index:-1) stays inside the button ·
     without this it paints behind the section background and vanishes,
     leaving a dark button with dark text. */
  isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1.0625rem 2.125rem;
  font-family: var(--body);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  text-decoration: none;
  background: var(--btn-bg);           /* base fill lives on the button itself */
  border: 1px solid var(--gold);
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  transition: color .45s var(--ease), background .45s var(--ease), border-color .45s var(--ease);
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gold-lit);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn:hover::after, .btn:focus-visible::after { transform: translateY(0); }

.btn--gold { --btn-bg: var(--gold); color: var(--ink); }
.btn--gold:hover, .btn--gold:focus-visible { color: var(--ink); border-color: var(--gold-lit); }

.btn--ghost { color: var(--paper); border-color: var(--hair-soft); }
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--ink); border-color: var(--gold-lit); }

.btn--block { width: 100%; }
.btn:focus-visible { outline: 2px solid var(--gold-lit); outline-offset: 3px; }

/* ── tick lists ── */
.ticks { list-style: none; display: grid; gap: .55rem; }
.ticks li {
  position: relative; padding-left: 1.6rem;
  font-size: .875rem; color: var(--smoke); line-height: 1.55;
}
.ticks li::before {
  content: "✦";
  position: absolute; left: 0; top: -.05em;
  color: var(--gold); font-size: .7rem;
}
.ticks--tight li { font-size: .8125rem; }

/* ── scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease) var(--d, 0ms), transform .9s var(--ease) var(--d, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(10, 10, 12, .82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--hair-soft);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 1.15rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

.mark { text-decoration: none; color: var(--paper); line-height: 1; display: grid; gap: .3rem; }
.mark__name {
  font-family: var(--display); font-weight: 500;
  font-size: 1.3rem; letter-spacing: .01em;
}
.mark__sub {
  font-size: .5625rem; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase; color: var(--gold);
}

.nav__links { display: flex; align-items: center; gap: 2.25rem; }
.nav__links a {
  position: relative;
  font-size: .75rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--smoke); text-decoration: none;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  height: 1px; width: 100%; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.nav__links a:hover { color: var(--paper); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  color: var(--ink) !important;
  background: var(--gold);
  padding: .7rem 1.3rem;
  transition: background .3s var(--ease);
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--gold-lit); }

.burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 34px; height: 34px; padding: 8px 4px;
}
.burger span {
  display: block; height: 1.5px; background: var(--paper);
  transition: transform .4s var(--ease), opacity .3s;
}
.burger span + span { margin-top: 7px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4.25px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4.25px) rotate(-45deg); }

/* Never shown on desktop, and the [hidden] attribute must always win.
   A bare `display: grid` here would override the UA's [hidden] rule. */
.mobile { display: none; }
@media (max-width: 760px) {
  .mobile:not([hidden]) { display: grid; }
}
.mobile {
  background: rgba(10,10,12,.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--hair-soft);
  padding: .5rem var(--gutter) 1.5rem;
}
.mobile a {
  padding: 1rem 0;
  border-bottom: 1px solid var(--hair-soft);
  color: var(--paper); text-decoration: none;
  font-family: var(--display); font-size: 1.4rem;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 9rem var(--gutter) 3rem;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 72% center;
  filter: grayscale(1) contrast(1.12) brightness(.72);
  transform: scale(1.04);
  animation: drift 22s var(--ease) infinite alternate;
}
@keyframes drift {
  from { transform: scale(1.04) translateX(0); }
  to   { transform: scale(1.11) translateX(-1.5%); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 12% 88%, rgba(10,10,12,.96) 0%, rgba(10,10,12,.55) 45%, transparent 78%),
    linear-gradient(to top, var(--ink) 2%, rgba(10,10,12,.35) 42%, rgba(10,10,12,.55) 100%),
    linear-gradient(100deg, rgba(201,155,63,.10), transparent 60%);
}

.hero__grid {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .62fr);
  align-items: end; gap: clamp(2rem, 5vw, 5rem);
}

.hero__copy h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3rem, 8.2vw, 7.5rem);
  line-height: .88;
  letter-spacing: -.035em;
  margin: 1.5rem 0 1.75rem;
  text-wrap: balance;
}
.hero__copy h1 em {
  font-style: italic;
  font-weight: 400;
  position: relative;
}
.hero__lede {
  max-width: 46ch;
  font-size: clamp(1rem, .5vw + .9rem, 1.1875rem);
  color: var(--smoke);
  line-height: 1.65;
}
.hero__lede strong { color: var(--paper); font-weight: 500; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.25rem; }

.stats {
  list-style: none;
  display: grid; gap: 1.75rem;
  padding-bottom: .5rem;
  border-left: 1px solid var(--hair);
  padding-left: clamp(1.25rem, 2.5vw, 2.25rem);
}
.stats__num {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.25rem, 3.4vw, 3.25rem);
  font-weight: 500; line-height: 1;
  color: var(--gold);
  letter-spacing: -.02em;
}
.stats__num .plus { font-size: .55em; vertical-align: super; margin-left: .04em; }
.stats__label {
  display: block; margin-top: .5rem;
  font-size: .7rem; font-weight: 400;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--smoke); line-height: 1.5;
  max-width: 24ch;
}

.hero__scroll {
  position: relative; z-index: 1;
  max-width: var(--maxw); margin: 3.5rem auto 0; width: 100%;
  font-size: .625rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(242,238,230,.4);
  display: flex; align-items: center; gap: .75rem;
}
.hero__scroll span {
  width: 46px; height: 1px; background: var(--gold);
  transform-origin: left; animation: pull 2.4s var(--ease) infinite;
}
@keyframes pull { 0%,100% { transform: scaleX(.3) } 50% { transform: scaleX(1) } }

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
  border-block: 1px solid var(--hair-soft);
  background: var(--ink-2);
  padding: 1.05rem 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex; align-items: center; gap: 2.5rem;
  width: max-content;
  animation: slide 42s linear infinite;
}
.marquee__track span {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  color: rgba(242,238,230,.42);
  white-space: nowrap;
}
.marquee__track i { color: var(--gold); font-style: normal; font-size: .6rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================
   SECTION SHELL
   ============================================================ */

.section {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 11vw, 9.5rem) var(--gutter);
}
.sect-head {
  display: grid; gap: 1.5rem;
  max-width: 62rem;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.sect-lede {
  max-width: 52ch;
  color: var(--smoke);
  font-size: clamp(1rem, .4vw + .9rem, 1.125rem);
}

/* ============================================================
   BOOKS
   ============================================================ */

.library { border-top: 1px solid var(--hair-soft); }

.books { display: grid; gap: clamp(4rem, 8vw, 7rem); }

.book {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  position: relative;
}
.book__index {
  position: absolute; top: -2.5rem; left: -1rem;
  font-family: var(--display);
  font-size: clamp(5rem, 11vw, 9rem);
  font-weight: 700; font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,155,63,.16);
  line-height: 1; pointer-events: none;
  z-index: 0;
}
/* Swap the track sizes rather than reordering: `order` would move the cover
   into the wide text track and blow it up to ~1.5x the other cover. */
.book--flip { grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); }
.book--flip .book__cover { grid-area: 1 / 2; justify-self: end; }
.book--flip .book__body  { grid-area: 1 / 1; }
.book--flip .book__index { left: auto; right: -1rem; }

.book__cover {
  position: relative; z-index: 1;
  align-self: center;
  /* Never let a cover render past its native pixels · upscaling is what makes
     a scan look grainy. Keep in step with the source files in /imagens. */
  max-width: 27.5rem;        /* B.O.S.S. Moves: 800px native, downscales */
}
/* From The Trash Man To The Cash Man ships at only 323x500. */
.book__cover--lores { max-width: 20.25rem; }
.book__cover img {
  width: 100%;
  box-shadow:
    0 2px 4px rgba(0,0,0,.5),
    0 30px 70px -20px rgba(0,0,0,.85),
    0 0 0 1px rgba(242,238,230,.06);
  transform: perspective(1400px) rotateY(6deg) rotateX(1.5deg);
  transition: transform 1s var(--ease), box-shadow 1s var(--ease);
}
.book--flip .book__cover img { transform: perspective(1400px) rotateY(-6deg) rotateX(1.5deg); }
.book__cover:hover img {
  transform: perspective(1400px) rotateY(0) rotateX(0) translateY(-8px);
  box-shadow: 0 2px 4px rgba(0,0,0,.5), 0 45px 90px -20px rgba(0,0,0,.9), 0 0 0 1px var(--hair);
}
.badge {
  position: absolute; top: 1rem; left: -.65rem;
  background: var(--gold); color: var(--ink);
  font-size: .5625rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .45rem .85rem;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.9);
}

.book__body { position: relative; z-index: 1; display: grid; gap: 1.25rem; }
.book__body h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: .96; letter-spacing: -.02em;
}
.book__sub {
  font-size: .6875rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  margin-top: -.6rem;
}
.book__desc { color: var(--smoke); max-width: 52ch; }

.pull {
  border-left: 2px solid var(--gold);
  padding: .35rem 0 .35rem 1.25rem;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.0625rem, 1.2vw, 1.3rem);
  line-height: 1.4;
  color: var(--paper);
}
.pull cite {
  display: block; margin-top: .65rem;
  font-family: var(--body); font-style: normal;
  font-size: .625rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--smoke);
}

.book__foot {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem;
  margin-top: .75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hair-soft);
}
.price { display: grid; gap: .2rem; }
.price__num {
  font-family: var(--display); font-size: 1.75rem; font-weight: 500;
  color: var(--paper); line-height: 1;
}
.price__note {
  font-size: .625rem; letter-spacing: .12em; text-transform: uppercase; color: var(--smoke);
}

/* ============================================================
   PROGRAMS
   ============================================================ */

.programs { border-top: 1px solid var(--hair-soft); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: 1.25rem;
}

.card { position: relative; }
.card__link {
  display: grid;
  height: 100%;
  text-decoration: none; color: inherit;
  background: var(--ink-2);
  border: 1px solid var(--hair-soft);
  overflow: hidden;
  transition: border-color .6s var(--ease), transform .6s var(--ease), background .6s var(--ease);
}
.card__link:hover, .card__link:focus-visible {
  border-color: var(--hair);
  background: var(--ink-3);
  transform: translateY(-6px);
}
.card__link:focus-visible { outline: 2px solid var(--gold-lit); outline-offset: 3px; }

.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--ink-2) 1%, rgba(18,18,22,.15) 60%, transparent);
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
  filter: grayscale(.85) contrast(1.05);
  transition: transform 1.2s var(--ease), filter .8s var(--ease);
}
.card__link:hover .card__media img { transform: scale(1.06); filter: grayscale(0) contrast(1.02); }

.card__body { padding: 1.75rem 1.75rem 2rem; display: grid; gap: .9rem; align-content: start; }
.card__meta {
  font-size: .625rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}
.card__body h3 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  line-height: 1.05; letter-spacing: -.015em;
}
.card__desc { font-size: .875rem; color: var(--smoke); }
.card__cta {
  margin-top: .6rem;
  font-size: .6875rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--paper);
  display: inline-flex; align-items: center; gap: .55rem;
}
.card__cta i { font-style: normal; color: var(--gold); transition: transform .45s var(--ease); }
.card__link:hover .card__cta i { transform: translateX(7px); }

/* ============================================================
   QUOTE
   ============================================================ */

.quote {
  border-block: 1px solid var(--hair-soft);
  background:
    radial-gradient(80% 140% at 50% 50%, rgba(201,155,63,.07), transparent 70%),
    var(--ink-2);
  padding: clamp(4.5rem, 10vw, 8rem) var(--gutter);
  text-align: center;
}
.quote blockquote { max-width: 24ch; margin: 0 auto; }
.quote p {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.85rem, 5vw, 4rem);
  line-height: 1.06; letter-spacing: -.025em;
  text-transform: uppercase;
}
.quote em { font-style: italic; color: var(--gold); text-transform: none; }
.quote cite {
  display: block; margin-top: 2rem;
  font-family: var(--body); font-style: normal;
  font-size: .6875rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--smoke);
}

/* ============================================================
   ABOUT
   ============================================================ */

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}
.about__fig { position: relative; }
.about__fig img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 78% center;
  filter: grayscale(1) contrast(1.08);
  border: 1px solid var(--hair-soft);
}
.about__fig::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(201,155,63,.12), transparent 55%);
  pointer-events: none;
}
.about__fig figcaption {
  margin-top: .9rem;
  font-size: .625rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--smoke);
}
.about__copy { display: grid; gap: 1.15rem; }
.about__copy .sect-title { margin-bottom: .5rem; }
.about__lead {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.45;
  color: var(--paper);
}
.about__copy p { color: var(--smoke); max-width: 54ch; }
.about__copy strong { color: var(--paper); font-weight: 500; }

.proof {
  margin-top: 1.25rem;
  padding: 1.6rem 1.75rem;
  background: var(--ink-2);
  border: 1px solid var(--hair-soft);
  border-left: 2px solid var(--gold);
}
.proof__quote {
  font-family: var(--display); font-style: italic;
  font-size: 1.0625rem; line-height: 1.5;
  color: var(--paper) !important;
}
.proof__quote strong { color: var(--gold); font-weight: 700; font-style: normal; }
.proof__who {
  margin-top: .8rem;
  font-size: .625rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--smoke) !important;
}

/* ============================================================
   EBOOK · the light inversion
   ============================================================ */

.ebook {
  position: relative;
  max-width: none;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.ebook__bg {
  position: absolute; inset: 0; z-index: -1;
  background-image: url("../imagens/texture-cash.jpg");
  background-size: cover; background-position: center;
  filter: grayscale(1) contrast(1.3);
  opacity: .09;
  -webkit-mask-image: radial-gradient(90% 80% at 80% 20%, #000, transparent 75%);
          mask-image: radial-gradient(90% 80% at 80% 20%, #000, transparent 75%);
}
.ebook__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.ebook__copy { display: grid; gap: 1.35rem; }
.ebook__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.6vw, 3.9rem);
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--ink);
}
.ebook__title em { font-style: italic; color: var(--gold-deep); }
.ebook__lede {
  max-width: 50ch;
  color: rgba(10,10,12,.72);
  font-size: clamp(1rem, .4vw + .9rem, 1.0625rem);
}
.ebook__list { list-style: none; display: grid; gap: .1rem; margin-top: .5rem; }
.ebook__list li {
  display: flex; align-items: baseline; gap: 1rem;
  padding: .85rem 0;
  border-top: 1px solid rgba(10,10,12,.13);
  font-size: .9375rem;
  color: rgba(10,10,12,.82);
}
.ebook__list li:last-child { border-bottom: 1px solid rgba(10,10,12,.13); }
.ebook__list b {
  font-family: var(--display); font-weight: 700; font-style: italic;
  font-size: 1.05rem; color: var(--gold-deep);
  min-width: 1.75rem;
}
.ebook__for {
  font-size: .8125rem;
  color: rgba(10,10,12,.58);
  max-width: 52ch;
}

.ebook__card {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border: 1px solid rgba(10,10,12,.14);
  box-shadow: 0 40px 90px -30px rgba(10,10,12,.55);
  position: relative;
}
.ebook__card::before {
  content: ""; position: absolute; inset: 0;
  border: 1px solid var(--hair);
  margin: .6rem; pointer-events: none;
}

.form { display: grid; gap: 1rem; }
.form__eyebrow {
  font-size: .5625rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
}
.form__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  line-height: 1; letter-spacing: -.02em;
  margin-bottom: .35rem;
}

.field { display: grid; gap: .5rem; }
.field__label {
  font-size: .625rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--smoke);
}
.field input {
  width: 100%;
  background: transparent;
  border: 0; border-bottom: 1px solid var(--hair-soft);
  padding: .75rem 0;
  font-size: 1rem; font-weight: 300;
  color: var(--paper);
  transition: border-color .4s var(--ease);
}
.field input::placeholder { color: rgba(242,238,230,.26); }
.field input:focus { outline: 0; border-bottom-color: var(--gold); }
.field input[aria-invalid="true"] { border-bottom-color: #D9704F; }

.form__error {
  font-size: .75rem; color: #E08A6C; letter-spacing: .02em;
}
.form__fine {
  font-size: .6875rem; line-height: 1.55;
  color: rgba(242,238,230,.42);
  margin-top: .25rem;
}

#submit-btn { margin-top: .5rem; }
.btn__spin {
  position: absolute;
  width: 14px; height: 14px;
  border: 1.5px solid rgba(10,10,12,.25);
  border-top-color: var(--ink);
  border-radius: 50%;
  opacity: 0;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.is-loading .btn__text { opacity: 0; }
.is-loading .btn__spin { opacity: 1; }
#submit-btn[disabled] { cursor: wait; }

.success { display: grid; gap: 1rem; text-align: center; padding: 1rem 0; }
.success__seal {
  font-size: 1.5rem; color: var(--gold);
  animation: seal .8s var(--ease) both;
}
@keyframes seal {
  from { transform: scale(.4) rotate(-40deg); opacity: 0 }
  to   { transform: none; opacity: 1 }
}
.success h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 2rem; line-height: 1;
}
.success p { font-size: .875rem; color: var(--smoke); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  border-top: 1px solid var(--hair-soft);
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter) 2rem;
  background: var(--ink);
}
.footer__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}
.footer__brand .mark__name { font-size: 1.4rem; display: block; }
.footer__brand .mark__sub { display: block; margin-top: .35rem; }
.footer__disclaimer {
  margin-top: 1.5rem;
  font-size: .6875rem; line-height: 1.65;
  color: rgba(242,238,230,.4);
  max-width: 46ch;
}
.footer__disclaimer b { color: rgba(242,238,230,.6); font-weight: 600; }

.footer__col { display: grid; gap: .7rem; align-content: start; }
.footer__col h4 {
  font-size: .625rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.footer__col a {
  font-size: .8125rem;
  color: var(--smoke); text-decoration: none;
  transition: color .3s var(--ease);
  line-height: 1.4;
}
.footer__col a:hover { color: var(--gold-lit); }
.footer__cta { color: var(--paper) !important; font-weight: 500; margin-top: .4rem; }

.footer__bar {
  max-width: var(--maxw); margin: clamp(3rem, 6vw, 4.5rem) auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hair-soft);
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  font-size: .625rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(242,238,230,.32);
}
.footer__rule { flex: 1; height: 1px; background: var(--hair-soft); min-width: 2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; align-items: start; }
  .stats {
    grid-template-columns: repeat(3, 1fr);
    border-left: 0; border-top: 1px solid var(--hair);
    padding-left: 0; padding-top: 1.75rem;
    gap: 1.25rem;
  }
  .stats__label { font-size: .625rem; }
  .book, .book--flip { grid-template-columns: 1fr; gap: 2.5rem; }
  .book__cover, .book--flip .book__cover,
  .book__body, .book--flip .book__body { grid-area: auto; justify-self: start; }
  .book__cover, .book--flip .book__cover { max-width: 18rem; }
  .book__cover img, .book--flip .book__cover img { transform: none; }
  .about__grid { grid-template-columns: 1fr; }
  .about__fig img { aspect-ratio: 16 / 10; }
  .ebook__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .burger { display: block; }
  .hero { padding-top: 7rem; min-height: 92svh; }
  .hero__media img { object-position: 66% center; }
  .stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .stats__label { max-width: none; }
  .hero__scroll { display: none; }
  .book__index { top: -1.75rem; font-size: 5rem; }
  .quote p { text-transform: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .book__foot { gap: 1.25rem; }
  .book__foot .btn { width: 100%; }
}

/* ============================================================
   MOTION PREFERENCES
   ============================================================ */

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

/* ============================================================
   REVIEW PAGE · extends styles.css, same ink/gold editorial system
   ============================================================ */

/* ── hero ── */
.rev-hero {
  position: relative;
  padding: clamp(7.5rem, 12vw, 10.5rem) var(--gutter) clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--hair-soft);
  background:
    radial-gradient(90% 120% at 88% 0%, rgba(201,155,63,.13), transparent 62%),
    var(--ink);
  overflow: hidden;
}
.rev-hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.crumbs {
  font-size: .625rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(242,238,230,.38);
  margin-bottom: 1.5rem;
  display: flex; gap: .6rem;
}
.crumbs a { color: var(--gold); text-decoration: none; }
.crumbs a:hover { color: var(--gold-lit); }

.rev-hero__copy h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(3.25rem, 8vw, 6.5rem);
  line-height: .86; letter-spacing: -.035em;
  margin: 1.25rem 0 1.5rem;
}
.rev-hero__sub {
  font-size: .75rem; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--smoke); line-height: 1.9;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--hair-soft);
}
.rev-hero__sub b { color: var(--gold); font-weight: 600; }
.rev-hero__lede {
  margin-top: 1.5rem;
  max-width: 48ch;
  font-size: clamp(1rem, .5vw + .9rem, 1.125rem);
  color: var(--smoke);
}
.rev-hero__lede em { color: var(--paper); font-style: italic; }
.rev-hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }

.rev-hero__cover { position: relative; justify-self: center; max-width: 22rem; }
.rev-hero__cover img {
  width: 100%;
  box-shadow: 0 2px 4px rgba(0,0,0,.5), 0 40px 80px -22px rgba(0,0,0,.9), 0 0 0 1px rgba(242,238,230,.07);
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  transition: transform 1s var(--ease);
}
.rev-hero__cover:hover img { transform: perspective(1400px) rotateY(0) rotateX(0) translateY(-8px); }
.rev-hero__cover figcaption {
  margin-top: 1.1rem; text-align: center;
  font-size: .5625rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold);
}

/* ── disclosure banner ── */
.disclosure {
  background: var(--ink-2);
  border-bottom: 1px solid var(--hair-soft);
  padding: 1.5rem var(--gutter);
}
.disclosure p {
  max-width: var(--maxw); margin: 0 auto;
  font-size: .8125rem; line-height: 1.65;
  color: var(--smoke);
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
}
.disclosure b { color: var(--paper); font-weight: 600; }

/* ── verdict ── */
.verdict__grid { display: grid; gap: clamp(2rem, 4vw, 3rem); }

.scores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: 1.5rem;
  padding: 1.75rem;
  background: var(--ink-2);
  border: 1px solid var(--hair-soft);
}
.score { border-left: 2px solid var(--gold); padding-left: 1.25rem; }
.score__num {
  display: block;
  font-family: var(--display); font-weight: 500;
  font-size: 3rem; line-height: 1; color: var(--gold);
  letter-spacing: -.03em;
}
.score__of {
  display: block; margin-top: .4rem;
  font-size: .6875rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--paper);
}
.score__base {
  display: block; margin-top: .3rem;
  font-size: .75rem; color: var(--smoke);
}
.scores__note {
  grid-column: 1 / -1;
  font-size: .8125rem; color: var(--smoke);
  border-top: 1px solid var(--hair-soft);
  padding-top: 1.25rem;
}

.fortable {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: 1.25rem;
}
.fortable__col {
  padding: 1.75rem;
  background: var(--ink-2);
  border: 1px solid var(--hair-soft);
}
.fortable__col--yes { border-top: 2px solid var(--gold); }
.fortable__col--no  { border-top: 2px solid #6B5A43; }
.fortable__col h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 1.6rem; margin-bottom: 1.1rem;
}
.ticks--cross li::before { content: "✕"; color: #8A7859; font-size: .65rem; }

/* ── prose ── */
.prose-sect { border-top: 1px solid var(--hair-soft); }
.prose { display: grid; gap: 1.25rem; max-width: 62ch; }
.prose--wide { max-width: 68ch; margin-inline: auto; }
.prose p { color: var(--smoke); font-size: clamp(1rem, .4vw + .92rem, 1.0625rem); }
.prose b { color: var(--paper); font-weight: 600; }
.prose em { color: var(--paper); font-style: italic; }
.prose a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--hair); }
.prose a:hover { color: var(--gold-lit); border-bottom-color: var(--gold-lit); }
.flag {
  background: var(--ink-2);
  border-left: 2px solid var(--gold);
  padding: 1.25rem 1.5rem;
  font-size: .9375rem !important;
}

/* ── four levels ── */
.levels { position: relative; border-top: 1px solid var(--hair-soft); isolation: isolate; }
.levels__bg {
  position: absolute; inset: 0; z-index: -1;
  background-image: url("../imagens/texture-cash.jpg");
  background-size: cover; background-position: center;
  opacity: .05;
  -webkit-mask-image: radial-gradient(80% 70% at 85% 15%, #000, transparent 72%);
          mask-image: radial-gradient(80% 70% at 85% 15%, #000, transparent 72%);
}
.levels__list { list-style: none; display: grid; gap: 1px; background: var(--hair-soft); border-block: 1px solid var(--hair-soft); }
.level {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  background: var(--ink);
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  transition: background .5s var(--ease);
}
.level:hover { background: var(--ink-2); }
.level__n {
  font-family: var(--display); font-style: italic; font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--hair);
  min-width: 2.5ch;
}
.level:hover .level__n { color: var(--gold); -webkit-text-stroke: 0; }
.level h3 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 2rem); line-height: 1;
  margin-bottom: .6rem;
}
.level__desc { color: var(--smoke); font-size: .9375rem; max-width: 58ch; }
.level__band {
  margin-top: .7rem;
  font-size: .6875rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
}
.levels__foot {
  margin-top: 1.5rem;
  font-size: .75rem; color: rgba(242,238,230,.42);
  max-width: 60ch;
}

/* ── four moves ── */
.moves {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  gap: 1px;
  background: var(--hair-soft);
  border: 1px solid var(--hair-soft);
  margin-bottom: 2.5rem;
}
.move { background: var(--ink); padding: 1.75rem 1.5rem; transition: background .5s var(--ease); }
.move:hover { background: var(--ink-2); }
.move span {
  font-family: var(--display); font-style: italic; font-weight: 700;
  font-size: 1.5rem; color: var(--gold);
}
.move h3 {
  font-family: var(--display); font-weight: 500;
  font-size: 1.35rem; line-height: 1.05;
  margin: .5rem 0 .5rem;
}
.move p { font-size: .8125rem; color: var(--smoke); }

/* ── quote variant ── */
.quote--rev blockquote { max-width: 18ch; }

/* ── readers ── */
.readers { border-top: 1px solid var(--hair-soft); }
.readers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}
.readers__h {
  font-family: var(--display); font-weight: 500;
  font-size: 1.75rem;
  padding-bottom: .9rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--hair-soft);
}
.readers__h--pro { color: var(--gold); }
.readers__h--con { color: #C4A87C; }

.rlist { list-style: none; display: grid; gap: 1.25rem; }
.rlist li {
  padding: 1.1rem 1.25rem;
  background: var(--ink-2);
  border: 1px solid var(--hair-soft);
}
.rlist p { font-size: .9375rem; color: var(--smoke); line-height: 1.6; }
.rlist cite {
  display: block; margin-top: .7rem;
  font-style: normal;
  font-size: .625rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(242,238,230,.4);
}
.rlist cite a { color: var(--gold); text-decoration: none; }
.rlist cite a:hover { color: var(--gold-lit); text-decoration: underline; }

/* ── facts ── */
.facts { border-top: 1px solid var(--hair-soft); }
.facts__wrap { overflow-x: auto; }
.facts__table {
  width: 100%; border-collapse: collapse;
  border-top: 1px solid var(--hair-soft);
  min-width: 30rem;
}
.facts__table th, .facts__table td {
  text-align: left; vertical-align: top;
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px solid var(--hair-soft);
  font-size: .875rem; font-weight: 400;
}
.facts__table th {
  color: var(--gold);
  font-size: .625rem; letter-spacing: .16em; text-transform: uppercase;
  width: 12rem; padding-top: 1.2rem;
}
.facts__table td { color: var(--smoke); }
.facts__note {
  margin-top: 1.5rem;
  font-size: .75rem; color: rgba(242,238,230,.42);
  max-width: 62ch;
}

/* ── cta ── */
.cta-sect { border-top: 1px solid var(--hair-soft); }
.cta {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, .7fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3.25rem);
  background:
    radial-gradient(90% 140% at 10% 100%, rgba(201,155,63,.11), transparent 65%),
    var(--ink-2);
  border: 1px solid var(--hair);
}
.cta__copy h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.02; letter-spacing: -.02em;
  margin: 1rem 0 1.25rem;
  max-width: 22ch;
}
.cta__copy p { color: var(--smoke); max-width: 56ch; margin-bottom: 1.25rem; }
.cta__fine {
  font-size: .6875rem !important;
  color: rgba(242,238,230,.42) !important;
  border-left: 2px solid var(--hair);
  padding-left: .9rem;
}
.cta__alt {
  display: grid; gap: .7rem; align-content: start;
  padding-left: clamp(1.25rem, 2vw, 2rem);
  border-left: 1px solid var(--hair-soft);
}
.cta__alt h3 { font-family: var(--display); font-weight: 500; font-size: 1.5rem; }
.cta__alt p { font-size: .8125rem; color: var(--smoke); margin-bottom: .5rem; }
.cta__alt a {
  font-size: .8125rem; color: var(--paper); text-decoration: none;
  padding: .6rem 0; border-bottom: 1px solid var(--hair-soft);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.cta__alt a:hover { color: var(--gold-lit); border-bottom-color: var(--gold); }

/* ── sources ── */
.sources { border-top: 1px solid var(--hair-soft); }
.sources__title {
  font-family: var(--display); font-weight: 400;
  font-size: 2rem; margin-bottom: 1.5rem;
}
.sources__list {
  display: grid; gap: .8rem;
  padding-left: 1.25rem;
  max-width: 70ch;
}
.sources__list li { font-size: .8125rem; color: var(--smoke); line-height: 1.5; }
.sources__list::marker, .sources__list li::marker { color: var(--gold); }
.sources__list a { color: var(--paper); text-decoration: none; border-bottom: 1px solid var(--hair); }
.sources__list a:hover { color: var(--gold-lit); }
.sources__stamp {
  margin-top: 2rem; padding-top: 1.25rem;
  border-top: 1px solid var(--hair-soft);
  font-size: .6875rem; letter-spacing: .06em;
  color: rgba(242,238,230,.35);
}

/* ── responsive ── */
@media (max-width: 1024px) {
  .rev-hero__inner { grid-template-columns: 1fr; }
  .rev-hero__cover { order: -1; max-width: 15rem; justify-self: start; }
  .rev-hero__cover img { transform: none; }
  .cta { grid-template-columns: 1fr; }
  .cta__alt { padding-left: 0; padding-top: 1.5rem; border-left: 0; border-top: 1px solid var(--hair-soft); }
}
@media (max-width: 760px) {
  .quote--rev p { text-transform: none; }
  .rev-hero__actions .btn { width: 100%; }
  .facts__table th { width: auto; }
}

/* ============================================================
   ANSWER BOX + FAQ + COMPARE
   Built for answer engines: one self-contained answer near the top,
   plain question/answer pairs, no content hidden from crawlers.
   ============================================================ */

/* ── answer box (AEO/GEO) ── */
.answer {
  background: var(--ink-2);
  border-bottom: 1px solid var(--hair-soft);
  padding: clamp(2rem, 4vw, 3rem) var(--gutter);
}
.answer__inner { max-width: var(--maxw); margin: 0 auto; }
.answer__q {
  font-family: var(--display);
  font-weight: 400; font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.15; letter-spacing: -.015em;
  margin-bottom: 1rem;
  max-width: 30ch;
}
.answer__q i { font-style: normal; }
.answer__a {
  max-width: 74ch;
  font-size: clamp(1rem, .4vw + .92rem, 1.0625rem);
  line-height: 1.7;
  color: var(--smoke);
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
}
.answer__a b { color: var(--paper); font-weight: 600; }

.answer__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  gap: 1px;
  margin-top: 1.75rem;
  background: var(--hair-soft);
  border: 1px solid var(--hair-soft);
}
.answer__facts > div { background: var(--ink-2); padding: .9rem 1rem; }
.answer__facts dt {
  font-size: .5625rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .3rem;
}
.answer__facts dd { font-size: .8125rem; color: var(--paper); line-height: 1.35; }

/* ── low-res cover cap on the review hero ── */
.rev-hero__cover--lores { max-width: 20.25rem; }

/* ── compare table ── */
.compare__table thead th {
  font-family: var(--display);
  font-weight: 500; font-style: italic;
  font-size: 1.0625rem;
  text-transform: none; letter-spacing: 0;
  color: var(--gold);
  width: auto;
  padding-bottom: 1rem;
}
.compare__table thead th:first-child { width: 11rem; }
.compare__table td { color: var(--smoke); }
.compare__table tbody th { vertical-align: middle; }

/* ── FAQ ── */
.faq { border-top: 1px solid var(--hair-soft); }
.faq__list {
  display: grid; gap: 1px;
  background: var(--hair-soft);
  border-block: 1px solid var(--hair-soft);
}
.faq__item { background: var(--ink); transition: background .4s var(--ease); }
.faq__item:hover { background: var(--ink-2); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.25;
  margin: 0;
  max-width: 62ch;
}
.faq__item summary::after {
  content: "+";
  font-family: var(--display);
  font-size: 1.5rem; line-height: 1;
  color: var(--gold);
  flex: 0 0 auto;
  transition: transform .45s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item[open] summary h3 { color: var(--gold); }
.faq__item > p {
  padding: 0 3rem 1.5rem 0;
  max-width: 78ch;
  font-size: .9375rem; line-height: 1.7;
  color: var(--smoke);
  animation: faqIn .45s var(--ease) both;
}
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px) } to { opacity: 1; transform: none } }
.faq__item summary:focus-visible { outline: 2px solid var(--gold-lit); outline-offset: -2px; }

@media (max-width: 760px) {
  .faq__item > p { padding-right: 1rem; }
  .compare__table { min-width: 34rem; }
}

/* ============================================================
   DISPLAY WEIGHT TUNING
   Bodoni Moda is a Didone: its hairlines get thinner as the text
   grows, which reads as "too thin" at headline sizes. Fix = carry
   more weight on the display type. One knob controls it all.
   --wt-display: 500 = airy/elegant · 600 = current · 700 = boldest.
   (The loaded font snaps 600 to its 700 master, so 600 renders sturdy.)
   ============================================================ */
:root { --wt-display: 600; }

/* big headlines + numbers · the parts that looked thinnest */
.sect-title, .sect-title em,
.hero__copy h1, .hero__copy h1 em,
.rev-hero__copy h1,
.ebook__title, .cta__copy h2, .sources__title,
.quote p, .success h3, .form__title, .answer__q,
.stats__num, .score__num, .price__num {
  font-weight: var(--wt-display);
}

/* section-level headings · sharpened to match, still lighter feel */
.book__body h3, .card__body h3, .level h3, .move h3,
.readers__h, .fortable__col h3, .cta__alt h3,
.faq__item summary h3, .compare__table thead th,
.about__lead, .mark__name {
  font-weight: var(--wt-display);
}

/* ============================================================
   EBOOK COVER  (seção do guia grátis na home)
   3 colunas no desktop: capa | texto | formulário
   ============================================================ */
/* 3 colunas só no desktop. Precisa ser min-width: a regra de 1 coluna do
   mobile está ANTES no arquivo, então uma regra sem condição a anularia. */
@media (min-width:1025px){
  .ebook__inner{
    grid-template-columns:minmax(0,.6fr) minmax(0,1.05fr) minmax(0,.9fr);
  }
}
.ebook__cover{align-self:center}
.ebook__cover img{
  width:100%;height:auto;display:block;
  border:1px solid rgba(10,10,12,.14);
  box-shadow:0 2px 4px rgba(10,10,12,.3), 0 34px 60px -22px rgba(10,10,12,.55);
  transform:perspective(1400px) rotateY(8deg) rotateX(1.5deg);
  transition:transform 1s var(--ease), box-shadow 1s var(--ease);
}
.ebook__cover img:hover{
  transform:perspective(1400px) rotateY(0) rotateX(0) translateY(-8px);
  box-shadow:0 2px 4px rgba(10,10,12,.3), 0 46px 80px -22px rgba(10,10,12,.6);
}

@media (max-width:1024px){
  /* empilha: capa, texto, formulário · capa sem ocupar a largura toda */
  .ebook__cover{max-width:16rem;justify-self:start}
  .ebook__cover img{transform:none}
}

/* ============================================================
   SUCCESS MODAL (popup de confirmação do e-book)
   ============================================================ */
.modal{position:fixed;inset:0;z-index:1000;display:grid;place-items:center;padding:1.25rem}
.modal[hidden]{display:none}
.modal__overlay{position:absolute;inset:0;background:rgba(6,6,8,.72);
  backdrop-filter:blur(6px);animation:mfade .3s var(--ease)}
.modal__box{position:relative;z-index:1;width:100%;max-width:32rem;
  background:var(--ink-2);border:1px solid var(--hair);
  padding:clamp(2rem,5vw,3rem);text-align:center;
  box-shadow:0 40px 90px -30px rgba(0,0,0,.85);
  animation:mrise .45s var(--ease)}
.modal__box::before{content:"";position:absolute;inset:.55rem;border:1px solid var(--hair-soft);
  pointer-events:none}
.modal__x{position:absolute;top:.85rem;right:1rem;z-index:2;background:none;border:0;
  font-size:1.75rem;line-height:1;color:var(--smoke);cursor:pointer;padding:.25rem .5rem;
  transition:color .3s var(--ease)}
.modal__x:hover,.modal__x:focus-visible{color:var(--gold-lit)}
.modal__box .success__seal{font-size:1.6rem;color:var(--gold);
  animation:seal .8s var(--ease) both}
.modal__box h3{font-family:var(--display);font-weight:600;
  font-size:clamp(1.6rem,3vw,2.15rem);line-height:1.02;letter-spacing:-.02em;
  margin:.9rem 0 .75rem;color:var(--paper)}
.modal__box p{color:var(--smoke);font-size:.9375rem;line-height:1.65;
  max-width:34ch;margin:0 auto 1.5rem}
.modal__box p b{color:var(--paper);font-weight:600}
@keyframes mfade{from{opacity:0}to{opacity:1}}
@keyframes mrise{from{opacity:0;transform:translateY(18px) scale(.98)}to{opacity:1;transform:none}}
@media (prefers-reduced-motion:reduce){
  .modal__overlay,.modal__box,.modal__box .success__seal{animation:none}
}
