@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg:    #0a0a0a;
  --bg2:   #111111;
  --bg3:   #1a1a1a;
  --red:   #cc1f1f;
  --red2:  #e53333;
  --red3:  #8b1010;
  --white: #f5f2ed;
  --gray:  #999;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: 'Oswald', 'Arial Black', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.container { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* ─── LABEL ─── */
.label {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 18px;
}

/* ─── HERO ─── */
.hero {
  background: var(--bg);
  border-top: 5px solid var(--red);
  padding: 70px 0 60px;
  text-align: center;
}

.pre-headline {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-style: italic;
}

.headline { font-size: clamp(28px, 5.5vw, 52px); font-weight: 700; margin-bottom: 28px; }
.headline span { color: var(--red2); }

.subheadline { font-size: 17px; color: #bbb; max-width: 580px; margin: 0 auto 40px; }

/* faixa vermelha antes de h2 */
.section h2::before { content: ''; display: block; width: 50px; height: 4px; background: var(--red); margin: 0 0 16px; }
.hero h1::before   { content: ''; display: block; width: 50px; height: 4px; background: var(--red); margin: 0 auto 16px; }

/* ─── BOTÕES ─── */
.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 44px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn:hover { background: var(--red2); transform: translateY(-2px); }

.btn-lg {
  font-size: 22px;
  padding: 22px 60px;
  display: block;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
}

/* ─── SEÇÕES ─── */
.section { padding: 70px 0; }
.section-dark   { background: var(--bg2); }
.section-darker { background: var(--bg3); }
.section-guarantee { background: #071407; }

h2 { font-size: clamp(24px, 4.5vw, 40px); margin-bottom: 20px; }
p  { margin-bottom: 16px; color: #ccc; }

/* ─── STORY ─── */
.story-box { background: var(--bg3); border-left: 5px solid var(--red); padding: 32px; margin-top: 30px; }

/* ─── LISTAS ─── */
.check-list { list-style: none; margin: 16px 0; }
.check-list li { padding: 9px 0 9px 36px; position: relative; color: #ccc; border-bottom: 1px solid #1f1f1f; }
.check-list li::before { content: '▸'; color: var(--red2); font-size: 16px; position: absolute; left: 0; top: 9px; }

.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 30px; }
@media (max-width: 600px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-group h3 {
  font-size: 15px;
  color: #fff;
  background: var(--red);
  padding: 10px 16px;
  margin-bottom: 0;
  letter-spacing: 2px;
}

/* ─── MECANISMO ─── */
.mechanism-box {
  background: var(--bg3);
  border: 2px solid var(--red);
  padding: 48px 40px;
  text-align: center;
  margin-top: 32px;
}

.mechanism-box h2 { color: var(--red2); font-size: clamp(22px, 4vw, 36px); }

.pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; margin-top: 32px; }

.pillar {
  background: var(--bg2);
  border-top: 3px solid var(--red);
  padding: 18px 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.pillar span { display: block; color: var(--red2); font-size: 28px; font-weight: 700; margin-bottom: 6px; }

/* ─── IMAGENS ─── */
.hero-img   { width: 100%; max-width: 360px; margin: 30px auto; display: block; filter: drop-shadow(0 20px 40px rgba(0,0,0,.8)); }
.mockup-img { width: 100%; max-width: 640px; margin: 30px auto; display: block; filter: drop-shadow(0 20px 40px rgba(0,0,0,.7)); }

/* ─── STATS ─── */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 32px; }
@media (max-width: 560px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-card { background: var(--bg3); padding: 32px 20px; text-align: center; border-top: 4px solid var(--red); }
.stat-num  { font-family: 'Oswald', sans-serif; font-size: 64px; font-weight: 700; color: var(--red2); line-height: 1; }
.stat-label { font-size: 13px; color: var(--gray); margin-top: 10px; }

/* ─── VALUE STACK ─── */
.stack-table { width: 100%; border-collapse: collapse; margin: 32px 0; }
.stack-table tr { border-bottom: 1px solid #222; }
.stack-table td { padding: 16px 4px; color: #ccc; vertical-align: middle; }
.stack-table td:last-child { text-align: right; color: var(--gray); text-decoration: line-through; white-space: nowrap; font-size: 14px; }
.stack-table tr.bonus td { color: #888; }
.stack-table tr.total { border-top: 3px solid var(--red); background: var(--bg3); }
.stack-table tr.total td { font-family: 'Oswald', sans-serif; font-size: 20px; text-transform: uppercase; letter-spacing: 1px; color: var(--white); padding: 20px 4px; }
.stack-table tr.total td:last-child { color: var(--red2); text-decoration: none; font-size: 22px; vertical-align: middle; }
.stack-table tr.total td:last-child s { color: #ff6666; text-decoration: line-through; }

/* ─── PREÇO ─── */
.price-box {
  background: var(--red3);
  border: 2px solid var(--red);
  padding: 50px 40px;
  text-align: center;
  margin-top: 32px;
}

.price-from { font-size: 18px; color: #ff9999; text-decoration: line-through; margin-bottom: 4px; }
.price-now  { font-family: 'Oswald', sans-serif; font-size: clamp(56px, 12vw, 88px); font-weight: 700; color: #fff; line-height: 1; margin: 8px 0 4px; }
.price-note { font-size: 13px; color: #ffaaaa; margin-bottom: 32px; }

/* ─── GARANTIA ─── */
.guarantee-box { border: 2px solid #2d8c2d; padding: 50px 40px; text-align: center; margin-top: 32px; }
.guarantee-seal { width: 100px; height: 100px; border-radius: 50%; border: 4px solid #2d8c2d; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; font-size: 40px; }
.guarantee-box h2 { color: #4caf50; }

/* ─── FUTURE PACING ─── */
.future-text { font-size: clamp(17px, 3vw, 24px); font-style: italic; line-height: 1.9; color: #e8e4d8; border-left: 5px solid var(--red); padding-left: 28px; margin-top: 30px; }

/* ─── OBJEÇÕES ─── */
.objection-item { background: var(--bg3); border-left: 4px solid var(--red); padding: 24px; margin-bottom: 12px; }
.objection-item h3 { font-size: 16px; color: var(--red2); margin-bottom: 10px; text-transform: none; letter-spacing: 0; font-family: 'Inter', sans-serif; font-weight: 700; }
.objection-item p { margin: 0; font-size: 15px; color: #bbb; }

/* ─── URGÊNCIA ─── */
.urgency-block {
  background: linear-gradient(135deg, #600, #900);
  padding: 60px 0;
  text-align: center;
  border-top: 4px solid var(--red2);
  border-bottom: 4px solid var(--red2);
}

.urgency-block h2 { color: #fff; font-size: clamp(22px, 4vw, 38px); }

/* ─── DECISÃO FINAL ─── */
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; margin: 32px 0; }
@media (max-width: 560px) { .choice-grid { grid-template-columns: 1fr; } }
.choice-no  { background: #111; padding: 28px; border-top: 3px solid #333; }
.choice-yes { background: var(--red3); padding: 28px; border-top: 3px solid var(--red2); }

/* ─── FEEDBACKS / DEPOIMENTOS ─── */
.testimonials { padding: 70px 0; background: var(--bg2); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.testimonial-card {
  background: var(--bg3);
  border-top: 3px solid var(--red);
  padding: 28px 24px;
}

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

.testimonial-text {
  font-size: 15px;
  color: #ccc;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

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

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red3);
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name { font-weight: 700; font-size: 15px; color: var(--white); }
.testimonial-meta { font-size: 12px; color: var(--gray); }

/* ─── FAQ ─── */
.faq-item { border-bottom: 1px solid #222; }
.faq-q { background: none; border: none; width: 100%; text-align: left; padding: 20px 0; color: var(--white); font-size: 16px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q::after { content: '+'; color: var(--red2); font-size: 26px; flex-shrink: 0; font-family: 'Oswald', sans-serif; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--gray); font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ─── MOBILE ─── */
@media (max-width: 480px) {
  .btn, .btn-lg { clip-path: none; border-radius: 2px; width: 100%; max-width: 100%; font-size: 18px; padding: 20px 24px; }
  .mechanism-box { padding: 32px 20px; }
  .price-box { padding: 36px 20px; }
  .guarantee-box { padding: 36px 20px; }
  .story-box { padding: 24px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 8px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
}

/* ─── RODAPÉ ─── */
.footer { background: #050505; border-top: 3px solid #1a1a1a; padding: 36px 0; text-align: center; color: var(--gray); font-size: 12px; }
.footer a { color: var(--gray); text-decoration: none; }
.footer a:hover { color: var(--white); }
