/* =============================================
   DESIGN SYSTEM
   ============================================= */
: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%);
}

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

html { scroll-behavior: smooth; }

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

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

/* =============================================
   TIPOGRAFIA UTILITÁRIA
   ============================================= */
.sec-title {
  font-size: clamp(1.3rem, 3.5vw, 1.9rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.2;
}
.sec-title-light { color: #fff; }
.highlight-lime   { color: var(--accent); }
.highlight-green  { color: var(--check); }
.sec-sub          { color: hsl(215, 14%, 38%); font-size: .95rem; line-height: 1.6; }
.sec-sub strong   { color: var(--check); }
.sec-sub-light    { color: hsl(215, 10%, 72%); font-size: .93rem; }

/* =============================================
   BADGE
   ============================================= */
.badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 6px 16px;
}
.badge-danger  { background: var(--danger); color: #fff; }
.badge-accent  { background: var(--accent); color: hsl(215, 22%, 10%); }
.badge-colecao { background: hsl(215, 22%, 20%); color: var(--accent); border: 1px solid var(--accent); }

/* =============================================
   CTA BUTTON
   ============================================= */
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: hsl(215, 22%, 10%);
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(.85rem, 2.2vw, 1rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 18px 40px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  animation: pulse-cta 1.4s ease-in-out infinite;
  line-height: 1.2;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Shine effect on CTA button */
.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  transition: none;
  animation: shine 3s infinite ease-in-out;
}

@keyframes shine {
  0% { left: -70%; }
  15%, 100% { left: 120%; }
}

@keyframes pulse-cta {
  0%, 100% { transform: translateY(0) scale(1);    box-shadow: 0 4px 16px rgba(171,255,46,.25); }
  50%       { transform: translateY(-6px) scale(1.02); box-shadow: 0 12px 28px rgba(171,255,46,.45); }
}

/* =============================================
   CHECK CIRCLE
   ============================================= */
.check-circle {
  color: #1FAD6B;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--dark);
  padding: 20px 24px 48px;
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero-bullet {
  display: inline-block;
  background: #8CEE7A;
  color: #000;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
  line-height: 1.4;
}
.hero-title {
  font-size: clamp(1.65rem, 4.5vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 22px;
}
.accent { color: var(--accent); }
.hero-underline {
  text-decoration: underline;
  text-decoration-color: #fff;
  text-underline-offset: 5px;
}
.hero-mockup {
  margin: 0 auto 22px;
  max-width: 560px;
}
.hero-mockup img { width: 100%; border-radius: 12px; }
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.pill {
  background: hsl(215, 10%, 20%);
  color: hsl(215, 10%, 65%);
  font-size: .78rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
}
.hero-sub {
  color: hsl(215, 10%, 72%);
  font-size: clamp(.9rem, 2.2vw, 1.05rem);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 24px;
}
.hero-sub strong { color: #fff; }
.hero-bullets-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero-bullet-item {
  background: hsl(215, 10%, 20%);
  color: hsl(215, 10%, 65%);
  font-size: .78rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
}
.hero-delivery { text-align: center; }
.hero-delivery-text {
  color: hsl(215, 10%, 55%);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  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: hsl(215, 12%, 18%);
  border: 1px solid hsl(215, 10%, 28%);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
}

/* =============================================
   CARROSSEL
   ============================================= */
.carousel-section {
  background: var(--dark);
  padding: 40px 0 48px;
}
.carousel-wrap {
  overflow: hidden;
  position: relative;
  padding: 8px 0;
}
.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;
  height: 356px; /* Proporção 9:16 */
  border-radius: 10px;
  overflow: hidden;
}
.carousel-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

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

/* =============================================
   ANTES E DEPOIS
   ============================================= */
.before-after-section {
  background: var(--light);
  padding: 48px 24px;
}
.ba-inner { max-width: 860px; margin: 0 auto; }
.ba-title {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.3;
  color: hsl(215, 22%, 14%);
}
.hl-red   { color: var(--danger); }
.hl-green { color: var(--check); }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-card {
  border-radius: 14px;
  padding: 24px 20px;
}
.ba-card-no  { background: hsl(0, 50%, 97%); border: 1.5px solid hsl(0, 50%, 88%); }
.ba-card-yes { background: hsl(140, 50%, 96%); border: 1.5px solid hsl(140, 45%, 82%); }
.ba-label {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.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: .85rem;
  font-weight: 600;
  color: hsl(215, 14%, 22%);
  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: .65rem;
  font-weight: 900;
  margin-top: 1px;
}
.ba-dot-no  { background: hsl(0, 70%, 90%); color: var(--danger); }
.ba-dot-yes { background: hsl(140, 55%, 88%); color: var(--check); }

/* =============================================
   FEATURES
   ============================================= */
.features-section {
  background: var(--dark);
  padding: 48px 24px;
}
.features-inner { max-width: 860px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr 1fr; } }
.feature-card {
  background: var(--card-dark);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  border: 1px solid hsl(215, 15%, 22%);
}
.feature-icon-box {
  font-size: 2rem;
  margin-bottom: 12px;
}
.feature-card h3 {
  font-size: .78rem;
  font-weight: 700;
  color: hsl(215, 10%, 75%);
  line-height: 1.4;
}

/* =============================================
   URGÊNCIA
   ============================================= */
.urgency-section {
  background: var(--dark);
  padding: 0 24px 48px;
}
.urgency-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--card-dark);
  border: 1px solid hsl(215, 15%, 25%);
  border-radius: 16px;
  padding: 44px 36px;
  text-align: center;
}
.urgency-card h3 {
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  margin-top: 20px;
  line-height: 1.35;
}
.urgency-card h3 strong { color: var(--accent); }
.urgency-sub {
  color: hsl(215, 10%, 65%);
  font-size: .93rem;
  line-height: 1.65;
  margin-top: 14px;
}
.payment-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.payment-trust span {
  font-size: .72rem;
  font-weight: 700;
  color: hsl(215, 10%, 55%);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* =============================================
   DEPOIMENTOS
   ============================================= */
.testimonials-section {
  background: var(--dark);
  padding: 48px 0;
}
.testimonials-carousel-section { padding-top: 20px; padding-bottom: 48px; }
.test-track {
  display: flex;
  gap: 14px;
  animation: scroll-l 28s linear infinite;
  width: max-content;
}
.test-track.reverse {
  animation: scroll-r 28s linear infinite;
}
.test-item {
  flex-shrink: 0;
  width: 260px;
  border-radius: 12px;
  overflow: hidden;
}
.test-item img { width: 100%; height: auto; display: block; }
.dep-cascade {
  columns: 3;
  column-gap: 12px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.dep-cascade img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-bottom: 12px;
  break-inside: avoid;
}
@media (max-width: 640px) {
  .dep-cascade { columns: 2; }
}

/* =============================================
   ENTREGÁVEIS
   ============================================= */
.deliverables-section {
  background: var(--dark);
  padding: 48px 24px;
}
.deliverables-inner { max-width: 680px; margin: 0 auto; }
.deliverables-box {
  background: var(--card-dark);
  border: 1px solid hsl(215, 15%, 25%);
  border-radius: 16px;
  padding: 28px 24px;
  margin-top: 24px;
}
.del-tag {
  background: hsl(45, 80%, 20%);
  color: hsl(45, 80%, 75%);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 24px;
}
.del-mockup {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 28px;
  border-radius: 10px;
}
.del-list { display: flex; flex-direction: column; gap: 12px; }
.del-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  font-weight: 600;
  color: hsl(215, 10%, 75%);
  line-height: 1.4;
}
.bonus-bridge {
  text-align: center;
  margin-top: 36px;
}
.bonus-bridge h3 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 14px;
}
.bonus-bridge h3 strong { color: var(--accent); }
.bonus-bridge p {
  color: hsl(215, 10%, 65%);
  font-size: .92rem;
  margin-bottom: 16px;
}

/* =============================================
   BÔNUS
   ============================================= */
.bonus-section {
  background: var(--dark);
  padding: 0 24px 56px;
}
.bonus-inner { max-width: 900px; margin: 0 auto; }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }
  .bonus-grid .bonus-card {
    grid-column: span 1 !important;
  }
}
.bonus-card {
  background: var(--card-dark);
  border: 1px solid hsl(215, 15%, 25%);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bonus-card-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  display: block;
  margin-top: 15px;
}
.bonus-img-small {
  max-width: 60% !important;
  margin: 15px auto 0 !important;
  display: block !important;
}
.bonus-card-body { padding: 20px 18px 22px; flex: 1; display: flex; flex-direction: column; }
.bonus-num {
  font-size: .68rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bonus-card-title {
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 6px;
}
.bonus-card-desc {
  font-size: .82rem;
  color: hsl(215, 10%, 62%);
  line-height: 1.55;
  margin-bottom: 10px;
}
.bonus-value {
  font-size: .8rem;
  font-weight: 700;
  color: hsl(215, 10%, 60%);
  margin-top: auto;
}
.riscado {
  text-decoration: line-through;
  color: var(--danger);
  margin-right: 6px;
}
.gratis {
  background: var(--check);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* =============================================
   FAIXA URGÊNCIA
   ============================================= */
.urgency-strip {
  background: var(--danger);
  color: #fff;
  text-align: center;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.urgency-strip .urgency-text {
  font-size: clamp(.8rem, 2.5vw, 1rem);
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.urgency-strip .urgency-icon { font-size: 1.2rem; }

/* =============================================
   PLANOS
   ============================================= */
.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: .82rem;
  font-weight: 900;
  text-align: center;
  padding: 14px 24px;
  border-radius: 10px;
  margin-bottom: 24px;
}
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  margin-top: 36px;
  align-items: start;
}
@media (max-width: 700px) { .plans-grid { grid-template-columns: 1fr; } }

/* Plano Básico */
.plan-basic {
  background: hsl(215, 10%, 95%);
  border-radius: 20px;
  padding: 28px 22px;
}
.plan-name {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: hsl(215, 14%, 40%);
  margin-bottom: 16px;
  text-align: center;
}

/* Plano Completo */
.plan-complete {
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 0 22px 28px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.plan-complete:hover {
  transform: translateY(-8px);
}
.plan-badge-top {
  display: block;
  width: calc(100% + 44px);
  margin-left: -22px;
  background: var(--accent);
  color: hsl(215, 22%, 12%);
  font-size: .7rem;
  font-weight: 900;
  text-align: center;
  padding: 10px 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.plan-badge-danger {
  display: block;
  width: calc(100% + 44px);
  margin-left: -22px;
  background: var(--danger);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  text-align: center;
  padding: 10px 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.plan-img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 18px;
  border-radius: 10px;
  display: block;
}
.plan-basic .plan-img { max-width: 260px; }
.plan-incl-label {
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: hsl(215, 14%, 45%);
  margin-bottom: 12px;
}
.plan-complete .plan-incl-label { color: hsl(215, 14%, 40%); }
.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: .83rem;
  font-weight: 600;
  color: hsl(215, 14%, 22%);
  padding: 9px 0;
  border-bottom: 1px solid hsl(215, 10%, 88%);
  line-height: 1.35;
}
.plan-feat-item:last-child { border-bottom: none; padding-bottom: 0; }
.plan-feat-item.gift { font-weight: 700; color: hsl(215, 14%, 18%); }
.plan-feat-riscado {
  color: hsl(215, 10%, 60%);
  font-size: .8rem;
  gap: 6px;
  font-weight: 500;
}

/* Preços */
.plan-price-box {
  background: transparent;
  padding: 14px 0;
  text-align: center;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.price-from  { font-size: .82rem; color: var(--danger); font-weight: 700; text-decoration: line-through; }
.price-main  { font-size: 2.8rem; font-weight: 900; color: #1FAD6B; line-height: 1; }
.price-inst  { font-size: .82rem; color: hsl(0, 0%, 8%); font-weight: 800; }
.price-save  { font-size: .85rem; font-weight: 700; color: #1FAD6B; }

/* Círculo animado */
.price-circle-wrap {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  margin: 4px 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: .3s; }
@keyframes drawCircle { to { stroke-dashoffset: 0; } }
@keyframes wobble-circle {
  0%   { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1.06,.96) rotate(2deg); }
}

/* CTAs dos planos */
.plan-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 20px;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor: pointer;
  border: none;
}
.plan-cta-basic {
  background: hsl(215, 12%, 35%);
  color: #fff;
  animation: none;
  transform: none;
  box-shadow: none;
}
.plan-cta-complete {
  background: var(--accent);
  color: hsl(215, 22%, 10%);
  animation: pulse-cta 1.4s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(171,255,46,.25);
  position: relative;
  overflow: hidden;
}

/* Shine effect on Complete Plan CTA */
.plan-cta-complete::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(30deg);
  transition: none;
  animation: shine 3s infinite ease-in-out;
}

/* Urgência e selos */
.plan-urgency {
  text-align: center;
  color: var(--danger);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 14px;
}
.plan-guarantee-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: hsl(215, 14%, 30%);
  margin-top: 16px;
  margin-bottom: 6px;
}
.hotmart-seal {
  display: block;
  margin: 0 auto;
  max-width: 160px;
  height: auto;
}

/* Caixa 92% */
.plan-popular-note {
  text-align: center;
  margin-top: 18px;
  font-size: .82rem;
  color: #DD2C2C;
  font-weight: 700;
  background: hsl(0, 80%, 96%);
  border: 2px solid hsl(0, 72%, 80%);
  border-radius: 10px;
  padding: 12px 16px 14px;
  line-height: 1.5;
}
.arrow-down {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  animation: bounce-arrow .7s ease-in-out infinite alternate;
}
@keyframes bounce-arrow {
  0%   { transform: translateY(0); }
  100% { transform: translateY(8px); }
}

/* =============================================
   GARANTIA
   ============================================= */
.guarantee-section {
  background: var(--light);
  padding: 48px 24px;
}
.guarantee-inner {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 36px;
  background: #fff;
  border: 1.5px solid hsl(215, 10%, 88%);
  border-radius: 18px;
  padding: 40px 36px;
}
@media (max-width: 600px) {
  .guarantee-inner { flex-direction: column; align-items: center; text-align: center; padding: 32px 22px; gap: 24px; }
}
.guarantee-seal {
  width: 130px;
  height: auto;
  flex-shrink: 0;
}
.guarantee-title {
  font-size: clamp(1.1rem, 2.8vw, 1.5rem);
  font-weight: 800;
  color: hsl(215, 22%, 14%);
  margin-bottom: 14px;
  line-height: 1.3;
}
.guarantee-inner p {
  font-size: .9rem;
  color: hsl(215, 14%, 35%);
  line-height: 1.65;
  margin-bottom: 10px;
}
.guarantee-inner p strong { color: hsl(215, 22%, 14%); }
.guarantee-risk {
  font-weight: 800;
  color: var(--check);
  font-size: .92rem;
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  background: var(--dark);
  padding: 48px 24px 56px;
}
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid hsl(215, 15%, 22%);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: hsl(215, 10%, 78%);
  text-align: left;
  transition: color .2s;
}
.faq-q:hover, .faq-q.open { color: #fff; }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform .25s;
}
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: .87rem;
  color: hsl(215, 10%, 62%);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
  padding: 0;
}
.faq-a.open {
  max-height: 300px;
  padding-bottom: 20px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: hsl(215, 22%, 8%);
  padding: 32px 24px;
  text-align: center;
}
.footer-text {
  font-size: .75rem;
  color: hsl(215, 10%, 40%);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

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

/* Top strip (replaces floating badge) */
.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-top-strip-exit { background: var(--danger); }

/* Body padding wrapper */
.modal-body { padding: 26px 22px 22px; }

.modal-card-exit { border: none; }

.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-leve-exit { font-size: 1rem; color: #222; margin-bottom: 10px; }
.modal-bonus-box {
  background: #fffbeb;
  border: 2px solid #fcd34d;
  border-radius: 14px;
  padding: 14px 14px 10px;
  margin-bottom: 14px;
  text-align: left;
}
.modal-bonus-box-exit {
  background: #fff7ed;
  border-color: #fdba74;
}
.modal-bonus-title {
  font-size: .68rem;
  font-weight: 900;
  color: #92400e;
  letter-spacing: .1em;
  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: #1c1c1c;
  font-weight: 700;
  line-height: 1.3;
  background: #fff;
  border-radius: 8px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.modal-desconto-faixa {
  background: var(--danger);
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 14px;
  border-radius: 10px;
  margin-bottom: 12px;
}
.modal-desconto-exit { background: #b45309; }
.modal-price-area {
  margin-bottom: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.modal-price-line { display: contents; }
.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;
}

/* =============================================
   RESPONSIVO GERAL
   ============================================= */
@media (max-width: 480px) {
  .btn-cta { padding: 16px 24px; font-size: .82rem; }
  .urgency-card { padding: 32px 20px; }
  .deliverables-box { padding: 24px 18px; }
  .bonus-card-body { padding: 16px 14px 18px; }
  .plans-section { padding: 36px 16px 44px; }
  .plan-basic, .plan-complete { padding-left: 16px; padding-right: 16px; }
  .plan-badge-top, .plan-badge-danger { width: calc(100% + 32px); margin-left: -16px; }
  .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; }
}

/* Dobra Como funciona o acesso - Responsivo */
.access-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .access-steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

