/* =============================================
   VERDADE RELACIONAL — DESIGN SYSTEM
   Filosofia: o texto vende, não o layout.
   Arquivos: index.html, checkout.html, obrigado.html, upsell.html
   ============================================= */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #1e293b;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
input, button { font-family: inherit; }

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-family: 'Playfair Display', serif; color: #111; }
.accent { color: #c0392b; }

/* --- NAVBAR --- */
#navbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 20px;
}
.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; color: #1a1a1a; }
.logo span { color: #c0392b; }
.nav-links { display: flex; gap: 20px; font-size: 0.8rem; font-weight: 500; color: #666; }
.nav-links a:hover { color: #1a1a1a; }
@media (max-width: 600px) { .nav-links { display: none; } }

/* --- HERO --- */
#hero {
  position: relative;
  background: #1a1a1a;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(26,26,26,0.95));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(192,57,43,0.9);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(192,57,43,0.6); }
  50% { transform: scale(1.08); box-shadow: 0 0 20px 6px rgba(192,57,43,0.35); }
}
.badge-pulse { animation: badgePulse 1.8s ease-in-out infinite; }
#hero h1 { font-size: 2rem; margin-bottom: 18px; line-height: 1.3; }
#hero p { color: #ccc; font-size: 0.95rem; margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.hero-buttons { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
#hero small { display: block; margin-top: 16px; color: #666; font-size: 0.7rem; }
@media (min-width: 768px) { #hero { padding: 110px 20px; } #hero h1 { font-size: 2.8rem; } }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-align: center;
}
.btn-green { background: #27ae60; color: #fff; }
.btn-green:hover { background: #1e8449; }
.btn-outline { background: transparent; border: 1px solid #666; color: #ccc; }
.btn-outline:hover { background: rgba(255,255,255,0.05); color: #fff; }
.btn-outline-thick {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 36px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
.btn-outline-thick:hover { background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; display: block; padding: 14px; }
@keyframes gentlePulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(39,174,96,0.25); }
  50% { box-shadow: 0 4px 28px rgba(39,174,96,0.5); }
}
.btn-pulse { animation: gentlePulse 2s ease-in-out infinite; }

/* --- SECTIONS GENERAL --- */
.section-tag {
  display: block;
  text-align: center;
  color: #c0392b;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.section-header { text-align: center; max-width: 650px; margin: 0 auto 40px; }
.section-header h2 { font-size: 1.7rem; margin-bottom: 10px; }
.section-header p { color: #666; font-size: 0.9rem; }

/* --- INTRO --- */
#intro {
  max-width: 650px;
  margin: 0 auto;
  padding: 50px 24px;
  text-align: center;
  background: #fff;
}
#intro h2 { font-size: 1.6rem; margin-bottom: 16px; }
#intro p { color: #555; font-size: 0.95rem; line-height: 1.7; margin-bottom: 14px; }

/* --- DECONSTRUCTION --- */
#deconstruction { padding: 60px 20px; max-width: 950px; margin: 0 auto; }
.analysis-card {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  flex-direction: column;
}
@media (min-width: 768px) { .analysis-card { flex-direction: row; } }
.card-left, .card-right { flex: 1; padding: 20px; border-radius: 8px; }
.card-left {
  background: #fff;
  border: 1px solid #e5e7eb;
}
.card-left small { color: #999; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.65rem; }
.card-left h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin: 8px 0; }
.card-left blockquote {
  background: #f9fafb;
  border-left: 3px solid #1a1a1a;
  padding: 10px 14px;
  font-style: italic;
  color: #666;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  margin: 12px 0;
  line-height: 1.6;
}
.trigger { font-size: 0.75rem; color: #888; }
.trigger span { background: #f1f5f9; padding: 2px 8px; border-radius: 4px; font-size: 0.7rem; }
.card-right {
  background: #fef2f2;
  border: 1px solid #fecaca;
  position: relative;
}
.card-right small { color: #c0392b; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.65rem; }
.card-right p { color: #555; font-size: 0.85rem; line-height: 1.65; margin-top: 8px; }
.verdict {
  float: right;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.false-promise { background: #fee2e2; color: #991b1b; }
.manipulation { background: #f3e8ff; color: #6b21a8; }
.pseudo-science { background: #ffedd5; color: #9a3412; }
.false-scarcity { background: #fef9c3; color: #854d0e; }

/* --- PODCAST SECTION --- */
.podcast-section {
  padding: 50px 20px 40px;
  background: #fff;
  border-top: 1px solid #f1f5f9;
}
.podcast-intro {
  max-width: 600px;
  margin: 0 auto 30px;
}
.podcast-intro p {
  font-family: 'Georgia', serif;
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}
.player-note {
  text-align: center;
  font-size: 0.8rem;
  color: #999;
  font-style: italic;
  margin-top: 10px;
}
.audio-player {
  max-width: 500px;
  margin: 0 auto;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 18px;
}
.player-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; text-align: left; }
.player-icon {
  width: 34px; height: 34px;
  background: #c0392b;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.8rem;
  flex-shrink: 0;
}
.player-header strong { font-size: 0.85rem; color: #333; }
.player-header small { font-size: 0.7rem; color: #999; }
.audio-player audio { width: 100%; height: 40px; outline: none; }
.progress-bar { height: 3px; background: #e5e7eb; border-radius: 3px; margin-top: 8px; overflow: hidden; }
#progress-fill { height: 100%; background: #c0392b; width: 0; transition: width 0.3s; border-radius: 3px; }

/* --- PÓS-ÁUDIO SECTION --- */
.post-audio-section {
  padding: 40px 20px 50px;
  background: #fff;
}
.post-audio-content {
  max-width: 600px;
  margin: 0 auto 24px;
}
.post-audio-content p {
  font-family: 'Georgia', serif;
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}
.share-cta {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.btn-dark {
  background: #1a1a1a;
  color: #fff;
  font-size: 0.85rem;
}
.btn-dark:hover { background: #333; }
.share-cta small {
  display: block;
  margin-top: 10px;
  text-align: center;
}

/* SOFT CAPTURE */
.soft-capture {
  max-width: 500px;
  margin: 0 auto;
  padding-top: 10px;
}
.soft-capture-divider {
  width: 60px;
  height: 1px;
  background: #e5e7eb;
  margin: 30px auto;
}
.soft-capture-text {
  font-family: 'Georgia', serif;
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: justify;
}
.capture-form {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.capture-form input {
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.85rem;
  background: #f9fafb;
  outline: none;
}
.capture-form input:focus { border-color: #c0392b; }
.capture-form button {
  padding: 14px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}
.capture-form button:hover { background: #333; }
.capture-form small { color: #aaa; font-size: 0.7rem; text-align: center; }
.capture-success {
  text-align: center;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 18px;
  font-size: 0.9rem;
  color: #166534;
}

/* --- EDITORIAL / ADVERTORIAL --- */
#advertorial, .editorial { max-width: 600px; margin: 0 auto; padding: 50px 24px; }
.editorial p, #advertorial p {
  font-family: 'Georgia', serif;
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}
.scene-box {
  background: #1a1a1a;
  border-left: 4px solid #c0392b;
  padding: 20px 24px;
  font-style: italic;
  color: #f0f0f0;
  margin: 28px 0;
  font-size: 16px;
  line-height: 1.8;
  border-radius: 4px;
  font-family: 'Georgia', serif;
}
.scene-box strong { color: #ff6b6b; font-style: normal; }
.quote-box {
  background: #f9f9f9;
  border-left: 4px solid #c0392b;
  padding: 15px 20px;
  font-style: italic;
  color: #555;
  margin: 28px 0;
  font-size: 15px;
  line-height: 1.7;
  font-family: 'Georgia', serif;
}
.reveal-box {
  background: #f0f4ff;
  border: 1px solid #c5d3f0;
  border-left: 4px solid #3b5fc0;
  padding: 18px 22px;
  margin: 28px 0;
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  border-radius: 4px;
  font-family: 'Georgia', serif;
}
.reveal-box strong { color: #1a3a8f; }
.highlight-bg { background-color: #ffeaea; padding: 2px 5px; color: #c0392b; font-weight: 700; }

/* --- FOOTER --- */
footer {
  background: #111;
  color: #888;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.75rem;
  line-height: 1.8;
}

/* =============================================
   CHECKOUT PAGE
   ============================================= */
.page-checkout { background: #f1f5f9; }
.checkout-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 20px;
}
.secure-badge { color: #16a34a; font-size: 0.75rem; font-weight: 600; }
.checkout-grid {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .checkout-grid { grid-template-columns: 3fr 2fr; } }
.checkout-form-col { }
.form-title { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; margin-top: 24px; color: #333; }
.form-title:first-child { margin-top: 0; }
#checkout-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.85rem;
  background: #fff;
  outline: none;
  margin-bottom: 10px;
}
#checkout-form input:focus { border-color: #c0392b; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pay-tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.pay-tab {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  color: #666;
  transition: all 0.2s;
}
.pay-tab.active { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.pix-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.pix-price { font-size: 1.5rem; font-weight: 700; color: #16a34a; margin: 6px 0; }
.secure-text { text-align: center; font-size: 0.7rem; color: #aaa; margin-top: 10px; }

/* SUMMARY */
.summary-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.summary-header {
  background: #1a1a1a;
  color: #fff;
  padding: 12px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.summary-body { padding: 18px; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 6px; }
.summary-row.total { font-size: 1rem; margin-top: 8px; }
.summary-row.total strong { color: #27ae60; }
.summary-desc { color: #aaa; font-size: 0.7rem; display: block; margin-bottom: 12px; }
.guarantee { color: #888; font-size: 0.7rem; display: block; margin-top: 8px; }
.summary-body hr { border: none; border-top: 1px solid #f1f5f9; margin: 12px 0; }
.social-proof { font-size: 0.75rem; color: #888; }
.stars { color: #f59e0b; letter-spacing: 2px; }

/* =============================================
   THANK YOU PAGE
   ============================================= */
.page-thankyou { background: #f8fafc; }
.thankyou-main {
  max-width: 500px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.thankyou-icon {
  width: 56px; height: 56px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: #16a34a;
  font-weight: 700;
}
.thankyou-main h1 { font-size: 1.6rem; margin-bottom: 14px; }
.thankyou-main p { color: #666; margin-bottom: 20px; line-height: 1.7; }
.redirect-notice {
  background: #f1f5f9;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 20px;
}
.link-accent { color: #c0392b; font-size: 0.85rem; font-weight: 600; }
.link-accent:hover { text-decoration: underline; }

/* =============================================
   UPSELL PAGE
   ============================================= */
.page-upsell { background: #f8fafc; }
.upsell-banner {
  background: #16a34a;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}
.upsell-main { max-width: 700px; margin: 0 auto; padding: 40px 24px; }
.upsell-header { text-align: center; margin-bottom: 30px; }
.upsell-header h1 { font-size: 1.8rem; line-height: 1.3; }
.upsell-copy { max-width: 600px; margin: 0 auto; }
.upsell-offer {
  max-width: 440px;
  margin: 40px auto 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.upsell-offer-body { padding: 24px; text-align: center; }
.upsell-offer-body ul {
  list-style: none;
  text-align: left;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 18px;
  line-height: 2;
}
.upsell-offer-body li { padding-left: 4px; }
.upsell-price { font-size: 1.8rem; font-weight: 700; color: #1a1a1a; margin: 6px 0; }
.upsell-offer-body small { display: block; color: #aaa; font-size: 0.7rem; margin-bottom: 14px; }
.btn-decline {
  display: block;
  width: 100%;
  background: none;
  border: none;
  font-size: 0.7rem;
  color: #bbb;
  cursor: pointer;
  padding: 8px;
  margin-top: 6px;
}
.btn-decline:hover { color: #888; }
