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

:root {
  --dark:        hsl(25, 38%, 13%);   /* couro escuro / terra queimada */
  --card-dark:   hsl(25, 30%, 19%);
  --light:       hsl(38, 42%, 96%);   /* creme */
  --accent:      hsl(84, 55%, 48%);   /* verde pasto */
  --accent-rgb:  136, 190, 55;
  --cta:         #39B574;             /* verde dos botões de CTA */
  --cta-rgb:     57, 181, 116;
  --check:       hsl(142, 65%, 40%);  /* verde vivo */
  --danger:      hsl(4, 82%, 56%);    /* vermelho vivo */
  --danger-rgb:  235, 63, 51;
  --earth:       hsl(30, 42%, 32%);   /* marrom couro */
  --gray-warm:   30;                  /* hue usado para cinzas neutros quentes */
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--light);
  color: hsl(25, 30%, 14%);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

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

/* ---------- TOP BANNER ---------- */
.top-banner {
  background: var(--danger);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* ---------- SECTION TITLE HELPERS ---------- */
.sec-title { font-size: clamp(1.3rem, 4vw, 1.9rem); font-weight: 900; text-transform: uppercase; text-align: center; line-height: 1.25; }
.sec-title-light { color: #fff; }
.highlight-lime { color: var(--accent); }
.highlight-green { color: var(--check); }
.sec-sub { color: hsl(30,18%,34%); text-align: center; font-size: 0.98rem; max-width: 620px; margin: 14px auto 0; }
.sec-sub strong { color: var(--check); }
.sec-sub-light { color: hsl(30,14%,72%); text-align: center; font-size: 0.98rem; max-width: 620px; margin: 14px auto 0; }

/* ---------- CTA BUTTON ---------- */
.btn-cta {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  border-radius: 10px;
  padding: 16px 40px;
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  animation: pulse-cta 1.4s ease-in-out infinite;
  border: none;
  cursor: pointer;
}
@keyframes pulse-cta {
  0%, 100% { transform: translateY(0);    box-shadow: 0 4px 16px rgba(var(--cta-rgb),0.30); }
  50%       { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(var(--cta-rgb),0.50); }
}

.check-circle { color: var(--check); width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- MOCK POSTER (placeholder de imagem) ---------- */
.mock-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 24px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 24px),
    linear-gradient(155deg, hsl(25,40%,15%), hsl(140,28%,22%) 55%, hsl(84,50%,30%) 130%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  color: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}
.mock-poster .mp-icon { font-size: 2.3rem; margin-bottom: 10px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35)); }
.mock-poster .mp-title { font-size: 0.82rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.3; }
.mock-poster .mp-tag { margin-top: 10px; font-size: 0.62rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; border: 1px solid rgba(var(--accent-rgb),0.45); border-radius: 50px; padding: 3px 10px; }

.mock-poster-lg { aspect-ratio: 4/5; }

/* ---------- HERO ---------- */
.hero { background: var(--light); padding: 40px 24px 48px; }
.hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }

.hero-bullet {
  display: inline-block;
  background: hsl(84,35%,90%);
  color: hsl(100,45%,24%);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  color: hsl(25, 30%, 14%);
  font-size: clamp(1.65rem, 4.5vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.28;
}
.hero-title .accent { color: #3DAA7A; }
.hero-underline { text-decoration: underline; text-decoration-color: var(--danger); text-decoration-thickness: 3px; }

.hero-mockup { max-width: 300px; margin: 30px auto; }
.hero-mockup-img { max-width: 560px; }
.hero-mockup-img img { border-radius: 14px; box-shadow: 0 16px 40px rgba(30,20,10,0.18); }

.hero-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 22px; }
.pill { background: hsl(30,20%,91%); color: hsl(30,25%,30%); font-size: 0.78rem; font-weight: 700; padding: 8px 16px; border-radius: 50px; }

.hero-sub { color: hsl(30,16%,34%); font-size: 1rem; max-width: 640px; margin: 0 auto 30px; }
.hero-sub strong { color: hsl(25,30%,12%); }

.hero-delivery { margin-bottom: 12px; }
.hero-delivery-text { color: hsl(30,12%,45%); font-size: 0.8rem; font-weight: 600; margin-bottom: 12px; }
.hero-delivery-chips { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.delivery-chip { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid hsl(30,20%,88%); color: hsl(30,20%,20%); font-size: 0.8rem; font-weight: 700; padding: 9px 16px; border-radius: 10px; }
.delivery-chip img { width: 18px; height: 18px; }

/* ---------- CAROUSEL ---------- */
.carousel-section { background: var(--light); }
.carousel-wrap { overflow: hidden; position: relative; }
.carousel-track { display: flex; gap: 14px; animation: scroll-l 40s linear infinite; width: max-content; }
.carousel-track.reverse { animation: scroll-r 44s linear infinite; }
.carousel-item { flex-shrink: 0; width: 200px; }
.carousel-item img { width: 100%; border-radius: 12px; box-shadow: 0 8px 20px rgba(30,20,10,0.15); }
@keyframes scroll-l { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scroll-r { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ---------- BEFORE / AFTER ---------- */
.before-after-section { padding: 48px 24px; background: var(--light); }
.ba-inner { max-width: 900px; margin: 0 auto; }
.ba-title { text-align: center; font-size: clamp(1.3rem, 4vw, 1.8rem); font-weight: 900; text-transform: uppercase; margin-bottom: 36px; line-height: 1.35; }
.hl-red { color: var(--danger); }
.hl-green { color: var(--check); }

.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ba-card { border-radius: 16px; padding: 26px 22px; }
.ba-card-no { background: hsl(4,70%,96%); border: 2px solid hsl(4,70%,86%); }
.ba-card-yes { background: hsl(140,30%,95%); border: 2px solid hsl(140,30%,78%); }
.ba-label { font-weight: 900; font-size: 0.95rem; text-transform: uppercase; margin-bottom: 16px; }
.ba-label-no { color: var(--danger); }
.ba-label-yes { color: var(--check); }
.ba-list { display: flex; flex-direction: column; gap: 12px; }
.ba-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; font-weight: 600; color: hsl(30,18%,25%); }
.ba-dot { width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 900; color: #fff; }
.ba-dot-no { background: var(--danger); }
.ba-dot-yes { background: var(--check); }

/* ---------- FEATURES ---------- */
.features-section { background: var(--light); padding: 48px 24px; }
.features-inner { max-width: 900px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.feature-card { background: #fff; border: 1px solid hsl(30,18%,89%); box-shadow: 0 4px 14px rgba(30,20,10,0.05); border-radius: 14px; padding: 22px 16px; text-align: center; }
.feature-icon-box { font-size: 1.8rem; margin-bottom: 12px; }
.feature-card h3 { color: hsl(30,20%,18%); font-size: 0.85rem; font-weight: 700; line-height: 1.4; }

/* ---------- URGENCY ---------- */
.urgency-section { background: var(--danger); padding: 48px 24px; }
.urgency-card { max-width: 700px; margin: 0 auto; text-align: center; }
.badge { display: inline-block; font-size: 0.72rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em; padding: 8px 16px; border-radius: 50px; }
.badge-danger { background: hsl(4,60%,22%); color: hsl(4,85%,76%); }
.urgency-card .badge-danger { background: rgba(255,255,255,0.18); color: #fff; }
.urgency-card h3 { color: #fff; font-size: clamp(1.1rem, 3.5vw, 1.5rem); font-weight: 800; margin-top: 18px; line-height: 1.4; }
.urgency-card h3 strong { color: #fff; text-decoration: underline; }
.payment-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 20px; }
.payment-trust span { color: hsl(38,10%,62%); font-size: 0.76rem; font-weight: 700; }
.urgency-card .payment-trust span { color: rgba(255,255,255,0.85); }

/* ---------- TESTIMONIALS (placeholder) ---------- */

/* ---------- DELIVERABLES ---------- */
.deliverables-section { background: var(--light); padding: 48px 24px; }
.deliverables-inner { max-width: 780px; margin: 0 auto; }
.deliverables-box { background: #fff; border: 1px solid hsl(30,18%,89%); box-shadow: 0 4px 14px rgba(30,20,10,0.05); border-radius: 20px; padding: 28px 24px; margin-top: 26px; }
.del-tag { text-align: center; background: hsl(84,45%,16%); color: var(--accent); font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em; padding: 8px 14px; border-radius: 8px; margin-bottom: 20px; }
.del-mockup { max-width: 420px; margin: 0 auto 24px; }
.del-list { display: flex; flex-direction: column; gap: 14px; }
.del-item { display: flex; align-items: flex-start; gap: 10px; color: hsl(30,20%,18%); font-size: 0.9rem; font-weight: 600; padding-bottom: 14px; border-bottom: 1px solid hsl(30,15%,90%); }
.del-item:last-child { border-bottom: none; padding-bottom: 0; }

.bonus-bridge { text-align: center; margin-top: 38px; }
.bonus-bridge h3 { color: hsl(25,30%,14%); font-size: clamp(1.1rem, 3.5vw, 1.5rem); font-weight: 900; text-transform: uppercase; line-height: 1.3; }
.bonus-bridge h3 strong { color: var(--check); }
.bonus-bridge p { color: hsl(30,14%,42%); margin: 12px 0 18px; font-size: 0.92rem; }

/* ---------- BONUS GRID ---------- */
.bonus-section { background: var(--light); padding: 0 24px 48px; }
.bonus-inner { max-width: 900px; margin: 0 auto; }
.bonus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.bonus-card { background: #fff; border: 1px solid hsl(30,18%,89%); box-shadow: 0 4px 14px rgba(30,20,10,0.05); border-radius: 16px; overflow: hidden; }
.bonus-card-img { padding: 20px 20px 0; }
.bonus-card-img img { width: 100%; border-radius: 10px; }
.bonus-card-body { padding: 18px 20px 22px; }
.bonus-num { color: var(--check); font-size: 0.72rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.bonus-card-title { color: hsl(25,30%,14%); font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.bonus-card-desc { color: hsl(30,14%,40%); font-size: 0.84rem; line-height: 1.5; margin-bottom: 14px; }
.bonus-value { font-size: 0.85rem; font-weight: 700; }
.bonus-value .riscado { color: hsl(4,70%,58%); text-decoration: line-through; margin-right: 8px; }
.bonus-value .gratis { color: var(--check); font-weight: 900; }

/* ---------- PLANS (plano único) ---------- */
.plans-section { background: var(--dark); padding: 48px 24px 56px; scroll-margin-top: 20px; }
.plans-inner { max-width: 900px; margin: 0 auto; }
.plans-urgency-bar { display: inline-block; background: var(--danger); color: #fff; font-size: 0.8rem; font-weight: 900; padding: 12px 22px; border-radius: 10px; margin-bottom: 20px; text-transform: uppercase; }

.plan-single-wrap { display: flex; justify-content: center; margin-top: 36px; }
.plan-complete { background: #fff; border: 2px solid var(--accent); border-radius: 20px; padding: 28px 24px; max-width: 420px; width: 100%; position: relative; }
.plan-badge-top { display: block; width: 100%; background: #ABFF2E; color: hsl(25,40%,12%); font-size: 0.72rem; font-weight: 900; text-align: center; padding: 10px 14px; border-radius: 8px; margin-bottom: 6px; }

.plan-img { width: 100%; max-width: 340px; margin: 0 auto 18px; }
.plan-incl-label { font-weight: 800; font-size: 0.85rem; color: hsl(30,18%,22%); margin-bottom: 10px; }

.plan-features { display: flex; flex-direction: column; gap: 0; margin-bottom: 22px; }
.plan-feat-item { display: flex; align-items: flex-start; gap: 9px; font-size: 0.84rem; font-weight: 600; color: hsl(30,18%,22%); padding-bottom: 9px; border-bottom: 1px solid hsl(30,15%,88%); }
.plan-feat-item:last-child { border-bottom: none; padding-bottom: 0; }
.plan-feat-item.gift { font-weight: 700; }

.plan-price-box { text-align: center; margin-bottom: 18px; padding: 14px 0; }
.price-from { font-size: 0.82rem; color: var(--danger); font-weight: 700; text-decoration: line-through; display: block; }
.price-main { font-size: 2.8rem; font-weight: 900; color: var(--check); display: block; line-height: 1; }
.price-inst { font-size: 0.82rem; color: hsl(25,20%,10%); font-weight: 800; display: block; margin-top: 6px; }
.price-save { font-size: 0.88rem; font-weight: 700; color: var(--check); display: block; margin-top: 6px; }

.price-circle-wrap { position: relative; display: inline-block; padding: 12px 28px; margin: 6px 0; }
.animated-circle { animation: wobble-circle 1.8s ease-in-out infinite alternate; }
.circle-path, .circle-path-delay { stroke-dasharray: 1; stroke-dashoffset: 1; }
.draw-active .circle-path { animation: drawCircle 1.5s ease-out forwards; }
.draw-active .circle-path-delay { animation: drawCircle 1.5s ease-out forwards; animation-delay: 0.3s; }
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes wobble-circle { 0% { transform: scale(1) rotate(0deg); } 100% { transform: scale(1.06,0.96) rotate(2deg); } }

.plan-cta-complete { display: block; width: 100%; text-align: center; background: var(--cta); color: #fff; animation: pulse-cta 1.4s ease-in-out infinite; }

.plan-guarantee-label { text-align: center; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; margin-top: 16px; margin-bottom: 10px; }
.hotmart-note { text-align: center; font-size: 0.72rem; color: hsl(30,10%,45%); font-weight: 700; }
.payment-seal { max-width: 220px; margin: 10px auto 0; opacity: 0.85; }

/* ---------- GARANTIA ---------- */
.guarantee-section { padding: 48px 24px; background: var(--light); }
.guarantee-inner { max-width: 780px; margin: 0 auto; display: flex; align-items: center; gap: 32px; }
.guarantee-seal-img { width: 130px; flex-shrink: 0; }
.guarantee-seal-img img { width: 100%; }
.guarantee-title { font-size: clamp(1.1rem, 3.5vw, 1.5rem); font-weight: 900; text-transform: uppercase; margin-bottom: 12px; }
.guarantee-inner p { font-size: 0.92rem; color: hsl(30,18%,32%); margin-bottom: 8px; }
.guarantee-inner strong { color: hsl(30,18%,14%); }
.guarantee-risk { color: var(--check); font-weight: 800; }

/* ---------- FAQ ---------- */
.faq-section { background: var(--light); padding: 48px 24px; }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid hsl(30,16%,88%); margin-top: 30px; }
.faq-item:first-of-type { margin-top: 36px; }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  color: hsl(25,30%,14%); font-size: 0.95rem; font-weight: 700; padding-bottom: 16px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-family: 'Montserrat', sans-serif;
}
.faq-icon { color: var(--check); font-size: 1.2rem; font-weight: 900; flex-shrink: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: hsl(30,14%,38%); font-size: 0.88rem; line-height: 1.6; }
.faq-a.open { max-height: 300px; padding-bottom: 18px; }

/* ---------- FOOTER ---------- */
.site-footer { background: hsl(38,25%,92%); padding: 32px 24px; border-top: 1px solid hsl(30,16%,86%); }
.footer-text { max-width: 700px; margin: 0 auto; text-align: center; color: hsl(30,10%,45%); font-size: 0.72rem; line-height: 1.6; }

/* ---------- EXIT MODAL ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(20,12,6,.78);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; padding: 16px; overflow-y: auto; overflow-x: hidden;
  opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-card {
  background: #fff; border-radius: 20px; max-width: 460px; width: 100%;
  text-align: center; transform: translateY(24px) scale(.97);
  transition: transform .28s cubic-bezier(.22,.68,0,1.2);
  margin: auto; overflow: hidden; box-shadow: 0 24px 64px rgba(20,12,6,.45);
}
.modal-overlay.open .modal-card { transform: translateY(0) scale(1); }
.modal-top-strip { background: var(--danger); color: #fff; font-size: .7rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; padding: 11px 20px; display: block; }
.modal-body { padding: 26px 22px 22px; }
.modal-title { font-size: 1.4rem; font-weight: 900; color: #241a10; line-height: 1.2; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .02em; }
.modal-title-sub { display: block; font-size: 1rem; font-weight: 600; color: var(--danger); text-transform: none; letter-spacing: 0; margin-top: 5px; }
.modal-leve-texto { font-size: .9rem; font-weight: 600; color: #6b5b4a; margin-bottom: 14px; }
.modal-leve-texto strong { color: #241a10; font-weight: 800; }
.modal-price-area { margin-bottom: 18px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.modal-price-from { font-size: .88rem; font-weight: 700; color: #8a7a68; }
.modal-price-from s { color: var(--danger); font-weight: 800; }
.modal-price-main { font-size: 2.6rem; font-weight: 900; color: var(--check); line-height: 1; }
.modal-price-parcel { font-size: .78rem; font-weight: 700; color: #6b5b4a; }
.modal-access-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 6px; }
.modal-access-badges span { font-size: .73rem; font-weight: 700; color: var(--check); background: hsl(140,35%,95%); border: 1px solid hsl(140,35%,82%); border-radius: 50px; padding: 4px 12px; }
.modal-cta-label { font-size: 1.05rem; font-weight: 900; color: #241a10; text-align: center; line-height: 1.25; margin-bottom: 10px; letter-spacing: .01em; text-transform: uppercase; }
@keyframes modal-cta-pulse {
  0%, 100% { transform: scale(1);      box-shadow: 0 4px 18px rgba(var(--cta-rgb),.5); }
  50%       { transform: scale(1.045); box-shadow: 0 8px 28px rgba(var(--cta-rgb),.75); }
}
.modal-btn-sim {
  display: block; background: var(--cta); color: #fff;
  font-weight: 900; font-size: .95rem; letter-spacing: .06em;
  text-decoration: none; text-transform: uppercase; padding: 19px 24px;
  border-radius: 14px; margin-bottom: 14px; border-bottom: 4px solid hsl(148,52%,30%);
  animation: modal-cta-pulse 1.6s ease-in-out infinite; line-height: 1.2;
}
.modal-inclui { font-size: .75rem; color: #7a6a58; font-weight: 500; line-height: 1.5; margin-bottom: 10px; text-align: center; }
.modal-inclui strong { color: #2e2115; font-weight: 700; }
.modal-btn-nao { background: none; border: none; cursor: pointer; color: #a89684; font-size: .8rem; text-decoration: underline; padding: 4px 8px; font-family: 'Montserrat', sans-serif; display: block; margin: 0 auto; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 720px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .guarantee-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .modal-body { padding: 20px 14px 18px; }
  .modal-title { font-size: 1.05rem; }
  .modal-price-main { font-size: 2.1rem; }
  .modal-btn-sim { font-size: .82rem; padding: 16px 14px; }
  .price-main { font-size: 2.3rem; }
}
