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

:root {
  --light:       hsl(40, 30%, 97%);
  --accent:      #ABFF2E;
  --cta:         #39B574;
  --cta-rgb:     57, 181, 116;
  --check:       #1FAD6B;
  --danger:      hsl(0, 80%, 52%);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--light);
  color: hsl(215, 22%, 14%);
  line-height: 1.5;
  overflow-x: hidden;
}

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

/* ===== 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.8px;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  background: var(--light);
  color: hsl(215, 22%, 14%);
  padding: 40px 24px 48px;
  text-align: center;
}
.hero-inner { max-width: 820px; margin: 0 auto; }
.hero-bullet {
  display: inline-block;
  background: hsl(100, 45%, 92%);
  color: hsl(140, 55%, 26%);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(1.65rem, 4.5vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 28px;
}
.hero-title .accent { color: var(--check); }
.hero-underline { text-decoration: underline; text-decoration-color: currentColor; text-underline-offset: 4px; }
.hero-underline-red { text-decoration: underline; text-decoration-color: var(--danger); text-decoration-thickness: 3px; text-underline-offset: 5px; }

.hero-mockup { margin: 0 auto 24px; max-width: 720px; }
.hero-mockup img { border-radius: 14px; }

.hero-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 22px; }
.pill {
  background: hsl(215, 10%, 94%);
  border: 1px solid hsl(215, 10%, 86%);
  color: hsl(215, 14%, 35%);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
}
.hero-sub { color: hsl(215, 14%, 38%); font-size: 0.98rem; max-width: 620px; margin: 0 auto 28px; }
.hero-sub strong { color: hsl(215, 22%, 14%); }

.hero-delivery { margin-top: 8px; }
.hero-delivery-text { font-size: 0.8rem; color: hsl(215,14%,42%); margin-bottom: 12px; }
.hero-delivery-chips { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.delivery-chip {
  display: flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid hsl(215, 10%, 86%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 9px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: hsl(215, 22%, 14%);
}
.delivery-chip svg, .delivery-chip img { width: 18px; height: 18px; }

/* ===== SECTION TITLES ===== */
.sec-title { font-size: clamp(1.3rem, 3.4vw, 1.9rem); font-weight: 900; text-transform: uppercase; text-align: center; line-height: 1.3; }
.sec-title-light { color: hsl(215, 22%, 14%); }
.sec-title-dark { color: hsl(215, 22%, 14%); }
.highlight-lime { color: var(--check); }
.highlight-green { color: var(--check); }
.sec-sub { color: hsl(215,14%,38%); text-align: center; max-width: 620px; margin: 14px auto 0; font-size: 0.96rem; }
.sec-sub strong { color: var(--check); }
.sec-sub-light { color: hsl(215,14%,38%); text-align: center; max-width: 620px; margin: 14px auto 0; font-size: 0.96rem; }

/* ===== BOTAO CTA ===== */
.btn-cta, .plan-cta-complete, .modal-btn-sim {
  display: inline-block;
  background: var(--cta);
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  padding: 16px 40px;
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  animation: pulse-cta 1.4s ease-in-out infinite;
}
@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: #1FAD6B; width: 18px; height: 18px; flex-shrink: 0; display: inline-flex; }

/* ===== CASCATA ===== */
.cascade-wrap {
  display: flex; justify-content: center; align-items: center;
  max-width: 620px; margin: 0 auto; padding: 12px 24px 0;
}
.cascade-img {
  width: 190px;
  border-radius: 10px;
  border: 4px solid #fff;
  box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}
.cascade-left  { transform: rotate(-8deg); margin-right: -34px; z-index: 1; }
.cascade-center{ width: 210px; z-index: 3; }
.cascade-right { transform: rotate(8deg); margin-left: -34px; z-index: 2; }

@media (max-width: 560px) {
  .cascade-img { width: 130px; }
  .cascade-center { width: 145px; }
  .cascade-left, .cascade-right { margin-left: -22px; margin-right: -22px; }
}

/* ===== CAROUSEL (páginas do guia) ===== */
.carousel-section { background: var(--light); padding: 40px 0 48px; }
.carousel-wrap { overflow: hidden; position: relative; }
.carousel-track { display: flex; gap: 14px; animation: scroll-l 20s linear infinite; width: max-content; }
.carousel-track.reverse { animation: scroll-r 23s linear infinite; }
.carousel-item { flex-shrink: 0; width: 230px; }
.carousel-item img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 10px 28px rgba(0,0,0,0.35); }

@keyframes scroll-l { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scroll-r { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ===== ANTES / DEPOIS ===== */
.before-after-section { background: var(--light); padding: 48px 24px; }
.ba-inner { max-width: 900px; margin: 0 auto; }
.ba-title { text-align: center; font-size: clamp(1.2rem, 3.2vw, 1.7rem); font-weight: 900; line-height: 1.35; margin-bottom: 36px; }
.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: 18px; padding: 26px 22px; border: none; }
.ba-card-no { background: hsl(0, 65%, 97%); box-shadow: 0 10px 26px rgba(200,30,30,0.06); }
.ba-card-yes { background: hsl(140, 50%, 96%); box-shadow: 0 10px 26px rgba(20,140,70,0.07); }
.ba-label { font-weight: 900; font-size: 0.95rem; 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.88rem; font-weight: 600; color: hsl(215,14%,25%); }
.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; }
.ba-dot-no { background: var(--danger); }
.ba-dot-yes { background: var(--check); }

@media (max-width: 640px) { .ba-grid { grid-template-columns: 1fr; } }

/* ===== 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(4, 1fr); gap: 16px; margin-top: 36px; }
.feature-card {
  background: #fff;
  border: none;
  box-shadow: 0 10px 28px rgba(20,50,30,0.07);
  border-radius: 18px;
  padding: 28px 18px;
  text-align: center;
}
.feature-icon-box {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  background: linear-gradient(145deg, hsl(100,55%,93%), hsl(90,50%,87%));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.feature-card h3 { color: hsl(215, 22%, 14%); font-size: 0.82rem; font-weight: 700; line-height: 1.4; }

@media (max-width: 720px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== URGENCY ===== */
.urgency-section { background: var(--light); padding: 0 24px 48px; }
.urgency-card {
  max-width: 720px; margin: 0 auto;
  background: #fff;
  border: none;
  border-top: 4px solid var(--danger);
  box-shadow: 0 14px 36px rgba(180,20,20,0.10);
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
}
.badge { display: inline-block; font-size: 0.7rem; font-weight: 900; letter-spacing: 0.5px; text-transform: uppercase; padding: 8px 16px; border-radius: 50px; }
.badge-danger { background: var(--danger); color: #fff; }
.badge-accent { background: var(--accent); color: hsl(215,22%,10%); }
.badge-colecao { background: hsl(90,55%,93%); color: hsl(140,55%,26%); border: 1px solid var(--accent); }
.urgency-card h3 { color: hsl(215, 22%, 14%); font-size: 1.2rem; font-weight: 700; margin-top: 16px; line-height: 1.4; }
.urgency-card h3 strong { color: var(--danger); }
.payment-trust { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 20px; font-size: 0.76rem; color: hsl(215,14%,42%); font-weight: 700; }
.payment-seal { max-width: 220px; margin: 16px auto 0; opacity: 0.92; }

/* ===== RESULTADOS (substitui depoimentos com foto) ===== */
.results-section { background: var(--light); padding: 0 24px 56px; }
.results-inner { max-width: 900px; margin: 0 auto; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
.result-card {
  background: #fff;
  border: none;
  box-shadow: 0 10px 28px rgba(20,50,30,0.07);
  border-radius: 8px;
  padding: 26px 22px;
}
.result-card-icon {
  width: 46px; height: 46px;
  margin-bottom: 14px;
  background: linear-gradient(145deg, hsl(100,55%,93%), hsl(90,50%,87%));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.result-card p { color: hsl(215,14%,38%); font-size: 0.86rem; line-height: 1.5; }
.result-card p strong { color: hsl(215, 22%, 14%); }

@media (max-width: 720px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .result-card { padding: 20px 14px; }
  .result-card p { font-size: 0.8rem; }
}

/* ===== ENTREGAVEIS ===== */
.deliverables-section { background: var(--light); padding: 48px 24px 0; }
.deliverables-inner { max-width: 780px; margin: 0 auto; }
.deliverables-box {
  background: #fff;
  border: none;
  box-shadow: 0 16px 40px rgba(20,50,30,0.09);
  border-radius: 20px;
  padding: 30px 26px;
  margin-top: 28px;
}
.del-tag {
  display: inline-block;
  background: var(--accent);
  color: hsl(215,22%,10%);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.del-mockup { width: 100%; max-width: 480px; 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(215, 22%, 14%); font-size: 0.92rem; font-weight: 600; }

.bonus-bridge { text-align: center; margin-top: 44px; }
.bonus-bridge h3 { color: hsl(215, 22%, 14%); font-size: 1.3rem; font-weight: 900; text-transform: uppercase; line-height: 1.35; }
.bonus-bridge h3 strong { color: var(--check); }
.bonus-bridge p { color: hsl(215,14%,38%); margin: 14px 0 18px; font-size: 0.94rem; }

/* ===== BONUS ===== */
.bonus-section { background: var(--light); padding: 0 24px 56px; }
.bonus-inner { max-width: 960px; margin: 40px auto 0; }
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.bonus-card {
  background: #fff;
  border: none;
  box-shadow: 0 12px 30px rgba(20,50,30,0.08);
  border-radius: 18px;
  overflow: hidden;
}
.bonus-card-visual {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  background: hsl(215,10%,96%);
}
.bonus-card-body { padding: 18px 18px 22px; }
.bonus-num { color: var(--check); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 8px; }
.bonus-card-title { color: hsl(215, 22%, 14%); font-size: 0.98rem; font-weight: 800; margin-bottom: 8px; line-height: 1.3; }
.bonus-card-desc { color: hsl(215,14%,42%); font-size: 0.82rem; line-height: 1.5; margin-bottom: 14px; }
.bonus-value { font-size: 0.82rem; font-weight: 700; }
.bonus-value .riscado { color: hsl(215,10%,60%); text-decoration: line-through; margin-right: 8px; }
.bonus-value .gratis { color: var(--check); font-weight: 900; }

@media (max-width: 820px) { .bonus-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .bonus-grid { grid-template-columns: 1fr; } }

/* ===== PLANOS ===== */
.plans-section { background: var(--light); padding: 48px 24px 56px; }
.plans-inner { max-width: 900px; margin: 0 auto; }
.plans-urgency-bar {
  background: var(--danger); color: #fff;
  font-size: 0.85rem; font-weight: 900;
  text-align: center; padding: 14px 24px;
  border-radius: 10px; margin-bottom: 20px;
}
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 36px; align-items: start; }

.plan-basic    { background: hsl(215,10%,96%); border: none; box-shadow: 0 10px 28px rgba(20,30,40,0.06); border-radius: 20px; padding: 28px 24px; }
.plan-complete { background: #fff; border: 2px solid var(--accent); box-shadow: 0 20px 48px rgba(20,140,70,0.14); border-radius: 20px; padding: 28px 24px; position: relative; }

.plan-name { text-align: center; font-weight: 900; font-size: 0.85rem; letter-spacing: 0.8px; color: hsl(215,14%,40%); margin-bottom: 18px; text-transform: uppercase; }

.plan-badge-top    { display: block; width: 100%; background: var(--accent); color: hsl(215,22%,12%); font-size: 0.72rem; font-weight: 900; text-align: center; padding: 10px 14px; border-radius: 8px; margin-bottom: 6px; }
.plan-badge-danger { display: block; width: 100%; background: var(--danger); color: #fff; font-size: 0.72rem; font-weight: 800; text-align: center; padding: 10px 12px; border-radius: 8px; margin-bottom: 14px; }

.plan-img { width: 100%; max-width: 260px; margin: 0 auto 18px; border-radius: 10px; display: block; box-shadow: 0 10px 26px rgba(20,50,30,0.10); }
.plan-basic .plan-img { max-width: 200px; }

.plan-incl-label { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; color: hsl(215,14%,35%); margin-bottom: 12px; }

.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(215,14%,22%); padding-bottom: 9px; border-bottom: 1px solid hsl(215,10%,88%); }
.plan-feat-icon { flex-shrink: 0; }
.plan-feat-item:last-child { border-bottom: none; padding-bottom: 0; }
.plan-feat-item.gift { color: hsl(215,14%,22%) !important; font-weight: 700; }
.plan-feat-riscado { color: hsl(215,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; }
.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: #1FAD6B; display: block; line-height: 1; }
.price-inst  { font-size: 0.82rem; color: hsl(0,0%,8%); font-weight: 800; display: block; margin-top: 4px; }
.price-save  { font-size: 0.88rem; font-weight: 700; color: #1FAD6B; margin-top: 8px; display: block; }

.plan-cta { display: block; width: 100%; text-align: center; border: none; cursor: pointer; border-radius: 10px; padding: 16px 20px; font-weight: 900; font-size: 0.88rem; letter-spacing: 0.3px; text-transform: uppercase; font-family: 'Montserrat', sans-serif; }
.plan-cta-basic    { background: hsl(215,12%,35%); color: #fff; }
.plan-cta-complete { background: var(--accent); color: hsl(215,22%,10%); }

.plan-popular-note {
  text-align: center; margin-top: 18px;
  font-size: 0.82rem; color: #DD2C2C; font-weight: 700;
  background: hsl(0,80%,96%); border: 2.5px solid hsl(0,72%,75%);
  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; }
@keyframes bounce-arrow { 0% { transform: translateY(0); } 100% { transform: translateY(8px); } }

.price-circle-wrap { position: relative; display: inline-block; padding: 12px 28px; margin: 6px auto; }
.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: 8px; }

@media (max-width: 720px) { .plans-grid { grid-template-columns: 1fr; } }

/* ===== GARANTIA ===== */
.guarantee-section { background: var(--light); padding: 48px 24px; }
.guarantee-inner { max-width: 780px; margin: 0 auto; display: flex; align-items: center; gap: 32px; }
.guarantee-seal {
  flex-shrink: 0;
  width: 150px;
}
.guarantee-title { font-size: 1.4rem; font-weight: 900; margin-bottom: 12px; text-transform: uppercase; }
.guarantee-inner p { color: hsl(215,14%,32%); font-size: 0.94rem; margin-bottom: 8px; }
.guarantee-inner p strong { color: hsl(215,22%,14%); }
.guarantee-risk { color: var(--check) !important; font-weight: 800 !important; }

@media (max-width: 620px) { .guarantee-inner { flex-direction: column; text-align: center; } }

/* ===== FAQ ===== */
.faq-section { background: var(--light); padding: 48px 24px; }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid hsl(215,10%,86%); margin-top: 14px; padding-bottom: 14px; }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  color: hsl(215, 22%, 14%); font-family: 'Montserrat', sans-serif;
  font-size: 0.94rem; font-weight: 700; text-align: left; padding: 6px 0;
}
.faq-icon { font-size: 1.3rem; color: var(--check); flex-shrink: 0; transition: transform 0.2s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  color: hsl(215,14%,42%); font-size: 0.86rem; line-height: 1.6;
}
.faq-a.open { max-height: 300px; padding-top: 10px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--light); padding: 32px 24px; border-top: 1px solid hsl(215,10%,88%); }
.footer-text { max-width: 700px; margin: 0 auto; text-align: center; color: hsl(215,14%,50%); font-size: 0.76rem; line-height: 1.7; }

/* ===== 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: .13em; text-transform: uppercase; padding: 11px 20px; display: block; }
.modal-body { padding: 26px 22px 22px; }
.modal-title { font-size: 1.5rem; font-weight: 900; color: #111; line-height: 1.15; 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-title-sub-exit { color: #b45309; }
.modal-leve-texto { font-size: .92rem; 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.8rem; font-weight: 900; color: #16a34a; 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: .73rem; font-weight: 700; color: #16a34a; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: 50px; padding: 4px 12px; }
.modal-cta-label { font-size: 1.1rem; 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(54,146,96,.5); }
  50%       { transform: scale(1.045); box-shadow: 0 8px 28px rgba(54,146,96,.75); }
}
.modal-btn-sim { display: block; background: #369260; 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 #235f3e; 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; }

@media (max-width: 480px) {
  .modal-body { padding: 20px 14px 18px; }
  .modal-title { font-size: 1.1rem; }
  .modal-price-main { font-size: 2.2rem; }
  .modal-btn-sim { font-size: .82rem; padding: 16px 14px; }
}
