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

:root {
  --creme: #f2ede4;
  --creme-dark: #e8e0d4;
  --creme-deeper: #ddd3c4;
  --vinho: #6B1A2B;
  --vinho-light: #8B2A3E;
  --vinho-muted: rgba(107,26,43,0.12);
  --ouro: #B8894A;
  --ouro-light: #D4AB72;
  --ouro-muted: rgba(184,137,74,0.25);
  --texto: #2a1a14;
  --texto-soft: rgba(42,26,20,0.65);
  --border: rgba(107,26,43,0.15);
  --font-display: 'Cormorant', 'Times New Roman', serif;
  --font-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--creme);
  color: var(--texto);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}



.pattern-bg {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.45;
  background-image: url("../assets/images/pattern-bg.png");
  background-repeat: repeat;
  background-size: 300px;
}

/* ── UTILITÁRIOS ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

.label {
  font-family: var(--font-body); font-size: 10px; font-weight: 400;
  letter-spacing: 5px; text-transform: uppercase; color: var(--ouro);
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
  white-space: nowrap;
}
.label::before, .label::after { content: ''; flex: 0 0 28px; height: 1px; background: var(--ouro-muted); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 400; line-height: 1; letter-spacing: -0.03em;
  color: var(--texto); margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--vinho); }

.divider {
  width: 60px; height: 1px; background: var(--ouro);
  margin: 32px auto; opacity: 0.6;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 22px 0; transition: all 0.5s ease;
}
nav.scrolled {
  background: rgba(242,237,228,0.95); backdrop-filter: blur(20px);
  padding: 14px 0; border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 30px rgba(107,26,43,0.06);
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo {
  font-family: var(--font-display); font-size: 20px; font-weight: 400;
  letter-spacing: 0.1em; color: var(--vinho); text-decoration: none; text-transform: uppercase;
}
.nav-cta {
  font-size: 10px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase;
  color: var(--creme); background: var(--vinho); text-decoration: none;
  padding: 10px 24px; border-radius: 0; transition: all 0.3s;
}
.nav-cta:hover { background: var(--vinho-light); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.hero-tag {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--ouro); font-weight: 400; margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-tag::before { content: ''; width: 24px; height: 1px; background: var(--ouro); }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 78px);
  font-weight: 300; line-height: 0.95; letter-spacing: -0.04em;
  color: var(--texto); margin-bottom: 28px;
}
.hero-headline em { font-style: italic; color: var(--vinho); display: block; }
.hero-headline strong { font-weight: 600; display: block; }
.hero-sub {
  font-size: 16px; font-weight: 300; color: var(--texto-soft);
  line-height: 1.75; margin-bottom: 40px; max-width: 460px;
}
.hero-sub strong { color: var(--vinho); font-weight: 500; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 400; letter-spacing: 3px; text-transform: uppercase;
  color: var(--creme); background: var(--vinho); text-decoration: none;
  padding: 18px 36px; border: none; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1); position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: var(--ouro); transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.btn-primary:hover::after { transform: scaleX(1); transform-origin: left; }
.btn-primary span { position: relative; z-index: 1; }
.btn-secondary {
  font-size: 11px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase;
  color: var(--vinho); text-decoration: none; border-bottom: 1px solid var(--ouro-muted);
  padding-bottom: 3px; transition: border-color 0.3s;
}
.btn-secondary:hover { border-color: var(--vinho); }

.hero-book {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.mirror-frame {
  width: 100%; max-width: 420px; margin: 0 auto;
  position: relative;
}
.mirror-svg { width: 100%; filter: drop-shadow(0 30px 60px rgba(107,26,43,0.2)); }
.mirror-inner {
  position: absolute; top: 18%; left: 22%; right: 22%; bottom: 15%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 20px;
}
.mirror-book-title {
  font-family: var(--font-display); font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--texto); line-height: 1.1; margin-bottom: 12px;
}
.mirror-book-title em { font-style: italic; font-size: 0.85em; }
.mirror-sep { width: 1px; height: 32px; background: var(--ouro); opacity: 0.6; margin: 0 auto 14px; }
.mirror-book-sub {
  font-size: 11px; font-weight: 300; letter-spacing: 1.5px;
  color: var(--texto-soft); line-height: 1.6;
}
.mirror-brand {
  font-family: var(--font-display); font-size: 13px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase; color: var(--vinho);
  margin-top: 16px;
}
.mirror-author {
  font-family: var(--font-display); font-size: 14px; font-style: italic;
  color: var(--ouro); margin-top: 8px;
}

/* Ornamental elements */
.hero-ornament {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 160px; height: 160px; opacity: 0.06; pointer-events: none;
}

/* ── QUEM É PARA ── */
.for-who { padding: 100px 0; background: var(--creme-dark); position: relative; }
.for-who-intro { text-align: center; margin-bottom: 64px; }
.for-who-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.for-card {
  background: var(--creme); padding: 40px 32px;
  border-top: 2px solid transparent;
  transition: border-color 0.4s, transform 0.4s;
}
.for-card:hover { border-color: var(--ouro); transform: translateY(-4px); }
.for-num {
  font-family: var(--font-display); font-size: 52px; font-weight: 300;
  color: var(--creme-deeper); line-height: 1; margin-bottom: 16px;
  transition: color 0.4s;
}
.for-card:hover .for-num { color: var(--ouro-muted); }
.for-card h3 {
  font-family: var(--font-display); font-size: 20px; font-weight: 400;
  color: var(--vinho); margin-bottom: 10px; line-height: 1.2;
}
.for-card p { font-size: 14px; font-weight: 300; color: var(--texto-soft); line-height: 1.7; }

/* ── PROBLEMA ── */
.problem { padding: 110px 0; position: relative; overflow: hidden; }
.problem-inner { display: flex; flex-direction: column; align-items: center; max-width: 680px; margin: 0 auto; }
.problem-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.problem-mirror {
  width: 300px; height: 380px;
  background: linear-gradient(145deg, var(--creme-dark), var(--creme-deeper));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.problem-mirror::before {
  content: '?'; position: absolute;
  font-family: var(--font-display); font-size: 140px; font-weight: 300;
  color: rgba(107,26,43,0.08); line-height: 1;
}
.problem-mirror::after {
  content: ''; position: absolute; inset: 12px;
  border: 1px solid var(--ouro-muted);
}
.problem-text h2 { margin-bottom: 28px; }
.pain-list { list-style: none; margin-bottom: 36px; width: 100%; }
.pain-list li {
  font-size: 15px; font-weight: 300; color: var(--texto-soft);
  padding: 14px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 16px; align-items: flex-start;
  transition: color 0.3s;
}
.pain-list li:hover { color: var(--texto); }
.pain-list li::before {
  content: '—'; color: var(--vinho); flex-shrink: 0;
  font-family: var(--font-display); font-size: 18px; margin-top: -2px;
}
.pain-list li:last-child { border-bottom: none; }
.problem-cta-text {
  font-family: var(--font-display); font-size: 22px; font-style: italic;
  color: var(--vinho); line-height: 1.4;
}

/* ── SOLUÇÃO / O QUE É ── */
.solution { padding: 110px 0; background: var(--vinho); position: relative; overflow: hidden; }
.solution::before {
  content: 'O ESPELHO'; position: absolute;
  font-family: var(--font-display); font-size: clamp(80px, 14vw, 160px);
  font-weight: 300; color: rgba(255,255,255,0.04);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  white-space: nowrap; pointer-events: none; letter-spacing: 0.2em;
}
.solution-inner { text-align: center; position: relative; z-index: 1; }
.solution .section-title { color: var(--creme); }
.solution .section-title em { color: var(--ouro-light); }
.solution .label { color: var(--ouro-light); justify-content: center; }
.solution .label::before, .solution .label::after { background: rgba(212,171,114,0.3); }
.solution-desc {
  font-size: 17px; font-weight: 300; color: rgba(242,237,228,0.8);
  line-height: 1.8; max-width: 640px; margin: 0 auto 60px;
}
.solution-desc strong { color: var(--ouro-light); font-weight: 500; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 60px; }
.sol-card {
  background: rgba(255,255,255,0.05); padding: 44px 32px;
  border-top: 1px solid rgba(212,171,114,0.2);
  transition: background 0.4s;
  text-align: left;
}
.sol-card:hover { background: rgba(255,255,255,0.09); }
.sol-icon {
  font-family: var(--font-display); font-size: 48px; font-weight: 300;
  color: var(--ouro-light); line-height: 1; margin-bottom: 20px; opacity: 0.7;
}
.sol-card h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 400;
  color: var(--creme); margin-bottom: 12px; line-height: 1.2;
}
.sol-card p { font-size: 14px; font-weight: 300; color: rgba(242,237,228,0.65); line-height: 1.7; }

/* ── O QUE VOCÊ VAI APRENDER ── */
.learn { padding: 110px 0; }
.learn-intro { max-width: 620px; margin: 0 auto 70px; text-align: center; }
.learn-intro p { font-size: 16px; font-weight: 300; color: var(--texto-soft); line-height: 1.8; }
.learn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.learn-item {
  padding: 32px 36px; border: 1px solid var(--border);
  border-right: none; border-bottom: none;
  display: flex; gap: 20px; align-items: flex-start;
  transition: background 0.3s;
}
.learn-item:nth-child(2n) { border-right: 1px solid var(--border); }
.learn-item:nth-child(n+7) { border-bottom: 1px solid var(--border); }
.learn-item:hover { background: rgba(107,26,43,0.03); }
.learn-num {
  font-family: var(--font-display); font-size: 40px; font-weight: 300;
  color: var(--ouro-muted); line-height: 0.9; flex-shrink: 0;
  transition: color 0.3s;
}
.learn-item:hover .learn-num { color: rgba(184,137,74,0.5); }
.learn-content h4 {
  font-family: var(--font-display); font-size: 18px; font-weight: 400;
  color: var(--vinho); margin-bottom: 8px; line-height: 1.2;
}
.learn-content p { font-size: 13px; font-weight: 300; color: var(--texto-soft); line-height: 1.65; }

/* ── OS 12 ARQUÉTIPOS ── */
.archetypes { padding: 110px 0; background: var(--creme-dark); }
.archetypes-intro { text-align: center; margin-bottom: 64px; }
.archetypes-intro p {
  font-size: 16px; font-weight: 300; color: var(--texto-soft);
  line-height: 1.8; max-width: 560px; margin: 12px auto 0;
}
.arch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.arch-card {
  background: var(--creme); padding: 28px 24px;
  text-align: center; cursor: default;
  border-bottom: 2px solid transparent;
  transition: all 0.4s;
}
.arch-card:hover { background: var(--vinho); border-bottom-color: var(--ouro); }
.arch-symbol {
  font-family: var(--font-display); font-size: 34px; font-weight: 300;
  color: var(--ouro); margin-bottom: 10px; line-height: 1;
  transition: color 0.4s;
  font-variant-emoji: text;
  -webkit-font-variant-emoji: text;
}
.arch-card:hover .arch-symbol { color: var(--ouro-light); }
.arch-name {
  font-family: var(--font-display); font-size: 16px; font-weight: 400;
  color: var(--vinho); margin-bottom: 6px; transition: color 0.4s;
}
.arch-card:hover .arch-name { color: var(--creme); }
.arch-essence { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--texto-soft); transition: color 0.4s; }
.arch-card:hover .arch-essence { color: rgba(242,237,228,0.6); }
.archetypes-cta { text-align: center; margin-top: 52px; }
.archetypes-cta p {
  font-family: var(--font-display); font-size: 20px; font-style: italic;
  color: var(--texto-soft); margin-bottom: 28px;
}

/* ── TREINAMENTO / BÔNUS ── */
.training { padding: 110px 0; position: relative; overflow: hidden; }
.training-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.training-tag { font-size: 10px; letter-spacing: 5px; text-transform: uppercase; color: var(--ouro); margin-bottom: 16px; }
.training-desc { font-size: 15px; font-weight: 300; color: var(--texto-soft); line-height: 1.8; margin-bottom: 32px; }
.training-includes { list-style: none; margin-bottom: 40px; }
.training-includes li {
  font-size: 14px; font-weight: 300; color: var(--texto);
  padding: 12px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 14px; align-items: flex-start;
}
.training-includes li::before { content: '✦'; color: var(--ouro); font-size: 10px; margin-top: 3px; flex-shrink: 0; }
.training-includes li:last-child { border-bottom: none; }
.training-visual {
  background: var(--creme-dark); padding: 48px 40px;
  border: 1px solid var(--border); position: relative;
}
.training-visual::before {
  content: ''; position: absolute; inset: 10px;
  border: 1px solid var(--ouro-muted); pointer-events: none;
}
.tv-label {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--ouro); margin-bottom: 24px;
}
.tv-title {
  font-family: var(--font-display); font-size: 32px; font-weight: 400;
  color: var(--texto); line-height: 1.1; margin-bottom: 16px;
}
.tv-title em { font-style: italic; color: var(--vinho); }
.tv-desc { font-size: 14px; font-weight: 300; color: var(--texto-soft); line-height: 1.7; margin-bottom: 28px; }
.bonus-badge {
  display: inline-block; background: var(--vinho); color: var(--creme);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  padding: 8px 20px; margin-bottom: 20px;
}
.bonus-items { list-style: none; }
.bonus-items li {
  font-size: 13px; font-weight: 300; color: var(--texto-soft);
  padding: 8px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 12px;
}
.bonus-items li::before { content: '○'; color: var(--ouro); font-size: 8px; margin-top: 5px; flex-shrink: 0; }
.bonus-items li:last-child { border-bottom: none; }

/* ── DEPOIMENTOS ── */
.testimonials { padding: 110px 0; background: var(--vinho); }
.test-intro { text-align: center; margin-bottom: 64px; }
.test-intro .section-title { color: var(--creme); }
.test-intro .label { color: var(--ouro-light); justify-content: center; }
.test-intro .label::before, .test-intro .label::after { background: rgba(212,171,114,0.3); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.test-card {
  background: rgba(255,255,255,0.06); padding: 44px 36px;
  border-top: 1px solid rgba(212,171,114,0.15);
  transition: background 0.3s;
}
.test-card:hover { background: rgba(255,255,255,0.1); }
.test-quote-mark {
  font-family: var(--font-display); font-size: 72px; line-height: 0.6;
  color: var(--ouro-light); opacity: 0.3; margin-bottom: 20px;
}
.test-text {
  font-family: var(--font-display); font-size: 18px; font-style: italic; font-weight: 300;
  color: rgba(242,237,228,0.9); line-height: 1.65; margin-bottom: 28px;
}
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(212,171,114,0.2); border: 1px solid rgba(212,171,114,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px; color: var(--ouro-light);
}
.test-name { font-size: 13px; font-weight: 400; color: rgba(242,237,228,0.8); letter-spacing: 0.5px; }
.test-role { font-size: 11px; font-weight: 300; color: rgba(242,237,228,0.45); letter-spacing: 1px; }

/* ── SOBRE A AUTORA ── */
.author { padding: 110px 0; }
.author-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.author-visual { position: relative; }
.author-photo-frame {
  width: 100%; padding-bottom: 120%; position: relative;
  background: var(--creme-dark); border: 1px solid var(--border);
}
.author-photo-frame::before {
  content: 'L'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 200px; font-weight: 300;
  color: rgba(107,26,43,0.06); pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.author-photo-frame::after {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px; border: 1px solid var(--ouro-muted); z-index: -1;
}
.author-tag { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--ouro); margin-bottom: 16px; }
.author-name {
  font-family: var(--font-display); font-size: clamp(38px, 5vw, 56px);
  font-weight: 300; letter-spacing: -0.03em; color: var(--texto);
  line-height: 0.95; margin-bottom: 24px;
}
.author-name em { font-style: italic; color: var(--vinho); display: block; }
.author-bio {
  font-size: 15px; font-weight: 300; color: var(--texto-soft);
  line-height: 1.85; margin-bottom: 32px;
}
.author-bio strong { color: var(--vinho); font-weight: 500; }
.author-credentials { list-style: none; border-top: 1px solid var(--border); padding-top: 24px; }
.author-credentials li {
  font-size: 13px; font-weight: 300; color: var(--texto-soft);
  padding: 8px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 14px; align-items: flex-start;
}
.author-credentials li::before { content: '—'; color: var(--ouro); flex-shrink: 0; }
.author-credentials li:last-child { border-bottom: none; }

/* ── OFERTA / PREÇO ── */
.offer { padding: 110px 0; background: var(--creme-dark); }
.offer-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.offer-inner .section-title { margin-bottom: 12px; }
.offer-desc { font-size: 15px; font-weight: 300; color: var(--texto-soft); line-height: 1.8; margin-bottom: 48px; }
.price-box {
  background: var(--creme); border: 1px solid var(--border);
  padding: 52px 48px; position: relative; margin-bottom: 32px;
}
.price-box::before {
  content: ''; position: absolute; inset: 10px;
  border: 1px solid var(--ouro-muted); pointer-events: none;
}
.price-box-title {
  font-family: var(--font-display); font-size: 28px; font-weight: 400;
  color: var(--vinho); margin-bottom: 24px;
}
.price-includes { list-style: none; text-align: left; margin-bottom: 36px; }
.price-includes li {
  font-size: 14px; font-weight: 300; padding: 11px 0;
  border-bottom: 1px solid var(--border);
  display: flex; gap: 14px; align-items: flex-start; color: var(--texto);
}
.price-includes li::before { content: '✦'; color: var(--ouro); font-size: 10px; margin-top: 4px; flex-shrink: 0; }
.price-includes li:last-child { border-bottom: none; }
.price-display { margin-bottom: 36px; }
.price-from { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--texto-soft); margin-bottom: 6px; }
.price-value {
  font-family: var(--font-display); font-size: 72px; font-weight: 300;
  color: var(--vinho); line-height: 1; letter-spacing: -0.03em;
}
.price-value sup { font-size: 28px; vertical-align: super; }
.price-installments { font-size: 13px; color: var(--texto-soft); margin-top: 6px; }
.btn-primary--large {
  font-size: 12px; letter-spacing: 4px; padding: 22px 52px;
  width: 100%;
}
.price-guarantee {
  font-size: 12px; color: var(--texto-soft); margin-top: 18px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.price-guarantee::before { content: '◈'; color: var(--ouro); }

/* ── FAQ ── */
.faq { padding: 110px 0; }
.faq-intro { text-align: center; margin-bottom: 60px; }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  font-family: var(--font-display); font-size: 18px; font-weight: 400;
  color: var(--texto); padding: 24px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  transition: color 0.3s; user-select: none;
}
.faq-q:hover { color: var(--vinho); }
.faq-icon { font-size: 20px; color: var(--ouro); flex-shrink: 0; transition: transform 0.4s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 14px; font-weight: 300; color: var(--texto-soft);
  line-height: 1.8; max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), padding 0.4s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 24px; }

/* ── CTA FINAL ── */
.final-cta {
  padding: 120px 0; background: var(--vinho); position: relative; overflow: hidden; text-align: center;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,137,74,0.1) 0%, transparent 70%);
}
.final-cta .section-title { color: var(--creme); }
.final-cta .section-title em { color: var(--ouro-light); }
.final-cta-desc {
  font-size: 16px; font-weight: 300; color: rgba(242,237,228,0.75);
  line-height: 1.8; max-width: 520px; margin: 0 auto 44px;
}
.final-cta .btn-primary { background: var(--ouro); color: var(--texto); }
.final-cta .btn-primary::after { background: var(--ouro-light); }
.final-cta-guarantee {
  font-size: 12px; color: rgba(242,237,228,0.5); margin-top: 20px; letter-spacing: 1px;
}

/* ── FOOTER ── */
footer {
  padding: 48px 0; border-top: 1px solid var(--border);
  display: flex;
}
footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo {
  font-family: var(--font-display); font-size: 18px; font-weight: 400;
  letter-spacing: 0.1em; color: var(--vinho); text-transform: uppercase;
}
.footer-copy { font-size: 11px; color: var(--texto-soft); letter-spacing: 1px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 11px; color: var(--texto-soft); text-decoration: none; letter-spacing: 1px; transition: color 0.3s; }
.footer-links a:hover { color: var(--vinho); }

/* ── ANIMAÇÕES ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(1) { transition-delay: 0.05s; }
.fade-up:nth-child(2) { transition-delay: 0.15s; }
.fade-up:nth-child(3) { transition-delay: 0.25s; }
.fade-up:nth-child(4) { transition-delay: 0.35s; }
.fade-up:nth-child(5) { transition-delay: 0.45s; }
.fade-up:nth-child(6) { transition-delay: 0.55s; }

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.sticky-cta.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.sticky-cta a {
  display: flex; align-items: center; gap: 10px;
  background: var(--vinho); color: var(--creme);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  text-decoration: none; padding: 16px 28px;
  box-shadow: 0 8px 32px rgba(107,26,43,0.35);
  transition: all 0.3s;
}
.sticky-cta a:hover { background: var(--vinho-light); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner, .training-inner, .author-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-book { order: -1; }
  .mirror-frame { max-width: 280px; }
  .for-who-grid { grid-template-columns: 1fr 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .arch-grid { grid-template-columns: repeat(3, 1fr); }
  .learn-grid { grid-template-columns: 1fr; }
  .learn-item:nth-child(n+7) { border-bottom: none; }
  .learn-item:last-child { border-bottom: 1px solid var(--border); }
  .test-grid { grid-template-columns: 1fr; }
  .author-photo-frame { padding-bottom: 110%; }
  .price-box { padding: 36px 24px; }
}
@media (max-width: 600px) {
  .for-who-grid { grid-template-columns: 1fr; }
  .arch-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .nav-cta { display: none; }
  .container, .container--narrow { padding: 0 20px; }
  .author-photo-frame { padding-bottom: 120%; }
}