:root {
  --fg-deep:   #1F2A1A;
  --fg-muted:  #6B7F5B;
  --fg-soft:   #8D9A80;
  --brand:     #3E5C2E;
  --brand-500: #4E7239;
  --brand-600: #2D4018;
  --brand-700: #1F2E12;
  --accent:    #D97706;
  --accent-600:#B45309;
  --amber:     #F5D68A;
  --bg:        #F5F1E8;
  --bg-soft:   #FAF7F0;
  --bg-cream:  #FFFBF2;
  --surface:   #FFFFFF;
  --border:    #E5E0D4;
  --border-soft:#EEE8DB;
  --success:   #3E7C3E;
  --danger:    #B91C1C;
  --info:      #1D4ED8;
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(46,82,34,.06);
  --shadow:    0 4px 16px rgba(46,82,34,.08);
  --shadow-md: 0 8px 28px rgba(46,82,34,.1);
  --shadow-lg: 0 16px 48px rgba(46,82,34,.14);
  --shadow-xl: 0 28px 72px rgba(46,82,34,.18);
}

* { box-sizing: border-box; }
*:focus-visible { outline: 3px solid rgba(62,92,46,.5); outline-offset: 3px; border-radius: 6px; }

html, body {
  margin: 0; padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--fg-deep);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16.5px;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  letter-spacing: -0.022em;
  line-height: 1.08;
  margin: 0 0 .6em;
  color: var(--brand-600);
  font-weight: 700;
  text-wrap: balance;        /* equilibra linhas e mata viúvas */
}

p, li, blockquote, dt, dd, figcaption {
  text-wrap: pretty;         /* evita que última linha fique com 1 palavra */
}

h1 { font-size: clamp(2.1rem, 6.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4.6vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p  { margin: 0 0 1em; }
strong { color: var(--brand-700); font-weight: 700; }

a  { color: var(--brand); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent); }

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

::selection { background: rgba(217,119,6,.3); color: var(--brand-700); }

.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}
.container-sm { max-width: 720px; }
.container-md { max-width: 880px; }

/* ================================================
   URGENCY BAR (topo, acima do nav)
================================================ */
.urgency-bar {
  background: linear-gradient(90deg, var(--brand-700), var(--brand-600));
  color: #F5F1E8;
  font-size: 13.5px;
  text-align: center;
  padding: 8px 16px;
  font-weight: 500;
  letter-spacing: .01em;
}
.urgency-bar b { color: var(--amber); }
.urgency-bar .pulse-dot {
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  margin-right: 8px;
  animation: pulseDot 1.4s ease-in-out infinite;
  vertical-align: middle;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,214,138,.6); }
  50%      { box-shadow: 0 0 0 7px rgba(245,214,138,0); }
}

/* ================================================
   BUTTONS
================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease, background .2s ease;
  will-change: transform;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn:disabled,
.btn.is-loading {
  cursor: not-allowed;
  opacity: .85;
  pointer-events: none;
  transform: none !important;
  filter: saturate(.85);
}
.btn.is-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn.is-loading::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.45);
  border-top-color: #fff;
  animation: btnSpin .7s linear infinite;
  flex: 0 0 auto;
}
@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

.btn-primary {
  background: linear-gradient(180deg, #E08209 0%, var(--accent-600) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(217,119,6,.35), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-primary:hover { background: var(--accent-600); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(217,119,6,.5); }

.btn-ghost {
  background: transparent;
  color: var(--brand-600);
  border: 1.5px solid rgba(62,92,46,.3);
}
.btn-ghost:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

.btn-secondary {
  background: var(--brand-600);
  color: #fff;
}
.btn-secondary:hover { background: var(--brand-700); color: #fff; transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-sm    { padding: 10px 18px; font-size: 14px; border-radius: 10px; }
.btn-lg    { padding: 18px 34px; font-size: 17.5px; border-radius: 14px; }
.btn-xl    { padding: 22px 40px; font-size: 19px; border-radius: 16px; }

/* pulse attention */
.btn-pulse { animation: btnPulse 2.4s ease-in-out infinite; }
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(217,119,6,.35), 0 0 0 0 rgba(217,119,6,.5); }
  50%      { box-shadow: 0 6px 20px rgba(217,119,6,.35), 0 0 0 14px rgba(217,119,6,0); }
}

/* ================================================
   NAVBAR
================================================ */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(245,241,232,.88);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--border);
  overflow: visible;
}
/* Nav clássico — marca à esquerda, menu à direita */
.nav-inner-classic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  min-height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--brand-600);
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand:hover .brand-mark { transform: rotate(-4deg) scale(1.05); }
.brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.01em;
  color: var(--brand-600);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media (max-width: 600px) {
  .nav-inner-classic { padding: 10px 14px; gap: 10px; min-height: 60px; }
  .brand-name        { display: none; }
  .nav-menu          { gap: 14px; }
  .brand-mark        { width: 40px; height: 40px; }
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 10px 20px;
  min-height: 76px;
  position: relative;
}
.nav-left  { display: flex; align-items: center; gap: 18px; justify-self: start; }
.nav-right { display: flex; align-items: center; gap: 18px; justify-self: end; }
.nav-link {
  color: var(--brand-600);
  font-weight: 600;
  font-size: 14.5px;
  transition: color .15s ease;
  white-space: nowrap;
}
.nav-link:hover { color: var(--accent); }

/* Logo central — 300px ancorado no topo do nav, hangs down */
.nav-logo {
  position: absolute;
  left: 50%;
  top: 4px;
  transform: translateX(-50%);
  display: block;
  line-height: 0;
  z-index: 2;
  width: 300px;
  pointer-events: auto;
}
.nav-logo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .25s ease;
  filter: drop-shadow(0 6px 18px rgba(46,64,24,.25));
}
.nav-logo:hover img { transform: translateX(0) translateY(-1px); }

@media (max-width: 720px) {
  .nav-inner { padding: 8px 14px; min-height: 64px; gap: 10px; }
  .nav-logo  { width: 180px; top: 4px; }
  .nav-link  { font-size: 13.5px; }
}

/* Compatibilidade com .logo antigo do footer (pra não quebrar) */
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 18px; color: var(--brand-600);
}
.logo-dot {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  display: grid; place-items: center; color: #fff; font-size: 20px;
  box-shadow: 0 3px 8px rgba(46,64,24,.3);
}

/* ================================================
   HERO (clean — sem gimmicks)
================================================ */
.hero {
  position: relative;
  padding: 56px 0 64px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
}
/* Mobile: imagem antes do texto */
.hero-grid > .hero-text   { order: 2; }
.hero-grid > .hero-visual { order: 1; }
@media (min-width: 920px) {
  .hero { padding: 80px 0 96px; }
  .hero-grid { grid-template-columns: 1fr 1.15fr; gap: 56px; }
  .hero-grid > .hero-text   { order: 0; }
  .hero-grid > .hero-visual { order: 0; }
}

.hero-text { max-width: 560px; }
.hero-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin: 0 0 10px;
}
.hero-format-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600;
  background: rgba(217,119,6,.10);
  color: var(--accent-600);
  border: 1px solid rgba(217,119,6,.22);
  padding: 5px 12px; border-radius: 999px;
  margin: 0 0 18px;
}
.hero-h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--brand-700);
  margin: 0 0 20px;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0 0 32px;
  max-width: 520px;
}
.hero-lead strong { color: var(--brand-700); }
.hero-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 32px;
}
.hero-link {
  color: var(--brand-600);
  font-weight: 600;
  font-size: 15px;
  transition: color .15s ease;
}
.hero-link:hover { color: var(--accent-600); }
.hero-foot {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13.5px;
  color: var(--fg-muted);
}
.hero-foot li {
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.hero-foot .hf-ico {
  font-size: 14px; line-height: 1;
}

.hero-visual {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}
.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
@media (max-width: 600px) {
  .hero-foot { font-size: 12.5px; }
  .hero-visual { max-width: 320px; }
}
@media (min-width: 920px) {
  .hero-visual { max-width: 620px; }
}
.hero-inner {
  position: relative;
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
  align-items: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(62,92,46,.08);
  color: var(--brand-600);
  font-weight: 600; font-size: 13px;
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: .02em;
}
.eyebrow.accent {
  background: rgba(217,119,6,.12);
  color: var(--accent-600);
}

.hero h1 span.hl {
  background: linear-gradient(120deg, var(--accent) 0%, #F59E0B 60%, #FBBF24 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 19px; color: var(--fg-muted);
  max-width: 560px; margin: 4px 0 26px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }

.hero-trust {
  display: flex; gap: 18px; flex-wrap: wrap;
  align-items: center;
  color: var(--fg-muted); font-size: 13.5px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.hero-trust b { color: var(--brand-600); }

/* Hero stage — ebook + selo do emblema sobreposto */
.hero-stage {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}
.hero-art {
  position: relative;
  filter: drop-shadow(0 22px 44px rgba(31,46,18,.3));
  animation: heroFloat 6s ease-in-out infinite;
}
.hero-art img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.hero-art::after {
  content: ""; position: absolute;
  bottom: -18px; left: 20%; right: 20%; height: 14px;
  background: radial-gradient(closest-side, rgba(31,46,18,.22), transparent);
  filter: blur(4px);
  z-index: -1;
}

/* Selo emblema flutuante — canto inferior esquerdo do ebook */
.hero-seal {
  position: absolute;
  bottom: -28px;
  left: -42px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(31,46,18,.3), 0 0 0 6px rgba(245,241,232,.95), 0 0 0 8px var(--brand-600);
  overflow: hidden;
  transform: rotate(-8deg);
  animation: sealWobble 8s ease-in-out infinite;
  z-index: 2;
}
.hero-seal img {
  width: 110%;
  height: 110%;
  object-fit: cover;
  margin: -5%;
  display: block;
}
@keyframes sealWobble {
  0%, 100% { transform: rotate(-8deg); }
  50%      { transform: rotate(-3deg); }
}
@media (max-width: 720px) {
  .hero-stage  { max-width: 320px; }
  .hero-seal   { width: 130px; height: 130px; bottom: -18px; left: -22px; }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(-0.3deg); }
  50%      { transform: translateY(-12px) rotate(0.3deg); }
}

@media (min-width: 900px) {
  .hero { padding: 72px 0 100px; }
  .hero-inner { grid-template-columns: 1.2fr .8fr; gap: 56px; }
}

/* ================================================
   STATS BAR
================================================ */
.stats {
  background: var(--brand-600);
  color: #fff;
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('/assets/img/pattern.svg');
  opacity: .04; pointer-events: none;
}
.stats-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(1, 1fr);
  text-align: center;
  position: relative;
}
.stat b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 36px; font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}
.stat span {
  font-size: 13px;
  opacity: .9;
  letter-spacing: .04em;
  text-transform: uppercase;
}
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }

/* ================================================
   SECTIONS
================================================ */
.section { padding: 72px 0; }
.section-tight { padding: 40px 0; }
.section-sm { padding: 52px 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-header p { color: var(--fg-muted); font-size: 17.5px; }
.section-header .eyebrow { margin-bottom: 14px; }

/* ================================================
   CARDS
================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-xl { padding: 32px; border-radius: var(--radius-lg); }

.grid-3 {
  display: grid; gap: 18px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-2 {
  display: grid; gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 780px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.chapter {
  display: flex; gap: 16px; align-items: flex-start;
}
.chapter-icon {
  flex: 0 0 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(62,92,46,.18) 0%, rgba(62,92,46,.08) 100%);
  color: var(--brand-600);
  display: grid; place-items: center;
  font-size: 20px; font-weight: 700;
  font-family: 'Fraunces', serif;
}
.chapter h3 { margin: 0 0 6px; color: var(--brand-600); font-size: 17.5px; }
.chapter p { margin: 0; font-size: 14.8px; color: var(--fg-muted); line-height: 1.55; }

/* ================================================
   BULLETS
================================================ */
.bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.bullets li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--fg-deep);
  font-size: 16px; line-height: 1.55;
}
.bullets .check {
  flex: 0 0 24px; height: 24px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center; font-size: 13px;
  margin-top: 2px;
  font-weight: 700;
}
.bullets.lg li { font-size: 17px; }

/* ================================================
   COMPARE (✗ vs ✓)
================================================ */
.compare { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare .card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.compare .good { border-color: rgba(62,124,62,.25); background: linear-gradient(180deg, #fff 0%, #F6FBF1 100%); }
.compare .bad  { border-color: rgba(185,28,28,.2);  background: linear-gradient(180deg, #fff 0%, #FDF4F2 100%); }
.compare .good h3 { color: var(--success); }
.compare .bad h3  { color: var(--danger); }

/* ================================================
   TESTIMONIALS
================================================ */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute; top: -8px; left: 20px;
  font-family: 'Fraunces', serif;
  font-size: 64px; line-height: 1;
  color: rgba(217,119,6,.2);
}
.testimonial-body {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--fg-deep);
  margin: 0 0 18px;
}
.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-600));
  display: grid; place-items: center;
  color: #fff; font-family: 'Fraunces', serif;
  font-weight: 700; font-size: 18px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--brand-600); font-size: 14.5px; margin: 0; }
.testimonial-meta { color: var(--fg-muted); font-size: 12.5px; margin: 2px 0 0; }

/* ================================================
   COMPARISON TABLE
================================================ */
.vs-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.vs-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.vs-row:last-child { border-bottom: 0; }
.vs-row > div { padding: 16px 14px; font-size: 14.5px; }
.vs-row > div:first-child { color: var(--fg-deep); font-weight: 500; }
.vs-row > div:nth-child(2) { background: rgba(62,92,46,.04); text-align: center; font-weight: 600; color: var(--brand-600); }
.vs-row > div:nth-child(3) { background: rgba(185,28,28,.03); text-align: center; color: var(--fg-muted); }
.vs-row.vs-head > div {
  background: var(--brand-600);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 15.5px;
  text-align: center;
  padding: 18px 12px;
}
.vs-row.vs-head > div:first-child { background: var(--brand-700); text-align: left; }
.vs-check  { color: var(--success); font-weight: 700; }
.vs-cross  { color: var(--danger); }

/* ================================================
   AUTHOR / CREDIBILITY BOX
================================================ */
.author-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  background: linear-gradient(135deg, var(--bg-soft) 0%, #fff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
@media (min-width: 720px) {
  .author-box { grid-template-columns: auto 1fr; align-items: center; }
}
.author-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-700));
  display: grid; place-items: center;
  color: #fff; font-family: 'Fraunces', serif;
  font-size: 42px; font-weight: 700;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}
.author-box h3 { margin: 0 0 4px; font-size: 18px; }
.author-box .author-title { color: var(--accent-600); font-weight: 600; font-size: 13.5px; margin: 0 0 12px; text-transform: uppercase; letter-spacing: .04em; }
.author-box p { font-size: 15px; color: var(--fg-muted); margin: 0 0 8px; }

/* ================================================
   GUARANTEE SEAL
================================================ */
.guarantee {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border: 2px solid rgba(62,92,46,.15);
  border-radius: var(--radius-lg);
}
@media (min-width: 720px) {
  .guarantee { flex-direction: row; text-align: left; gap: 28px; }
}
.guarantee-seal {
  flex-shrink: 0;
  width: 118px; height: 118px; border-radius: 50%;
  background: radial-gradient(closest-side, #fff 0%, var(--bg-soft) 100%);
  border: 3px dashed var(--brand);
  display: grid; place-items: center;
  color: var(--brand-600);
  font-family: 'Fraunces', serif;
  font-weight: 700;
  padding: 10px;
  line-height: 1;
  font-size: 13px;
  position: relative;
}
.guarantee-seal strong { font-size: 28px; display: block; }
.guarantee h3 { margin: 0 0 8px; font-size: 20px; }
.guarantee p { margin: 0; font-size: 15px; color: var(--fg-muted); }

/* ================================================
   PRICE CARD
================================================ */
.price-card {
  background:
    radial-gradient(600px 220px at 20% -30%, rgba(217,119,6,.22), transparent),
    radial-gradient(500px 220px at 90% 120%, rgba(245,214,138,.15), transparent),
    linear-gradient(160deg, var(--brand-600) 0%, var(--brand-700) 100%);
  color: #fff;
  border-radius: 26px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative; overflow: hidden;
}
.price-card::after {
  content: ""; position: absolute; inset: 0;
  background: url('/assets/img/pattern.svg') repeat; opacity: .05; pointer-events: none;
}
.price-card h2 { color: #fff; }
.price-tag { font-family: 'Fraunces', serif; margin: 16px 0 4px; position: relative; z-index: 1; }
.price-tag s  { color: rgba(255,255,255,.55); font-size: 20px; font-weight: 500; margin-right: 8px; }
.price-tag .currency { font-size: 22px; font-weight: 500; color: var(--amber); vertical-align: top; position: relative; top: 18px; margin-right: 4px; }
.price-tag .amount { font-size: 78px; font-weight: 700; color: var(--amber); display: inline-block; line-height: 1; }
.price-tag .cents { font-size: 30px; color: var(--amber); }
.price-card .muted { color: rgba(255,255,255,.75); font-size: 14.5px; }
.price-perks {
  display: grid; gap: 12px; margin: 28px auto; text-align: left; max-width: 420px;
  position: relative; z-index: 1;
}
.price-perks li { color: #E9F3DC; font-size: 15.5px; }
.price-perks .check { background: var(--accent); }

.price-badge {
  position: absolute;
  top: 20px; right: -42px;
  background: var(--accent);
  color: #fff;
  padding: 8px 52px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: rotate(35deg);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}

/* ================================================
   FAQ (otimizado para featured snippets)
================================================ */
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq details[open] { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--brand-600);
  font-size: 16.5px;
  list-style: none; display: flex; justify-content: space-between; gap: 12px;
  font-family: 'Fraunces', serif;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 28px; line-height: 1;
  color: var(--accent);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 14px 0 0; color: var(--fg-muted); font-size: 15.5px; line-height: 1.65; }

/* ================================================
   FORMS
================================================ */
.form { display: grid; gap: 18px; }
.field label {
  font-size: 14px; font-weight: 600;
  color: var(--brand-600);
  display: block; margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 16px; color: var(--fg-deep);
  transition: border-color .2s ease, box-shadow .2s ease;
  font-family: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(62,92,46,.14);
}
.field .error { color: var(--danger); font-size: 13px; margin-top: 4px; }

.alert {
  padding: 14px 16px; border-radius: 12px;
  background: #FDECEA; color: #7F1D1D; border: 1px solid #FCA5A5;
  font-size: 14px;
}
.alert-success { background: #DCFCE7; color: #14532D; border-color: #86EFAC; }

/* ================================================
   PIX PAGE
================================================ */
.pix-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.pix-qr {
  width: 260px; height: 260px; max-width: 100%;
  margin: 12px auto 20px;
  border: 8px solid #fff; border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
  background: #fff;
}
.pix-code {
  background: var(--bg-soft);
  border: 1px dashed var(--border);
  padding: 14px;
  border-radius: 12px;
  font-family: 'SFMono-Regular', Menlo, Consolas, monospace;
  font-size: 12px;
  word-break: break-all;
  color: var(--fg-deep);
  margin-bottom: 14px;
  text-align: left;
  max-height: 120px;
  overflow-y: auto;
}
.pix-status {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 999px;
  background: rgba(217,119,6,.12); color: var(--accent-600);
  font-weight: 600; font-size: 14px;
  margin-bottom: 12px;
  border: 1px solid rgba(217,119,6,.2);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.pix-status .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent);
  animation: pulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(217,119,6,.5);
}
.pix-status.pulsing {
  animation: pixStatusPulse 1.6s ease-in-out infinite;
}
.pix-status.ok {
  background: rgba(62,124,62,.15);
  color: var(--success);
  border-color: rgba(62,124,62,.3);
  animation: none;
}
.pix-status.ok .dot { background: var(--success); animation: none; box-shadow: none; }
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(217,119,6,.5); }
  50%      { transform: scale(1.4); opacity: .6; box-shadow: 0 0 0 6px rgba(217,119,6,0); }
}
@keyframes pixStatusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217,119,6,.25); }
  50%      { box-shadow: 0 0 0 10px rgba(217,119,6,0); }
}
@media (prefers-reduced-motion: reduce) {
  .pix-status, .pix-status .dot { animation: none !important; }
}

/* Support button (página de pagamento) */
.support-block {
  margin-top: 26px;
  text-align: center;
}
.support-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #25D366; color: #fff !important;
  font-weight: 600; font-size: 15px;
  border: 0; cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(37,211,102,.28);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.support-btn:hover {
  background: #1FB855;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37,211,102,.35);
}
.support-btn:active { transform: translateY(0); }
.support-btn svg { flex: 0 0 auto; }
.support-hint {
  margin-top: 8px; font-size: 12.5px; color: var(--fg-muted);
}

.step-list {
  counter-reset: step; list-style: none; padding: 0;
  text-align: left; margin: 24px 0;
  display: grid; gap: 12px;
}
.step-list li {
  counter-increment: step;
  padding-left: 44px; position: relative;
  color: var(--fg-muted);
  font-size: 14.5px;
}
.step-list li::before {
  content: counter(step);
  position: absolute; left: 0; top: -2px;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--brand); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 14px;
}

/* ================================================
   FOOTER
================================================ */
.footer {
  background: var(--brand-700);
  color: #D6E1C3;
  padding: 48px 0 30px;
  margin-top: 0;
}
.footer a { color: var(--amber); }
.footer a:hover { color: #fff; }
/* PDF badge — sobreposto aos mockups */
.pdf-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #DC2626 0%, #B91C1C 100%);
  color: #fff;
  padding: 8px 12px 8px 10px;
  border-radius: 12px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 14px 28px -10px rgba(185,28,28,.6), 0 0 0 4px rgba(255,255,255,.92);
  transform: rotate(-8deg);
  transform-origin: center;
  pointer-events: none;
}
.pdf-badge svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}
.pdf-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.pdf-badge-text small {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .06em;
  opacity: .92;
  margin-top: 3px;
  text-transform: uppercase;
}

/* posição no hero (mockup tablet) */
.hero-visual { position: relative; }
.hero-visual .pdf-badge {
  top: 6%;
  right: -2%;
  font-size: 14px;
}

/* posição no card de checkout (livro extravasando) */
.ed-price-meta { position: relative; }
.pdf-badge-card {
  top: -8px;
  right: 12%;
  font-size: 13px;
}
@media (min-width: 720px) {
  .pdf-badge-card { top: 8%; right: 6%; font-size: 14px; }
}

.footer-brand { display:flex; align-items:flex-start; }
.footer-logo { display:block; width: 100%; max-width: 200px; }
.footer-logo img {
  display:block; width: 100%; height: auto; border-radius: 50%;
  background: rgba(245,237,210,.06);
  box-shadow: 0 0 0 1px rgba(245,237,210,.18);
}
.footer-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 780px) { .footer-grid { grid-template-columns: 200px 2fr 1fr 1fr; } }
.footer small { color: rgba(214,225,195,.7); font-size: 13px; }

/* ================================================
   ANIMATIONS
================================================ */
.fade-in-up {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.fade-in-up.delay-1 { transition-delay: .08s; }
.fade-in-up.delay-2 { transition-delay: .16s; }
.fade-in-up.delay-3 { transition-delay: .24s; }

/* ================================================
   STICKY CTA
================================================ */
.sticky-cta {
  position: fixed; bottom: 14px; left: 14px; right: 14px;
  z-index: 30;
  background: linear-gradient(180deg, #E08209 0%, var(--accent-600) 100%);
  color: #fff;
  padding: 15px 22px; border-radius: 14px;
  text-align: center; font-weight: 700; font-size: 15.5px;
  box-shadow: 0 12px 32px rgba(217,119,6,.4);
  opacity: 0; transform: translateY(110%);
  transition: opacity .3s ease, transform .3s ease;
  text-decoration: none;
}
.sticky-cta.show { opacity: 1; transform: translateY(0); }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* ================================================
   UTILITIES
================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-muted  { color: var(--fg-muted); }
.text-accent { color: var(--accent-600); }
.text-brand  { color: var(--brand-600); }
.font-serif  { font-family: 'Fraunces', Georgia, serif; }

.mt-2 { margin-top: 8px; }  .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; } .mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; }

.hide-mobile { display: none; }
.hide-desktop { display: inline-flex; }
@media (min-width: 900px) {
  .hide-mobile { display: inline-flex; }
  .hide-desktop { display: none; }
}

/* ================================================
   EDITORIAL LAYOUT (split, bleed, pull-quote)
================================================ */

/* Split: texto à esquerda, imagem à direita (alternável com .split-reverse) */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }
  .split.split-reverse > .split-media { order: -1; }
  .split.split-tight { gap: 40px; }
  .split.split-wide  { grid-template-columns: 1.1fr .9fr; gap: 64px; }
}
.split-text > .eyebrow { margin-bottom: 14px; }
.split-text h2 { margin-top: 6px; }
.split-text p { font-size: 17px; line-height: 1.7; color: var(--fg-deep); }
.split-text p.lead { font-size: 19px; color: var(--fg-deep); margin-bottom: 18px; }

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.split-media.aspect-square  { aspect-ratio: 1 / 1; }
.split-media.aspect-wide    { aspect-ratio: 16 / 11; }
.split-media.aspect-portrait{ aspect-ratio: 3 / 4; }
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Versão "bleed": imagem encosta na borda do viewport (lado oposto ao texto) */
@media (min-width: 880px) {
  .split.split-bleed-right { grid-template-columns: 1fr 1.15fr; padding-right: 0; }
  .split.split-bleed-left  { grid-template-columns: 1.15fr 1fr; }
  .split.split-bleed-right .split-media { border-radius: var(--radius-lg) 0 0 var(--radius-lg); margin-right: calc(50% - 50vw); }
  .split.split-bleed-left  .split-media { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; margin-left: calc(50% - 50vw); }
}

/* Pull quote — destaque editorial entre parágrafos */
.pull-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.3;
  color: var(--brand-700);
  border-left: 4px solid var(--accent);
  padding: 12px 0 12px 28px;
  margin: 36px 0;
  max-width: 720px;
}
.pull-quote cite {
  display: block;
  font-style: normal;
  font-size: 13px;
  color: var(--fg-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-top: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Bleed background — seção com cor sólida ou imagem que toca as bordas */
.bleed-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.bleed-section.dark {
  background: linear-gradient(180deg, var(--brand-700) 0%, var(--brand-600) 100%);
  color: #fff;
}
.bleed-section.dark h2 { color: #fff; }
.bleed-section.dark p  { color: rgba(255,255,255,.85); }
.bleed-section.dark .eyebrow { background: rgba(245,214,138,.15); color: var(--amber); }
.bleed-section.cream { background: var(--bg-soft); }

.bleed-section .pattern {
  position: absolute; inset: 0;
  background: url('/assets/img/pattern.svg') repeat;
  opacity: .05;
  pointer-events: none;
}

/* Hero — fundo full-bleed com overlay */
.hero-magazine {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-magazine::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(217,119,6,.18), transparent 65%),
    radial-gradient(900px 500px at -10% 100%, rgba(62,92,46,.18), transparent 65%);
  z-index: -1;
}

/* Stats inline (integrado em copy) */
.stats-inline {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin: 24px 0;
}
.stats-inline .stat-cell { text-align: center; }
.stats-inline .stat-cell b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--accent-600);
  line-height: 1;
  margin-bottom: 4px;
}
.stats-inline .stat-cell span {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
}
@media (max-width: 600px) {
  .stats-inline { grid-template-columns: 1fr; gap: 12px; padding: 18px; }
}

/* Chapter cards com mosaico visual */
.chapters-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .chapters-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px){ .chapters-grid { grid-template-columns: repeat(3, 1fr); } }

.chapter-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.chapter-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.chapter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(62,92,46,.25);
}
.chapter-card:hover::before { transform: scaleX(1); }
.chapter-card-num {
  flex: 0 0 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-600) 100%);
  color: var(--amber);
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700;
  display: grid; place-items: center;
  box-shadow: 0 6px 14px rgba(46,64,24,.25);
}
.chapter-card h3 { margin: 0 0 8px; color: var(--brand-600); font-size: 17.5px; line-height: 1.25; }
.chapter-card p  { margin: 0; font-size: 14.8px; color: var(--fg-muted); line-height: 1.55; }

/* Hero CTA full-bleed com imagem de fundo */
.cta-bleed {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.cta-bleed picture, .cta-bleed img.bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-bleed::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(31,46,18,.4) 0%, rgba(31,46,18,.78) 100%);
}
.cta-bleed .container { position: relative; z-index: 1; color: #fff; }
.cta-bleed h2 { color: #fff; font-size: clamp(2rem, 5vw, 3rem); }
.cta-bleed p  { color: rgba(255,255,255,.92); font-size: 18px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ================================================
   IMAGE SLOTS (legacy)
================================================ */
.img-slot {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  border: 2px dashed var(--brand);
  background:
    repeating-linear-gradient(45deg,
      rgba(62,92,46,.04),
      rgba(62,92,46,.04) 12px,
      rgba(62,92,46,.08) 12px,
      rgba(62,92,46,.08) 24px
    );
  border-radius: var(--radius);
  color: var(--brand-600);
  padding: 20px;
  text-align: center;
  overflow: hidden;
  transition: background .2s ease;
}
.img-slot.has-image { border: 0; padding: 0; background: none; box-shadow: var(--shadow-md); }
.img-slot.has-image img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }

.ratio-16-9  { aspect-ratio: 16 / 9; }
.ratio-3-2   { aspect-ratio: 3 / 2;  }
.ratio-7-5   { aspect-ratio: 7 / 5;  }
.ratio-1-1   { aspect-ratio: 1 / 1;  }
.ratio-5-6   { aspect-ratio: 5 / 6;  }

/* ================================================
   RELATED POSTS (HUB DE ARTIGOS)
================================================ */
.posts-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .posts-grid { grid-template-columns: repeat(3, 1fr); } }

.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  color: inherit;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); color: inherit; }
.post-card-img {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
  display: grid; place-items: center;
  color: var(--amber);
  font-size: 48px;
}
.post-card-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.post-card-tag {
  font-size: 11.5px;
  color: var(--accent-600);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.post-card-title {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-600);
  margin: 0;
  line-height: 1.25;
}
.post-card-excerpt {
  color: var(--fg-muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.post-card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 12.5px; color: var(--fg-soft);
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
  margin-top: 4px;
}

/* ================================================
   ARTICLE (prose)
================================================ */
.article-hero {
  padding: 32px 0 24px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--border);
}
.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--fg-muted);
  margin-bottom: 18px; flex-wrap: wrap;
}
.breadcrumbs a { color: var(--fg-muted); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { opacity: .5; }

.article-meta {
  display: flex; gap: 18px; flex-wrap: wrap;
  color: var(--fg-muted); font-size: 13.5px;
  margin-top: 12px;
}
.article-meta b { color: var(--brand-600); font-weight: 600; }

.prose {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--fg-deep);
  max-width: 720px;
  margin: 0 auto;
}
.prose h2 {
  font-size: clamp(1.5rem, 3.6vw, 2rem);
  margin: 2.4em 0 .6em;
  padding-top: .2em;
  scroll-margin-top: 80px;
}
.prose h3 {
  font-size: 1.3rem;
  margin: 2em 0 .5em;
  scroll-margin-top: 80px;
}
.prose p { margin: 0 0 1.1em; }
.prose ul, .prose ol { padding-left: 1.5em; margin: 0 0 1.3em; }
.prose li { margin-bottom: .4em; }
.prose a:not(.btn) { color: var(--accent-600); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.prose a:not(.btn):hover { color: var(--brand-600); }
.prose .btn { text-decoration: none; color: #fff; }
.prose .btn:hover { text-decoration: none; color: #fff; }
.prose blockquote {
  border-left: 4px solid var(--accent);
  padding: 6px 0 6px 22px;
  margin: 1.4em 0;
  font-style: italic;
  color: var(--fg-muted);
  background: var(--bg-soft);
  border-radius: 0 10px 10px 0;
  padding: 14px 22px;
}
.prose blockquote p { margin: 0; }
.prose strong { color: var(--brand-700); }
.prose figure { margin: 2em 0; }
.prose figure img { border-radius: var(--radius); }
.prose figcaption { font-size: 13.5px; color: var(--fg-muted); text-align: center; margin-top: 10px; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6em 0;
  font-size: 15px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.prose thead { background: var(--brand-600); color: #fff; }
.prose th, .prose td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.prose th { font-family: 'Fraunces', serif; font-weight: 700; }
.prose tr:last-child td { border-bottom: 0; }
.prose tr:nth-child(even) td { background: var(--bg-soft); }
.prose code {
  background: var(--bg-soft);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: .92em;
  color: var(--brand-700);
}

.prose .callout {
  background: linear-gradient(135deg, rgba(62,92,46,.08), rgba(217,119,6,.05));
  border-left: 4px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 1.8em 0;
}
.prose .callout strong { color: var(--brand-600); display: block; margin-bottom: 6px; font-size: 15px; }
.prose .callout p:last-child { margin: 0; }

/* TOC */
.toc {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 0 auto 32px;
  max-width: 720px;
}
.toc-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--brand-600);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 14px;
}
.toc ol {
  margin: 0; padding-left: 22px;
  display: grid; gap: 8px;
  font-size: 15px;
}
.toc a { color: var(--fg-deep); font-weight: 500; }
.toc a:hover { color: var(--accent); }

/* Article inline CTA */
.article-cta {
  background: linear-gradient(135deg, var(--brand-600) 0%, var(--brand-700) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin: 2.4em 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: ""; position: absolute; inset: 0;
  background: url('/assets/img/pattern.svg') repeat; opacity: .06; pointer-events: none;
}
.article-cta h3 { color: #fff; margin: 0 0 10px; font-size: 22px; position: relative; }
.article-cta p { color: rgba(255,255,255,.88); margin: 0 0 18px; font-size: 15.5px; position: relative; }
.article-cta .btn { position: relative; z-index: 1; }

/* Related section */
.related {
  background: var(--bg-soft);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  margin-top: 48px;
}

/* ================================================
   REDUCED MOTION
================================================ */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .hero-art { transform: none; }
}

/* ============================================================
   EDITORIAL LAYOUT (clean redesign — substitui visualmente o legado)
============================================================ */

/* Stats line — sutil, não chama tanta atenção */
.stats-line {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.stats-line ul {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0; padding: 0;
  text-align: center;
}
.stats-line li b {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-700);
  line-height: 1;
  margin-bottom: 4px;
}
.stats-line li span {
  font-size: 13px;
  color: var(--fg-muted);
}
@media (min-width: 720px) {
  .stats-line ul { grid-template-columns: repeat(3, 1fr); }
}

/* Sections (ed-*) */
.ed-section {
  padding: 88px 0;
  background: var(--surface);
}
.ed-section.ed-soft { background: var(--bg-soft); }
.ed-section.ed-dark {
  background: var(--brand-700);
  color: rgba(255,255,255,.92);
}
@media (max-width: 720px) {
  .ed-section { padding: 56px 0; }
}

.ed-narrow { max-width: 760px; margin: 0 auto; padding: 0 22px; }

.ed-head { margin: 0 0 48px; }
.ed-head-center { text-align: center; }
.ed-kicker {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin: 0 0 14px;
}
.ed-kicker.on-dark { color: var(--amber); }
.ed-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 3.6vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--brand-700);
  margin: 0 0 18px;
}
.ed-section.ed-dark .ed-h2 { color: #fff; }
.ed-subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
  max-width: 600px;
}

.ed-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-deep);
  margin: 0 0 1.1em;
}
.ed-text p:last-child { margin-bottom: 0; }

/* Split editorial */
.ed-split {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 880px) {
  .ed-split { grid-template-columns: 1fr 1fr; gap: 64px; }
  .ed-split-reverse > .ed-media { order: 2; }
}
.ed-media {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 22px 50px -22px rgba(31,46,18,.35);
  min-height: 340px;
  background: var(--bg-soft);
}
@media (max-width: 879px) {
  .ed-media { aspect-ratio: 4 / 3; min-height: 0; }
}
.ed-media-square { aspect-ratio: 1 / 1; min-height: 0; }
.ed-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.ed-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pair (para quem é / não é) — duas colunas mínimas, sem cards visuais */
.ed-pair {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .ed-pair { grid-template-columns: 1fr 1fr; gap: 48px; } }
.ed-cell-label {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.ed-cell-no .ed-cell-label  { color: var(--danger); }
.ed-cell-yes .ed-cell-label { color: var(--success); }
.ed-cell ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 14px;
}
.ed-cell li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-deep);
}

/* Chapters — lista numerada simples, sem cards */
.ed-chapters {
  list-style: none;
  counter-reset: ch;
  margin: 0; padding: 0;
  display: grid;
  gap: 28px;
}
@media (min-width: 720px) { .ed-chapters { grid-template-columns: 1fr 1fr; gap: 36px 48px; } }
.ed-chapters > li {
  counter-increment: ch;
  position: relative;
  padding-left: 56px;
  min-height: 44px;
}
.ed-chapters > li::before {
  content: counter(ch, decimal-leading-zero);
  position: absolute;
  left: 0; top: 2px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-600);
  line-height: 1;
}
.ed-chapters h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--brand-700);
  margin: 0 0 8px;
  line-height: 1.25;
}
.ed-chapters p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
}

/* Checklist */
.ed-checklist {
  list-style: none;
  margin: 0; padding: 0;
  display: grid; gap: 12px;
}
.ed-checklist li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--fg-deep);
}
.ed-checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: inset 0 0 0 3px var(--bg-soft), inset 0 0 0 14px var(--brand);
}

/* Tabela editorial */
.ed-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
  background: var(--surface);
  table-layout: fixed;
}
.ed-table col.col-crit { width: auto; }
.ed-table col.col-yes,
.ed-table col.col-no  { width: 180px; }

.ed-table th, .ed-table td {
  padding: 16px 22px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ed-table td:first-child { white-space: normal; } /* só a primeira pode quebrar */
.ed-table thead th {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--brand-700);
  background: var(--bg-soft);
  border-bottom: 2px solid var(--brand-600);
}
.ed-table td.yes { color: var(--success); font-weight: 700; text-align: center; }
.ed-table td.no  { color: var(--fg-muted); text-align: center; }
.ed-table tr:last-child td { border-bottom: 0; }

@media (max-width: 720px) {
  .ed-table { font-size: 14px; table-layout: auto; }
  .ed-table col.col-yes, .ed-table col.col-no { width: auto; }
  .ed-table th, .ed-table td { padding: 12px 14px; white-space: normal; }
}

/* Quote (autoridade) */
.ed-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.4;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  margin: 0 0 28px;
  padding: 0;
  border: 0;
  max-width: 680px;
}
.ed-byline {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin: 0;
  max-width: 600px;
}
.ed-byline strong { color: var(--amber); font-weight: 600; }

/* Transparência total — split com foto do produtor */
.ed-split-transparency {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
}
.ed-transparency-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0,0,0,.32);
  position: relative;
}
.ed-transparency-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}
.ed-transparency-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
  border-radius: 18px;
}
.ed-transparency-content { max-width: 600px; }
.ed-transparency-content .ed-quote { margin-bottom: 22px; }
@media (min-width: 880px) {
  .ed-split-transparency {
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
  }
}

/* Price block */
.ed-price {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 22px 50px -28px rgba(31,46,18,.25);
  overflow: visible;
  position: relative;
}
@media (min-width: 720px) {
  .ed-price { grid-template-columns: minmax(240px, 0.85fr) 1.15fr; gap: 32px; padding: 36px 36px 36px 0; align-items: center; }
}
.ed-price-content { min-width: 0; padding: 0 12px; }
@media (min-width: 720px) { .ed-price-content { padding: 0; } }
.ed-stack-body { min-width: 0; }
.ed-stack-body strong, .ed-stack-body span { word-wrap: break-word; }
.ed-price-meta {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

/* Price visual (mockup tablet) — overflow pro card, drop-shadow pra elevar */
.ed-price-visual {
  display: block;
  margin: 0 auto;
  background: transparent;
  filter: drop-shadow(0 28px 38px rgba(31,46,18,.32));
  width: 100%;
  max-width: 360px;
  position: relative;
  z-index: 1;
}
.ed-price-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
}
@media (min-width: 720px) {
  .ed-price-visual {
    width: 130%;
    max-width: none;
    margin: 0;
    margin-left: -22%;
    transform: translateY(0);
  }
}
@media (min-width: 1024px) {
  .ed-price-visual {
    width: 145%;
    margin-left: -32%;
  }
}
/* Stack — clean, flat, dividers only */
.ed-stack-title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 4px;
}
.ed-stack {
  list-style: none;
  padding: 0;
  margin: 0 0 6px;
}
.ed-stack-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.ed-stack-body strong {
  display: block;
  color: var(--brand-700);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}
.ed-stack-body span {
  display: block;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.45;
  margin-top: 3px;
}
.ed-stack-price {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-700);
  white-space: nowrap;
}

/* Total row */
.ed-stack-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--border);
  margin-bottom: 22px;
}
.ed-stack-total s {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  color: var(--fg-soft);
  font-weight: 700;
}

/* Final price block */
.ed-price-final {
  margin: 0 0 18px;
}
.ed-price-final-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin: 0;
}
.ed-price-final-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 3.8rem);
  font-weight: 800;
  color: var(--brand-700);
  line-height: 1;
  margin: 6px 0 6px;
  letter-spacing: -.02em;
}
.ed-price-final-save {
  font-size: 13px;
  color: #14532D;
  font-weight: 600;
  margin: 0;
}
.ed-price-final-save::before { content: "↓ "; opacity: .6; }

.ed-cta-buy {
  margin: 0 0 16px;
  font-size: 16px !important;
  box-shadow: 0 14px 32px -10px rgba(217,119,6,.45);
}

/* Trust row — inline pills */
.ed-trust-row {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 12.5px;
  color: var(--fg-muted);
}
.ed-trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  line-height: 1.3;
}

.ed-price-foot {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--fg-soft);
  line-height: 1.5;
}
.ed-price-foot a { color: var(--accent-600); font-weight: 600; }

/* Legacy compat */
.ed-price-from { font-size: 14px; color: var(--fg-muted); margin: 0 0 6px; }
.ed-price-from s { color: var(--fg-soft); }
.ed-price-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--brand-700);
  line-height: 1;
  margin: 0 0 10px;
}
.ed-price-save {
  display: inline-block;
  background: rgba(217,119,6,.12);
  color: var(--accent-600);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0;
}

/* FAQ editorial */
.ed-faq details {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.ed-faq details:first-child { border-top: 1px solid var(--border); }
.ed-faq summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--brand-700);
  display: flex; justify-content: space-between; gap: 16px;
}
.ed-faq summary::-webkit-details-marker { display: none; }
.ed-faq summary::after {
  content: "+";
  color: var(--accent-600);
  font-size: 22px;
  line-height: 1;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.ed-faq details[open] summary::after { transform: rotate(45deg); }
.ed-faq p {
  margin: 14px 0 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--fg-muted);
}
.ed-faq p a { color: var(--accent-600); text-decoration: underline; }

/* Articles trio */
.ed-articles {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .ed-articles { grid-template-columns: repeat(3, 1fr); } }
.ed-articles a {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
}
.ed-articles a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(62,92,46,.3);
  color: inherit;
}
.ed-article-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-600);
  margin: 0 0 12px;
}
.ed-articles h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-700);
  margin: 0 0 10px;
  line-height: 1.25;
}
.ed-articles p {
  font-size: 14.5px;
  color: var(--fg-muted);
  margin: 0 0 14px;
  line-height: 1.55;
}
.ed-article-meta {
  display: block;
  font-size: 12.5px;
  color: var(--fg-soft);
  padding-top: 12px;
  border-top: 1px solid var(--border-soft);
}

/* CTA final full-bleed */
.ed-cta-final {
  position: relative;
  padding: 96px 0;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.ed-cta-final picture { position: absolute; inset: 0; z-index: -2; }
.ed-cta-final img.bg {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ed-cta-final::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(31,46,18,.55), rgba(31,46,18,.85));
}
.ed-cta-final h2 {
  font-family: 'Fraunces', Georgia, serif;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin: 0 0 16px;
  line-height: 1.1;
}
.ed-cta-final p {
  color: rgba(255,255,255,.9);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 28px;
}
