body::before {
  opacity: 0.35;
}

.topbar {
  font-size: 12px;
  letter-spacing: 0.12em;
  position: static;
  z-index: auto;
}

/* ── HERO ── */
.hero {
  padding: 48px 0 40px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-headline {
  font-size: clamp(28px, 6.5vw, 48px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.12;
  margin-bottom: 20px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  border-radius: 3px;
  margin: 0 auto 20px;
}

.hero-sub {
  font-size: clamp(15px, 3.5vw, 18px);
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

.hero-sub strong {
  color: var(--text);
  font-weight: 600;
}

/* ── SECTION ── */
.section {
  padding: 48px 0;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--accent); }

.section-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  border-radius: 2px;
  margin-bottom: 24px;
}

.body-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 16px;
}

.body-text strong { font-weight: 700; color: var(--dark); }

.highlight-box {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 18px 20px;
  margin: 24px 0;
}

.highlight-box p {
  font-size: 15px;
  color: var(--dark2);
  font-weight: 500;
  line-height: 1.65;
}

/* ── ANALOGY GRID ── */
.analogy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.analogy-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  text-align: center;
}

.analogy-icon { font-size: 28px; margin-bottom: 10px; display: block; }

.analogy-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.analogy-desc {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.5;
}

/* ── PROOF STRIP ── */
.proof-strip {
  background: var(--dark);
  border-radius: 20px;
  padding: 32px 28px;
  margin: 0 0 48px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
}

.proof-strip-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}

.stat-number {
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  color: var(--gold-light);
  font-weight: 300;
  line-height: 1.4;
  opacity: 0.8;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.testi-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.av-gold { background: linear-gradient(135deg, #C9A96E, #B8860B); }
.av-rose { background: linear-gradient(135deg, #D4A5A5, #C07070); }
.av-sage { background: linear-gradient(135deg, #A5C4A5, #70A070); }

.testi-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.testi-info { font-size: 11px; color: var(--text-soft); font-weight: 300; margin-top: 1px; }
.testi-stars { color: var(--gold); font-size: 12px; letter-spacing: 1px; margin-bottom: 2px; }

.testi-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.65;
  font-weight: 300;
  font-style: italic;
}

.testi-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 12px;
}

/* ── OFFER SECTION ── */
.offer-section {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 28px;
  margin: 0 0 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.15s;
}

.offer-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}

.offer-title {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 900;
  color: var(--dark);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 6px;
}

.offer-subtitle {
  font-size: 13px;
  color: var(--text-soft);
  text-align: center;
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* ── PRODUCT MOCKUP ── */
.product-mockup {
  background: linear-gradient(135deg, #1A1208 0%, #2C1F0E 100%);
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.product-mockup::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(201,169,110,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.product-mockup::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(232,196,176,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.product-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.product-emoji { font-size: 52px; display: block; margin-bottom: 12px; }

.product-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.product-desc {
  font-size: 12px;
  color: rgba(232,213,176,0.6);
  font-weight: 300;
  line-height: 1.5;
}

/* ── IMAGENS ADICIONADAS ── */
.hero-image-card {
  margin-top: 28px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08); /* Sombra suave combinando com a página */
}

.hero-image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.product-image-card {
  margin-bottom: 28px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid var(--gold-light); /* Bordinha dourada sutil */
}

.product-image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ── INCLUDES LIST ── */
.includes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.include-check {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.include-text { font-size: 14px; color: var(--text); line-height: 1.5; font-weight: 400; }
.include-text strong { font-weight: 700; color: var(--dark); }
.include-text span { font-size: 12px; color: var(--text-soft); font-weight: 300; display: block; margin-top: 1px; }

/* ── BONUS ── */
.bonus-section {
  border-top: 1px solid var(--gold-light);
  padding-top: 24px;
  margin-bottom: 28px;
}

.bonus-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.bonus-badge {
  background: var(--gold-pale);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--gold-light);
}

.bonus-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}

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

.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--gold-pale);
  border-radius: 12px;
  padding: 12px 14px;
}

.bonus-icon { font-size: 18px; flex-shrink: 0; }
.bonus-name { font-size: 13px; font-weight: 600; color: var(--dark); }
.bonus-desc { font-size: 11px; color: var(--text-soft); font-weight: 300; margin-top: 1px; }

/* ── VALUE STACK ── */
.value-stack {
  background: var(--gold-pale);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
}

.value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--gold-light);
}

.value-row:last-child { border-bottom: none; }

.value-item-name { font-size: 13px; color: var(--text); font-weight: 400; }
.value-item-price { font-size: 13px; color: var(--text-soft); font-weight: 600; text-decoration: line-through; }

.value-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  margin-top: 4px;
}

.value-total-label { font-size: 14px; font-weight: 700; color: var(--dark); }
.value-total-price { font-size: 22px; font-weight: 900; color: var(--accent); }

/* ── PRICE ── */
.price-block { text-align: center; margin-bottom: 24px; }

.price-from {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 300;
  margin-bottom: 4px;
}

.price-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  margin-bottom: 6px;
}

.price-currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 8px;
}

.price-value {
  font-size: 68px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
}

.price-cents {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 8px;
}

.price-note {
  font-size: 12px;
  color: var(--text-soft);
  font-weight: 300;
}

/* ── BUY BUTTON ── */
.btn-buy {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #C9A96E 0%, #B8860B 100%);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 800;
  padding: 22px 40px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 40px rgba(184,134,11,0.4), 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  min-height: 48px;
}

.btn-buy::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
}

.btn-buy:hover::before { left: 100%; }
.btn-buy:hover { transform: translateY(-2px); box-shadow: 0 14px 48px rgba(184,134,11,0.5); }
.btn-buy:active { transform: translateY(0); }

.btn-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 400;
}

/* ── GUARANTEE ── */
.guarantee-section {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  margin: 0 0 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column; /* Alinha os itens em coluna */
  align-items: center;    /* Centraliza horizontalmente */
  text-align: center;     /* Centraliza o texto */
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
}

.guarantee-badge img {
  max-width: 100px; /* Ajuste o tamanho conforme o seu arquivo original */
  height: auto;
  display: block;
}

.guarantee-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.guarantee-text {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.7;
  max-width: 440px; /* Mantém a leitura confortável no centro */
  margin: 0 auto;
}

.guarantee-text strong { color: var(--text); font-weight: 600; }

/* ── FAQ ── */
.faq-section {
  margin: 0 0 48px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}

.faq-item {
  border-bottom: 1px solid var(--gold-light);
  padding: 20px 0;
}

.faq-item:first-child { border-top: 1px solid var(--gold-light); }

.faq-question {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-arrow {
  font-size: 18px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 14px;
}

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  padding: 0 0 60px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
}

.final-cta-text {
  font-size: 15px;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 28px;
}

.final-cta-text strong { color: var(--text); font-weight: 600; }

/* ── MOBILE ── */
@media (max-width: 520px) {
  .analogy-grid { grid-template-columns: 1fr; }
  .proof-stats  { grid-template-columns: 1fr; gap: 24px; }
  .guarantee-section { flex-direction: column; }
  .price-value { font-size: 52px; }
  .offer-section { padding: 28px 20px; }
  .proof-strip { padding: 24px 20px; }
}

@media (max-width: 480px) {
  .proof-stats { grid-template-columns: 1fr; }
}
