/* ===========================================================
   A RAIZ DO PESO — Landing page terapêutica
   Paleta + tipografia + componentes
   =========================================================== */

:root {
  --cream:       #FAF6F0;
  --cream-2:     #F3EADF;
  --card:        #F5EFE6;
  --card-line:   #E7DBCB;
  --ink:         #3A2418;
  --ink-soft:    #5C4536;
  --ink-mute:    #8A7361;
  --gold:        #A8845A;
  --gold-soft:   #C9AF8C;
  --terra:       #C28366;
  --terra-deep:  #A9694C;
  --terra-soft:  #E8C7B4;
  --terra-tint:  #F3DCCD;
  --dark:        #2B190F;
  --dark-2:      #3A2418;

  --maxw: 600px;
  --maxw-wide: 940px;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 2px 14px rgba(58, 36, 24, 0.06);
  --shadow-md: 0 14px 40px rgba(58, 36, 24, 0.10);
  --shadow-lg: 0 30px 70px rgba(58, 36, 24, 0.18);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ---------- layout helpers ---------- */
.section {
  padding: 72px 22px;
  position: relative;
}
.section--tight { padding: 56px 22px; }
.wrap { max-width: var(--maxw); margin: 0 auto; }
.wrap-wide { max-width: var(--maxw-wide); margin: 0 auto; }

.center { text-align: center; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); }

h1 { font-size: clamp(2.1rem, 7.5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 5.6vw, 2.55rem); }
h3 { font-size: clamp(1.3rem, 4vw, 1.65rem); }

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  line-height: 1.7;
  text-wrap: pretty;
}

p { text-wrap: pretty; }

/* eyebrow tag */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra-deep);
  background: var(--terra-tint);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.tag--gold { color: var(--gold); background: #F0E6D6; }
.tag--ghost { color: var(--ink-mute); background: transparent; border: 1px solid var(--card-line); }

.divider {
  width: 46px; height: 1px;
  background: var(--gold-soft);
  margin: 22px auto;
}
.divider--left { margin: 22px 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--terra);
  border: none;
  border-radius: 100px;
  padding: 19px 38px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(169, 105, 76, 0.30);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  text-align: center;
}
.btn:hover { background: var(--terra-deep); transform: translateY(-2px); box-shadow: 0 18px 36px rgba(169, 105, 76, 0.38); }
.btn:active { transform: translateY(0); }
.btn--lg { font-size: 1.18rem; padding: 22px 44px; width: 100%; max-width: 440px; }
.btn--block { width: 100%; max-width: 440px; }

.btn-note {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin-top: 14px;
  letter-spacing: 0.01em;
}

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  padding: 64px 22px 56px;
  background:
    radial-gradient(120% 80% at 50% -10%, #FCF9F4 0%, var(--cream) 55%),
    var(--cream);
  text-align: center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--card-line), transparent);
}
.hero h1 { font-family: var(--sans); font-weight: 700; letter-spacing: -0.02em; margin: 6px auto 0; max-width: 16ch; }
.hero h1 em { font-family: var(--sans); font-style: normal; font-weight: 700; letter-spacing: -0.01em; color: var(--terra-deep); }
.hero .lede { margin: 24px auto 32px; max-width: 38ch; }
.hero .btn { margin-top: 4px; }

/* ===========================================================
   IDENTIFICAÇÃO / PARA QUEM É — card grid
   =========================================================== */
.grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 720px) { .grid-cards { grid-template-columns: 1fr 1fr; } }

.id-card {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 18px;
  padding: 26px 24px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease;
  cursor: default;
}
.id-card[data-select] { cursor: pointer; }
.id-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--terra-soft); }
.id-card .ic {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--terra-tint);
  margin-bottom: 16px;
}
.id-card .ic svg { width: 24px; height: 24px; stroke: var(--terra-deep); fill: none; stroke-width: 1.6; }
.id-card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.id-card p { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.6; }

/* selectable check */
.id-card[data-select] .check {
  position: absolute; top: 20px; right: 20px;
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--card-line);
  display: grid; place-items: center;
  transition: all .25s ease;
}
.id-card[data-select] .check svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 2.5; fill: none; opacity: 0; transition: opacity .2s; }
.id-card.selected { background: var(--terra-tint); border-color: var(--terra); }
.id-card.selected .check { background: var(--terra); border-color: var(--terra); }
.id-card.selected .check svg { opacity: 1; }

.id-hint {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-mute);
  margin-top: 24px;
}

/* empathy band */
.band {
  margin-top: 38px;
  background: var(--terra-tint);
  border-radius: 20px;
  padding: 30px 28px;
  text-align: center;
  border: 1px solid var(--terra-soft);
}
.band p { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--terra-deep); line-height: 1.55; }
.band .heart { font-size: 1.4rem; display:block; margin-bottom: 8px; }

/* ===========================================================
   DOR PROFUNDA — two cards
   =========================================================== */
.truth-stack { display: grid; gap: 22px; margin-top: 40px; }

.t-card { border-radius: 22px; padding: 38px 32px; }
.t-card h3 { font-size: 1.55rem; margin-bottom: 18px; }
.t-card p { margin-bottom: 14px; }
.t-card p:last-child { margin-bottom: 0; }

.t-card--dark {
  background:
    radial-gradient(120% 100% at 0% 0%, #3A2418 0%, var(--dark) 70%);
  color: var(--cream-2);
}
.t-card--dark h3 { color: #fff; }
.t-card--dark p { color: #E4D3C2; }
.t-card--dark .accent { color: var(--terra-soft); font-style: italic; }

.t-card--light {
  background: var(--card);
  border: 1px solid var(--card-line);
}
.t-card--light p { color: var(--ink-soft); }
.t-card--light strong { color: var(--terra-deep); font-weight: 600; }
.t-card--light ul { list-style: none; margin: 16px 0; display: grid; gap: 12px; }
.t-card--light li { position: relative; padding-left: 20px; color: var(--ink-soft); line-height: 1.6; }
.t-card--light li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* ===========================================================
   MINHA HISTÓRIA / SOBRE A AUTORA — text + image
   =========================================================== */
.split { display: grid; gap: 36px; align-items: center; }
@media (min-width: 820px) {
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }
  .split--rev .split-media { order: 2; }
}

.split-text p { color: var(--ink-soft); margin-bottom: 18px; }
.split-text p:last-child { margin-bottom: 0; }
.split-text strong { color: var(--ink); font-weight: 600; }

.story-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--terra-deep);
  border-left: 3px solid var(--gold-soft);
  padding-left: 22px;
  margin: 26px 0;
}

.portrait {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  background: var(--card);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
  border-radius: 20px;
  pointer-events: none;
}
.portrait-cap {
  font-size: 0.82rem; color: var(--ink-mute); margin-top: 12px; text-align: center; font-style: italic;
}

/* ===========================================================
   APRESENTAÇÃO DO PRODUTO
   =========================================================== */
.product { background: var(--cream-2); }
.product .feat-list { list-style: none; display: grid; gap: 18px; margin: 28px 0 0; }
.product .feat-list li { display: flex; gap: 14px; align-items: flex-start; }
.product .feat-list .fi {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--terra); display: grid; place-items: center; margin-top: 2px;
}
.product .feat-list .fi svg { width: 15px; height: 15px; stroke: #fff; stroke-width: 2.5; fill: none; }
.product .feat-list b { font-weight: 600; color: var(--ink); }
.product .feat-list span { color: var(--ink-soft); display: block; }
.product .outro { margin-top: 26px; color: var(--ink-soft); font-style: italic; }

.ebook-float {
  filter: drop-shadow(0 28px 44px rgba(58,36,24,0.28));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@media (prefers-reduced-motion: reduce) { .ebook-float { animation: none; } }

/* ===========================================================
   PULL QUOTE
   =========================================================== */
.pullquote {
  background:
    radial-gradient(120% 90% at 50% 0%, #3A2418 0%, var(--dark) 75%);
  color: var(--cream);
  text-align: center;
}
.pullquote .qmark {
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.pullquote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 4.6vw, 2.1rem);
  line-height: 1.4;
  color: #F3E7D7;
  max-width: 22ch;
  margin: 0 auto 22px;
}
.pullquote cite { font-style: normal; font-weight: 600; color: var(--terra-soft); letter-spacing: 0.04em; }

/* ===========================================================
   MÓDULOS
   =========================================================== */
.modules { display: grid; gap: 18px; margin-top: 44px; }
@media (min-width: 760px) { .modules { grid-template-columns: 1fr 1fr; } }

.mod {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.mod:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mod .mod-num {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--terra-soft);
  line-height: 1;
  position: absolute;
  top: 18px; right: 24px;
  opacity: 0.7;
}
.mod .mod-kicker { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.mod h3 { font-size: 1.4rem; margin-bottom: 4px; display: flex; align-items: center; gap: 10px; }
.mod h3 .em { font-size: 1.4rem; }
.mod .mod-sub { font-style: italic; color: var(--terra-deep); font-family: var(--serif); margin-bottom: 18px; font-size: 1.02rem; }
.mod ul { list-style: none; display: grid; gap: 11px; }
.mod li { display: flex; gap: 11px; align-items: baseline; color: var(--ink-soft); font-size: 0.97rem; line-height: 1.5; }
.mod li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-soft); transform: translateY(-2px); }

/* ===========================================================
   DEPOIMENTOS (prints)
   =========================================================== */
.testi-grid { display: grid; gap: 18px; margin-top: 40px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .testi-grid { grid-template-columns: 1fr 1fr; } }

.testi {
  background: #fff;
  border: 1px solid var(--card-line);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
}
.testi .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.95rem; }
.testi p { font-size: 1rem; color: var(--ink-soft); line-height: 1.6; font-style: italic; }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi .av { width: 40px; height: 40px; border-radius: 50%; background: var(--terra-tint); color: var(--terra-deep); display: grid; place-items: center; font-weight: 700; font-family: var(--serif); }
.testi .who b { font-size: 0.92rem; color: var(--ink); display: block; }
.testi .who span { font-size: 0.8rem; color: var(--ink-mute); }

/* ===========================================================
   DEPOIMENTOS — carrossel de prints
   =========================================================== */
.carousel {
  position: relative;
  margin-top: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 22px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: grid;
  place-items: center;
  padding: 4px;
}
.print-card {
  background: #fff;
  border: 1px solid var(--card-line);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 16px;
  width: 100%;
  display: grid;
  place-items: center;
  min-height: 280px;
}
.print-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  max-height: 420px;
  object-fit: contain;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--card-line);
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
  z-index: 2;
}
.carousel-arrow svg { width: 22px; height: 22px; stroke: var(--terra-deep); fill: none; stroke-width: 2.2; }
.carousel-arrow:hover { background: var(--terra-tint); }
.carousel-arrow:active { transform: translateY(-50%) scale(0.94); }
.carousel-arrow.prev { left: -8px; }
.carousel-arrow.next { right: -8px; }
.carousel-arrow:disabled { opacity: 0.3; cursor: default; }
@media (min-width: 600px) {
  .carousel-arrow.prev { left: -22px; }
  .carousel-arrow.next { right: -22px; }
}
.carousel-dots {
  display: flex;
  gap: 9px;
  justify-content: center;
  margin-top: 22px;
}
.carousel-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--card-line);
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, width .25s ease;
}
.carousel-dots button.active { background: var(--terra); width: 26px; border-radius: 5px; }

/* placeholder print slot (legacy/unused) */
.print-slot {
  border: 1.5px dashed var(--gold-soft);
  border-radius: 18px;
  background: repeating-linear-gradient(45deg, #F5EFE6, #F5EFE6 12px, #F1E8DA 12px, #F1E8DA 24px);
  min-height: 150px;
  display: grid; place-items: center;
  text-align: center;
  padding: 24px;
}
.print-slot span { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.78rem; color: var(--ink-mute); letter-spacing: 0.02em; }

.testi-note { text-align: center; font-size: 0.84rem; color: var(--ink-mute); margin-top: 24px; font-style: italic; }

/* ===========================================================
   CASO REAL
   =========================================================== */
.case {
  background: var(--card);
  border-radius: 22px;
  border: 1px solid var(--card-line);
  padding: 40px 34px;
  margin-top: 36px;
  position: relative;
}
.case .bar { position: absolute; left: 0; top: 28px; bottom: 28px; width: 4px; border-radius: 4px; background: var(--gold-soft); }
.case blockquote { font-size: 1.12rem; color: var(--ink-soft); line-height: 1.7; }
.case blockquote p { margin-bottom: 16px; }
.case blockquote strong { color: var(--terra-deep); font-weight: 600; }
.case .case-foot { margin-top: 22px; font-style: italic; font-size: 0.95rem; color: var(--ink-mute); }

/* ===========================================================
   OFERTA / PREÇO
   =========================================================== */
.offer { background: var(--cream-2); }
.price-card {
  background: var(--terra-tint);
  border: 2px solid var(--gold);
  border-radius: 26px;
  padding: 42px 30px;
  text-align: center;
  margin-top: 36px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.price-card h3 { font-size: 1.6rem; margin-bottom: 22px; }
.price-card .price-now { display: flex; align-items: baseline; justify-content: center; gap: 6px; }
.price-card .price-now .x { font-size: 1.3rem; color: var(--ink-soft); font-weight: 600; }
.price-card .price-now .val { font-family: var(--serif); font-size: 3.6rem; font-weight: 700; color: var(--terra-deep); line-height: 1; }
.price-card .price-alt { color: var(--ink-soft); margin-top: 8px; font-size: 1rem; }
.price-card .price-alt b { color: var(--ink); }
.price-incl { list-style: none; display: grid; gap: 12px; margin: 28px auto 30px; text-align: left; max-width: 340px; }
.price-incl li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-soft); }
.price-incl li svg { flex: none; width: 18px; height: 18px; stroke: var(--terra-deep); stroke-width: 2.5; fill: none; margin-top: 3px; }
.price-secure { font-size: 0.84rem; color: var(--ink-mute); margin-top: 16px; }

/* ===========================================================
   GARANTIA
   =========================================================== */
.guarantee { text-align: center; }
.seal-img {
  width: 148px;
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 14px 30px rgba(168, 132, 90, 0.35));
}
.seal {
  width: 132px; height: 132px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #BE9A6C, var(--gold));
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 16px 36px rgba(168, 132, 90, 0.4), inset 0 0 0 5px rgba(255,255,255,0.25);
  position: relative;
}
.seal::before {
  content: ""; position: absolute; inset: 9px; border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,0.55);
}
.seal .num { font-family: var(--serif); font-size: 2.5rem; font-weight: 700; line-height: 0.9; }
.seal .lbl { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; margin-top: 2px; }
.guarantee p { color: var(--ink-soft); max-width: 44ch; margin: 16px auto 0; }

/* ===========================================================
   FAQ
   =========================================================== */
.faq { display: grid; gap: 14px; margin-top: 38px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--card-line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item.open { border-color: var(--terra-soft); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; cursor: pointer;
  font-family: var(--serif); font-size: 1.12rem; font-weight: 600; color: var(--ink);
  text-align: left; padding: 22px 24px;
  line-height: 1.35;
}
.faq-q .pm {
  flex: none; width: 26px; height: 26px; position: relative;
  border-radius: 50%; background: var(--terra-tint);
  transition: background .25s ease, transform .3s ease;
}
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 11px; height: 2px; background: var(--terra-deep);
  transform: translate(-50%, -50%); border-radius: 2px; transition: transform .3s ease;
}
.faq-q .pm::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open .pm { background: var(--terra); }
.faq-item.open .pm::before, .faq-item.open .pm::after { background: #fff; }
.faq-item.open .pm::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 24px 24px; color: var(--ink-soft); line-height: 1.65; }

/* FAQ help / WhatsApp CTA */
.faq-help { text-align: center; margin-top: 40px; }
.faq-help p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 18px; }
.btn--wa {
  background: #25D366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.30);
  gap: 12px;
}
.btn--wa:hover { background: #1EBE5A; box-shadow: 0 18px 36px rgba(37, 211, 102, 0.40); }
.btn--wa svg { width: 22px; height: 22px; fill: currentColor; flex: none; }

/* ===========================================================
   CTA FINAL
   =========================================================== */
.cta-final {
  text-align: center;
  background:
    radial-gradient(120% 90% at 50% 0%, #3A2418 0%, var(--dark) 80%);
  color: var(--cream);
  padding: 88px 22px;
}
.cta-final h2 { color: #fff; max-width: 18ch; margin: 0 auto; }
.cta-final p { color: var(--terra-soft); font-family: var(--serif); font-style: italic; font-size: 1.3rem; margin: 18px auto 34px; }
.cta-final .btn { box-shadow: 0 16px 40px rgba(0,0,0,0.35); }

/* ===========================================================
   RODAPÉ
   =========================================================== */
.footer {
  background: var(--dark);
  color: #C3AE9C;
  text-align: center;
  padding: 40px 22px;
  font-size: 0.86rem;
}
.footer .brand { font-family: var(--serif); font-size: 1.1rem; color: var(--cream); margin-bottom: 10px; }
.footer nav { display: flex; gap: 8px 18px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }
.footer .socials {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
}
.footer .social {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--terra-soft);
  border: 1px solid rgba(195, 174, 156, 0.28);
  transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}
.footer .social svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer .social:hover {
  color: var(--dark);
  background: var(--terra-soft);
  border-color: var(--terra-soft);
  transform: translateY(-2px);
}
.footer a { color: #C3AE9C; text-decoration: none; transition: color .2s; }
.footer a:hover { color: var(--terra-soft); }
.footer .sep { color: #6A5240; }

/* ===========================================================
   STICKY MOBILE CTA
   =========================================================== */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 50;
  background: rgba(43, 25, 15, 0.96);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 12px 14px 12px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  transform: translateY(140%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .sc-txt { color: var(--cream); line-height: 1.2; }
.sticky-cta .sc-txt b { font-family: var(--serif); font-size: 1.05rem; display: block; }
.sticky-cta .sc-txt span { font-size: 0.78rem; color: var(--terra-soft); }
.sticky-cta .btn { padding: 13px 22px; font-size: 0.95rem; box-shadow: none; white-space: nowrap; }
@media (min-width: 760px) {
  .sticky-cta { left: auto; right: 22px; bottom: 22px; max-width: 380px; }
}

/* ===========================================================
   DESKTOP LAYOUT  (≥1000px) — mobile stays untouched below this
   =========================================================== */
@media (min-width: 1000px) {

  body { font-size: 18px; }

  /* generous vertical rhythm + wider reading column */
  .section { padding: 116px 40px; }
  .section--tight { padding: 84px 40px; }
  .wrap { max-width: 780px; }
  .wrap-wide { max-width: 1120px; }

  h1 { font-size: clamp(3rem, 3.4vw, 4rem); }
  h2 { font-size: clamp(2.3rem, 2.8vw, 3rem); }

  /* ---------- HERO: two columns (text + floating e-book) ---------- */
  .hero { padding: 104px 48px 92px; text-align: left; }
  .hero .wrap {
    max-width: 1120px;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    align-items: center;
    column-gap: 64px;
  }
  .hero .wrap > :not(.ebook-float) { grid-column: 1; justify-self: start; }
  .hero h1 { margin: 0; max-width: 13ch; }
  .hero .lede { margin: 26px 0 34px; max-width: 44ch; }
  .hero .btn { margin-top: 0; width: auto; }
  .hero .btn-note { text-align: left; }
  .hero .ebook-float {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: center;
    margin: 0 auto !important;
    width: min(380px, 100%) !important;
  }

  /* ---------- identification / para quem é: 3-up grid ---------- */
  .grid-cards { grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
  .id-card { padding: 30px 28px; }

  /* empathy band wider & roomier */
  .band { padding: 38px 46px; margin-top: 48px; }
  .band p { font-size: 1.34rem; max-width: 44ch; margin: 0 auto; }

  /* ---------- dor profunda: two cards side by side ---------- */
  .truth-stack { grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
  .t-card { padding: 46px 40px; }

  /* ---------- split sections: a touch more breathing room ---------- */
  .split { gap: 72px; }

  /* ---------- modules: keep 2-up but roomier ---------- */
  .modules { gap: 24px; margin-top: 56px; }
  .mod { padding: 38px 34px; }

  /* ---------- carousel: a bit larger ---------- */
  .carousel { max-width: 600px; }
  .print-card img { max-height: 480px; }

  /* ---------- caso real ---------- */
  .case { padding: 52px 56px; }
  .case blockquote { font-size: 1.2rem; }

  /* ---------- price card: contained, not stretched ---------- */
  .price-card { max-width: 580px; margin-left: auto; margin-right: auto; padding: 54px 48px; }
  .price-card .price-now .val { font-size: 4.1rem; }

  /* ---------- pull quote & cta wider ---------- */
  .pullquote blockquote { max-width: 26ch; }
  .cta-final { padding: 120px 40px; }

  /* ---------- footer: brand left, socials/links right ---------- */
  .footer { padding: 52px 48px; }
}

/* extra-wide screens — cap the line lengths so text stays readable */
@media (min-width: 1500px) {
  .hero .wrap, .wrap-wide { max-width: 1200px; }
}
