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

:root {
  --orange: #F5A623;
  --orange-dark: #E8920A;
  --orange-light: #FFF3DC;
  --text-dark: #1A1A1A;
  --text-mid: #444;
  --text-light: #666;
  --white: #FFFFFF;
  --cream: #FDFAF4;
  --green: #27AE60;
  --red: #E74C3C;
  --border: #EEE;
  --gold: #C8960C;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
  overflow-x: hidden;
}

/* ── TOP COUNTDOWN BAR ── */
.top-countdown-bar {
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
}
.tcb-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.04em;
}
.tcb-time {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: #fff;
  background: rgba(0,0,0,0.25);
  border-radius: 6px;
  padding: 2px 12px;
  letter-spacing: 0.08em;
}

/* ── TOP PROMO BAR ── */
.top-promo-bar {
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
}
.tpb-icon { font-size: 0.95rem; }
.tpb-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.35;
}

/* ── HERO ── */
.hero { padding: 22px 18px 0; background: var(--white); text-align: center; }

.pre-headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--orange-dark);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.headline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.headline .highlight { color: var(--orange); }
.headline .strike-through {
  text-decoration: line-through;
  text-decoration-color: var(--orange);
}

.subheadline {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 18px;
}
.subheadline strong { color: var(--text-dark); }
.subheadline em { font-style: italic; color: var(--orange-dark); }

/* ── HERO IMAGE ── */
.hero-img-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 3px solid var(--orange-light);
  margin-bottom: 20px;
  box-shadow: 0 6px 24px rgba(245,166,35,0.18);
  background: #1a0a00;
  line-height: 0;
}
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f5ede0 0%, #e8d5b7 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px;
}
.hero-img-placeholder .plate-emoji { font-size: 4rem; }
.hero-img-placeholder p {
  font-size: 0.8rem;
  color: #8B6914;
  font-style: italic;
  text-align: center;
}

/* ── CTA BUTTON ── */
.cta-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  text-align: center;
  padding: 17px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(232,146,10,0.4);
  transition: transform 0.15s, box-shadow 0.15s;
  margin-bottom: 10px;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,146,10,0.5); }
.cta-btn:active { transform: translateY(0); }

.micro-copy {
  font-size: 0.73rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.micro-copy span { display: flex; align-items: center; gap: 4px; }

/* ── RATING ── */
.rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cream);
  border-radius: 50px;
  padding: 10px 20px;
  margin: 0 0 28px;
  border: 1px solid #F0E8D0;
}
.stars { color: var(--orange); font-size: 1rem; letter-spacing: 1px; }
.rating-text { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; color: var(--text-dark); }
.rating-check { background: #3B82F6; color: #fff; border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 0.65rem; flex-shrink: 0; }

/* ── SECTION BASE ── */
section { padding: 30px 18px; }
section:nth-child(even) { background: var(--cream); }

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--orange-dark);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.3;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.section-title .hl { color: var(--orange); }

.divider {
  width: 50px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 10px auto 20px;
}

/* ── PAIN POINTS ── */
.pain-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pain-list li {
  background: #fff;
  border: 1.5px solid #F0E8D0;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.88rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.pain-list li .emoji { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }

/* ── BENEFITS ── */
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.benefit-list li .check-circle {
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}

/* ── PRODUCT PRESENTATION ── */
.product-quote {
  background: #fff;
  border-left: 4px solid var(--orange);
  padding: 16px;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a00 0%, #3d1f00 100%);
  margin-bottom: 14px;
  position: relative;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-placeholder {
  padding: 30px 20px;
  text-align: center;
}
.product-img-placeholder .books-emoji { font-size: 4rem; display: block; margin-bottom: 10px; }
.product-img-placeholder p { color: rgba(255,255,255,0.7); font-size: 0.78rem; font-style: italic; }

.badge-popular {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  z-index: 2;
}
.badge-17x1 {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--orange);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.download-count {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.offer-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.35;
  scroll-margin-top: 20px;
}

/* ── PRICE BOX ── */
.price-box {
  background: #fff;
  border: 2px solid var(--orange-light);
  border-radius: 18px;
  padding: 22px 18px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(245,166,35,0.12);
}
.price-from {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.price-from span { color: #B0B0B0; }
.price-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.price-main sup { font-size: 1.2rem; vertical-align: top; margin-top: 6px; }
.price-savings {
  display: inline-block;
  background: #FFF0F0;
  color: var(--red);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ── OFFER VALUE STACK ── */
.offer-stack {
  background: var(--cream);
  border: 1.5px dashed #F0C97A;
  border-radius: 14px;
  padding: 14px 14px 12px;
  text-align: left;
  margin-bottom: 18px;
}
.offer-stack-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 12px;
}
.offer-stack-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.offer-stack-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.offer-stack-list li .os-ic {
  flex-shrink: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}
.offer-stack-list li strong { color: var(--text-dark); }
.offer-stack-list li s { color: #B0B0B0; font-weight: 600; margin-left: 2px; }
.offer-stack-list li.os-more {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px dashed #F0C97A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--orange-dark);
  font-size: 0.85rem;
}
.offer-stack-list li.os-more strong { color: var(--orange-dark); }
.offer-tagline {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 2px;
}

/* COUNTDOWN */
.countdown-wrap {
  background: var(--text-dark);
  color: #fff;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 16px;
  text-align: center;
}
.countdown-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.08em;
}
.countdown-digits {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.cd-unit {
  text-align: center;
}
.cd-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
}
.cd-sep {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--orange);
  align-self: center;
  padding-bottom: 4px;
}
.cd-label {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fomo-bar {
  background: #FFF9F0;
  border: 1px solid #F5DDA0;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.75rem;
  color: var(--orange-dark);
  text-align: center;
  margin-bottom: 16px;
  font-weight: 600;
}

/* ── TRUST BADGES ── */
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-mid);
}
.trust-item .t-icon { font-size: 1rem; flex-shrink: 0; }

/* ── EBOOK CARDS ── */
.ebook-cards { display: flex; flex-direction: column; gap: 16px; }
.ebook-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
}
.ebook-card-img {
  background: linear-gradient(135deg, #2d1500 0%, #5a3000 100%);
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ebook-card-img .ebook-emoji { font-size: 3.5rem; }
.ebook-card-body { padding: 16px; }
.ebook-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.ebook-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.ebook-card-desc {
  font-size: 0.83rem;
  color: var(--text-mid);
  margin-bottom: 12px;
  line-height: 1.5;
}
.ebook-card-desc a { color: var(--orange-dark); text-decoration: underline; }
.ebook-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ebook-bullets li {
  font-size: 0.8rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ebook-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── BONUS GRID (legado — mantido caso volte a usar imagens) ── */
.bonus-intro {
  font-size: 0.88rem;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.55;
  margin-bottom: 20px;
}
.bonus-intro strong { color: var(--text-dark); }

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bonus-card {
  background: #fff;
  border-radius: 14px;
  padding: 0 0 12px;
  border: 1.5px solid #F0E8D0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
}
.bonus-card-img {
  background: linear-gradient(135deg, #2d1500 0%, #4a2800 100%);
  border-radius: 14px 14px 0 0;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 2rem;
  overflow: hidden;
}
.bonus-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bonus-card-body {
  padding: 0 10px;
}
.bonus-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.bonus-old-price {
  font-size: 0.68rem;
  color: #B0B0B0;
  text-decoration: line-through;
  margin-bottom: 2px;
}
.bonus-free {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--green);
}

.bonus-total {
  background: var(--orange-light);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  margin-top: 18px;
}
.bonus-total-label { font-size: 0.8rem; color: var(--text-mid); margin-bottom: 4px; }
.bonus-total-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--text-dark);
  text-decoration: line-through;
  color: #888;
  margin-bottom: 4px;
}
.bonus-today {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--green);
}

/* ── BÔNUS EM TEXTO (novo) ── */
.bonus-text-list {
  list-style: none;
  background: #fff;
  border: 1.5px dashed #F0C97A;
  border-radius: 14px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bonus-text-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.45;
  padding: 9px 0;
  border-bottom: 1px dashed #F0E8D0;
}
.bonus-text-list li:last-child { border-bottom: none; }
.bonus-text-list li strong { color: var(--text-dark); }
.bonus-text-list .btl-emoji {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.45;
}

/* ── TESTIMONIALS ── */
.testimonial-count {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  color: var(--orange-dark);
  text-align: center;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.testi-list { display: flex; flex-direction: column; gap: 14px; }
.testi-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.testi-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--text-dark); }
.testi-stars { color: var(--orange); font-size: 0.75rem; letter-spacing: 1px; }
.testi-text { font-size: 0.83rem; color: var(--text-mid); line-height: 1.55; font-style: italic; }

/* ── GUARANTEE ── */
.guarantee-box {
  background: #fff;
  border: 2px solid #27AE6030;
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
}
.guarantee-icon { font-size: 3.5rem; margin-bottom: 12px; }
.guarantee-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.guarantee-text { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 16px 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.faq-arrow { font-size: 0.75rem; color: var(--orange); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 16px; }

/* ── FINAL CTA ── */
.final-cta { background: var(--cream); padding: 30px 18px 20px; text-align: center; }
.stack-box {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 18px;
  border: 1.5px solid #F0E8D0;
  text-align: left;
}
.stack-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed #EEE;
  font-size: 0.82rem;
  color: var(--text-mid);
}
.stack-row:last-child { border-bottom: none; }
.stack-row .item-name { display: flex; align-items: center; gap: 6px; }
.stack-row .item-price { font-weight: 600; color: var(--text-dark); }
.stack-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  margin-top: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
}
.stack-total .total-label { color: var(--text-dark); }
.stack-total .total-val { color: var(--text-light); text-decoration: line-through; font-size: 0.82rem; }

.final-price-highlight {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--green);
  margin-bottom: 4px;
}
.final-price-highlight sup { font-size: 1rem; vertical-align: top; margin-top: 6px; }
.final-price-sub { font-size: 0.78rem; color: var(--text-light); margin-bottom: 18px; }

.final-guarantee {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.final-guarantee strong { color: var(--green); }

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.5);
  font-size: 0.73rem;
  text-align: center;
  padding: 24px 18px;
  line-height: 1.7;
}
footer p { margin-bottom: 4px; }
footer .digital-notice { color: rgba(255,255,255,0.35); font-size: 0.68rem; }

/* ── ANIMATIONS ── */
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}
.cta-btn { animation: pulse 2.5s ease-in-out infinite; }
.cta-btn:hover { animation: none; }

@keyframes slideIn {
  from { opacity:0; transform: translateY(-6px); }
  to { opacity:1; transform: translateY(0); }
}

/* ── CAROUSEL ── */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  background: #fff;
  touch-action: pan-y;
}
.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1);
  will-change: transform;
  align-items: flex-start;
}
.carousel-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  overflow: hidden;
}
.cs-img-wrap {
  width: 100%;
  height: 220px;
  background: #1a0a00;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  line-height: 0;
}
.cs-img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.cs-body {
  padding: 14px 16px 20px;
  box-sizing: border-box;
  width: 100%;
}
.carousel-btn {
  position: absolute;
  top: 120px;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
  padding-bottom: 2px;
}
.carousel-btn:hover { background: rgba(0,0,0,0.7); }
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 10px 0 14px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.dot.active {
  background: var(--orange);
  transform: scale(1.25);
}

/* ── IMAGE-ONLY CAROUSEL (carrosséis de imagem cheia) ── */
.img-carousel .carousel-slide { overflow: hidden; }
.img-carousel .cs-img-full {
  width: 100%;
  line-height: 0;
}
.img-carousel .cs-img-full img {
  width: 100%;
  height: auto;
  display: block;
}
.img-carousel .carousel-btn { top: 50%; }

/* ══════════════════════════════════════════
   NOVOS ESTILOS — planos, blocos e popup
   ══════════════════════════════════════════ */

/* ── DOIS PLANOS ── */
.plans-wrap { display: flex; flex-direction: column; gap: 14px; margin: 16px 0 6px; }
.plan-card {
  border: 2px solid #e6e0d8;
  border-radius: 14px;
  padding: 18px 16px;
  background: #fff;
  position: relative;
  text-align: center;
}
.plan-card.featured {
  border-color: var(--orange);
  box-shadow: 0 6px 22px rgba(0,0,0,.08);
}
.plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .68rem;
  letter-spacing: .5px;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; margin: 6px 0 2px; }
.plan-desc { font-size: .8rem; color: var(--text-light); margin-bottom: 10px; }
.plan-list { list-style: none; padding: 0; margin: 0 0 12px; text-align: left; font-size: .82rem; }
.plan-list li {
  padding: 5px 0;
  border-bottom: 1px dashed #eee;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.plan-list li:last-child { border-bottom: none; }
.plan-list .no { opacity: .42; }
.plan-old {
  font-size: .85rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: -4px;
}
.plan-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  margin: 4px 0 2px;
}
.plan-price sup { font-size: 1rem; }
.plan-note {
  font-size: .7rem;
  letter-spacing: .4px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 600;
}
.cta-btn.ghost {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid #d8d2c8;
  box-shadow: none;
  animation: none;
}
.launch-note {
  font-size: .78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
}

/* ── EXIT POPUP ── */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.62);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  backdrop-filter: blur(2px);
}
.exit-overlay.show { display: flex; }
.exit-popup {
  background: #fff;
  border-radius: 20px;
  max-width: 350px;
  width: 100%;
  padding: 26px 22px 22px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  animation: popIn .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.85) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.exit-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: #bbb;
  cursor: pointer;
  padding: 6px;
}
.exit-emoji { font-size: 2.6rem; margin-bottom: 8px; }
.exit-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.exit-title .hl { color: var(--orange-dark); }
.exit-text {
  font-size: .86rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 14px;
}
.exit-text s { color: #B0B0B0; }
.exit-price-row { margin-bottom: 14px; }
.exit-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.3rem;
  color: var(--green);
  line-height: 1;
}
.exit-price sup { font-size: 1rem; vertical-align: top; }
.exit-price-note {
  font-size: .7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .4px;
  font-weight: 600;
  margin-top: 4px;
}
.exit-popup .cta-btn { margin-bottom: 10px; font-size: .95rem; padding: 15px 18px; }
.exit-dismiss {
  background: none;
  border: none;
  font-size: .78rem;
  color: var(--text-light);
  text-decoration: underline;
  cursor: pointer;
  padding: 4px;
}
.exit-guarantee { font-size: .72rem; color: var(--text-light); margin-top: 10px; }