/* =============================================
   VARIÁVEIS & RESET
   ============================================= */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5E8C0;
  --dark: #0D0C0A;
  --dark-2: #141210;
  --dark-3: #1C1A16;
  --dark-4: #252218;
  --text: #E8E2D5;
  --text-muted: #9A9080;
  --text-dim: #5C5648;
  --cream: #F5F0E8;
  --red-soft: #C0392B;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* =============================================
   TIPOGRAFIA
   ============================================= */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--cream);
}

h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; }
h2 { font-size: clamp(24px, 4vw, 36px); font-weight: 700; margin-bottom: 1.25rem; }
h3 { font-size: clamp(18px, 3vw, 24px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }

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

.gold { color: var(--gold); }
.gold-light { color: var(--gold-light); }
em.gold { font-style: italic; color: var(--gold); }
s, .strikethrough { color: var(--text-dim); text-decoration: line-through; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
  opacity: 1;
  transform: none;
}

.dark-bg {
  background: var(--dark-3);
}

.gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* =============================================
   CTA BUTTON
   ============================================= */
.cta-btn {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: var(--gold);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.cta-btn.secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.cta-btn.secondary:hover {
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-1px);
}

.cta-subtext {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
  margin-bottom: 0;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--dark-3);
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  text-align: center;
  padding: 10px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  background: var(--dark);
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-subtitle {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(16px, 2.5vw, 21px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-cta {
  max-width: 480px;
  margin: 0 auto;
  font-size: 16px;
  padding: 20px 32px;
}

/* ANIMAÇÕES DE ENTRADA */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-up {
  animation: fadeUp 0.6s ease both;
  animation-delay: var(--delay, 0s);
}

/* =============================================
   SEÇÃO: A DOR
   ============================================= */
.pain-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--cream);
  text-align: center;
  margin-bottom: 40px;
}

.pain-body {
  color: var(--text);
  margin-bottom: 32px;
}

.pain-blockquote {
  border-left: 3px solid var(--gold);
  background: var(--dark-3);
  padding: 20px 24px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text-muted);
  border-radius: 0 8px 8px 0;
  margin: 32px 0;
}

.pain-list {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pain-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 16px;
  color: var(--text);
}

.icon-x {
  color: var(--red-soft);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 14px;
}

.pain-close {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  border-top: 1px solid var(--dark-4);
  padding-top: 24px;
  margin-top: 24px;
}

/* =============================================
   SEÇÃO: O INIMIGO
   ============================================= */
.enemy-section h2 {
  margin-bottom: 32px;
}

.enemy-box {
  background: rgba(192, 57, 43, 0.08);
  border: 1px solid rgba(192, 57, 43, 0.3);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 32px;
}

.enemy-box h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e07060;
  margin-bottom: 16px;
}

.enemy-box p {
  color: var(--text);
  font-size: 16px;
}

.enemy-body p {
  color: var(--text);
  font-size: 17px;
}

/* =============================================
   SEÇÃO: AUTORIDADE
   ============================================= */
.authority-section h2 {
  margin-bottom: 32px;
}

.authority-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.authority-text {
  flex: 1;
}

.authority-text p {
  color: var(--text);
  font-size: 17px;
}

.authority-photo-placeholder {
  width: 180px;
  min-width: 180px;
  height: 220px;
  background: var(--dark-3);
  border: 1px dashed var(--text-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-dim);
  flex-shrink: 0;
}

/* =============================================
   SEÇÃO: O QUE VOCÊ RECEBE
   ============================================= */
.section-subtitle {
  font-family: 'Lora', serif;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--dark-4);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.feature-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 52px;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 12px;
}

.feature-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 10px;
}

.feature-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   SEÇÃO: BÔNUS
   ============================================= */
.bonus-section h2 {
  margin-bottom: 40px;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.bonus-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.bonus-badge {
  background: var(--gold);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 3px;
}

.bonus-info h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 6px;
}

.bonus-info p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.bonus-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-dim);
}

/* VALUE STACK */
.value-stack {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  padding: 28px 32px;
}

.value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  gap: 16px;
}

.value-price {
  white-space: nowrap;
  font-weight: 500;
}

.value-divider {
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
  margin: 8px 0;
}

.value-total {
  padding-top: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
}

.value-total .value-price.gold {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
}

/* =============================================
   SEÇÃO: DEPOIMENTOS
   ============================================= */
.testimonials-section h2 {
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testimonial-card {
  background: var(--dark-4);
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 8px;
  padding: 24px;
}

.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.testimonial-author strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
}

.testimonial-author span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-dim);
}

/* =============================================
   SEÇÃO: PREÇOS
   ============================================= */
.pricing-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
  align-items: start;
}

.pricing-card {
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--gold);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 4px;
}

.price-currency {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-top: 10px;
}

.price-value {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(42px, 6vw, 52px);
  color: var(--cream);
  line-height: 1;
}

.price-currency.gold-light,
.price-value.gold-light {
  color: var(--gold-light);
}

.plan-period {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}

.feature-on {
  color: var(--text);
}

.feature-off {
  color: var(--text-dim);
}

.check-icon {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.dash-icon {
  color: var(--text-dim);
  flex-shrink: 0;
}

/* GARANTIA */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--dark-3);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 12px;
  padding: 28px 32px;
  max-width: 560px;
  margin: 0 auto;
}

.guarantee-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
}

.guarantee-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}

.guarantee-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* =============================================
   SEÇÃO: PARA QUEM É / NÃO É
   ============================================= */
.audience-section h2 {
  margin-bottom: 24px;
}

.audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.audience-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
}

.audience-list--yes li {
  color: var(--text);
}

.audience-list--no li {
  color: var(--text-muted);
}

.not-for-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

/* =============================================
   SEÇÃO: FAQ
   ============================================= */
.faq-section h2 {
  margin-bottom: 36px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: var(--dark-3);
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--dark-4);
}

.faq-icon {
  color: var(--gold);
  font-size: 20px;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  width: 20px;
  text-align: center;
}

.faq-answer {
  background: var(--dark-4);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer.open {
  max-height: 400px;
  padding: 20px 24px;
}

.faq-answer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   CTA FINAL
   ============================================= */
.closing-section {
  text-align: center;
}

.closing-inner {
  max-width: 560px;
  margin: 0 auto;
}

.closing-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.closing-section h2 {
  margin-bottom: 20px;
}

.closing-body {
  font-family: 'Lora', serif;
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.closing-cta {
  max-width: 400px;
  margin: 0 auto;
  font-size: 16px;
  padding: 20px 32px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark-2);
  padding: 40px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 6px;
}

.footer-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--text-dim);
}

.footer-links a {
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-links span {
  color: var(--text-dim);
  opacity: 0.4;
}

/* =============================================
   STICKY CTA (apenas mobile)
   ============================================= */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, var(--dark) 60%, transparent);
  z-index: 200;
  transition: opacity 0.3s, transform 0.3s;
}

.sticky-cta.hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

.sticky-cta-btn {
  font-size: 14px;
  padding: 16px 20px;
}

/* =============================================
   RESPONSIVIDADE
   ============================================= */
@media (max-width: 640px) {
  .sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 80px;
  }
}

@media (max-width: 640px) {
  .criador-grid {
    grid-template-columns: 1fr !important;
  }
  .criador-grid img {
    height: 280px !important;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 72px 0 56px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .authority-content {
    flex-direction: column;
  }

  .authority-photo-placeholder {
    width: 100%;
    min-width: unset;
    height: 180px;
  }

  .value-stack {
    padding: 20px;
  }

  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .bonus-item {
    flex-direction: column;
    gap: 10px;
  }
}
