:root {
  --dark: #171817;
  --darker: #0e0e0e;
  --footer: #0c0c0c;
  --gray: #414141;
  --light: #fafaf8;
  --white: #ffffff;
  --gold: #d9ad1f;
  --gold-title: #d7a315;
  --gold-bright: #fdcf3b;
  --green: #4bcd5d;
  --text: #171817;
  --muted: #667085;
  --border: #232321;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6, p { margin: 0; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.gold { color: var(--gold); }
.font-arial { font-family: Arial, Helvetica, sans-serif; }
.only-mobile { display: none; }

/* Botões */
.btn {
  display: table;
  margin: 40px auto 0;
  padding: 14px 30px;
  background: var(--green);
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .3px;
  text-decoration: none;
  border-radius: 5px;
  transition: transform .2s, filter .2s;
}
.btn:hover { transform: scale(1.04); filter: brightness(1.05); }

/* Vídeo */
.hero { padding: 10px 0 70px; background: var(--white); }
.video { width: 100%; max-width: 400px; margin: 0 auto; }
.video-aspect { position: relative; padding-top: 177.7778%; }
.video-aspect iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero .btn { margin-top: 80px; }

/* Oferta */
.offer { background: var(--dark); color: var(--white); padding: 70px 0 60px; }
.offer-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 40px;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 500;
  padding: 3px 0;
}
.checklist svg { width: 16px; height: 16px; flex: none; fill: var(--gold); }

.price-card {
  background: var(--darker);
  text-align: center;
  padding: 50px 20px;
}
.price-card.white { background: var(--white); color: var(--text); }
.price-name {
  font-family: "Times New Roman", Times, serif;
  color: var(--gold-title);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
}
.price-old {
  font-size: 22px;
  font-weight: 700;
  text-decoration: line-through;
  margin-top: 20px;
}
.price-label { font-size: 34px; margin-top: 6px; }
.price-value { font-size: 64px; line-height: 1.1; margin-top: 26px; }
.price-value strong { font-weight: 700; }

/* Seções claras */
.light { background: var(--light); padding: 70px 0; }
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 30px;
}

.proofs {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}
.proofs img { width: 260px; min-width: 0; }

/* Bônus */
.bonus-section { padding-top: 40px; padding-bottom: 110px; }
.bonus-section .section-title { margin-bottom: 50px; }
.bonus {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--light);
  margin-top: 45px;
  min-height: 265px;
}
.bonus.reverse { flex-direction: row-reverse; }
.bonus-img {
  width: 36%;
  flex: none;
  object-fit: cover;
}
.bonus-img.contain { object-fit: contain; background: var(--white); }
.bonus-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 24px 40px;
}
.bonus.reverse .bonus-body { padding-left: 15px; }
.bonus-tag {
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.bonus-tag.super { font-size: 24px; }
.bonus h3 { font-size: 28px; font-weight: 700; line-height: 1.25; }
.bonus p { color: var(--muted); font-size: 16px; line-height: 1.65; }
.bonus-body p + p { margin-top: -8px; }

/* Especialista */
.expert { background: var(--gray); color: var(--white); padding: 70px 0; }
.expert-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  align-items: center;
}
.expert-img { width: 200px; }
.expert-title {
  color: var(--gold-bright);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 30px;
}
.expert p { font-size: 16.5px; line-height: 1.75; font-weight: 500; }

/* Garantia */
.guarantee { padding: 20px 0 70px; }
.guarantee-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 55px;
  align-items: start;
}
.guarantee h2 { font-size: 37px; font-weight: 700; margin: 30px 0 30px; }
.guarantee p { font-size: 17px; line-height: 1.7; font-weight: 500; }

/* Contato */
.contact { background: var(--white); padding: 75px 0 90px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 40px;
  align-items: center;
}
.contact h2 { font-size: 40px; font-weight: 700; margin-bottom: 30px; }
.contact p { font-size: 17px; line-height: 1.65; font-weight: 500; }
.contact-cta { display: flex; flex-direction: column; align-items: center; }
.contact-label {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.contact-label svg { width: 58px; height: 58px; flex: none; fill: var(--green); }
.btn-wa { margin-top: 30px; padding: 12px 30px; }

/* Rodapé */
.footer {
  background: var(--footer);
  color: #c7cdd6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  text-align: center;
  padding: 30px 20px;
}

/* Tablet */
@media (max-width: 1024px) {
  .offer-title, .section-title { font-size: 28px; }
  .price-name { font-size: 38px; }
  .price-value { font-size: 52px; }
  .bonus h3 { font-size: 24px; }
  .bonus-body { padding: 24px; }
}

/* Celular */
@media (max-width: 767px) {
  body { font-size: 14px; }
  .only-mobile { display: block; }

  .hero { padding-bottom: 50px; }
  .hero .btn { margin-top: 40px; }
  .btn { font-size: 15px; padding: 14px 24px; text-align: center; }

  .offer { padding: 50px 0; }
  .offer-title, .section-title { font-size: 24px; }
  .offer-grid { grid-template-columns: 1fr; gap: 30px; }
  .checklist li { font-size: 15px; align-items: flex-start; }
  .checklist svg { margin-top: 3px; }
  .price-card { padding: 36px 16px; }
  .price-name { font-size: 34px; }
  .price-old { font-size: 20px; }
  .price-label { font-size: 28px; }
  .price-value { font-size: 46px; }

  .light { padding: 50px 0; }
  .proofs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .proofs img { width: 100%; }

  .bonus, .bonus.reverse { flex-direction: column; min-height: 0; margin-top: 60px; }
  .bonus-img { width: 100%; aspect-ratio: 3 / 2; }
  .bonus-body, .bonus.reverse .bonus-body { padding: 20px 14px 36px; gap: 22px; }
  .bonus-tag, .bonus-tag.super { font-size: 20px; }
  .bonus h3 { font-size: 20px; }
  .bonus p { font-size: 16px; }
  .bonus-body p + p { margin-top: -12px; }

  .expert { padding: 0 0 50px; }
  .expert-grid { grid-template-columns: 1fr; gap: 24px; }
  .expert-img { width: 100%; max-width: 400px; margin: 0 auto; }
  .expert-title { font-size: 28px; margin-bottom: 20px; }
  .expert p { font-size: 15px; }

  .guarantee { padding: 50px 0; }
  .guarantee-grid { grid-template-columns: 1fr; gap: 10px; justify-items: center; text-align: center; }
  .guarantee-grid img { width: 240px; }
  .guarantee h2 { font-size: 30px; margin: 10px 0 20px; }
  .guarantee p { font-size: 15px; }

  .contact { padding: 50px 0 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact h2 { font-size: 30px; margin-bottom: 20px; }
  .contact p { font-size: 15px; }
}
