/* ==========================================================================
   Vai Lá e Grava, Landing Page
   Sistema visual derivado da home (tokens compartilhados)
   ========================================================================== */

:root {
  /* Cores (iguais à home) */
  --c-orange:        #E8894A;
  --c-orange-deep:   #C86E35;
  --c-orange-soft:   #F2A878;
  --c-cream:         #F4E8D0;
  --c-cream-light:   #FAF3E4;
  --c-cream-deep:    #E8D9B8;
  --c-ink:           #1A1714;
  --c-ink-soft:      #3B332C;
  --c-muted:         #6B5D50;
  --c-yellow:        #F5C842;
  --c-coral:         #E88D6D;
  --c-green:         #5A8A6A;

  /* Aliases de retrocompat pro HTML antigo (mantém classes funcionando) */
  --orange:          var(--c-orange);
  --orange-deep:     var(--c-orange-deep);
  --yellow:          var(--c-yellow);
  --cream:           var(--c-cream);
  --cream-dark:      var(--c-cream-deep);
  --coral:           var(--c-coral);
  --pink:            #D98FD9;
  --black:           var(--c-ink);
  --brown:           var(--c-ink-soft);
  --white:           var(--c-cream-light);
  --green:           var(--c-green);

  /* Tipografia (iguais à home) */
  --f-display: "Bricolage Grotesque", "Archivo Black", system-ui, sans-serif;
  --f-accent:  "Fraunces", Georgia, serif;
  --f-body:    "Inter", system-ui, -apple-system, sans-serif;

  --fs-xxs: clamp(.72rem, .68rem + .2vw, .82rem);
  --fs-xs:  clamp(.82rem, .78rem + .2vw, .92rem);
  --fs-sm:  clamp(.94rem, .9rem + .2vw, 1.02rem);
  --fs-base:clamp(1rem, .96rem + .25vw, 1.12rem);
  --fs-md:  clamp(1.12rem, 1.04rem + .5vw, 1.3rem);
  --fs-lg:  clamp(1.3rem, 1.1rem + 1vw, 1.6rem);
  --fs-xl:  clamp(1.8rem, 1.3rem + 2.5vw, 2.8rem);
  --fs-2xl: clamp(2.4rem, 1.8rem + 3.5vw, 4rem);
  --fs-3xl: clamp(3rem, 2rem + 6vw, 6.5rem);

  --radius:    14px;
  --radius-lg: 28px;
  --maxw:      1180px;
  --gutter:    clamp(1.25rem, 4vw, 2.5rem);
  --ease:      cubic-bezier(.22, 1, .36, 1);
}

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

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

body {
  font-family: var(--f-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-cream-light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Textura de papel sutil (mesmo da home) */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='260' height='260'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.09 0 0 0 0 0.08 0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

main, header, footer, section { position: relative; z-index: 1; }

img, svg { max-width: 100%; display: block; }
a { color: inherit; }

/* Tipografia de bloco */
h1, h2, .display {
  font-family: var(--f-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  text-wrap: balance;
}

h1 { font-size: var(--fs-2xl); margin-bottom: 1.25rem; }
h2 { font-size: var(--fs-xl); margin-bottom: 1.5rem; }

h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--fs-md);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: .75rem;
}

p { margin-bottom: 1.1rem; }
p:last-child { margin-bottom: 0; }

.italic-serif,
em.italic-serif {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--c-orange-deep);
}

/* Container */
.container {
  width: 100%;
  max-width: 820px; /* landing tem coluna mais estreita que site (1180) pra leitura */
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container.wide { max-width: 1080px; }

/* Section label (eyebrow) — mesmo padrão da home */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--f-body);
  font-size: var(--fs-xxs);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 600;
  color: var(--c-ink-soft);
  margin: 0 0 1.25rem;
}
.section-label::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--c-orange-deep);
  border-radius: 2px;
}
.reveal .section-label,
.bio .section-label,
.final-cta .section-label { color: var(--c-cream); }
.reveal .section-label::before,
.bio .section-label::before,
.final-cta .section-label::before { background: var(--c-yellow); }

/* ==========================================================================
   Sections (ritmo vertical)
   ========================================================================== */
section {
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  background: var(--c-orange);
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -10%;
  width: 120%;
  height: 120px;
  background: var(--c-cream-light);
  border-radius: 50% 50% 0 0;
}
.hero h1 {
  color: #fff;
  max-width: 680px;
}
.hero h1 em, .hero h1 .italic-serif {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--c-yellow);
}
.hero .sub {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--c-cream-light);
  max-width: 600px;
  margin-bottom: 1.5rem;
  line-height: 1.45;
}
.hero .lead {
  color: var(--c-cream);
  font-size: var(--fs-sm);
  margin-bottom: 2rem;
}
.hero .blob, .hero .blob-2 { display: none; } /* remove blobs — alinhar com home sobria */

/* ==========================================================================
   Credibility bar
   ========================================================================== */
.credbar {
  background: var(--c-ink);
  color: var(--c-cream-light);
  text-align: center;
  padding: 1.1rem var(--gutter);
  font-size: var(--fs-xs);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.credbar span { opacity: .4; margin: 0 .75rem; }

/* ==========================================================================
   CTA buttons (harmonizados com home .btn)
   ========================================================================== */
.cta {
  --bg: var(--c-orange-deep);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: .01em;
  background: var(--bg);
  color: var(--fg);
  border: 2px solid var(--bg);
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.cta:hover  { --bg: var(--c-ink); transform: translateY(-2px); box-shadow: 0 10px 30px -12px rgba(26,23,20,.35); }
.cta:focus-visible { outline: 3px solid var(--c-yellow); outline-offset: 3px; }

.cta-outline {
  --bg: transparent; --fg: var(--c-ink);
  border-color: var(--c-ink);
}
.cta-outline:hover { --bg: var(--c-ink); --fg: var(--c-cream-light); }

.cta-white {
  --bg: var(--c-cream-light); --fg: var(--c-orange-deep);
  border-color: var(--c-cream-light);
}
.cta-white:hover { --bg: var(--c-ink); --fg: var(--c-yellow); border-color: var(--c-ink); }

/* ==========================================================================
   PAIN
   ========================================================================== */
.pain {
  background: var(--c-cream-light);
}
.pain .highlight {
  background: var(--c-yellow);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ==========================================================================
   AGITATION
   ========================================================================== */
.agitation {
  background: var(--c-cream-deep);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  border-left: 4px solid var(--c-orange-deep);
}
.agitation .container {
  padding-left: calc(var(--gutter) + .5rem);
}
.agitation .italic-serif {
  font-size: var(--fs-md);
  color: var(--c-ink-soft);
}

/* ==========================================================================
   PROOF
   ========================================================================== */
.proof {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.proof::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--c-yellow);
  border-radius: 50%;
  opacity: .08;
  filter: blur(40px);
}
.quote-block {
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  margin: 2rem 0;
  position: relative;
}
.quote-block::before {
  content: '\201C';
  font-family: var(--f-accent);
  font-size: 5rem;
  color: var(--c-yellow);
  position: absolute;
  top: -8px;
  left: 18px;
  line-height: 1;
}
.quote-block p {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--c-ink-soft);
  padding-left: .5rem;
  margin-bottom: 0;
}

/* ==========================================================================
   REVEAL
   ========================================================================== */
.reveal {
  background: var(--c-orange);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.reveal::before {
  content: '';
  position: absolute;
  top: -60px; left: -10%;
  width: 120%; height: 120px;
  background: #fff;
  border-radius: 0 0 50% 50%;
}
.reveal::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -10%;
  width: 120%; height: 120px;
  background: var(--c-cream-light);
  border-radius: 50% 50% 0 0;
}
.reveal h2 { color: #fff; }
.reveal p { color: var(--c-cream-light); }
.reveal .tag {
  display: inline-block;
  background: var(--c-yellow);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: var(--fs-xxs);
  text-transform: uppercase;
  letter-spacing: .18em;
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   INCLUDED
   ========================================================================== */
.included { background: var(--c-cream-light); }

.included-item {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  margin-bottom: 1.25rem;
  border-left: 4px solid var(--c-yellow);
  transition: transform .2s var(--ease);
}
.included-item:hover { transform: translateX(4px); }
.included-item h3 { color: var(--c-orange-deep); }
.included-item p {
  color: var(--c-ink-soft);
  font-size: var(--fs-sm);
  margin-bottom: 0;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing {
  background: linear-gradient(180deg, #fff 0%, var(--c-cream-light) 100%);
  position: relative;
  padding: clamp(5rem, 10vw, 7rem) 0;
}
.pricing h2 { text-align: center; max-width: 640px; margin-inline: auto; }
.pricing .section-label { display: flex; justify-content: center; }
.pricing .anchor-lede {
  text-align: center;
  color: var(--c-ink-soft);
  max-width: 560px;
  margin: 0 auto 1rem;
  font-size: var(--fs-sm);
}
.trust-bar {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  margin: 2rem auto 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(26,23,20,.08);
  border-bottom: 1px solid rgba(26,23,20,.08);
  max-width: 820px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-xs);
  color: var(--c-ink-soft);
  font-weight: 500;
}
.trust-item .ic {
  width: 20px; height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--c-orange-deep);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 860px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.price-card {
  background: var(--c-cream-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  position: relative;
  border: 2px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -16px rgba(26,23,20,.12);
}
.price-card.featured {
  background: #fff;
  border-color: var(--c-orange-deep);
  transform: scale(1.05);
  box-shadow: 0 30px 60px -20px rgba(200,110,53,.35), 0 0 0 1px rgba(200,110,53,.15);
}
.price-card.featured::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--c-orange-deep), var(--c-yellow));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: .6;
}
.price-card.featured:hover { transform: scale(1.05) translateY(-4px); }

.price-card .badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--c-orange-deep);
  color: #fff;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: var(--fs-xxs);
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card .tier {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-muted);
  margin-bottom: .4rem;
}
.price-card .price {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--c-orange-deep);
  margin-bottom: .15rem;
  letter-spacing: -0.02em;
}
.price-card .price small {
  font-family: var(--f-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-muted);
}
.price-card .old-price {
  font-size: var(--fs-xs);
  color: var(--c-muted);
  text-decoration: line-through;
  margin-bottom: 1rem;
  opacity: .7;
}
.price-card .desc {
  font-size: var(--fs-sm);
  color: var(--c-ink-soft);
  margin-bottom: 1.5rem;
  flex: 1;
}
.price-card .desc ul { list-style: none; }
.price-card .desc ul li {
  padding: .35rem 0 .35rem 1.4rem;
  position: relative;
  font-size: var(--fs-sm);
  line-height: 1.5;
}
.price-card .desc ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-orange-deep);
  font-weight: 800;
}
.price-card .desc ul li.exclusive { color: var(--c-orange-deep); font-weight: 600; }
.price-card .desc .summary {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: var(--fs-xs);
  color: var(--c-muted);
  margin-top: .75rem;
}
.price-card .cta {
  display: flex;
  font-size: var(--fs-sm);
  padding: .9rem 1.5rem;
  width: 100%;
}

/* ==========================================================================
   FOR WHO
   ========================================================================== */
.forwho { background: var(--c-cream-deep); }

.forwho-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(26,23,20,.08);
  font-size: var(--fs-sm);
  line-height: 1.6;
}
.forwho-item:last-child { border-bottom: none; }
.forwho-item strong { color: var(--c-orange-deep); font-weight: 700; }

/* ==========================================================================
   BIO
   ========================================================================== */
.bio {
  background: var(--c-orange);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bio::before {
  content: '';
  position: absolute;
  top: -60px; left: -10%;
  width: 120%; height: 120px;
  background: var(--c-cream-deep);
  border-radius: 0 0 50% 50%;
}
.bio h2 { color: #fff; }
.bio p { color: var(--c-cream-light); }
.bio .cred {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: var(--fs-sm);
  opacity: .9;
}

/* ==========================================================================
   BONUS
   ========================================================================== */
.bonus { background: var(--c-cream-light); }

.bonus-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.bonus-card .icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--c-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.bonus-card .icon.coral { background: var(--c-coral); }
.bonus-card .icon.green { background: var(--c-green); color: #fff; }
.bonus-card .icon.pink  { background: #D98FD9; }
.bonus-card h3 { margin-bottom: .3rem; color: var(--c-ink); }
.bonus-card .value {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: var(--fs-xxs);
  color: var(--c-orange-deep);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.bonus-card p { font-size: var(--fs-sm); color: var(--c-ink-soft); margin-top: .35rem; }

.bonus-section-title {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: var(--fs-xxs);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--c-orange-deep);
  margin: 2rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--c-yellow);
}

/* ==========================================================================
   GUARANTEE
   ========================================================================== */
.guarantee {
  background: #fff;
  text-align: center;
}
.guarantee-box {
  background: var(--c-cream-light);
  border: 2px solid var(--c-green);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  max-width: 600px;
  margin: 0 auto;
}
.guarantee-box .shield { font-size: 3rem; margin-bottom: 1rem; }
.guarantee-box h2 { color: var(--c-green); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--c-cream-light); }

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
}
.faq-item summary {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: 1.25rem 1.75rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--c-ink);
  letter-spacing: -0.01em;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--c-orange-deep);
  font-weight: 800;
  transition: transform .2s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 1.75rem 1.4rem;
  font-size: var(--fs-sm);
  color: var(--c-ink-soft);
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta {
  background: var(--c-ink);
  color: var(--c-cream-light);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 7rem) 0;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -60px; left: -10%;
  width: 120%; height: 120px;
  background: var(--c-cream-light);
  border-radius: 0 0 50% 50%;
}
.final-cta h2 {
  color: var(--c-yellow);
  max-width: 600px;
  margin: 0 auto 1.25rem;
}
.final-cta p { color: var(--c-cream-light); opacity: .8; margin-bottom: .75rem; }
.final-cta .urgency {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: var(--fs-md);
  color: var(--c-coral);
  margin: 1.75rem 0;
}
.final-cta .cta-group {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  margin-top: 2.25rem;
}
.final-btn { border: none; }
.final-yellow { --bg: var(--c-yellow); --fg: var(--c-ink); border-color: var(--c-yellow); }
.final-yellow:hover { --bg: #fff; --fg: var(--c-ink); border-color: #fff; }
.final-orange { --bg: var(--c-orange-deep); --fg: #fff; border-color: var(--c-orange-deep); }
.final-orange:hover { --bg: var(--c-yellow); --fg: var(--c-ink); border-color: var(--c-yellow); }
.final-coral  { --bg: var(--c-coral); --fg: #fff; border-color: var(--c-coral); }
.final-coral:hover { --bg: #fff; --fg: var(--c-coral); border-color: #fff; }
@media (min-width: 640px) {
  .final-cta .cta-group { flex-direction: row; justify-content: center; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: var(--c-ink);
  color: var(--c-cream-light);
  text-align: center;
  padding: 1.5rem;
  font-size: var(--fs-xs);
  opacity: .55;
  border-top: 1px solid rgba(250, 243, 228, .08);
}

/* ==========================================================================
   Imagens
   ========================================================================== */
.img-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}
.img-placeholder.hero-img {
  margin: 2rem auto 0;
  max-width: 440px;
  max-height: 560px;
  object-position: center 25%;
}
.img-placeholder.section-img{ margin: 2rem 0;    max-height: 400px; }
.img-placeholder.inline-img { margin: 1.5rem 0;  max-height: 320px; border-radius: var(--radius); }
.img-placeholder.bio-img {
  width: 200px; height: 200px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  object-fit: cover;
  border: 4px solid var(--c-yellow);
}

/* Split layout (texto + imagem) */
.split {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  margin: 1.5rem 0;
}
.split.reverse { flex-direction: row-reverse; }
.split .text { flex: 1; }
.split .image { flex: 0 0 320px; }
.split .image img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  max-height: 380px;
}
@media (max-width: 760px) {
  .split, .split.reverse { flex-direction: column; gap: 1.5rem; }
  .split .image { flex: none; width: 100%; }
}

.bio-photo-wrap { text-align: center; margin-bottom: .5rem; }
.bio-photo-wrap .bio-img { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Visuais gráficos (substitutos de placeholder até chegar foto real)
   ========================================================================== */

/* Hero — visual abstrato de gravação */
.hero-visual {
  margin-top: 2.5rem;
  position: relative;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 540px;
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 12px; height: 12px;
  background: #ff4b4b;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,75,75,.2);
  animation: rec-pulse 1.6s infinite var(--ease);
}
.hero-visual-label {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: var(--fs-xxs);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin-bottom: 1rem;
  opacity: .85;
}
.hero-visual-main {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: .95;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
}
.hero-visual-main em {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--c-yellow);
}
.hero-visual-meta {
  display: flex;
  gap: 1.5rem;
  font-family: var(--f-body);
  font-size: var(--fs-xs);
  color: var(--c-cream);
  opacity: .75;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1rem;
}
@keyframes rec-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}

/* Pull-quote visual (Dor) */
.pull-visual {
  background: var(--c-ink);
  color: var(--c-cream-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pull-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(245,200,66,.12), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(232,137,74,.15), transparent 50%);
}
.pull-visual-word {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  line-height: .9;
  letter-spacing: -0.03em;
  color: #fff;
  position: relative;
  margin-bottom: .5rem;
}
.pull-visual-word em {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--c-coral);
}
.pull-visual-sub {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: var(--fs-sm);
  color: var(--c-cream);
  opacity: .75;
  position: relative;
}

/* Book stack (Prova) */
.book-stack {
  display: flex;
  gap: .75rem;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  min-height: 260px;
}
.book {
  flex: 0 0 auto;
  width: 88px;
  min-height: 200px;
  padding: 1rem .75rem;
  border-radius: 4px 8px 8px 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: var(--f-body);
  color: #fff;
  box-shadow: -2px 0 0 rgba(0,0,0,.15), 0 8px 20px -10px rgba(0,0,0,.3);
  position: relative;
  transform-origin: bottom center;
}
.book:nth-child(1) { background: var(--c-ink); transform: rotate(-3deg); height: 220px; }
.book:nth-child(2) { background: var(--c-orange-deep); transform: rotate(2deg); height: 240px; }
.book-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: .9rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
.book-author {
  font-size: .62rem;
  opacity: .7;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Phone frame (Reveal) */
.phone-frame {
  width: 220px;
  margin: .5rem auto 2rem;
  background: var(--c-ink);
  border-radius: 28px;
  padding: 10px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
  position: relative;
}
.phone-frame::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 6px;
  background: #000;
  border-radius: 4px;
  z-index: 2;
}
.phone-screen {
  background: linear-gradient(160deg, var(--c-orange) 0%, var(--c-orange-deep) 100%);
  border-radius: 20px;
  aspect-ratio: 9 / 19.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 2rem 1rem 1.5rem;
  position: relative;
}
.phone-label {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-yellow);
  margin-bottom: .75rem;
}
.phone-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: .35rem;
}
.phone-title em {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--c-yellow);
}
.phone-meta {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: .72rem;
  opacity: .8;
  margin-bottom: 1.5rem;
}
.phone-play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink);
  margin-top: auto;
}
.phone-play::before {
  content: "";
  width: 0; height: 0;
  border-left: 14px solid currentColor;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.phone-timer {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  margin-top: 1rem;
}

/* Para-quem visual (icones em grid) */
.pq-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  max-width: 320px;
}
.pq-tile {
  background: var(--c-cream);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--c-orange-deep);
  aspect-ratio: 1 / 1;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.pq-tile:hover { transform: translateY(-2px); background: var(--c-yellow); }
.pq-tile.accent { background: var(--c-orange-deep); color: #fff; }
.pq-tile.accent:hover { background: var(--c-ink); }

/* Monograma (Bio) */
.monogram {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--c-cream-deep);
  color: var(--c-orange-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 4rem;
  letter-spacing: -0.05em;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--c-yellow);
  position: relative;
}
.monogram::after {
  content: "Bia Mussi";
  position: absolute;
  bottom: -36px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-accent);
  font-style: italic;
  font-size: var(--fs-sm);
  color: var(--c-cream-light);
  opacity: .85;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0;
}
.bio-photo-wrap { margin-bottom: 3rem; } /* espaço pro "Bia Mussi" embaixo */

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 5rem 0 3.5rem; }
  .bonus-card { flex-direction: column; }
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: translateY(-4px); }
  .agitation .container { padding-left: calc(var(--gutter) + .25rem); }
  .quote-block { padding: 1.75rem 1.5rem; }
  .quote-block::before { font-size: 3.5rem; top: -4px; left: 10px; }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate {
  opacity: 0;
  animation: fadeUp .6s var(--ease) forwards;
}
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .animate { opacity: 1; animation: none; }
  * { transition: none !important; }
}

/* ==========================================================================
   Jump link (micro-CTA entre seções)
   ========================================================================== */
.jump-link {
  margin-top: 1.5rem;
  text-align: right;
}
.jump-link a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: var(--fs-sm);
  text-decoration: none;
  color: var(--c-orange-deep);
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.jump-link a:hover { gap: .9rem; color: var(--c-ink); }
.reveal .jump-link a { color: var(--c-yellow); }
.reveal .jump-link a:hover { color: #fff; }

/* ==========================================================================
   Sticky CTA (mobile only)
   ========================================================================== */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(26, 23, 20, .95);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-top: 1px solid rgba(245, 200, 66, .2);
  padding: .75rem var(--gutter);
  padding-bottom: max(.75rem, env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform .35s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
}
.sticky-cta-text {
  display: flex;
  flex-direction: column;
  color: var(--c-cream-light);
  line-height: 1.2;
}
.sticky-cta-price { font-size: var(--fs-sm); }
.sticky-cta-price strong {
  font-family: var(--f-display);
  font-weight: 800;
  color: var(--c-yellow);
  font-size: var(--fs-md);
  margin-left: .25rem;
}
.sticky-cta-sub {
  font-size: var(--fs-xxs);
  color: var(--c-cream);
  opacity: .7;
  margin-top: 2px;
}
.sticky-cta .cta {
  padding: .7rem 1.25rem;
  font-size: var(--fs-xs);
  --bg: var(--c-yellow);
  --fg: var(--c-ink);
  border-color: var(--c-yellow);
}
.sticky-cta .cta:hover { --bg: #fff; --fg: var(--c-ink); border-color: #fff; }

@media (max-width: 760px) {
  body { padding-bottom: 84px; } /* reserva espaço pro sticky */
}
@media (min-width: 761px) {
  .sticky-cta { display: none; }
}
