/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #15803D;
  --green-mid:   #16A34A;
  --green-light: #DCFCE7;
  --orange:      #F97316;
  --orange-dk:   #EA6A0A;
  --gold:        #F59E0B;
  --red:         #DC2626;
  --dark:        #111827;
  --text:        #374151;
  --muted:       #9CA3AF;
  --white:       #FFFFFF;
  --bg:          #FFFFFF;
  --radius:      16px;
  --shadow:      0 4px 24px rgba(21,128,61,0.10);
  --shadow-lg:   0 12px 40px rgba(21,128,61,0.16);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Fredoka', sans-serif; background: var(--white); color: var(--text); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 920px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ===== TOAST ===== */
.purchase-toast {
  position: fixed; bottom: 80px; left: 20px;
  background: var(--white); border-left: 4px solid var(--green-mid);
  border-radius: 12px; box-shadow: var(--shadow-lg);
  padding: 14px 18px; display: flex; align-items: center;
  gap: 12px; z-index: 998; animation: slideIn 0.4s ease; max-width: 280px;
}
.toast-icon { font-size: 24px; }
.toast-text { font-size: 14px; line-height: 1.4; }
.toast-text strong { display: block; color: var(--dark); }
.toast-text small { color: var(--muted); font-size: 12px; }
@keyframes slideIn { from { transform: translateX(-120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ===== URGENCY BAR ===== */
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.urgency-bar {
  background: linear-gradient(90deg, #14532D 0%, #15803D 50%, #14532D 100%);
  color: #fff; text-align: center; padding: 12px 20px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.3px;
}
.urgency-bar::before {
  content: '●'; color: #86EFAC; margin-right: 8px;
  animation: blink 1.4s ease-in-out infinite;
  display: inline-block;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--dark); z-index: 999;
  transform: translateY(100%); transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; padding: 13px 20px; color: #fff; font-size: 15px; flex-wrap: wrap;
}
.sticky-btn {
  background: var(--orange); color: #fff; padding: 10px 24px;
  border-radius: 50px; font-weight: 700; font-size: 14px;
  white-space: nowrap; transition: background 0.2s;
}
.sticky-btn:hover { background: var(--orange-dk); }

/* ===== BUTTONS ===== */
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(249,115,22,0.40); }
  50%       { box-shadow: 0 8px 40px rgba(249,115,22,0.70), 0 0 0 10px rgba(249,115,22,0.09); }
}
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; background: linear-gradient(135deg, #FB923C 0%, #F97316 50%, #EA6A0A 100%);
  color: #fff; padding: 18px 44px; border-radius: 50px; font-size: 18px; font-weight: 700;
  border: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  animation: ctaPulse 2.6s ease-in-out infinite;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(249,115,22,0.60); animation: none; }

/* ===== PAYMENT ICONS ===== */
.payment-icons {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; margin-top: 16px;
  font-size: 13px; color: var(--muted);
}
.pix-badge { background: #e0f2f1; color: #00796b; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 6px; }
.boleto-badge { background: #fce4ec; color: #c62828; font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 6px; }
.cartao-badge { background: var(--green-light); color: var(--green); font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 6px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #A7F3D0 0%, #DCFCE7 40%, #F0FDF4 70%, #ffffff 100%);
  padding: 56px 0 48px; text-align: center;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(90deg, #BBF7D0, #6EE7B7);
  color: var(--green); border: none;
  padding: 9px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 700; margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(21,128,61,0.18);
  letter-spacing: 0.2px;
}
.hero-title {
  font-size: clamp(26px, 5vw, 42px); font-weight: 700; color: var(--dark);
  line-height: 1.25; margin-bottom: 18px;
}
.hero-title .highlight { color: var(--green-mid); }
.hero-sub { font-size: 18px; color: #555; max-width: 620px; margin: 0 auto 30px; }

.video-wrapper { max-width: 400px; margin: 0 auto 24px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.video-ratio { position: relative; padding-top: 177.78%; background: #000; }
.video-ratio video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; cursor: pointer; }
.video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.18); cursor: pointer; transition: background 0.2s; }
.video-overlay:hover { background: rgba(0,0,0,0.30); }
.play-btn { width: 72px; height: 72px; background: rgba(255,255,255,0.92); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.play-btn i { color: var(--orange); font-size: 26px; margin-left: 4px; }

.hero-social { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 28px; font-size: 14px; color: #666; }
.social-item { display: flex; align-items: center; gap: 6px; }
.social-item i { color: var(--green-mid); }
.hero-cta { font-size: 20px; padding: 20px 52px; }

/* ===== SECTION SEPARATOR ===== */
.pain, .before-after, .how-it-works, .what-you-get,
.bonus-section, .testimonials, .comparison, .pricing,
.author, .faq, .final-cta {
  border-top: 1px solid #E9F5EC;
}

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center; font-size: clamp(22px, 4vw, 32px);
  font-weight: 700; color: var(--dark); margin-bottom: 36px;
}
.section-title::after {
  content: ''; display: block; width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--green-mid), #86EFAC);
  border-radius: 2px; margin: 12px auto 0;
}

/* ===== PAIN ===== */
.pain { background: var(--bg); padding: 64px 0; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; margin-bottom: 32px; }
.pain-card { background: var(--white); border-radius: var(--radius); padding: 28px 20px; text-align: center; box-shadow: var(--shadow); transition: transform 0.2s; }
.pain-card:hover { transform: translateY(-4px); }
.pain-emoji { font-size: 38px; display: block; margin-bottom: 12px; }
.pain-card p { font-size: 15px; color: #555; }
.pain-conclusion { text-align: center; font-size: 17px; color: var(--dark); background: #DCFCE7; border-radius: var(--radius); padding: 20px 28px; border-left: 4px solid var(--green-mid); }

/* ===== COMO FUNCIONA ===== */
.how-it-works { padding: 64px 0; background: #F0FDF4; }
.steps-grid { display: flex; align-items: flex-start; justify-content: center; gap: 16px; flex-wrap: wrap; }
.step { text-align: center; flex: 1; min-width: 180px; max-width: 240px; }
.step-number { width: 44px; height: 44px; background: var(--green); color: #fff; border-radius: 50%; font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.step-icon { font-size: 36px; color: var(--green-mid); margin-bottom: 12px; }
.step h3 { font-size: 18px; color: var(--dark); margin-bottom: 8px; }
.step p { font-size: 14px; color: #666; }
.step-arrow { font-size: 22px; color: #CBD5E1; padding-top: 40px; flex-shrink: 0; }

/* ===== WHAT YOU GET ===== */
.what-you-get { padding: 64px 0; background: #F0FDF4; }
.product-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.product-mockup img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.product-item { display: flex; gap: 16px; margin-bottom: 24px; }
.product-item i { color: var(--green-mid); font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.product-item strong { display: block; color: var(--dark); font-size: 16px; margin-bottom: 4px; }
.product-item p { font-size: 14px; color: #666; }

/* ===== BONUS ===== */
.bonus-section { padding: 64px 0; background: var(--bg); }
.bonus-subtitle { text-align: center; font-size: 18px; color: var(--muted); margin-top: -24px; margin-bottom: 36px; }
.line-through { text-decoration: line-through; }
.free { color: var(--green-mid); font-weight: 700; font-size: 20px; }
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.bonus-card { background: #F8FDF9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.2s; border: 1px solid #E2F5E8; }
.bonus-card:hover { transform: translateY(-4px); }
.bonus-img { overflow: hidden; background: #f0fdf4; }
.bonus-img img { width: 100%; height: auto; display: block; }
.bonus-tag { display: inline-block; background: var(--green); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin: 16px 20px 8px; }
.bonus-card h3 { font-size: 16px; color: var(--dark); padding: 0 20px; margin-bottom: 8px; }
.bonus-card p { font-size: 14px; color: #666; padding: 0 20px 20px; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 64px 0; background: #F0FDF4; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border-left: 4px solid var(--green-mid); transition: transform 0.2s, box-shadow 0.2s; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--gold); font-size: 20px; margin-bottom: 12px; }
.testimonial-card p { font-size: 15px; color: #555; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; color: var(--dark); font-size: 14px; }
.testimonial-author span { font-size: 13px; color: var(--muted); }

/* ===== COMPARISON ===== */
.comparison { padding: 64px 0; background: var(--white); }
.comparison-table-wrapper { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.comparison-table thead tr { background: var(--bg); }
.comparison-table th { padding: 20px 24px; font-size: 18px; color: var(--dark); text-align: center; font-weight: 700; }
.comparison-table th span { display: block; font-size: 22px; color: var(--green-mid); margin-top: 4px; }
.comparison-table th.th-premium { background: var(--green); color: #fff; }
.comparison-table th.th-premium span { color: var(--gold); }
.comparison-table td { padding: 14px 24px; font-size: 15px; border-bottom: 1px solid #F1F5F9; text-align: center; color: var(--text); }
.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--dark); }
.comparison-table tbody tr:hover { background: var(--bg); }
.comparison-table tfoot td { padding: 20px 24px; background: var(--bg); }
.comparison-table tfoot td:last-child { background: var(--green-light); }
i.yes { color: var(--green-mid); font-size: 18px; }
i.no { color: #D1D5DB; font-size: 18px; }
.comp-btn { display: block; text-align: center; padding: 13px 20px; border-radius: 50px; font-weight: 700; font-size: 15px; transition: all 0.2s; }
.comp-basic { border: 2px solid var(--green-mid); color: var(--green-mid); }
.comp-basic:hover { background: var(--green-light); }
.comp-premium { background: var(--orange); color: #fff; box-shadow: 0 4px 16px rgba(249,115,22,0.35); }
.comp-premium:hover { background: var(--orange-dk); }

/* ===== PRICING ===== */
.pricing { background: #F0FDF4; padding: 64px 0; }
.countdown-wrapper { text-align: center; margin-bottom: 36px; font-size: 16px; color: #555; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.countdown { display: flex; align-items: center; gap: 6px; }
.time-block { background: var(--green); color: #fff; border-radius: 10px; padding: 8px 14px; font-size: 22px; font-weight: 700; min-width: 52px; text-align: center; line-height: 1; }
.time-block small { display: block; font-size: 11px; font-weight: 400; margin-top: 2px; color: #86EFAC; }
.sep { font-size: 22px; font-weight: 700; color: var(--green); }

.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; align-items: start; margin-bottom: 36px; }
.plan-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow); position: relative; }
.plan-card.plan-popular { border: 3px solid var(--green-mid); transform: scale(1.02); box-shadow: 0 16px 56px rgba(21,128,61,0.18); }
.popular-badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: 13px; font-weight: 700; padding: 6px 20px; border-radius: 50px; white-space: nowrap; }
.plan-card h3 { font-size: 22px; color: var(--dark); margin-bottom: 16px; text-align: center; }
.plan-price { text-align: center; margin-bottom: 8px; }
.old-price { text-decoration: line-through; color: #bbb; font-size: 16px; display: block; }
.new-price { font-size: 48px; font-weight: 700; color: var(--green-mid); display: block; line-height: 1.1; }
.new-price.gold { color: var(--gold); }
.period { font-size: 13px; color: var(--muted); display: block; }
.plan-economy { text-align: center; font-size: 14px; color: var(--green-mid); font-weight: 600; margin-bottom: 24px; }
.plan-features { list-style: none; margin-bottom: 20px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid #F1F5F9; font-size: 15px; color: #444; }
.plan-features li i { font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.plan-features li i.fa-check { color: var(--green-mid); }
.plan-features li i.fa-times { color: #D1D5DB; }
.plan-features li i.fa-star { color: var(--gold); }
.plan-features li i.fa-gift { color: var(--orange); }
.plan-features li.no { color: #bbb; }
.plan-features li.gold-li { color: var(--dark); font-weight: 600; }
.plan-features li.bonus-li { color: var(--orange); font-weight: 600; }
.plan-guarantee-mini { text-align: center; font-size: 13px; color: var(--green-mid); margin-bottom: 16px; }
.btn-plan { display: block; text-align: center; padding: 16px; border-radius: 50px; font-size: 16px; font-weight: 700; transition: all 0.2s; }
.btn-basic { background: var(--white); color: var(--green-mid); border: 2px solid var(--green-mid); }
.btn-basic:hover { background: var(--green-light); }
.btn-premium { background: linear-gradient(135deg, #FB923C 0%, #F97316 50%, #EA6A0A 100%); color: #fff; box-shadow: 0 6px 24px rgba(249,115,22,0.40); animation: ctaPulse 2.6s ease-in-out infinite; }
.btn-premium:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(249,115,22,0.55); animation: none; }
.plan-social { text-align: center; margin-top: 12px; font-size: 13px; color: var(--muted); }

.payment-methods { text-align: center; font-size: 14px; color: var(--muted); }
.payment-icons-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 10px; flex-wrap: wrap; }
.pay-badge { font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.pay-badge.pix { background: #e0f2f1; color: #00796b; }
.pay-badge.boleto { background: #fce4ec; color: #c62828; }
.pay-badge.cartao { background: var(--green-light); color: var(--green); }

/* ===== AUTHOR ===== */
.author { padding: 64px 0; background: var(--white); }
.author-grid { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; }
.author-img img { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; object-position: center top; box-shadow: var(--shadow-lg); border: 4px solid var(--green-light); }
.author-info h2 { font-size: 16px; color: var(--muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.author-info h3 { font-size: 28px; color: var(--dark); margin-bottom: 4px; }
.author-role { font-size: 15px; color: var(--green-mid); margin-bottom: 20px; font-weight: 500; }
.author-stats { display: flex; gap: 28px; margin-bottom: 20px; flex-wrap: wrap; }
.stat strong { display: block; font-size: 22px; color: var(--dark); }
.stat span { font-size: 13px; color: var(--muted); }
.author-info > p { font-size: 15px; color: #555; font-style: italic; border-left: 3px solid var(--green-mid); padding-left: 16px; }

/* ===== FAQ ===== */
.faq { background: #F0FDF4; padding: 64px 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.faq-q { width: 100%; background: none; border: none; padding: 20px 24px; text-align: left; font-family: 'Fredoka', sans-serif; font-size: 17px; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-q i { transition: transform 0.3s; color: var(--green-mid); flex-shrink: 0; }
.faq-q.open i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 24px 20px; font-size: 15px; color: #666; }

/* ===== BEFORE/AFTER ===== */
.before-after { padding: 64px 0; background: var(--bg); }
.ba-grid { display: flex; align-items: stretch; gap: 20px; margin-bottom: 40px; }
.ba-card { flex: 1; border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow); }
.ba-before { background: #FFF5F5; border: 2px solid #FECACA; }
.ba-after { background: #F0FDF4; border: 2px solid #A7F3D0; }
.ba-label { font-size: 18px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.ba-before .ba-label { color: #DC2626; }
.ba-after .ba-label { color: #059669; }
.ba-label span { font-size: 24px; }
.ba-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ba-card ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; line-height: 1.4; }
.ba-before li { color: #7F1D1D; }
.ba-after li { color: #064E3B; }
.ba-before li i { color: #EF4444; margin-top: 2px; flex-shrink: 0; }
.ba-after li i { color: var(--green-mid); margin-top: 2px; flex-shrink: 0; }
.ba-arrow { display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--green-mid); flex-shrink: 0; padding: 0 4px; }
.ba-cta { display: flex; margin: 0 auto; width: fit-content; }

/* ===== FINAL CTA ===== */
.final-cta { padding: 64px 0; text-align: center; background: var(--white); }
.guarantee-box { display: flex; align-items: center; gap: 32px; background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%); border: 2px solid #6EE7B7; border-radius: var(--radius); padding: 36px; margin-bottom: 36px; text-align: left; box-shadow: 0 8px 32px rgba(21,128,61,0.12); }
.guarantee-icon { position: relative; flex-shrink: 0; width: 90px; height: 90px; }
.guarantee-icon i { font-size: 90px; color: var(--green-mid); line-height: 1; }
.guarantee-days { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: #fff; font-weight: 700; }
.guarantee-days span { font-size: 22px; display: block; line-height: 1; }
.guarantee-days small { font-size: 10px; }
.guarantee-text h2 { font-size: 22px; color: var(--dark); margin-bottom: 8px; }
.guarantee-text p { font-size: 15px; color: #555; }
.final-btn { font-size: 20px; padding: 20px 52px; margin-bottom: 16px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: #6B7280; text-align: center; padding: 32px 20px; font-size: 13px; line-height: 2; }

/* ===== POPUP ===== */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.popup-card { background: var(--white); border-radius: var(--radius); padding: 40px 32px; max-width: 420px; width: 100%; text-align: center; position: relative; box-shadow: 0 24px 64px rgba(0,0,0,0.35); }
.popup-close { position: absolute; top: 14px; right: 18px; background: none; border: none; font-size: 20px; cursor: pointer; color: #bbb; }
.popup-badge { background: var(--orange); color: #fff; font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 50px; display: inline-block; margin-bottom: 16px; }
.popup-card h3 { font-size: 24px; color: var(--dark); margin-bottom: 8px; }
.popup-card p { font-size: 15px; color: #666; margin-bottom: 20px; }
.popup-price { margin-bottom: 20px; }
.popup-old { display: block; text-decoration: line-through; color: #bbb; font-size: 16px; }
.popup-new { display: block; font-size: 52px; font-weight: 700; color: var(--orange); line-height: 1.1; }
.popup-list { list-style: none; margin-bottom: 24px; text-align: left; display: inline-block; }
.popup-list li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 15px; color: #444; }
.popup-list i { color: var(--orange); }
.popup-accept { display: block; background: var(--orange); color: #fff; padding: 16px; border-radius: 50px; font-size: 16px; font-weight: 700; margin-bottom: 12px; box-shadow: 0 6px 20px rgba(249,115,22,0.35); transition: background 0.2s; }
.popup-accept:hover { background: var(--orange-dk); }
.popup-decline { font-size: 13px; color: #bbb; display: block; }
.popup-decline:hover { color: #888; }

/* ===== MID CTA ===== */
.mid-cta {
  background: linear-gradient(135deg, #D1FAE5 0%, #ECFDF5 60%, #F0FDF4 100%);
  border-top: 3px solid #6EE7B7;
  border-bottom: 3px solid #6EE7B7;
  padding: 48px 20px;
  text-align: center;
}
.mid-cta-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}
.mid-cta .btn-primary {
  margin: 0 auto;
  display: inline-flex;
  font-size: 19px;
  padding: 20px 52px;
}
.mid-cta-guarantee {
  margin-top: 14px;
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
}
.mid-cta-guarantee i { margin-right: 4px; }

/* ===== VIDEO HOOK ===== */
.video-hook {
  font-size: 15px; color: var(--green); font-weight: 600;
  margin-bottom: 12px; letter-spacing: 0.2px;
}


/* ===== CTA MINI TESTIMONIAL ===== */
.cta-mini-testimonial {
  font-size: 14px; color: #555; font-style: italic;
  margin-bottom: 16px; padding: 10px 20px;
  border-left: 3px solid var(--green-mid); max-width: 560px;
  margin-left: auto; margin-right: auto; text-align: left;
  background: rgba(255,255,255,0.7); border-radius: 0 8px 8px 0;
}

/* ===== VALUE ANCHOR ===== */
.value-anchor {
  background: var(--white); border-radius: var(--radius);
  border: 1.5px solid #BBF7D0; padding: 20px 28px;
  margin-bottom: 32px; text-align: center;
}
.value-anchor p { font-size: 16px; color: #444; line-height: 1.6; }

/* ===== LAST OBJECTION ===== */
.last-objection {
  margin: 20px auto 0; max-width: 520px;
  display: flex; flex-direction: column; gap: 10px;
  text-align: left;
}
.last-objection p {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: #555; line-height: 1.5;
}
.last-objection i { color: var(--green-mid); font-size: 16px; flex-shrink: 0; margin-top: 2px; }

/* ===== SCROLL ANIMATIONS ===== */
[data-animate] { transition: opacity 0.6s ease, transform 0.6s ease; }
body.js-ready [data-animate].will-animate { opacity: 0; transform: translateY(32px); }
body.js-ready [data-animate].visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVO ===== */
@media (max-width: 700px) {
  .container { padding: 0 16px; }

  /* Seções */
  .pain, .how-it-works, .what-you-get, .bonus-section,
  .testimonials, .before-after, .comparison, .pricing,
  .author, .faq, .final-cta { padding: 40px 0; }
  .hero { padding: 28px 0 32px; }
  .section-title { font-size: 22px; margin-bottom: 24px; }

  /* Hero */
  .hero-badge { font-size: 13px; padding: 6px 16px; margin-bottom: 16px; }
  .hero-title { font-size: 26px; }
  .hero-sub { font-size: 16px; margin-bottom: 24px; }
  .hero-social { gap: 16px; font-size: 13px; margin-bottom: 20px; }
  .video-wrapper { max-width: 100%; }

  /* Botões */
  .btn-primary { width: 100%; padding: 16px 20px; font-size: 16px; }
  .hero-cta, .final-btn { font-size: 16px; padding: 16px 20px; }
  .ba-cta { width: 100%; }

  /* Pain — 2 colunas no mobile */
  .pain-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pain-card { padding: 20px 14px; }
  .pain-emoji { font-size: 30px; }
  .pain-card p { font-size: 13px; }

  /* Before/After */
  .ba-grid { flex-direction: column; }
  .ba-arrow { transform: rotate(90deg); padding: 0; }
  .ba-card { padding: 24px 20px; }

  /* Steps — esconde setas, vira coluna */
  .step-arrow { display: none; }
  .steps-grid { flex-direction: column; align-items: center; gap: 20px; }
  .step { max-width: 100%; width: 100%; }

  /* Produto */
  .product-showcase { grid-template-columns: 1fr; }
  .product-mockup { max-width: 220px; margin: 0 auto 24px; }

  /* Bonus — 1 coluna no mobile */
  .bonus-grid { grid-template-columns: 1fr; }

  /* Depoimentos — 1 coluna */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Tabela comparativa — oculta no mobile (planos já mostram tudo) */
  .comparison { display: none; }

  /* Planos */
  .plans-grid { grid-template-columns: 1fr; gap: 20px; }
  .plan-card.plan-popular { transform: none; }
  .plan-card { padding: 28px 20px; }
  .new-price { font-size: 40px; }

  /* Novos elementos */
  .cta-mini-testimonial { text-align: center; border-left: none; border-top: 3px solid var(--green-mid); border-radius: 8px; }
  .value-anchor { padding: 16px 20px; }
  .last-objection { text-align: left; }

  /* Autora */
  .author-grid { grid-template-columns: 1fr; text-align: center; }
  .author-img img { margin: 0 auto; width: 140px; height: 140px; }
  .author-stats { justify-content: center; gap: 16px; }
  .author-info > p { border-left: none; border-top: 3px solid var(--green-mid); padding-left: 0; padding-top: 16px; }

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

  /* Sticky e toast */
  .sticky-inner { gap: 8px; font-size: 13px; padding: 10px 16px; }
  .sticky-btn { padding: 8px 18px; font-size: 13px; }
  .purchase-toast { bottom: auto; top: 16px; left: 12px; max-width: 210px; font-size: 12px; padding: 10px 14px; }

  /* Popup */
  .popup-card { padding: 28px 20px; }
  .popup-new { font-size: 40px; }
  .popup-accept { font-size: 15px; }
  .popup-card h3 { font-size: 20px; }
}
