/* ============================================================
   VARIÁVEIS E RESET
   ============================================================ */
:root {
  --blue:        #1D3D8B;
  --blue-dark:   #0F1E4A;
  --orange:      #FF6B00;
  --orange-dark: #E85F00;
  --gold:        #F59E0B;
  --green:       #22C55E;
  --wpp-green:   #25D366;
  --cream:       #FFF8F0;
  --light-blue:  #EEF4FF;
  --white:       #FAFAFA;
  --text:        #1A1A1A;
  --text-muted:  #6B7280;
  --radius:      16px;
  --radius-lg:   24px;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-btn:  0 8px 32px rgba(255,107,0,0.35);
  --transition:  0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Fredoka', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ============================================================
   UTILITÁRIOS
   ============================================================ */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.text--blue   { color: var(--blue); }
.text--white  { color: #fff; }
.text--gold   { color: var(--gold); }
.text--orange { color: var(--orange); }
.text--green  { color: var(--green); }
.mt-6         { margin-top: 1.5rem; }

/* ============================================================
   ANIMAÇÕES DE SCROLL
   ============================================================ */
.reveal, .fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible, .fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up--delay { transition-delay: 0.25s; }

.pain-item:nth-child(2) { transition-delay: 0.08s; }
.pain-item:nth-child(3) { transition-delay: 0.16s; }
.pain-item:nth-child(4) { transition-delay: 0.24s; }
.pain-item:nth-child(5) { transition-delay: 0.32s; }

.benefit-card:nth-child(2) { transition-delay: 0.08s; }
.benefit-card:nth-child(3) { transition-delay: 0.16s; }
.benefit-card:nth-child(4) { transition-delay: 0.24s; }
.benefit-card:nth-child(5) { transition-delay: 0.32s; }
.benefit-card:nth-child(6) { transition-delay: 0.40s; }

.wpp-card:nth-child(2) { transition-delay: 0.10s; }
.wpp-card:nth-child(3) { transition-delay: 0.20s; }
.wpp-card:nth-child(4) { transition-delay: 0.30s; }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.badge--orange { background: var(--orange); color: #fff; }
.badge--gold   { background: var(--gold); color: #1a1a1a; }
.badge--green  { background: var(--wpp-green); color: #fff; }
.badge--blue   { background: var(--blue); color: #fff; }

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-align: center;
  border: none;
}
.btn:active { transform: scale(0.97) !important; }

.btn--hero {
  background: var(--orange);
  color: #fff;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  padding: 18px 32px;
  box-shadow: var(--shadow-btn);
  margin-bottom: 12px;
  width: 100%;
  max-width: 540px;
}
.btn--hero:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,107,0,0.45); }

.btn--orange {
  background: var(--orange);
  color: #fff;
  font-size: 1.15rem;
  padding: 15px 30px;
  box-shadow: var(--shadow-btn);
}
.btn--orange:hover { background: var(--orange-dark); transform: translateY(-2px); }

.btn--cta {
  background: var(--orange);
  color: #fff;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  padding: 20px 36px;
  box-shadow: var(--shadow-btn);
  width: 100%;
  margin: 0 auto 12px;
  display: flex;
}
.btn--cta:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 14px 44px rgba(255,107,0,0.5); }

.btn--sticky {
  background: var(--orange);
  color: #fff;
  font-size: 1.05rem;
  padding: 15px 24px;
  width: 100%;
  box-shadow: var(--shadow-btn);
}

/* ============================================================
   STICKY CTA MOBILE
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 10px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.trust-badge {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

/* ============================================================
   SEÇÃO — BASE
   ============================================================ */
.section { padding: 80px 0; }
.section__header { text-align: center; margin-bottom: 52px; }
.section__title { font-size: clamp(1.7rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 12px; }
.section__subtitle { font-size: 1.05rem; color: var(--text-muted); margin-top: 8px; }

.section--cream      { background: var(--cream); }
.section--white      { background: var(--white); }
.section--dark       { background: var(--blue-dark); }
.section--bonus      { background: linear-gradient(160deg, #fffbea 0%, #fff8f0 100%); }
.section--light-blue { background: var(--light-blue); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url("../assets/fundo topo.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,18,55,0.90) 0%, rgba(10,18,55,0.75) 55%, rgba(10,18,55,0.50) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 100px;
}
.hero__text { flex: 1; text-align: center; }
.hero__headline {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero__headline em { font-style: normal; color: var(--gold); }
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.90);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.hero__sub strong { color: #fff; }
.hero__microcopy { font-size: 0.83rem; color: rgba(255,255,255,0.65); margin-top: 4px; margin-bottom: 20px; }
.hero__mockup { width: 100%; max-width: 340px; }
.hero__mockup-img { width: 100%; border-radius: 20px; box-shadow: 0 24px 64px rgba(0,0,0,0.55); }

/* ============================================================
   PROBLEMA
   ============================================================ */
.pain-list { display: flex; flex-direction: column; gap: 12px; max-width: 720px; margin: 0 auto 48px; }
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid rgba(255,107,0,0.12);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 1.05rem;
  color: #374151;
  box-shadow: var(--shadow-card);
}
.pain-emoji { font-size: 1.75rem; flex-shrink: 0; margin-top: 2px; }
.callout {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto;
}
.callout strong { font-weight: 700; }
.callout__highlight { font-family: 'Fredoka', sans-serif; font-size: 1.6rem; font-weight: 600; color: var(--gold); margin-top: 12px; }

/* ============================================================
   PRODUTO
   ============================================================ */
.product__inner { display: flex; flex-direction: column; align-items: center; gap: 56px; }
.product__mockup { width: 100%; max-width: 320px; flex-shrink: 0; }
.product__img { width: 100%; border-radius: 20px; box-shadow: 0 32px 80px rgba(0,0,0,0.55); transform: perspective(900px) rotateY(-4deg) rotateX(2deg); }
.product__text { flex: 1; text-align: center; }
.product__text .section__title { margin-bottom: 20px; }
.product__desc { font-size: 1.1rem; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 28px; }
.product__desc strong { color: #fff; }
.label { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.label--gold { color: var(--gold); }
.feature-list { display: flex; flex-direction: column; gap: 10px; text-align: left; margin: 0 auto; max-width: 540px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.5;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border-left: 3px solid var(--green);
}
.feature-list li::before { content: "✅"; flex-shrink: 0; }

/* ============================================================
   VÍDEOS DEMO
   ============================================================ */
.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.video-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(29,61,139,0.08);
  transition: transform var(--transition), box-shadow var(--transition), opacity 0.65s ease;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(29,61,139,0.14); }
.video-wrapper { position: relative; width: 100%; background: #000; }
.demo-video { width: 100%; display: block; max-height: 320px; object-fit: contain; }
.video-caption { padding: 18px 22px 22px; }
.video-num {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.video-subtitle {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  font-style: italic;
}

/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.benefit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(29,61,139,0.07);
  transition: transform var(--transition), box-shadow var(--transition), opacity 0.65s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(29,61,139,0.13); }
.benefit-icon { display: block; font-size: 2.5rem; margin-bottom: 12px; }
.benefit-title { font-family: 'Fredoka', sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--blue); margin-bottom: 8px; }
.benefit-desc { font-size: 0.92rem; color: var(--text-muted); line-height: 1.55; }

/* ============================================================
   WHATSAPP DEPOIMENTOS
   ============================================================ */
.wpp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.wpp-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(37,211,102,0.18);
  transition: transform var(--transition), box-shadow var(--transition), opacity 0.65s ease;
}
.wpp-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,0.18); }
.wpp-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #075E54;
  color: #fff;
}
.wpp-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  flex-shrink: 0;
}
.wpp-contact { flex: 1; }
.wpp-name { display: block; font-weight: 700; font-size: 0.95rem; }
.wpp-status { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.65); }
.wpp-logo { flex-shrink: 0; }
.wpp-bubble {
  background: #f0faf4;
  margin: 14px 16px 16px;
  padding: 14px 16px;
  border-radius: 0 14px 14px 14px;
  border: 1px solid rgba(37,211,102,0.15);
  position: relative;
}
.wpp-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  border-width: 0 8px 8px 0;
  border-style: solid;
  border-color: transparent rgba(37,211,102,0.15) transparent transparent;
}
.wpp-bubble p { font-size: 0.97rem; color: #1a1a1a; line-height: 1.65; }
.wpp-extra { margin-top: 10px; }
.wpp-meta { display: flex; justify-content: flex-end; margin-top: 8px; }
.wpp-time { font-size: 0.72rem; color: #999; }

/* ============================================================
   BÔNUS
   ============================================================ */
.bonus-total-value { font-size: 1.1rem; color: var(--text-muted); margin-top: 8px; }
.bonus-total-value s { color: #aaa; }
.bonus-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 840px; margin: 0 auto; }
.bonus-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(245,158,11,0.18);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), opacity 0.65s ease;
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(245,158,11,0.2); }
.bonus-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
}
.bonus-card__img { width: 100%; max-height: 220px; object-fit: cover; object-position: top center; }
.bonus-card__body { padding: 20px 22px 24px; }
.bonus-card__title { font-family: 'Fredoka', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.bonus-card__desc { font-size: 0.95rem; color: #4B5563; line-height: 1.6; margin-bottom: 14px; }
.bonus-value-tag {
  display: inline-flex;
  background: rgba(245,158,11,0.12);
  color: #92700a;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(245,158,11,0.3);
}

/* ============================================================
   COMO RECEBE O ACESSO
   ============================================================ */
.access-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 40px;
}
.access-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  width: 100%;
  max-width: 280px;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.access-step__icon { font-size: 2.8rem; margin-bottom: 10px; }
.access-step__num {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.access-step__title { font-family: 'Fredoka', sans-serif; font-size: 1.2rem; font-weight: 600; color: #fff; margin-bottom: 10px; }
.access-step__desc { font-size: 0.92rem; color: rgba(255,255,255,0.75); line-height: 1.6; }
.access-step__desc strong { color: #fff; }
.access-arrow { font-size: 2rem; color: var(--gold); font-weight: 700; transform: rotate(90deg); }
.access-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto;
}
.access-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
}

/* ============================================================
   PREÇO (melhorado)
   ============================================================ */
.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(29,61,139,0.15);
  border: 2px solid rgba(255,107,0,0.15);
}

/* Coluna esquerda */
.pricing-includes {
  padding: 36px 32px;
  border-bottom: 1px solid #f0f0f0;
}
.pricing-includes__title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 18px;
}
.pricing-includes__list { display: flex; flex-direction: column; gap: 10px; }
.pricing-includes__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
}
.pricing-includes__list li:last-child { border-bottom: none; }
.pi-check { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.pi-name { flex: 1; font-size: 0.92rem; color: #374151; line-height: 1.4; }
.pi-name small { display: block; color: var(--text-muted); font-size: 0.8rem; }
.pi-val { font-size: 0.85rem; color: #aaa; flex-shrink: 0; white-space: nowrap; }
.pricing-includes__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 2px solid var(--blue);
}
.pricing-includes__total span { font-weight: 700; font-family: 'Fredoka', sans-serif; color: var(--blue); font-size: 1rem; }
.pi-total-val { font-size: 1.1rem; color: #aaa; }

/* Coluna direita */
.pricing-cta-box {
  padding: 36px 32px;
  text-align: center;
  background: linear-gradient(160deg, #f8faff 0%, #fff8f0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-badge-hot {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 20px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.pricing-old-price { font-size: 1rem; color: var(--text-muted); margin-bottom: 8px; }
.pricing-old-price s { color: #bbb; }
.pricing-price-block {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-currency { font-family: 'Fredoka', sans-serif; font-size: 2rem; font-weight: 600; color: var(--blue); padding-top: 14px; }
.pricing-amount { font-family: 'Fredoka', sans-serif; font-size: 6.5rem; font-weight: 700; color: var(--blue); line-height: 1; }
.pricing-usd { font-family: 'Fredoka', sans-serif; font-size: 1.6rem; font-weight: 600; color: var(--blue); padding-top: 14px; }
.pricing-once { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-security { font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; line-height: 1.8; }
.pricing-mini-guarantee {
  margin-top: 20px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  color: #15803d;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: var(--radius);
  width: 100%;
  text-align: center;
}

/* ============================================================
   GARANTIA (melhorada)
   ============================================================ */
.guarantee-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.guarantee-icon { font-size: 4rem; }
.guarantee-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.guarantee-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  margin-bottom: 12px;
}
.guarantee-text strong { color: #fff; }
.guarantee-text em { font-style: italic; color: rgba(255,255,255,0.90); }
.guarantee-highlight {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,107,0,0.18);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: var(--radius);
  padding: 14px 24px;
  margin: 12px 0;
}
.guarantee-closing {
  font-size: 1rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
}
.guarantee-closing strong { color: var(--gold); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(29,61,139,0.08);
  overflow: hidden;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue);
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(29,61,139,0.04); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 20px; }
.faq-answer p { font-size: 0.97rem; color: #374151; line-height: 1.7; }
.faq-answer strong { color: var(--blue); }
.faq-cta { text-align: center; margin-top: 48px; }
.faq-cta p { font-size: 0.95rem; color: var(--text-muted); }
.faq-cta a { color: var(--blue); font-weight: 600; text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #070e2a; padding: 40px 0; }
.footer__inner { text-align: center; display: flex; flex-direction: column; gap: 10px; }
.footer__brand { font-family: 'Fredoka', sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--gold); }
.footer__copy { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer__nav { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.footer__nav a { font-size: 0.82rem; color: rgba(255,255,255,0.50); transition: color var(--transition); }
.footer__nav a:hover { color: rgba(255,255,255,0.85); }

/* ============================================================
   RESPONSIVO — TABLET
   ============================================================ */
@media (min-width: 640px) {
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .wpp-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  /* Hero */
  .hero__inner { flex-direction: row; text-align: left; align-items: center; padding-bottom: 64px; }
  .hero__text { text-align: left; }
  .hero__sub { margin-left: 0; margin-right: 0; }
  .trust-badges { justify-content: flex-start; }
  .btn--hero { width: auto; }
  .hero__mockup { max-width: 380px; }

  /* Produto */
  .product__inner { flex-direction: row; text-align: left; }
  .product__text { text-align: left; }
  .feature-list { margin: 0; }

  /* Benefits */
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }

  /* Access steps */
  .access-steps { flex-direction: row; align-items: stretch; justify-content: center; }
  .access-step { max-width: 240px; }
  .access-arrow { transform: rotate(0deg); font-size: 1.6rem; display: flex; align-items: center; }

  /* Pricing */
  .pricing-wrap { flex-direction: row; }
  .pricing-includes { flex: 1.1; border-bottom: none; border-right: 1px solid #f0f0f0; }
  .pricing-cta-box { flex: 0.9; }

  /* Guarantee */
  .guarantee-block { flex-direction: row; text-align: left; }
}

@media (min-width: 1024px) {
  .hero__mockup { max-width: 420px; }
  .bonus-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile */
@media (max-width: 767px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 80px; }
  .videos-grid { grid-template-columns: 1fr; }
}
