:root {
  /* Marca */
  --ink: #1F2E28;
  --muted: #4A5C54;
  --brand: #1E4D3C;
  --brand-mid: #2A6B52;
  --cta: #D4552A;
  --cta-deep: #A83F1C;
  --gain: #1F7A4C;
  --loss: #B33A3A;
  --line: #B5C6B4;
  --chalk: #F3EEE3;
  --paper: #FFFCF7;
  --footer: #16352C;
  /* Texto sobre bandas coloridas */
  --on-band-title: #FFFFFF;
  --on-band-kicker: rgba(255, 255, 255, 0.92);
  --on-band-body: rgba(255, 255, 255, 0.88);
  --on-band-strong: #FFFFFF;
  /* Fundos vivos por família */
  --band-sand: #9A5C38;
  --band-sky: #0065A2;
  --band-sky-alt: #0077B8;
  --band-sage: #2F8F5B;
  --band-mint: #1A9D6F;
  --band-mint-deep: #157A57;
  --band-peach: #D4843A;
  /* Tipografia */
  --font-ui: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: Georgia, "Times New Roman", Times, serif;
  --font-body: var(--font-ui);
  --max: 720px;
  --wide: 1000px;
  --r: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-family: var(--font-body);
  background: var(--chalk);
  color: var(--ink);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(212, 85, 42, 0.16);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  overflow-x: hidden;
  line-height: 1.55;
  font-size: 16px;
  background: var(--chalk);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
strong { font-weight: 800; }

.shell {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
  text-align: center;
}

/* Type — ver DESIGN.md para mapa completo */
.kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin-bottom: 0.6rem;
}

.kicker .ico { width: 1rem; height: 1rem; }

h1, h2, h3 {
  font-family: var(--font-ui);
  line-height: 1.2;
  text-wrap: balance;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand);
}

h1 {
  font-size: clamp(1.55rem, 5.5vw, 2.2rem);
  margin-bottom: 0.7rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: clamp(1.7rem, 6vw, 2.45rem);
  line-height: 1.15;
}

.hero-lead {
  font-family: var(--font-ui);
  font-size: clamp(0.78rem, 3.15vw, 0.96rem);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.55;
  color: var(--brand);
  margin-bottom: 0.85rem;
  max-width: 38rem;
  margin-inline: auto;
}

.hero-hl {
  color: var(--brand);
  background: linear-gradient(180deg, transparent 62%, rgba(42, 107, 82, 0.22) 62%);
  font-weight: 800;
  padding: 0 0.1em;
}

h2 {
  font-size: clamp(1.3rem, 4.2vw, 1.75rem);
  margin-bottom: 0.65rem;
}

h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  max-width: 38rem;
  margin-inline: auto;
}

.hero-sub {
  font-family: var(--font-body);
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 38rem;
  margin-inline: auto;
}

/* Section rhythm — fundo sólido vivo + texto branco (hero = chalk) */
.band {
  padding: 2.75rem 0;
  content-visibility: auto;
  contain-intrinsic-size: 680px;
}

.band-chalk {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.55), rgba(243, 238, 227, 0.95)),
    repeating-linear-gradient(
      transparent,
      transparent 31px,
      rgba(201, 212, 200, 0.35) 31px,
      rgba(201, 212, 200, 0.35) 32px
    ),
    var(--chalk);
}

/* —— cada seção, cor sólida —— */
#problema { background: var(--band-sand); }
#para-quem { background: var(--band-sand); }

#autora { background: var(--band-sky); }
#numeros { background: var(--band-sky-alt); }
#duvidas { background: var(--band-sky); }

#como-usar { background: var(--band-sage); }
#acesso { background: var(--band-sage); }

#incluido { background: var(--band-peach); }

#bonus { background: var(--brand); }

#areas { background: var(--band-mint); }
#oferta { background: var(--band-mint-deep); }

/* Texto direto na banda = branco (cards brancos mantêm verde marca) */
.band:not(.hero) .shell > h2,
.band:not(.hero) .creator-copy > h2 {
  color: var(--on-band-title);
}

.band:not(.hero) .shell > .kicker,
.band:not(.hero) .creator-copy > .kicker {
  color: var(--on-band-kicker);
}

.band:not(.hero) .shell > .lead,
.band:not(.hero) .creator-copy > p,
.band:not(.hero) .section-cta:not(.section-cta-box) > p {
  color: var(--on-band-body);
}

.band:not(.hero) .creator-copy > p strong {
  color: var(--on-band-strong);
}

.band:not(.hero) .section-cta-box > p {
  color: var(--muted);
}

.band:not(.hero) .cta-ghost {
  color: var(--on-band-title);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.band:not(.hero) .cta-ghost:active {
  background: rgba(255, 255, 255, 0.14);
  color: var(--on-band-strong);
}

.band:not(.hero) .access-arrow {
  color: rgba(255, 255, 255, 0.75);
}

/* Hero */
.hero {
  padding: 1.85rem 0 2.5rem;
  border-bottom: 3px solid rgba(30, 77, 60, 0.12);
}

.hero-copy {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.bonus-pill {
  display: flex;
  gap: 0.6rem;
  align-items: stretch;
  justify-content: center;
  text-align: left;
  padding: 0.7rem 0.75rem;
  margin: 0 auto 0.25rem;
  max-width: min(100%, 24rem);
  background: var(--paper);
  border: 1.5px solid #E2C4A8;
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(30, 77, 60, 0.06);
}

.bonus-pill-icons {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: clamp(1.65rem, 5vw, 2rem);
  flex-shrink: 0;
  padding-bottom: 0.05rem;
}

.bonus-ico-gift {
  display: block;
  width: clamp(1.65rem, 5.5vw, 2rem);
  height: clamp(1.65rem, 5.5vw, 2rem);
  color: #2A6B52;
  animation: bonus-gift-beat 0.5s ease-in-out infinite;
}

.bonus-ico-point {
  display: block;
  width: clamp(1.25rem, 4vw, 1.5rem);
  height: clamp(1.25rem, 4vw, 1.5rem);
  color: #D4552A;
  animation: bonus-point-wag 2s ease-in-out infinite;
  transform-origin: 50% 80%;
}

@keyframes bonus-gift-beat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

@keyframes bonus-point-wag {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(18deg); }
  75% { transform: rotate(-8deg); }
}

.bonus-pill-body {
  flex: 1;
  min-width: 0;
}

.bonus-pill-title {
  font-weight: 800;
  font-size: clamp(0.82rem, 3.2vw, 0.92rem);
  color: var(--brand);
  margin-bottom: 0.1rem;
  line-height: 1.2;
}

.bonus-pill-line {
  font-size: clamp(0.68rem, 2.55vw, 0.8rem);
  color: var(--muted);
  line-height: 1.25;
  margin-top: 0.12rem;
}

.bonus-pill-value {
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1.5px dashed #D9C4A8;
  font-size: clamp(0.72rem, 2.7vw, 0.8rem);
  font-weight: 800;
  color: var(--cta);
  line-height: 1.2;
}

/* PDF reader — card estilo livro */
.pdf-reader {
  margin-top: 1.5rem;
  max-width: min(100%, 320px);
  margin-inline: auto;
}

.pdf-card {
  background: var(--paper);
  border-radius: 18px;
  border: 1.5px solid rgba(30, 77, 60, 0.14);
  box-shadow:
    0 1px 0 rgba(30, 77, 60, 0.05),
    0 16px 36px rgba(22, 53, 44, 0.12);
  overflow: hidden;
}

.pdf-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: auto;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  aspect-ratio: 720 / 1018;
  scrollbar-width: none;
  background: #F7F4EE;
}

.pdf-viewport::-webkit-scrollbar {
  display: none;
}

.pdf-track {
  display: flex;
  height: 100%;
}

.pdf-page {
  flex: 0 0 100%;
  margin: 0;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.pdf-page img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #F7F4EE;
}

.pdf-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  background: linear-gradient(180deg, #FFFEFB, #F6F1E8);
}

.pdf-bar-top {
  border-bottom: 1px solid rgba(30, 77, 60, 0.1);
}

.pdf-bar-bottom {
  border-top: 1px solid rgba(30, 77, 60, 0.1);
}

.pdf-stats-inline {
  list-style: none;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.35rem;
  width: 100%;
  margin: 0;
  padding: 0;
}

.pdf-stats-inline li {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 0.15rem 0.2rem;
}

.pdf-stats-inline li + li {
  border-left: 1px solid rgba(30, 77, 60, 0.12);
}

.pdf-stats-inline strong {
  display: block;
  font-family: var(--font-ui);
  font-size: clamp(0.88rem, 3.4vw, 0.98rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.15;
}

.pdf-stats-inline span {
  display: block;
  margin-top: 0.1rem;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Preço hero — lateral, alinhado na baseline */
.hero-price {
  margin-top: 0.9rem;
  padding: 0.85rem 0.75rem 0.95rem;
  text-align: center;
}

.hero-price-label {
  margin: 0 0 0.55rem;
  font-family: var(--font-ui);
  font-size: clamp(0.82rem, 3.2vw, 0.92rem);
  font-weight: 600;
  color: var(--muted);
  line-height: 1.35;
}

.hero-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem 0.45rem;
}

.hero-price-was {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 4vw, 1.15rem);
  font-weight: 600;
  color: #8A9690;
  text-decoration: line-through;
  text-decoration-color: rgba(179, 58, 58, 0.45);
  text-decoration-thickness: 2px;
}

.hero-price-by {
  font-family: var(--font-ui);
  font-size: clamp(0.88rem, 3.2vw, 0.98rem);
  font-weight: 600;
  color: var(--muted);
}

.hero-price-now {
  display: inline-flex;
  align-items: flex-start;
  margin: 0;
  line-height: 1;
  color: var(--cta);
  font-family: var(--font-ui);
  font-weight: 900;
}

.hero-price-cur {
  font-size: clamp(1rem, 4.2vw, 1.2rem);
  font-weight: 800;
  margin-top: 0.22em;
  margin-right: 0.06em;
  letter-spacing: -0.02em;
}

.hero-price-val {
  font-size: clamp(2.35rem, 10vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.hero-price-save {
  display: inline-block;
  margin: 0.55rem 0 0;
  padding: 0.38rem 0.9rem;
  font-family: var(--font-ui);
  font-size: clamp(0.78rem, 3vw, 0.88rem);
  font-weight: 800;
  color: var(--gain);
  background: rgba(31, 122, 76, 0.1);
  border: 1.5px solid rgba(31, 122, 76, 0.28);
  border-radius: 999px;
  line-height: 1.2;
}

.pdf-hint {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

.pdf-nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  align-items: center;
}

.pdf-btn {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  background: var(--paper);
  color: var(--brand);
  display: grid;
  place-content: center;
  cursor: pointer;
  touch-action: manipulation;
  box-shadow: none;
  transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
}

.pdf-btn svg { width: 1.05rem; height: 1.05rem; }
.pdf-btn:active { transform: scale(0.94); background: var(--brand); color: #fff; }
.pdf-btn:focus-visible { outline: 3px solid var(--cta); outline-offset: 2px; }
.pdf-btn:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
  background: var(--paper);
  color: var(--brand-mid);
  border-color: var(--line);
}

.hero-cta-block {
  margin-top: 1.35rem;
  width: 100%;
  margin-inline: auto;
}

.hero-cta-block .cta {
  max-width: 320px;
  margin-inline: auto;
}

.micro-row {
  list-style: none;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.2rem, 1.8vw, 0.65rem);
  margin-top: 0.85rem;
  padding: 0;
  font-size: clamp(0.58rem, 2.6vw, 0.78rem);
  color: var(--muted);
  width: 100%;
}

.micro-row li {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 0.18rem;
  flex: 0 0 auto;
  white-space: nowrap;
}

.micro-row svg {
  display: block;
  width: 0.82em;
  height: 0.82em;
  color: var(--gain);
  flex-shrink: 0;
}

/* CTA */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 0.9rem 1.25rem;
  background: var(--cta);
  color: #fff;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 5px 0 var(--cta-deep);
  touch-action: manipulation;
  text-align: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.cta:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 var(--cta-deep);
}

.cta:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

.cta-ghost {
  background: transparent;
  color: var(--brand);
  box-shadow: none;
  border: 2.5px solid var(--brand);
}

.cta-ghost:active {
  background: rgba(255, 252, 247, 0.7);
  box-shadow: none;
  transform: translateY(1px);
}

.section-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.section-cta p {
  color: var(--muted);
  margin: 0 auto 0.9rem;
  max-width: 36rem;
}

.section-cta .cta {
  max-width: 420px;
  margin-inline: auto;
}

.section-cta-box {
  margin-top: 1.75rem;
  padding: 1.15rem 1rem 1.25rem;
  border: 1.5px solid rgba(30, 77, 60, 0.3);
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.94);
  box-shadow: 0 8px 22px rgba(22, 53, 44, 0.1);
}

/* Compare — cards brancos sobre banda escura */
.compare {
  display: grid;
  gap: 0.85rem;
}

.compare-bad,
.compare-good {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  padding: 1.2rem 1.1rem 1.15rem;
  background: #FFFFFF;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 12px 32px rgba(45, 34, 24, 0.16);
}

.compare-bad::before,
.compare-good::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.compare-bad {
  border: 2px solid rgba(179, 58, 58, 0.28);
}

.compare-bad::before { background: linear-gradient(90deg, var(--loss), #D46A6A); }

.compare-good {
  border: 2px solid rgba(31, 122, 76, 0.28);
}

.compare-good::before { background: linear-gradient(90deg, var(--gain), #3FA872); }

.compare-label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.compare-bad .compare-label { color: var(--loss); }
.compare-good .compare-label { color: var(--gain); }

.compare-quote {
  font-size: 1.02rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
  text-align: left;
}

.compare-list li + li { margin-top: 0.45rem; }

.cmp-icon {
  width: 1.65rem;
  height: 1.65rem;
  flex-shrink: 0;
  object-fit: contain;
}

/* Creator */
.creator {
  display: grid;
  gap: 1.35rem;
}

.portrait-frame {
  position: relative;
  padding: 3px;
  border-radius: calc(var(--r) + 4px);
  background: var(--paper);
  max-width: 100%;
  margin-inline: auto;
  overflow: hidden;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: conic-gradient(from 0deg, #3897F0, #6BB5FF, #D6E4EF 35%, #3897F0 70%, #2A6B52);
  animation: portrait-ring 3.5s linear infinite;
  z-index: 0;
}

@keyframes portrait-ring {
  to { transform: rotate(360deg); }
}

.portrait {
  position: relative;
  z-index: 1;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--paper);
  margin: 0;
}

.portrait img {
  width: 100%;
  aspect-ratio: 1448 / 1086;
  object-fit: cover;
  object-position: center;
}

.years-badge {
  position: absolute;
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.8rem;
  background: rgba(255, 252, 247, 0.96);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(22, 53, 44, 0.18);
  border: 1px solid rgba(30, 77, 60, 0.1);
}

.years-badge strong {
  flex-shrink: 0;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  white-space: nowrap;
}

.years-badge span {
  font-size: 0.74rem;
  line-height: 1.25;
  color: var(--muted);
  font-weight: 600;
}

.creator-copy {
  text-align: center;
}

.creator-copy p + p {
  margin-top: 0.65rem;
}

.cred-chips {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(0.25rem, 1.5vw, 0.45rem);
  margin: 1rem auto 0.85rem;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cred-chips::-webkit-scrollbar { display: none; }

.cred-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-size: clamp(0.62rem, 2.4vw, 0.74rem);
  font-weight: 700;
  padding: 0.38rem 0.55rem 0.38rem 0.38rem;
  background: #FFFFFF;
  border: 1.5px solid rgba(30, 77, 60, 0.2);
  border-radius: 999px;
  color: var(--brand);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(22, 53, 44, 0.08);
}

.cred-chips .verified {
  width: 0.95rem;
  height: 0.95rem;
  color: #3897F0;
  flex-shrink: 0;
}

.creator-sign-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.5rem;
  padding: 0.75rem 0.9rem;
  background: #FFFFFF;
  border: 1.5px solid rgba(30, 77, 60, 0.22);
  border-radius: 14px;
  text-align: left;
  max-width: 26rem;
  margin-inline: auto;
  box-shadow: 0 8px 22px rgba(22, 53, 44, 0.1);
}

.creator-avatar {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--brand-mid);
  background: var(--chalk);
}

.creator-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-name {
  font-weight: 900;
  font-size: 1rem;
  color: var(--brand);
  line-height: 1.2;
}

.creator-role {
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.3;
}

/* Steps */
.steps {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.steps li {
  display: flex;
  gap: 0.95rem;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  background: #FFFFFF;
  border: 1.5px solid rgba(30, 77, 60, 0.22);
  border-radius: 14px;
  padding: 1.05rem 1.1rem;
  box-shadow: 0 8px 22px rgba(22, 53, 44, 0.1);
}

.step-ico {
  width: 3rem;
  height: 3rem;
  color: var(--brand-mid);
  flex-shrink: 0;
}

.step-ico svg { width: 100%; height: 100%; }

.pulse-ring {
  transform-origin: center;
  opacity: 0.45;
  animation: ring-pulse 2.2s ease-out infinite;
}

@keyframes ring-pulse {
  0% { transform: scale(0.92); opacity: 0.55; }
  70% { transform: scale(1.08); opacity: 0; }
  100% { transform: scale(1.08); opacity: 0; }
}

.steps p { color: var(--muted); font-size: 0.95rem; margin-top: 0.2rem; }

/* Packs / areas / stats / who / bonus */
.pack-grid,
.area-grid,
.who-grid,
.bonus-grid {
  display: grid;
  gap: 0.75rem;
}

.pack,
.area-grid article,
.who-grid article,
.bonus-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(30, 77, 60, 0.2);
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 22px rgba(22, 53, 44, 0.11);
}

.pack-main { border-color: var(--brand-mid); }

.pack-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin-bottom: 0.55rem;
}

.pack-free { color: var(--gain); }

.pack-cover {
  margin: 0 0 0.75rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.pack-cover img {
  width: 100%;
  aspect-ratio: 900 / 1272;
  object-fit: cover;
  display: block;
}

.pack-covers {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.pack-item {
  background: #fff;
  border: none;
  padding: 0.5rem 0.4rem 0.55rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(22, 53, 44, 0.07);
}

.pack-label {
  display: block;
  font-size: clamp(0.52rem, 2.2vw, 0.68rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-mid);
  padding: 0.35rem 0.3rem;
  margin-bottom: 0.35rem;
  border: 1.5px solid rgba(30, 77, 60, 0.18);
  border-radius: 8px;
  background: var(--paper);
}

.pack-item.pack-main .pack-label {
  border-color: var(--brand-mid);
  color: var(--brand);
}

.pack-img {
  margin: 0;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.pack-img img {
  width: 100%;
  aspect-ratio: 900 / 1272;
  object-fit: cover;
  display: block;
}

.pack-name {
  display: block;
  margin-top: 0.35rem;
  padding: 0.4rem 0.3rem;
  font-size: clamp(0.62rem, 2.4vw, 0.78rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--brand);
  border: 1.5px solid rgba(30, 77, 60, 0.18);
  border-radius: 8px;
  background: var(--paper);
}

.section-banner {
  margin: 1.5rem 0 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--line);
  background: var(--paper);
  box-shadow: 0 8px 20px rgba(22, 53, 44, 0.08);
}

.section-banner img {
  width: 100%;
  aspect-ratio: 1600 / 900;
  object-fit: cover;
  display: block;
}

.inventario-media {
  margin: 0 0 1.15rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--line);
  background: var(--paper);
  box-shadow: 0 8px 20px rgba(22, 53, 44, 0.08);
}

.inventario-media img {
  width: 100%;
  aspect-ratio: 1600 / 900;
  object-fit: cover;
  display: block;
}

.pack p,
.area-grid p,
.who-grid p,
.bonus-card p { color: var(--muted); font-size: 0.95rem; }

.area-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.area-grid article {
  position: relative;
  overflow: hidden;
  border-color: rgba(30, 77, 60, 0.22);
}

.area-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--area-accent, var(--brand-mid));
}

.area-grid article:nth-child(1) { --area-accent: #2F8F6B; }
.area-grid article:nth-child(2) { --area-accent: #3A6F8F; }
.area-grid article:nth-child(3) { --area-accent: #6B5B8A; }
.area-grid article:nth-child(4) { --area-accent: #C45C3E; }
.area-grid article:nth-child(5) { --area-accent: #4A6B5C; }

.area-grid .area-wide {
  grid-column: span 2;
}

.area-ico {
  display: inline-flex;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.45rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.area-s { background: #2F8F6B; }
.area-l { background: #3A6F8F; }
.area-c { background: #6B5B8A; }
.area-a { background: #C45C3E; }
.area-m { background: #4A6B5C; }

.ages-block {
  margin-top: 1.5rem;
  padding: 1.15rem;
  background: #FFFFFF;
  border: 1.5px solid rgba(30, 77, 60, 0.28);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(22, 53, 44, 0.12);
}

.ages-title {
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.25rem;
}

.ages-sub {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.85rem;
}

.age-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.age-list li {
  background: var(--chalk);
  border: 1.5px solid rgba(30, 77, 60, 0.14);
  border-radius: 10px;
  padding: 0.55rem 0.4rem;
  text-align: center;
}

.age-list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--brand);
}

.age-list span {
  display: block;
  margin-top: 0.08rem;
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bonus-headline-val {
  color: var(--cta);
  font-weight: 900;
  white-space: nowrap;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.stat-grid article {
  background: #FFFFFF;
  border: 1.5px solid rgba(30, 77, 60, 0.22);
  border-radius: 14px;
  padding: 1rem 0.75rem;
  text-align: center;
  box-shadow: 0 8px 22px rgba(22, 53, 44, 0.1);
}

.stat-grid strong {
  display: block;
  font-size: 1.55rem;
  color: var(--brand);
  line-height: 1.1;
}

.stat-grid span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.who-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.4rem;
  text-align: left;
}

.who-head h3 {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.25;
}

.who-ico {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  color: var(--brand-mid);
  flex-shrink: 0;
  margin: 0;
}

.who-ico svg { width: 100%; height: 100%; }

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

.bonus-grid {
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.bonus-tag {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cta);
  margin: 0 0 0.4rem;
}

.bonus-cover {
  margin: 0 0 0.2rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.bonus-cover img {
  width: 100%;
  aspect-ratio: 900 / 1272;
  object-fit: cover;
  display: block;
}

.bonus-price { margin-top: 0.5rem; font-size: 0.88rem; }
.bonus-price s { color: var(--loss); }
.bonus-card {
  border-color: rgba(30, 77, 60, 0.22);
  padding: 0.75rem;
  animation: bonus-rise 0.7s ease both;
}

.bonus-card:nth-child(2) { animation-delay: 0.12s; }

@keyframes bonus-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.bonus-hoje {
  margin-top: 0.35rem;
  font-size: clamp(0.88rem, 3.8vw, 1.05rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gain);
  line-height: 1.1;
  animation: bonus-pulse 1.8s ease-in-out infinite;
}

@keyframes bonus-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.88; }
}

/* Access — fluxo gamificado */
.access-flow {
  list-style: none;
  display: grid;
  gap: 0;
  max-width: 22rem;
  margin-inline: auto;
}

.access-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.access-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  width: 100%;
  padding: 1rem 1.05rem;
  background: #FFFFFF;
  border: 1.5px solid rgba(30, 77, 60, 0.22);
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 8px 22px rgba(22, 53, 44, 0.1);
}

.access-arrow {
  display: flex;
  justify-content: center;
  width: 1.5rem;
  height: 1.75rem;
  margin: 0.2rem 0 0.15rem;
  color: var(--brand-mid);
  animation: access-bounce 1.4s ease-in-out infinite;
}

.access-arrow svg {
  width: 100%;
  height: 100%;
}

.access-item-last .access-arrow { display: none; }

.access-ico {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--brand);
  flex-shrink: 0;
}

.access-ico svg { width: 100%; height: 100%; }

.access-body strong {
  display: block;
  color: var(--brand);
  font-size: 1rem;
}

.access-body p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

@keyframes access-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(5px); opacity: 1; }
}

/* Offer — card claro (ficha escolar), NÃO navy escuro */
.offer-card {
  background: #FFFFFF;
  color: var(--ink);
  border-radius: 20px;
  padding: 1.45rem 1.2rem 1.6rem;
  text-align: center;
  border: 2.5px solid var(--brand);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 20px 44px rgba(22, 53, 44, 0.16);
  position: relative;
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 6px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, var(--brand-mid), #5BA882, var(--brand-mid));
}

.offer-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin: 0.55rem 0 0.45rem;
}

.offer-card h2 { color: var(--brand); }

.offer-lead {
  color: var(--muted);
  margin-bottom: 1rem;
}

.stack-list {
  list-style: none;
  text-align: left;
  margin-bottom: 0.85rem;
}

.stack-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.stack-list strong { color: var(--muted); font-weight: 700; }

.stack-total {
  color: var(--muted);
  margin: 0.7rem 0 0.25rem;
}

.stack-total s { color: var(--loss); }

.offer-now-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin-top: 0.5rem;
}

.offer-price {
  font-size: clamp(2.5rem, 9vw, 3.3rem);
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin: 0.15rem 0 0.35rem;
}

.offer-save {
  font-weight: 800;
  color: var(--gain);
  margin-bottom: 1.1rem;
}

.offer-cta-bloom {
  position: relative;
  display: block;
  isolation: isolate;
}

.offer-cta-bloom::before,
.offer-cta-bloom::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: var(--cta);
  pointer-events: none;
  z-index: 0;
  animation: offer-cta-bloom 2.5s ease-out infinite;
  will-change: transform, opacity;
}

.offer-cta-bloom::after {
  animation-delay: 1.25s;
}

.offer-cta-bloom .cta {
  position: relative;
  z-index: 1;
}

@keyframes offer-cta-bloom {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  65%, 100% {
    transform: scale(1.16);
    opacity: 0;
  }
}

.offer-micro {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.85rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.offer-micro li::before {
  content: "✓ ";
  color: var(--gain);
  font-weight: 800;
}

.offer-guarantee {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.15rem;
  padding: 0.95rem 0.85rem;
  background: var(--chalk);
  border: 1.5px solid #B4D4C0;
  border-radius: 14px;
  text-align: left;
}

.offer-guarantee-img {
  flex-shrink: 0;
  width: 3.75rem;
  height: 3.75rem;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
}

.offer-guarantee-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offer-guarantee-title {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.25rem;
}

.offer-guarantee-copy p:last-child {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
}

.disclaimer {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.75rem 0.85rem;
  background: var(--chalk);
  border-radius: 10px;
  border: 1px solid var(--line);
}

/* FAQ */
.faq-item {
  background: #FFFFFF;
  border: 1.5px solid rgba(30, 77, 60, 0.22);
  border-radius: 12px;
  margin-bottom: 0.55rem;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(22, 53, 44, 0.09);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  touch-action: manipulation;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 3px solid var(--brand); outline-offset: -3px; }

.faq-plus {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--brand-mid);
  transition: transform 0.15s ease;
}

.faq-item[open] .faq-plus { transform: rotate(45deg); }
.faq-item p { padding: 0 1.1rem 1.05rem; color: var(--muted); }

/* Footer — só aqui a logo */
.foot {
  padding: 2.4rem 0 2.6rem;
  background: var(--footer);
  color: #C8D9D0;
  font-size: 0.92rem;
}

.foot-inner { text-align: center; }

.foot-logo {
  display: inline-block;
  margin-bottom: 0.85rem;
}

.foot-logo img {
  width: min(240px, 72vw);
  margin-inline: auto;
  filter: brightness(0) invert(1);
}

.legal {
  margin-top: 0;
  font-size: 0.76rem;
  line-height: 1.5;
  color: #8FA89A;
}

/* Back-redirect modal (saída desktop / voltar mobile) */
.back-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.back-modal.is-open {
  display: flex;
}

.back-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 53, 44, 0.62);
  backdrop-filter: blur(3px);
}

.back-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 22rem);
  max-height: min(92vh, 640px);
  overflow-y: auto;
  padding: 1.35rem 1.15rem 1.25rem;
  background: #FFFFFF;
  border: 2.5px solid var(--brand);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 24px 48px rgba(22, 53, 44, 0.22);
}

.back-modal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 5px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, var(--brand-mid), #5BA882, var(--brand-mid));
}

.back-modal-close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: var(--chalk);
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
}

.back-modal-close:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

.back-modal-kicker {
  margin: 0.45rem 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-mid);
}

.back-modal-card h2 {
  font-size: clamp(1.15rem, 4.5vw, 1.35rem);
  color: var(--brand);
  margin-bottom: 0.45rem;
}

.back-modal-lead {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.back-modal-list {
  list-style: none;
  text-align: left;
  margin: 0 0 0.9rem;
  padding: 0.75rem 0.85rem;
  background: var(--chalk);
  border: 1.5px solid var(--line);
  border-radius: 12px;
}

.back-modal-list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.35;
}

.back-modal-list li + li {
  margin-top: 0.45rem;
}

.back-modal-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gain);
  font-weight: 800;
}

.back-modal-was {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.back-modal-was s {
  color: var(--loss);
}

.back-modal-price {
  margin: 0.15rem 0 0.85rem;
  font-size: clamp(2.2rem, 9vw, 2.75rem);
  font-weight: 900;
  line-height: 1;
  color: var(--cta);
}

.back-modal-cur {
  font-size: 0.55em;
  vertical-align: top;
  margin-right: 0.05em;
}

.back-modal-cta {
  width: 100%;
  min-height: 52px;
  font-size: 1rem;
}

.back-modal-skip {
  display: block;
  width: 100%;
  margin-top: 0.65rem;
  padding: 0.55rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  touch-action: manipulation;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.back-modal-skip:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
}

body.back-modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .pulse-ring { animation: none; }
  .cta { transition: none; }
  .offer-cta-bloom::before,
  .offer-cta-bloom::after { animation: none; opacity: 0; }
  .bonus-card { animation: none; }
  .bonus-hoje { animation: none; }
  .portrait-frame::before { animation: none; }
  .access-arrow { animation: none; }
  .bonus-ico-gift,
  .bonus-ico-point { animation: none; }
  .pdf-viewport { scroll-behavior: auto; }
}

@media (min-width: 840px) {
  .shell { width: min(100% - 48px, var(--wide)); }

  .pdf-reader {
    max-width: 360px;
  }

  .micro-row {
    font-size: 0.82rem;
    gap: 0.85rem;
  }

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

  .creator {
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: center;
  }

  .years-badge {
    left: 1rem;
    right: auto;
    max-width: 78%;
    bottom: 1rem;
  }

  .years-badge strong { font-size: 1.35rem; }
  .years-badge span { font-size: 0.86rem; }

  .steps { grid-template-columns: repeat(3, 1fr); }

  .steps li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pack-covers {
    gap: 0.85rem;
  }

  .pack-label { font-size: 0.72rem; }
  .pack-name { font-size: 0.92rem; }

  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .area-wide { grid-column: span 2; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-grid { grid-template-columns: repeat(3, 1fr); }
  .age-list { grid-template-columns: repeat(6, 1fr); }

  .access-flow { max-width: 26rem; }

  .offer-card {
    width: min(100%, 540px);
    margin-inline: auto;
    padding: 1.75rem 1.6rem 1.85rem;
  }

  .cta { width: auto; min-width: 280px; }
  .hero-cta-block .cta { width: 100%; }
  .section-cta .cta { width: 100%; max-width: 400px; }
}
