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

:root {
  --dark:        hsl(150, 28%, 10%);
  --card-dark:   hsl(150, 20%, 16%);
  --light:       hsl(40, 35%, 97%);
  --accent:      #A8D24C;
  --cta:         #39B574;
  --cta-rgb:     57, 181, 116;
  --check:       #3F8F4F;
  --danger:      hsl(6, 78%, 52%);
}

html { scroll-behavior: smooth; }

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

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

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
}
.badge-danger  { background: hsl(6, 75%, 95%); color: var(--danger); border: 1px solid hsl(6,72%,80%); }
.badge-accent  { background: hsl(88, 55%, 92%); color: hsl(100, 45%, 26%); border: 1px solid hsl(88,50%,68%); }
.badge-colecao { background: var(--accent); color: hsl(150,28%,10%); }

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

/* ===== Section titles ===== */
.sec-title       { font-size: clamp(1.3rem, 4vw, 1.9rem); font-weight: 900; 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(150,14%,38%); text-align: center; max-width: 620px; margin: 14px auto 0; font-size: 0.95rem; }
.sec-sub strong  { color: var(--check); }
.sec-sub-light   { color: hsl(150,10%,72%); text-align: center; max-width: 620px; margin: 14px auto 0; font-size: 0.95rem; }

/* ===== Image placeholders ==========================================
   TROCAR POR FOTO REAL: salve o arquivo com o nome indicado em data-img
   dentro de /images/. A foto entra automaticamente por cima do gradiente
   (ver images/README.txt para a lista completa de nomes esperados). */
.img-placeholder {
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: cover, cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 247, 240, 0.85);
}
.ph-icon { opacity: 0.9; }
.ph-hero {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  background-image: url('../images/mockup-principal.webp'), linear-gradient(135deg, hsl(90,35%,45%), var(--dark));
}
.ph-carousel {
  width: 100%; height: 100%; min-height: 160px;
  background-image: var(--bg, none), linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%));
}
/* Faixa 1 (track1): img1..img10, cada uma 2x na marcação (loop de 20 itens) */
.carousel-item:nth-child(10n+1) .ph-carousel { background-image: url('../images/img1.webp'),  linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
.carousel-item:nth-child(10n+2) .ph-carousel { background-image: url('../images/img2.webp'),  linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
.carousel-item:nth-child(10n+3) .ph-carousel { background-image: url('../images/img3.webp'),  linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
.carousel-item:nth-child(10n+4) .ph-carousel { background-image: url('../images/img4.webp'),  linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
.carousel-item:nth-child(10n+5) .ph-carousel { background-image: url('../images/img5.webp'),  linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
.carousel-item:nth-child(10n+6) .ph-carousel { background-image: url('../images/img6.webp'),  linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
.carousel-item:nth-child(10n+7) .ph-carousel { background-image: url('../images/img7.webp'),  linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
.carousel-item:nth-child(10n+8) .ph-carousel { background-image: url('../images/img8.webp'),  linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
.carousel-item:nth-child(10n+9) .ph-carousel { background-image: url('../images/img9.webp'),  linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
.carousel-item:nth-child(10n+0) .ph-carousel { background-image: url('../images/img10.webp'), linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }

/* Faixa 2 (track2): img11..img20, mesma lógica, sentido contrário */
#track2 .carousel-item:nth-child(10n+1) .ph-carousel { background-image: url('../images/img11.webp'), linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
#track2 .carousel-item:nth-child(10n+2) .ph-carousel { background-image: url('../images/img12.webp'), linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
#track2 .carousel-item:nth-child(10n+3) .ph-carousel { background-image: url('../images/img13.webp'), linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
#track2 .carousel-item:nth-child(10n+4) .ph-carousel { background-image: url('../images/img14.webp'), linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
#track2 .carousel-item:nth-child(10n+5) .ph-carousel { background-image: url('../images/img15.webp'), linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
#track2 .carousel-item:nth-child(10n+6) .ph-carousel { background-image: url('../images/img16.webp'), linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
#track2 .carousel-item:nth-child(10n+7) .ph-carousel { background-image: url('../images/img17.webp'), linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
#track2 .carousel-item:nth-child(10n+8) .ph-carousel { background-image: url('../images/img18.webp'), linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
#track2 .carousel-item:nth-child(10n+9) .ph-carousel { background-image: url('../images/img19.webp'), linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
#track2 .carousel-item:nth-child(10n+0) .ph-carousel { background-image: url('../images/img20.webp'), linear-gradient(135deg, hsl(90,35%,42%), hsl(150,28%,18%)); }
.ph-urgency {
  width: 100%; aspect-ratio: 4/3; border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
  background-image: url('../images/mockup-principal.webp'), linear-gradient(135deg, hsl(90,35%,40%), var(--dark));
}
.ph-test {
  width: 100%; height: 100%; min-height: 180px; border-radius: 12px;
  background-image: var(--bg, none), linear-gradient(135deg, hsl(150,20%,24%), hsl(150,28%,14%));
}
.test-item:nth-child(7n+1) .ph-test { background-image: url('../images/dep1.webp'), linear-gradient(135deg, hsl(150,20%,24%), hsl(150,28%,14%)); }
.test-item:nth-child(7n+2) .ph-test { background-image: url('../images/dep2.webp'), linear-gradient(135deg, hsl(150,20%,24%), hsl(150,28%,14%)); }
.test-item:nth-child(7n+3) .ph-test { background-image: url('../images/dep3.webp'), linear-gradient(135deg, hsl(150,20%,24%), hsl(150,28%,14%)); }
.test-item:nth-child(7n+4) .ph-test { background-image: url('../images/dep4.webp'), linear-gradient(135deg, hsl(150,20%,24%), hsl(150,28%,14%)); }
.test-item:nth-child(7n+5) .ph-test { background-image: url('../images/dep5.webp'), linear-gradient(135deg, hsl(150,20%,24%), hsl(150,28%,14%)); }
.test-item:nth-child(7n+6) .ph-test { background-image: url('../images/dep6.webp'), linear-gradient(135deg, hsl(150,20%,24%), hsl(150,28%,14%)); }
.test-item:nth-child(7n+0) .ph-test { background-image: url('../images/dep7.webp'), linear-gradient(135deg, hsl(150,20%,24%), hsl(150,28%,14%)); }
.ph-del {
  width: 100%; max-width: 300px; aspect-ratio: 1/1; margin: 0 auto 24px; border-radius: 10px;
  background-image: url('../images/demonstrativo.webp'), linear-gradient(135deg, hsl(90,35%,42%), var(--dark));
}
.ph-bonus {
  width: 100%; aspect-ratio: 1/1;
  background-image: var(--bg, none), linear-gradient(135deg, hsl(90,35%,45%), hsl(150,28%,20%));
}
.bonus-card:nth-of-type(1) .ph-bonus { background-image: url('../images/bonus1.webp'), linear-gradient(135deg, hsl(90,35%,45%), hsl(150,28%,20%)); }
.bonus-card:nth-of-type(2) .ph-bonus { background-image: url('../images/bonus2.webp'), linear-gradient(135deg, hsl(90,35%,45%), hsl(150,28%,20%)); }
.bonus-card:nth-of-type(3) .ph-bonus { background-image: url('../images/bonus3.webp'), linear-gradient(135deg, hsl(90,35%,45%), hsl(150,28%,20%)); }
.bonus-card:nth-of-type(4) .ph-bonus { background-image: url('../images/bonus4.webp'), linear-gradient(135deg, hsl(90,35%,45%), hsl(150,28%,20%)); }
.ph-plan {
  width: 100%; max-width: 320px; aspect-ratio: 4/3; margin: 0 auto 18px; border-radius: 8px;
  background-image: var(--bg, none), linear-gradient(135deg, hsl(90,30%,60%), hsl(150,25%,30%));
}
.plan-basic .ph-plan { max-width: 220px; aspect-ratio: 1414/2000; background-image: url('../images/mockup-basico.png'), linear-gradient(135deg, hsl(90,20%,70%), hsl(150,15%,45%)); }
.plan-complete .ph-plan { background-image: url('../images/mockup-completo.webp'), linear-gradient(135deg, hsl(90,30%,55%), hsl(150,28%,22%)); }
.ph-guarantee {
  width: 130px; aspect-ratio: 1/1; border-radius: 50%; flex-shrink: 0;
  background-image: url('../images/garantia-15-dias.webp'), linear-gradient(135deg, var(--check), hsl(150,40%,20%));
  color: #fff;
}

/* ===== Hero ===== */
.hero { background: var(--dark); color: #fff; padding: 40px 24px 48px; }
.hero-inner { max-width: 820px; margin: 0 auto; text-align: center; }

.hero-bullet {
  display: inline-block;
  background: hsl(150,10%,20%);
  color: hsl(90, 60%, 72%);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title { font-size: clamp(1.65rem, 4.5vw, 2.4rem); font-weight: 900; text-transform: uppercase; line-height: 1.25; }
.hero-title-note { font-size: clamp(1.1rem, 2.6vw, 1.35rem); font-weight: 600; font-style: italic; text-transform: none; color: hsl(150,10%,78%); margin-top: 16px; }
.hero-title .accent { color: var(--accent); }
.hero-underline { text-decoration: underline; text-decoration-color: #fff; text-underline-offset: 4px; }
.underline-red { text-decoration: underline; text-decoration-color: var(--danger); text-decoration-thickness: 3px; text-underline-offset: 5px; }

.hero-mockup { margin: 28px auto; max-width: 480px; }

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

.hero-sub { font-size: 0.98rem; color: hsl(150,10%,80%); max-width: 620px; margin: 0 auto 28px; }
.hero-sub strong { color: #fff; }

.hero-delivery { margin-bottom: 8px; }
.hero-delivery-text { font-size: 0.82rem; color: hsl(150,10%,65%); 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: hsl(150,10%,18%);
  border: 1px solid hsl(150,10%,28%);
  color: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
}
.delivery-chip svg { width: 18px; height: 18px; flex-shrink: 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.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  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(var(--cta-rgb),0.30); }
  50%       { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(var(--cta-rgb),0.50); }
}

/* ===== Carousel ===== */
.carousel-section { background: var(--dark); padding: 40px 0 48px; }
.carousel-wrap { overflow: hidden; position: relative; }
.carousel-track { display: flex; gap: 14px; animation: scroll-l 35s linear infinite; width: max-content; cursor: grab; }
.carousel-track.reverse { animation: scroll-r 40s linear infinite; }
.carousel-item { flex-shrink: 0; width: 200px; height: 283px; border-radius: 10px; overflow: hidden; }

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

/* ===== Catálogo ===== */
.catalog-section { background: var(--dark); padding: 0 24px 56px; }
.catalog-inner { max-width: 880px; margin: 0 auto; }

.catalog-toggle-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card-dark);
  color: #fff;
  border: 1px solid hsl(150,10%,30%);
  border-radius: 50px;
  padding: 13px 26px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
}
.catalog-toggle-icon { font-size: 0.85rem; transition: transform 0.3s ease; }
.catalog-toggle-btn.open .catalog-toggle-icon { transform: rotate(180deg); }

.catalog-grid-wrap { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.catalog-grid-wrap.open { max-height: 2600px; }

.catalog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 20px; margin-top: 28px; }
.catalog-item { display: flex; align-items: flex-start; gap: 10px; background: var(--card-dark); border-radius: 12px; padding: 14px 16px; }
.catalog-item strong { display: block; color: #fff; font-size: 0.86rem; font-weight: 700; }
.catalog-cap { display: block; color: hsl(150,10%,65%); font-size: 0.76rem; margin-top: 2px; }
.catalog-tag {
  display: inline-block; margin-top: 8px;
  font-size: 0.6rem; font-weight: 900; letter-spacing: 0.05em; text-transform: uppercase;
  color: hsl(150,28%,10%); background: var(--accent);
  padding: 3px 8px; border-radius: 5px;
}

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

/* ===== Before/After ===== */
.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.3rem,4vw,1.9rem); font-weight: 900; text-transform: uppercase; margin-bottom: 36px; line-height: 1.3; }
.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; background: #fff; box-shadow: 0 10px 28px rgba(20,50,30,0.07); }
.ba-card-no  { border-top: 4px solid var(--danger); }
.ba-card-yes { border-top: 4px solid var(--check); }
.ba-label { font-weight: 900; font-size: 1.02rem; margin-bottom: 18px; text-transform: uppercase; }
.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.88rem; font-weight: 600; color: hsl(150,14%,25%); }
.ba-dot { flex-shrink: 0; width: 22px; height: 22px; 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); }

/* ===== 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: 18px; margin-top: 36px; }
.feature-card { background: var(--card-dark); border-radius: 16px; padding: 24px 16px; text-align: center; }
.feature-icon-box {
  width: 52px; height: 52px; margin: 0 auto 14px;
  border-radius: 14px;
  background: linear-gradient(145deg, hsl(90,55%,28%), hsl(150,50%,18%));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.feature-card h3 { color: #fff; font-size: 0.85rem; font-weight: 700; line-height: 1.4; }

.mosaic-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 820px; margin: 36px auto 0; }
.ph-mosaic { aspect-ratio: 1/1; border-radius: 16px; box-shadow: 0 10px 28px rgba(0,0,0,0.3); }
.ph-mosaic-1 { background-image: url('../images/mosaico-1.webp'), linear-gradient(135deg, hsl(90,35%,45%), hsl(150,28%,20%)); }
.ph-mosaic-2 { background-image: url('../images/mosaico-2.webp'), linear-gradient(135deg, hsl(90,35%,45%), hsl(150,28%,20%)); }
@media (max-width: 560px) { .mosaic-grid { grid-template-columns: 1fr; } }

/* ===== Urgency ===== */
.urgency-section { background: var(--dark); padding: 0 24px 48px; }
.urgency-card {
  max-width: 900px; margin: 0 auto;
  background: var(--card-dark);
  border-top: 4px solid var(--danger);
  border-radius: 18px;
  padding: 32px 26px;
  box-shadow: 0 14px 36px rgba(180,20,20,0.10);
  display: flex; align-items: center; gap: 32px;
}
.urgency-media { flex-shrink: 0; width: 300px; }
.urgency-content { flex: 1; text-align: center; }
.urgency-card h3 { color: #fff; font-size: 1.2rem; font-weight: 700; margin-top: 16px; line-height: 1.4; }
.urgency-card h3 strong { color: var(--accent); }
.payment-trust { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 20px; font-size: 0.76rem; color: hsl(150,10%,65%); font-weight: 700; }

@media (max-width: 640px) {
  .urgency-card { flex-direction: column; text-align: center; }
  .urgency-media { width: 100%; max-width: 280px; }
}

/* ===== Testimonials ===== */
.testimonials-section { background: var(--dark); padding: 0 24px 20px; }
.test-track { display: flex; gap: 14px; animation: scroll-l 32s linear infinite; width: max-content; cursor: grab; }
.test-item { flex-shrink: 0; width: 260px; height: 462px; border-radius: 12px; overflow: hidden; }

/* ===== Deliverables ===== */
.deliverables-section { background: var(--dark); padding: 48px 24px; }
.deliverables-inner { max-width: 720px; margin: 0 auto; }
.deliverables-box { background: var(--card-dark); border-radius: 20px; padding: 28px 24px; margin-top: 30px; text-align: center; }
.del-tag {
  display: inline-block; background: hsl(90,55%,20%); color: var(--accent);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 50px; margin-bottom: 20px;
}
.del-list { display: flex; flex-direction: column; gap: 14px; text-align: left; max-width: 460px; margin: 0 auto; }
.del-item { display: flex; align-items: flex-start; gap: 10px; color: #fff; font-size: 0.9rem; font-weight: 600; }

.check-circle { color: #3F8F4F; width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

.bonus-bridge { text-align: center; margin-top: 44px; }
.bonus-bridge h3 { color: #fff; font-size: 1.3rem; font-weight: 900; text-transform: uppercase; line-height: 1.3; }
.bonus-bridge h3 strong { color: var(--accent); }
.bonus-bridge p { color: hsl(150,10%,70%); margin: 14px 0 18px; font-size: 0.92rem; }

/* ===== Bonus ===== */
.bonus-section { background: var(--dark); padding: 0 24px 56px; }
.bonus-inner { max-width: 960px; margin: 0 auto; }
.bonus-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.bonus-card { position: relative; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 10px 28px rgba(0,0,0,0.25); }
.bonus-badge-today {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--danger); color: #fff;
  font-size: 0.62rem; font-weight: 900; letter-spacing: 0.03em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 6px; box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.bonus-card-body { padding: 18px 16px; }
.bonus-num { font-size: 0.7rem; font-weight: 900; color: var(--check); letter-spacing: 0.06em; margin-bottom: 6px; text-transform: uppercase; }
.bonus-card-title { font-size: 0.98rem; font-weight: 800; color: hsl(150,20%,16%); margin-bottom: 8px; }
.bonus-card-desc { font-size: 0.82rem; color: hsl(150,14%,42%); margin-bottom: 14px; line-height: 1.5; }
.bonus-value { font-size: 0.82rem; font-weight: 700; }
.bonus-value .riscado { color: var(--danger); text-decoration: line-through; margin-right: 8px; }
.bonus-value .gratis  { color: var(--check); font-weight: 900; }

/* ===== Plans ===== */
.plans-section { background: var(--dark); 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: 24px; margin-top: 32px; align-items: start; }

.plan-basic    { background: hsl(150,10%,95%); border: none; border-radius: 20px; padding: 28px 24px; }
.plan-complete { background: #fff; border: 2px solid var(--accent); border-radius: 20px; padding: 28px 24px; position: relative; }

.plan-badge-top    { display: block; width: 100%; background: var(--accent); color: hsl(150,28%,10%); 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-name { font-size: 0.78rem; font-weight: 900; letter-spacing: 0.08em; text-align: center; color: hsl(150,14%,40%); margin-bottom: 16px; text-transform: uppercase; }

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

.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(150,14%,22%); padding-bottom: 9px; border-bottom: 1px solid hsl(150,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(150,14%,22%) !important; font-weight: 700; }
.plan-feat-riscado { color: hsl(150,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: #3F8F4F; display: block; line-height: 1; }
.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: #3F8F4F; margin-top: 4px; }

.plan-cta { display: block; width: 100%; text-align: center; border-radius: 10px; padding: 16px; font-weight: 900; font-size: 0.88rem; letter-spacing: 0.02em; text-transform: uppercase; border: none; cursor: pointer; }
.plan-cta-basic    { background: hsl(150,12%,35%); color: #fff; }
.plan-cta-complete { background: var(--cta); color: #fff; 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; }
.plan-guarantee-label  { text-align: center; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; margin-top: 16px; margin-bottom: 4px; }

.plan-popular-note {
  text-align: center; margin-top: 18px;
  font-size: 0.82rem; color: #DD2C2C; font-weight: 700;
  background: hsl(6,80%,96%); border: 2.5px solid hsl(6,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); } }

/* ===== Guarantee ===== */
.guarantee-section { background: var(--light); padding: 48px 24px; }
.guarantee-inner {
  max-width: 760px; margin: 0 auto;
  display: flex; align-items: center; gap: 32px;
  background: #fff; border-radius: 20px; padding: 34px 30px;
  box-shadow: 0 10px 28px rgba(20,50,30,0.07);
}
.guarantee-title { font-size: 1.2rem; font-weight: 900; margin-bottom: 12px; text-transform: uppercase; }
.guarantee-inner p { font-size: 0.9rem; color: hsl(150,14%,35%); margin-bottom: 8px; line-height: 1.6; }
.guarantee-risk { color: var(--check); font-weight: 800; }

/* ===== FAQ ===== */
.faq-section { background: var(--dark); padding: 48px 24px; }
.faq-inner { max-width: 700px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid hsl(150,10%,25%); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 4px; color: #fff; font-size: 0.92rem; font-weight: 700; text-align: left;
  font-family: 'Montserrat', sans-serif;
}
.faq-icon { color: var(--accent); font-size: 1.3rem; font-weight: 900; flex-shrink: 0; margin-left: 14px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: hsl(150,10%,72%); font-size: 0.86rem; line-height: 1.6; padding: 0 4px; }
.faq-a.open { max-height: 300px; padding: 0 4px 20px; }

/* ===== Footer ===== */
.site-footer { background: var(--dark); padding: 32px 24px; }
.footer-text { max-width: 700px; margin: 0 auto; text-align: center; font-size: 0.72rem; color: hsl(150,10%,50%); line-height: 1.7; }

/* ===== Modals ===== */
.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(63,143,79,.5); }
  50%       { transform: scale(1.045); box-shadow: 0 8px 28px rgba(63,143,79,.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 #237a52;
  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 {
  display: block; background: #fff;
  border: 2px solid hsl(150,10%,72%);
  color: hsl(150,14%,30%);
  cursor: pointer; font-size: .74rem; font-weight: 800;
  text-decoration: none; padding: 9px 16px; border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  margin: 0 auto; text-align: center;
}

/* ===== Responsive ===== */
@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; }
}

@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; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feature-card { padding: 18px 10px; }
}
