@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@400;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --dark:        hsl(213, 22%, 11%);
  --card-dark:   hsl(213, 18%, 16%);
  --light:       hsl(36, 38%, 96%);
  --accent:      #C9A227;   /* dourado · destaques decorativos sobre fundo escuro */
  --cta:         #39B574;   /* verde · cor fixa de todos os botões de CTA */
  --check:       #2F6B4A;   /* verde bambu · checks e preço sobre fundo claro */
  --danger:      #E5231B;   /* vermelho forte · urgência */
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--light);
  color: hsl(213, 22%, 14%);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

.sec-title {
  font-size: clamp(1.35rem, 4vw, 1.9rem);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.01em;
}
.sec-title-light { color: #fff; }
.highlight-lime  { color: var(--accent); }
.highlight-green { color: var(--check); }
.sec-sub         { color: hsl(213, 14%, 38%); text-align: center; }
.sec-sub strong  { color: var(--check); }
.sec-sub-light   { color: hsl(213, 10%, 72%); text-align: center; }

.check-circle { color: #2F6B4A; width: 18px; height: 18px; flex-shrink: 0; }
.check-circle svg { display: block; }

.btn-cta {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 16px 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  animation: pulse-cta 1.4s ease-in-out infinite;
}
@keyframes pulse-cta {
  0%, 100% { transform: translateY(0);     box-shadow: 0 4px 16px rgba(57,181,116,0.3); }
  50%      { transform: translateY(-6px);  box-shadow: 0 12px 28px rgba(57,181,116,0.5); }
}

/* ===== 1. TOP BAR ===== */
.top-banner {
  background: var(--danger);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== 2. HERO ===== */
.hero { background: #fff; padding: 40px 24px 48px; border-bottom: 1px solid hsl(213,15%,90%); }
.hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #8CEE7A;
  border: 1px solid #4FBE3A;
  padding: 12px 24px;
  border-radius: 180px;
  margin-bottom: 22px;
  animation: badge-glow 2.4s ease-in-out infinite;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 4px 14px rgba(76, 190, 58, 0.28); }
  50%      { box-shadow: 0 4px 20px rgba(76, 190, 58, 0.55); }
}
.hero-badge-dot { position: relative; width: 7px; height: 7px; border-radius: 50%; background: hsl(150, 55%, 13%); flex-shrink: 0; }
.hero-badge-dot::before {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  background: hsl(150, 55%, 13%); opacity: 0.55;
  animation: ping-dot 1.6s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes ping-dot { 0% { transform: scale(1); opacity: 0.55; } 75%, 100% { transform: scale(2.6); opacity: 0; } }
.hero-badge-icon { font-size: 1rem; line-height: 1; }
.hero-badge-strong {
  color: hsl(150, 55%, 13%);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-title {
  color: hsl(213, 22%, 14%);
  font-size: clamp(1.4rem, 3.8vw, 2.05rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.28;
  margin-bottom: 28px;
}
.hero-title .accent { color: var(--check); }
.hero-title .pain { color: var(--danger); }
.hero-title .kw { text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 4px; }

.hero-sub { color: hsl(213, 14%, 38%); font-size: 0.98rem; line-height: 1.6; max-width: 540px; margin: 0 auto 14px; }
.hero-sub:last-of-type { margin-bottom: 26px; }
.hero-sub strong { color: hsl(213, 22%, 14%); }

.hero-mockup { margin: 0 auto 26px; max-width: 620px; }
.hero-mockup img { border-radius: 10px; }

.hero-checklist {
  display: inline-flex;
  flex-direction: column;
  gap: 11px;
  text-align: left;
  margin: 0 auto 28px;
}
.hero-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: hsl(213, 14%, 26%);
}
.hero-checklist .check-circle { margin-top: 2px; }

.hero-delivery { margin-top: 8px; }
.hero-delivery-text { color: hsl(213, 12%, 48%); font-size: 0.78rem; margin-bottom: 10px; }
.hero-delivery-chips { display: flex; justify-content: center; gap: 12px; }
.delivery-chip {
  display: flex; align-items: center; gap: 6px;
  background: var(--light);
  border: 1px solid hsl(213,15%,88%);
  color: hsl(213, 14%, 30%);
  font-size: 0.76rem; font-weight: 700;
  padding: 8px 14px; border-radius: 50px;
}
.delivery-emoji { font-size: 1rem; line-height: 1; }

/* ===== 3. CARROSSEL ===== */
.carousel-section { background: var(--dark); padding: 40px 0 48px; }
.carousel-wrap { overflow: hidden; position: relative; }
.carousel-track { display: flex; gap: 14px; animation: scroll-l 38s linear infinite; width: max-content; padding: 0 4px; }
.carousel-track.reverse { animation: scroll-r 42s linear infinite; }
@keyframes scroll-l { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scroll-r { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.lesson-card {
  flex-shrink: 0;
  width: 240px;
  background: var(--light);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,0.28);
}
.lesson-card img { width: 100%; height: auto; display: block; pointer-events: none; }

/* ===== 4. ANTES E DEPOIS ===== */
.before-after-section { padding: 48px 24px; }
.ba-inner { max-width: 860px; margin: 0 auto; }
.ba-title { text-align: center; font-size: clamp(1.3rem, 4vw, 1.8rem); font-weight: 800; margin-bottom: 32px; text-transform: uppercase; color: hsl(213,22%,14%); }
.hl-red   { color: var(--danger); }
.hl-green { color: var(--check); }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ba-card { border-radius: 16px; padding: 24px 20px; }
.ba-card-no  { background: hsl(0, 45%, 96%); border: 1px solid hsl(0,50%,88%); }
.ba-card-yes { background: hsl(140, 30%, 96%); border: 1px solid hsl(140,35%,86%); }
.ba-label { font-weight: 800; font-size: 0.9rem; margin-bottom: 16px; text-transform: uppercase; }
.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.86rem; font-weight: 600; color: hsl(213,14%,26%); }
.ba-dot { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 900; color: #fff; margin-top: 1px; }
.ba-dot-no  { background: var(--danger); }
.ba-dot-yes { background: var(--check); }

/* ===== 5. FEATURES ===== */
.features-section { background: var(--dark); padding: 48px 24px; }
.features-inner { max-width: 900px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.feature-card {
  background: var(--card-dark);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
}
.feature-icon-box { font-size: 1.7rem; margin-bottom: 12px; }
.feature-card h3 { color: #fff; font-size: 0.82rem; font-weight: 700; line-height: 1.35; }

/* ===== 6. URGÊNCIA ===== */
.urgency-section { background: var(--dark); padding: 0 24px 48px; }
.urgency-card { max-width: 700px; margin: 0 auto; text-align: center; border-top: 1px solid hsl(213,14%,22%); padding-top: 40px; }
.badge { display: inline-block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 16px; border-radius: 50px; }
.badge-danger { background: hsl(0,55%,20%); color: hsl(0,70%,80%); }
.urgency-card h3 { color: #fff; font-size: clamp(1.2rem, 3.6vw, 1.6rem); font-weight: 800; margin-top: 18px; line-height: 1.4; }
.payment-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 20px; }
.payment-trust span { color: hsl(213,10%,62%); font-size: 0.78rem; font-weight: 600; }

/* ===== 7. DEPOIMENTOS ===== */
.testimonials-section { background: var(--dark); padding: 0 24px 56px; }
.testimonials-inner { max-width: 900px; margin: 0 auto; }
.test-featured { display: flex; flex-direction: column; gap: 18px; max-width: 380px; margin: 28px auto 0; }
.test-featured img { width: 100%; display: block; border-radius: 16px; box-shadow: 0 12px 30px rgba(0,0,0,0.32); }
.test-track { display: flex; gap: 18px; animation: scroll-l 26s linear infinite; width: max-content; }
.test-item { flex-shrink: 0; width: 320px; height: 560px; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 26px rgba(0,0,0,0.28); }
.test-item img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: top; }

/* ===== 8. ENTREGÁVEIS ===== */
.deliverables-section { background: var(--dark); padding: 48px 24px 0; }
.deliverables-inner { max-width: 700px; margin: 0 auto; }
.badge-accent { background: hsl(45,50%,18%); color: var(--accent); }
.deliverables-box { background: var(--card-dark); border-radius: 18px; padding: 28px 24px; margin-top: 24px; }
.del-tag { text-align: center; color: var(--accent); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px; }
.del-list { display: flex; flex-direction: column; gap: 14px; }
.del-item { display: flex; align-items: flex-start; gap: 10px; color: #fff; font-size: 0.88rem; font-weight: 600; }
.del-item .check-circle { color: var(--accent); margin-top: 2px; }

.bonus-bridge { text-align: center; margin-top: 40px; padding: 40px 0 8px; }
.bonus-bridge h3 { color: #fff; font-size: clamp(1.15rem, 3.6vw, 1.5rem); font-weight: 900; margin-bottom: 10px; }
.bonus-bridge p { color: hsl(213,10%,68%); font-size: 0.9rem; margin-bottom: 16px; }

/* ===== 9. BÔNUS ===== */
.bonus-section { background: var(--dark); padding: 48px 24px; }
.bonus-inner { max-width: 900px; margin: 0 auto; }
.bonus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 32px; }
.bonus-card { background: var(--card-dark); border-radius: 16px; overflow: hidden; }
.bonus-card-visual { background: hsl(213,16%,20%); }
.bonus-card-visual img { width: 100%; height: auto; display: block; }
.bonus-card-body { padding: 18px 20px 22px; }
.bonus-num { color: var(--accent); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.bonus-card-title { color: #fff; font-size: 1.02rem; font-weight: 800; margin-bottom: 8px; }
.bonus-card-desc { color: hsl(213,10%,68%); font-size: 0.8rem; line-height: 1.5; margin-bottom: 14px; }
.bonus-value { font-size: 0.82rem; font-weight: 700; }
.bonus-value .riscado { display: inline-block; background: var(--cta); color: #fff; text-decoration: line-through; padding: 3px 9px; border-radius: 5px; margin-right: 8px; font-weight: 700; }
.bonus-value .gratis  { color: var(--accent); font-weight: 900; }

/* ===== 10. PLANOS ===== */
.plans-section { background: #fff; padding: 48px 24px 56px; }
.plans-inner { max-width: 900px; margin: 0 auto; }
.plans-urgency-bar { display: inline-block; background: #FF2C2C; border: 1px solid #D30000; color: #fff; font-size: 0.8rem; font-weight: 900; text-align: center; padding: 10px 22px; border-radius: 180px; margin-bottom: 18px; }
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 32px; align-items: start; }

.plan-basic,
.plan-complete { background: #fff; border: 1px solid rgba(41,41,41,0.2); border-radius: 15px; box-shadow: 0 0 10px rgba(0,0,0,0.12); padding: 28px 24px; position: relative; }

.plan-badge-top {
  display: table; margin: -40px auto 10px;
  background: #8CEE7A; border: 1px solid #00D310; color: hsl(213,22%,12%);
  font-size: 0.72rem; font-weight: 900; text-align: center; padding: 8px 18px; border-radius: 180px;
}
.plan-badge-danger {
  display: table; margin: 0 auto 14px;
  background: #FF2C2C; border: 1px solid #D30000; color: #fff;
  font-size: 0.72rem; font-weight: 800; text-align: center; padding: 8px 16px; border-radius: 180px;
}
.badge-colecao { background: #F0FDF4; border: 1px solid #28F308; color: hsl(150,60%,22%); border-radius: 180px; }

.plan-name { text-align: center; font-size: 0.9rem; font-weight: 800; text-transform: uppercase; color: hsl(213,14%,30%); margin-bottom: 16px; letter-spacing: 0.04em; }

.plan-mockup { border-radius: 12px; margin: 0 auto 18px; overflow: hidden; }
.plan-mockup img { width: 100%; height: auto; display: block; }

.plan-incl-label { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 400; color: #3F3F3F; margin-bottom: 10px; text-align: center; }
.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(213,14%,22%); padding-bottom: 9px; border-bottom: 1px solid hsl(213,10%,88%); }
.plan-feat-item:last-child { border-bottom: none; padding-bottom: 0; }
.plan-feat-item.gift { color: hsl(213,14%,22%) !important; font-weight: 700; }
.plan-feat-riscado { color: hsl(213,10%,60%); font-size: 0.82rem; gap: 6px; }

.plan-price-box { background: transparent; border: none; padding: 14px 0; text-align: center; margin-bottom: 18px; display: flex; flex-direction: column; gap: 2px; }
.price-from  { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: #FF0606; font-weight: 400; text-decoration: line-through; display: block; }
.price-main  { font-family: 'Inter', sans-serif; font-size: 3.6rem; font-weight: 700; color: #39B574; display: block; line-height: 1.05; }
.price-inst  { font-size: 0.82rem; color: hsl(0,0%,8%); font-weight: 800; display: block; }
.price-save  { font-size: 0.88rem; font-weight: 700; color: var(--check); }

.plan-cta { display: table; margin: 0 auto; text-align: center; border: none; border-radius: 50px; padding: 16px 40px; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem; letter-spacing: -0.02em; cursor: pointer; }
.plan-cta-basic    { background: hsl(213,12%,35%); color: #fff; }
.plan-cta-complete { background: var(--cta); color: #F9F9F9; animation: pulse-cta 1.4s ease-in-out infinite; }

.plan-popular-note {
  text-align: center; margin-top: 18px;
  font-size: 0.82rem; color: #B23A2E; font-weight: 700;
  background: hsl(0,60%,96%); border: 2px solid hsl(0,50%,82%);
  border-radius: 10px; padding: 12px 16px 14px;
}
.arrow-down { display: flex; justify-content: center; margin-top: 10px; animation: bounce-arrow 0.7s ease-in-out infinite alternate; font-size: 1.2rem; color: var(--danger); }
@keyframes bounce-arrow { 0% { transform: translateY(0); } 100% { transform: translateY(8px); } }

.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-urgency { text-align: center; color: var(--danger); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-top: 14px; }
.plan-guarantee-label { text-align: center; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; margin-top: 16px; margin-bottom: 4px; }
.hotmart-seal-text { text-align: center; font-size: 0.7rem; color: hsl(213,10%,45%); font-weight: 700; letter-spacing: 0.04em; }
.payment-seal { max-width: 320px; width: 100%; margin: 8px auto 10px; }

/* ===== 11. GARANTIA ===== */
.guarantee-section { padding: 48px 24px; }
.guarantee-inner { max-width: 700px; margin: 0 auto; display: flex; align-items: center; gap: 28px; }
.guarantee-seal { flex-shrink: 0; width: 132px; height: auto; }
.guarantee-title { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; color: hsl(213,22%,14%); }
.guarantee-inner p { font-size: 0.88rem; color: hsl(213,14%,34%); margin-bottom: 6px; }
.guarantee-risk { font-weight: 800; color: var(--check); }

/* ===== 12. FAQ ===== */
.faq-section { background: var(--dark); padding: 48px 24px; }
.faq-inner { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid hsl(213,14%,22%); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  color: #fff; font-family: 'Montserrat', sans-serif; font-size: 0.92rem; font-weight: 700;
  padding: 18px 4px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-icon { color: var(--accent); font-size: 1.2rem; font-weight: 900; flex-shrink: 0; transition: transform 0.2s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; color: hsl(213,10%,68%); font-size: 0.86rem; line-height: 1.6; transition: max-height 0.25s ease, padding 0.25s ease; padding: 0 4px; }
.faq-a.open { max-height: 240px; padding: 0 4px 18px; }

/* ===== 13. FOOTER ===== */
.site-footer { background: var(--dark); padding: 32px 24px; border-top: 1px solid hsl(213,14%,20%); }
.footer-text { max-width: 700px; margin: 0 auto; text-align: center; color: hsl(213,10%,50%); font-size: 0.74rem; line-height: 1.7; }

/* ===== 14. MODAIS ===== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.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(0,0,0,.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: .12em; text-transform: uppercase; padding: 11px 20px; display: block; }
.modal-body { padding: 26px 22px 22px; }
.modal-title { font-size: 1.4rem; font-weight: 900; color: #111; line-height: 1.18; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .01em; }
.modal-title-sub { display: block; font-size: 1rem; font-weight: 600; color: var(--danger); text-transform: none; letter-spacing: 0; margin-top: 5px; }
.modal-title-sub-exit { color: #9a5a1f; }
.modal-leve-texto { font-size: .9rem; font-weight: 600; color: #555; margin-bottom: 14px; }
.modal-leve-texto strong { color: #111; 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: #888; }
.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: #555; }
.modal-access-badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 6px; }
.modal-access-badges span { font-size: .72rem; font-weight: 700; color: var(--check); background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 50px; padding: 4px 12px; }
.modal-cta-label { font-size: 1.05rem; font-weight: 900; color: #111; text-align: center; line-height: 1.25; margin-bottom: 10px; letter-spacing: .01em; text-transform: uppercase; }
.modal-urgency-label { font-size: .7rem; font-weight: 900; letter-spacing: .1em; color: var(--danger); text-align: center; text-transform: uppercase; margin-bottom: 10px; }
@keyframes modal-cta-pulse { 0%, 100% { transform: scale(1); box-shadow: 0 4px 18px rgba(57,181,116,.35); } 50% { transform: scale(1.045); box-shadow: 0 8px 28px rgba(57,181,116,.55); } }
.modal-btn-sim { display: block; background: var(--cta); color: #fff; font-weight: 900; font-size: .92rem; letter-spacing: .05em; text-decoration: none; text-transform: uppercase; padding: 19px 24px; border-radius: 14px; margin-bottom: 14px; border-bottom: 4px solid hsl(153,55%,30%); animation: modal-cta-pulse 1.6s ease-in-out infinite; line-height: 1.2; }
.modal-inclui { font-size: .75rem; color: #666; font-weight: 500; line-height: 1.5; margin-bottom: 10px; text-align: center; }
.modal-inclui strong { color: #222; font-weight: 700; }
.modal-btn-nao { background: none; border: none; cursor: pointer; color: #aaa; font-size: .8rem; text-decoration: underline; padding: 4px 8px; font-family: 'Montserrat', sans-serif; display: block; margin: 0 auto; }

/* ===== RESPONSIVO ===== */
@media (max-width: 720px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .guarantee-inner { flex-direction: column; text-align: center; }
  .test-item { width: 84vw; height: auto; aspect-ratio: 9 / 16; }
}

@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: .8rem; padding: 16px 14px; }
  .price-main { font-size: 2.3rem; }
  .hero-title { font-size: 1.3rem; line-height: 1.42; margin-bottom: 22px; }
  .hero-sub { font-size: 0.9rem; }
  .test-item { width: 90vw; }
}
