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

:root {
  --dark:       hsl(215, 22%, 12%);
  --card-dark:  hsl(215, 18%, 17%);
  --light:      hsl(40, 30%, 97%);
  --accent:     #ABFF2E;
  --check:      #1FAD6B;
  --danger:     hsl(0, 80%, 52%);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', system-ui, sans-serif;
  background: var(--light);
  color: hsl(215, 22%, 14%);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }

/* ===== BOTÃO CTA ===== */
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: hsl(215, 22%, 10%);
  border-radius: 10px;
  padding: 16px 40px;
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: none;
  animation: pulse-cta 1.4s ease-in-out infinite;
}
@keyframes pulse-cta {
  0%, 100% { transform: translateY(0);    box-shadow: 0 4px 16px rgba(171,255,46,0.25); }
  50%       { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(171,255,46,0.45); }
}

/* ===== TÍTULOS ===== */
.sec-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.3px;
}
.sec-title-light { color: #fff; }
.sec-title-dark  { color: #fff; }
.highlight-lime  { color: var(--accent); }       /* só para fundo ESCURO */
.highlight-green { color: var(--check); }         /* destaque legível para fundo CLARO */
.sec-sub-light { color: hsl(215,10%,72%); font-size: 0.95rem; font-weight: 500; margin-top: 12px; max-width: 580px; margin-left: auto; margin-right: auto; }
.sec-sub-light strong { color: var(--accent); font-weight: 800; }
.sec-sub { color: hsl(215,14%,38%); font-size: 0.95rem; font-weight: 500; margin-top: 12px; max-width: 580px; margin-left: auto; margin-right: auto; }
.sec-sub strong { color: var(--check); font-weight: 800; }

/* ===== FAIXA DE NÚMEROS ===== */
.stats-section { background: var(--dark); padding: 0 24px 56px; }
.stats-inner {
  max-width: 820px; margin: 0 auto;
  background: hsl(215,18%,16%);
  border: 1.5px solid hsl(215,12%,26%);
  border-radius: 18px;
  padding: 28px 20px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.stat-num { font-size: clamp(2.2rem, 7vw, 3.2rem); font-weight: 900; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.74rem; font-weight: 700; color: hsl(215,10%,72%); line-height: 1.3; }
.stat-divider { width: 1.5px; align-self: stretch; background: hsl(215,12%,26%); }

.del-item strong { color: var(--accent); font-weight: 800; }

/* ===== CHECK CIRCLE ===== */
.check-circle {
  color: var(--check);
  width: 18px; height: 18px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 8px 16px;
  border-radius: 50px;
}
.badge-danger  { background: var(--danger); color: #fff; }
.badge-accent  { background: var(--accent); color: hsl(215,22%,12%); }
.badge-colecao { background: hsl(215,22%,12%); color: var(--accent); border: 1.5px solid var(--accent); }

/* ===== TOP BAR ===== */
.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;
}

/* ===== BANDEIRINHAS (festa junina) ===== */
.bunting {
  display: flex;
  width: 100%;
  height: 26px;
  overflow: hidden;
}
.bunting span {
  flex: 1;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 20px solid;
}
.bunting span:nth-child(3n+1) { border-top-color: #e63946; }
.bunting span:nth-child(3n+2) { border-top-color: #ffd166; }
.bunting span:nth-child(3n+3) { border-top-color: #4cc9f0; }

/* ===== HERO ===== */
.hero {
  background: var(--dark);
  background-image: radial-gradient(circle at 50% 0%, hsl(215,22%,18%), var(--dark) 60%);
  color: #fff;
  padding-bottom: 50px;
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 24px 0;
  text-align: center;
}
.hero-bullet {
  display: inline-block;
  background: hsl(215,10%,20%);
  color: hsl(45, 90%, 70%);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(1.65rem, 4.5vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.12;
  margin-bottom: 28px;
}
.hero-title .accent { color: var(--accent); }
.hero-underline { text-decoration: underline; text-decoration-color: #fff; text-underline-offset: 4px; }

.hero-mockup { display: flex; justify-content: center; margin-bottom: 26px; }
.hero-mockup-img { width: 100%; max-width: 620px; height: auto; display: block; border-radius: 16px; }

.hero-pills { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-bottom: 24px; }
.pill {
  background: hsl(215,10%,20%);
  color: hsl(215,10%,72%);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 50px;
}
.hero-sub {
  font-size: 0.98rem;
  color: hsl(215,10%,80%);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}
.hero-sub strong { color: #fff; }

.hero-delivery { margin-top: 30px; }
.hero-delivery-text { font-size: 0.82rem; color: hsl(215,10%,65%); margin-bottom: 12px; }
.hero-delivery-chips { display: flex; gap: 12px; justify-content: center; }
.delivery-chip {
  display: flex; align-items: center; gap: 7px;
  background: hsl(215,18%,17%);
  color: #fff;
  font-size: 0.82rem; font-weight: 700;
  padding: 9px 18px;
  border-radius: 10px;
}
.delivery-chip svg { color: var(--accent); }

/* ===== PHONE MOCKUP (CSS) ===== */
.phone {
  width: 230px;
  background: #0c1116;
  border-radius: 30px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  position: relative;
  border: 2px solid hsl(215,12%,28%);
}
.phone-sm { width: 200px; }
.phone-notch {
  position: absolute;
  top: 12px; left: 50%; transform: translateX(-50%);
  width: 70px; height: 16px;
  background: #0c1116;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.phone-screen {
  background: linear-gradient(160deg, #1c2530, #141b22);
  border-radius: 20px;
  padding: 26px 14px 14px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.app-bar {
  color: var(--accent);
  font-weight: 900;
  font-size: 0.82rem;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid hsl(215,12%,26%);
  margin-bottom: 12px;
}
.app-event {
  background: hsl(215,18%,22%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  padding: 7px;
  border-radius: 8px;
  margin-bottom: 12px;
}
.app-list { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.app-list li {
  display: flex; align-items: center; gap: 8px;
  background: hsl(215,16%,19%);
  color: #e8edf2;
  font-size: 0.74rem; font-weight: 600;
  padding: 9px 10px;
  border-radius: 8px;
}
.app-list li em { margin-left: auto; font-style: normal; color: hsl(215,10%,55%); font-size: 0.66rem; }
.dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.dot-1 { background: #ffd166; } .dot-2 { background: #ef476f; }
.dot-3 { background: #06d6a0; } .dot-4 { background: #4cc9f0; }
.dot-5 { background: var(--accent); }
.app-foot {
  margin-top: 12px;
  background: var(--accent);
  color: hsl(215,22%,10%);
  font-weight: 900;
  font-size: 0.74rem;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
}
.app-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  flex: 1; align-content: start;
}
.app-grid span {
  background: hsl(215,16%,19%);
  color: #e8edf2;
  font-size: 0.68rem; font-weight: 700;
  padding: 12px 6px;
  border-radius: 8px;
  text-align: center;
}

/* ===== CARROSSEL ===== */
.carousel-section { background: var(--dark); padding: 54px 0 60px; }
.carousel-wrap { overflow: hidden; position: relative; }
.carousel-track {
  display: flex; gap: 14px;
  animation: scroll-l 38s linear infinite;
  width: max-content;
}
.carousel-track.reverse { animation: scroll-r 42s linear infinite; }
.carousel-item { flex-shrink: 0; width: 200px; }
@keyframes scroll-l { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scroll-r { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

.occ-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: hsl(215,18%,17%);
  border: 1.5px solid hsl(215,12%,26%);
  border-radius: 16px;
  padding: 26px 14px;
  height: 140px;
}
.occ-card-mom { border-color: var(--accent); background: hsl(215,18%,15%); }
.occ-emoji { font-size: 2.4rem; }
.occ-name { color: #fff; font-weight: 800; font-size: 0.86rem; text-align: center; }
.occ-card-mom .occ-name { color: var(--accent); }

/* ===== ANTES E DEPOIS ===== */
.before-after-section { background: var(--light); padding: 60px 0; }
.ba-inner { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.ba-title {
  text-align: center;
  font-size: clamp(1.3rem, 3.6vw, 1.9rem);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 40px;
}
.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: 26px 22px; }
.ba-card-no  { background: hsl(0,60%,97%);   border: 1.5px solid hsl(0,60%,88%); }
.ba-card-yes { background: hsl(150,50%,96%); border: 1.5px solid hsl(150,45%,82%); }
.ba-label { font-weight: 900; font-size: 0.95rem; text-transform: uppercase; margin-bottom: 18px; }
.ba-label-no  { color: var(--danger); }
.ba-label-yes { color: var(--check); }
.ba-list { display: flex; flex-direction: column; gap: 14px; }
.ba-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.86rem; font-weight: 600; line-height: 1.4; }
.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(--dark); padding: 60px 0; }
.features-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; text-align: center; }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 44px;
}
.feature-card {
  background: hsl(215,18%,17%);
  border: 1px solid hsl(215,12%,24%);
  border-radius: 14px;
  padding: 24px 14px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.feature-icon-box {
  width: 54px; height: 54px;
  background: hsl(215,22%,12%);
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.feature-card h3 { color: #fff; font-size: 0.84rem; font-weight: 700; line-height: 1.3; }

/* ===== URGÊNCIA ===== */
.urgency-section { background: var(--dark); padding: 0 24px 64px; }
.urgency-card {
  max-width: 760px; margin: 0 auto;
  background: hsl(215,18%,16%);
  border: 1px solid hsl(215,12%,24%);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
}
.urgency-card h3 { color: #fff; font-size: clamp(1.2rem, 3vw, 1.6rem); font-weight: 800; line-height: 1.3; margin-top: 20px; }
.urgency-card h3 strong { color: var(--accent); }
.payment-trust { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 22px; }
.payment-trust span { color: hsl(215,10%,68%); font-size: 0.78rem; font-weight: 700; }

/* ===== DEPOIMENTOS ===== */
.testimonials-section { background: var(--light); padding: 60px 0; }
.test-track {
  display: flex; gap: 14px;
  animation: scroll-l 36s linear infinite;
  width: max-content;
}
.test-item { flex-shrink: 0; width: 250px; }
.test-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}
.test-card {
  background: #fff;
  border: 1px solid hsl(215,12%,90%);
  border-radius: 14px;
  padding: 22px 20px;
  height: 100%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.test-stars { color: #ffb703; font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; }
.test-card p { font-size: 0.86rem; color: hsl(215,14%,28%); font-style: italic; line-height: 1.5; margin-bottom: 14px; }
.test-name { font-size: 0.78rem; font-weight: 800; color: hsl(215,22%,16%); }

/* ===== DEPOIMENTOS WHATSAPP ===== */
.wpp-section { background: var(--light); padding: 56px 0; }
.wpp-track {
  display: flex; gap: 16px;
  animation: scroll-r 44s linear infinite;
  width: max-content;
}
.wpp-item { flex-shrink: 0; width: 270px; }
.wpp-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.14);
}

/* ===== ENTREGÁVEIS ===== */
.deliverables-section { background: var(--dark); padding: 60px 0; }
.deliverables-inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.deliverables-box {
  background: hsl(215,18%,16%);
  border: 1px solid hsl(215,12%,24%);
  border-radius: 20px;
  padding: 30px 26px;
  margin-top: 36px;
  position: relative;
}
.del-tag {
  background: var(--accent); color: hsl(215,22%,10%);
  font-size: 0.72rem; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center; padding: 9px; border-radius: 8px;
  margin-bottom: 24px;
}
.del-mockup { display: flex; justify-content: center; margin-bottom: 26px; }
.del-mockup-img { width: 100%; max-width: 560px; height: auto; display: block; border-radius: 14px; }
.del-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.del-item {
  display: flex; align-items: flex-start; gap: 11px;
  color: #e8edf2; font-size: 0.9rem; font-weight: 600; line-height: 1.4;
}
.bonus-bridge { text-align: center; margin-top: 44px; }
.bonus-bridge h3 { color: #fff; font-size: 1.4rem; font-weight: 900; text-transform: uppercase; line-height: 1.2; }
.bonus-bridge h3 strong { color: var(--accent); }
.bonus-bridge p { color: hsl(215,10%,72%); font-size: 0.9rem; margin: 12px 0 16px; }

/* ===== BÔNUS ===== */
.bonus-section { background: var(--light); padding: 60px 0; }
.bonus-inner { max-width: 980px; margin: 0 auto; padding: 0 24px; text-align: center; }
.bonus-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-top: 44px;
}
.bonus-card {
  background: #fff;
  border: 1px solid hsl(215,12%,90%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  text-align: left;
}
.bonus-card-img {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, var(--dark), hsl(215,22%,20%));
  display: flex; align-items: center; justify-content: center;
  font-size: 3.4rem;
}
.bonus-img { width: 100%; height: auto; display: block; }
.bonus-value-bar {
  font-size: 0.9rem; font-weight: 700; color: hsl(215,14%,30%);
  text-align: center; padding: 14px 16px;
  border-top: 1px solid hsl(215,12%,92%);
}
.bonus-value-bar .riscado { color: var(--danger); text-decoration: line-through; margin: 0 8px 0 4px; }
.bonus-value-bar .gratis  { color: var(--check); font-weight: 900; }
.bonus-card-body { padding: 20px 22px 24px; }
.bonus-num { font-size: 0.74rem; font-weight: 900; color: var(--danger); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.bonus-card-title { font-size: 1.05rem; font-weight: 800; color: hsl(215,22%,16%); margin-bottom: 10px; line-height: 1.25; }
.bonus-card-desc { font-size: 0.86rem; color: hsl(215,14%,38%); line-height: 1.5; margin-bottom: 16px; }
.bonus-value { font-size: 0.84rem; font-weight: 700; color: hsl(215,14%,30%); }
.bonus-value .riscado { color: var(--danger); text-decoration: line-through; margin: 0 8px 0 4px; }
.bonus-value .gratis  { color: var(--check); font-weight: 900; }

/* ===== PLANOS ===== */
.plans-section { background: var(--dark); padding: 56px 0 64px; }
.plans-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.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;
  text-transform: uppercase;
}
.plans-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
  margin-top: 36px;
  align-items: start;
}
.plans-grid-single {
  grid-template-columns: 1fr;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.plan-basic    { background: hsl(215,10%,95%); border-radius: 20px; padding: 28px 24px; }
.plan-complete { background: #fff; border: 2px solid var(--accent); border-radius: 20px; padding: 0 24px 28px; position: relative; overflow: hidden; }
.plan-name { font-size: 0.95rem; font-weight: 900; text-transform: uppercase; color: hsl(215,22%,18%); text-align: center; margin-bottom: 18px; letter-spacing: 0.5px; }

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

.plan-img { display: flex; justify-content: center; margin: 0 auto 18px; }
.plan-mockup-img { width: 100%; height: auto; display: block; border-radius: 14px; }
.plan-incl-label { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; color: hsl(215,14%,40%); letter-spacing: 0.5px; margin-bottom: 14px; }

.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: 9px 0;
  border-bottom: 1px solid hsl(215,10%,88%);
}
.plan-feat-item:last-child { border-bottom: none; }
.plan-feat-item.gift { font-weight: 700; }
.gift-icon { flex-shrink: 0; line-height: 1.4; }
.plan-feat-item.gift > span:last-child { flex: 1; }
.plan-feat-riscado { color: hsl(215,10%,60%); font-size: 0.82rem; gap: 6px; }

.plan-price-box { background: transparent; padding: 14px 0; text-align: center; margin-bottom: 18px; }
.price-from  { font-size: 0.82rem; color: var(--danger); font-weight: 700; text-decoration: line-through; display: block; margin-bottom: 4px; }
.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(0,0%,8%); font-weight: 800; display: block; margin-top: 6px; }
.price-save  { font-size: 0.88rem; font-weight: 700; color: var(--check); display: block; margin-top: 8px; }

.plan-cta {
  display: block; width: 100%;
  border: none; border-radius: 10px;
  padding: 16px 20px;
  font-family: inherit; font-weight: 900; font-size: 0.9rem;
  text-transform: uppercase; text-align: center; text-decoration: none;
  cursor: pointer; letter-spacing: 0.4px;
}
.plan-cta-basic    { background: hsl(215,12%,35%); color: #fff; }
.plan-cta-complete { background: var(--accent); color: hsl(215,22%,10%); animation: pulse-cta 1.4s ease-in-out infinite; }

.plan-urgency { text-align: center; color: var(--danger); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-top: 14px; line-height: 1.3; }
.plan-guarantee-label { text-align: center; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; margin-top: 16px; margin-bottom: 10px; color: hsl(215,22%,18%); }
.checkout-seal { text-align: center; font-size: 0.78rem; font-weight: 700; color: hsl(215,14%,38%); }

.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;
  line-height: 1.4;
}
.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); } }

/* Círculo animado */
.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); } }

/* ===== GARANTIA ===== */
.guarantee-section { background: var(--light); padding: 56px 0; }
.guarantee-inner {
  max-width: 760px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 28px;
}
.guarantee-seal {
  flex-shrink: 0;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--check), hsl(150,60%,30%));
  border: 4px dashed #fff;
  box-shadow: 0 0 0 4px var(--check);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
}
.guarantee-seal-num { font-size: 2.6rem; font-weight: 900; line-height: 1; }
.guarantee-seal-txt { font-size: 0.66rem; font-weight: 800; text-transform: uppercase; text-align: center; letter-spacing: 0.5px; margin-top: 2px; }
.guarantee-title { font-size: 1.35rem; font-weight: 900; color: hsl(215,22%,16%); margin-bottom: 12px; }
.guarantee-section p { font-size: 0.9rem; color: hsl(215,14%,32%); line-height: 1.5; margin-bottom: 8px; }
.guarantee-risk { color: var(--check); font-weight: 800; }

/* ===== FAQ ===== */
.faq-section { background: var(--dark); padding: 56px 0; }
.faq-inner { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.faq-inner .sec-title { text-align: center; margin-bottom: 36px; }
.faq-item { border-bottom: 1px solid hsl(215,12%,24%); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0;
  font-family: inherit; font-size: 0.95rem; font-weight: 700; color: #fff;
  text-align: left;
}
.faq-icon { color: var(--accent); font-size: 1.4rem; font-weight: 400; flex-shrink: 0; transition: transform 0.2s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  color: hsl(215,10%,72%); font-size: 0.88rem; line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-a.open { max-height: 320px; padding: 0 0 20px; }

/* ===== FOOTER ===== */
.site-footer { background: hsl(215,22%,8%); padding: 36px 24px; text-align: center; }
.footer-text { color: hsl(215,10%,55%); font-size: 0.74rem; line-height: 1.6; max-width: 640px; margin: 0 auto; }

/* ===== MODAIS ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.72);
  display: flex; align-items: flex-start; 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: 18px; padding: 32px 22px 24px;
  max-width: 460px; width: 100%; text-align: center;
  transform: translateY(20px); transition: transform .25s;
  margin: auto; overflow: hidden;
}
.modal-overlay.open .modal-card { transform: translateY(0); }
.modal-badge {
  background: var(--danger); color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .12em;
  padding: 6px 18px; border-radius: 50px;
  display: inline-block; margin-bottom: 16px; text-transform: uppercase;
}
.modal-badge-exit  { background: #b45309; }
.modal-card-exit   { border-top: 4px solid #b45309; }
.modal-title {
  font-size: 1.6rem; font-weight: 900; color: #111;
  line-height: 1.15; margin-bottom: 14px;
  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: 4px;
}
.modal-leve-texto { font-size: .9rem; font-weight: 600; color: #555; margin-bottom: 4px; }
.modal-leve-texto strong { color: #111; font-weight: 800; }
.modal-highlight-300 { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 14px; padding: 8px 0; }
.modal-num-300 { font-size: 4rem; font-weight: 900; color: var(--danger); line-height: 1; letter-spacing: -3px; }
.modal-label-300 { font-size: .8rem; font-weight: 700; color: #444; text-align: center; line-height: 1.3; max-width: 220px; text-transform: uppercase; letter-spacing: .04em; }
.modal-bonus-box { background: #fff8e1; border: 2px solid #facc15; border-radius: 12px; padding: 14px 16px; margin-bottom: 16px; text-align: left; }
.modal-bonus-title { font-size: .78rem; font-weight: 900; color: #92400e; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.modal-bonus-list { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.modal-bonus-list li { font-size: .8rem; color: #333; font-weight: 600; line-height: 1.3; }
.modal-desconto-faixa { background: var(--danger); color: #fff; font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; padding: 8px 14px; border-radius: 8px; margin-bottom: 10px; }
.modal-price-box { background: #f8f8f8; border-radius: 12px; padding: 16px 12px; margin-bottom: 22px; display: flex; flex-direction: column; gap: 4px; }
.modal-price-from { font-size: 1rem; font-weight: 800; color: var(--danger); text-decoration: line-through; }
.modal-price-main { font-size: 2.6rem; font-weight: 900; color: #16a34a; line-height: 1; }
@keyframes modal-cta-pulse {
  0%,100% { transform: scale(1);      box-shadow: 0 4px 18px rgba(34,197,94,.45); }
  50%      { transform: scale(1.045); box-shadow: 0 8px 28px rgba(34,197,94,.7);  }
}
.modal-btn-sim {
  display: block; background: linear-gradient(180deg,#22c55e 0%,#16a34a 100%);
  color: #fff; font-weight: 900; font-size: 1.05rem; letter-spacing: .06em;
  text-decoration: none; text-transform: uppercase; padding: 20px 24px;
  border-radius: 12px; margin-bottom: 14px; border-bottom: 4px solid #15803d;
  animation: modal-cta-pulse 1.6s ease-in-out infinite; line-height: 1.2;
}
.modal-btn-nao {
  background: none; border: none; cursor: pointer; color: #aaa;
  font-size: .8rem; text-decoration: underline; padding: 4px 8px;
  font-family: inherit; display: block; margin: 0 auto;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 860px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .plans-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .guarantee-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .ba-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.5rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .modal-card { padding: 18px 14px 16px; }
  .modal-title { font-size: 1.1rem; }
  .modal-num-300 { font-size: 2.8rem; }
  .modal-bonus-list { display: grid; grid-template-columns: 1fr 1fr; gap: 3px 6px; }
  .modal-btn-sim { font-size: .82rem; padding: 14px 14px; }
  .btn-cta { padding: 15px 26px; font-size: 0.85rem; }

  /* Menos aperto lateral no mobile */
  .deliverables-inner { padding: 0 14px; }
  .deliverables-box { padding: 22px 16px; }
  .del-item { font-size: 0.88rem; gap: 9px; }
  .plan-complete { padding-left: 16px; padding-right: 16px; }
  .plan-badge-danger { width: calc(100% + 32px); margin-left: -16px; }
  .plan-feat-item { font-size: 0.86rem; }
  .bonus-inner { padding: 0 14px; }
}
