:root {
  --navy: #0a1a2f;
  --navy-2: #0d2238;
  --navy-3: #122c47;
  --navy-4: #17335a;
  --green: #3fae4a;
  --green-light: #4fc65c;
  --yellow: #f5c518;
  --text: #f2f5f8;
  --text-muted: #a9b8c6;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.28);
  --grad-accent: linear-gradient(90deg, var(--green) 0%, var(--yellow) 100%);
  --grad-btn: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
  --font-head: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --max: 880px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
h1, h2, h3, .cta-btn, .module-num, .price-tag b, .new, .eyebrow, .kicker { font-family: var(--font-head); }

/* ---- Hero ---- */
.hero-text {
  text-align: center; padding: 48px 20px 32px;
  background: radial-gradient(ellipse at top, var(--navy-3) 0%, var(--navy) 65%);
}
.hero-logo { width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 16px; box-shadow: var(--shadow-card); }
.eyebrow {
  color: var(--yellow); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 12px;
}
.hero-text h1 {
  font-weight: 800; font-size: clamp(1.6rem, 5vw, 2.5rem);
  line-height: 1.24; margin: 0 0 14px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.hero-text .sub {
  color: var(--text-muted); font-size: 1.05rem; max-width: 640px; margin: 0 auto 26px;
}
.price-tag {
  display: inline-block; background: var(--navy-3); border: 1px solid var(--border-strong);
  border-radius: 10px; padding: 10px 18px; margin-bottom: 20px; font-size: 0.95rem;
}
.price-tag b { color: var(--yellow); font-size: 1.2rem; }

/* ---- CTA ---- */
.cta-btn {
  display: inline-block; background: var(--grad-btn); color: #06210a;
  font-weight: 700; font-size: 1.03rem; text-decoration: none;
  padding: 16px 34px; border-radius: 10px; border: none; cursor: pointer;
  box-shadow: 0 8px 22px rgba(63, 174, 74, 0.32);
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(63, 174, 74, 0.42); }
.cta-wrap { text-align: center; margin: 8px 0; }
.cta-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 10px; }
.trust-strip {
  margin-top: 20px; font-size: 0.78rem; color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ---- Sticky CTA (mobile) ---- */
.sticky-cta { display: none; }
@media (max-width: 640px) {
  .sticky-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    background: var(--navy-2); border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
    padding: 10px 16px; padding-bottom: max(10px, env(safe-area-inset-bottom));
    transform: translateY(100%); transition: transform .25s ease;
  }
  .sticky-cta.visible { transform: translateY(0); }
  .sticky-cta .price { font-size: 0.92rem; }
  .sticky-cta .price b { color: var(--yellow); display: block; font-size: 1.05rem; }
  .sticky-cta .cta-btn { padding: 12px 20px; font-size: 0.92rem; flex: none; }
}

/* ---- Sections ---- */
section { padding: 48px 0; }
section.alt { background: var(--navy-2); }
.kicker {
  text-align: center; color: var(--yellow); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px;
}
h2 {
  font-weight: 700; font-size: clamp(1.3rem, 3.5vw, 1.8rem); text-align: center; margin: 0 0 8px;
}
.section-lead { text-align: center; color: var(--text-muted); max-width: 620px; margin: 0 auto 30px; }

/* ---- Identificação ---- */
.id-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 20px; }
@media (min-width: 640px) { .id-grid { grid-template-columns: 1fr 1fr; } }
.id-card {
  background: var(--navy-3); border: 1px solid var(--border); border-radius: 12px;
  padding: 18px 20px; border-top: 3px solid transparent; box-shadow: var(--shadow-card);
}
.id-card.good { border-top-color: var(--green-light); }
.id-card.bad { border-top-color: var(--border-strong); }
.id-card h3 { margin: 0 0 8px; font-size: 0.95rem; color: var(--yellow); font-family: var(--font-head); }
.id-card ul { margin: 0; padding-left: 18px; color: var(--text-muted); font-size: 0.94rem; }
.id-card li { margin-bottom: 6px; }

/* ---- Método ---- */
.method-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 26px 0 8px;
}
.method-step {
  background: var(--navy-3); border: 1px solid var(--border-strong); border-radius: 999px;
  padding: 8px 16px; font-size: 0.85rem; color: var(--text-muted);
}
.method-step b {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%; background: var(--grad-accent);
  color: #06210a; font-size: 0.7rem; margin-right: 6px; font-family: var(--font-head);
}

/* ---- Módulos / Fases ---- */
.phase { margin-top: 34px; }
.phase:first-of-type { margin-top: 30px; }
.phase-label {
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 14px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--text);
}
.phase-label span {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #06210a; background: var(--grad-accent); padding: 4px 10px; border-radius: 999px;
}
.modules { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 700px) { .modules { grid-template-columns: 1fr 1fr; } }
.module-card {
  background: var(--navy-3); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 22px; display: flex; gap: 14px; align-items: flex-start;
  box-shadow: var(--shadow-card); position: relative; overflow: hidden;
}
.module-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--grad-accent);
}
.module-num {
  flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--grad-accent);
  color: #06210a; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.module-card h3 { margin: 0 0 4px; font-size: 1.02rem; font-family: var(--font-head); }
.module-card .tech { display: block; font-size: 0.76rem; color: var(--text-muted); margin-bottom: 10px; }
.outcomes { margin: 0; padding-left: 18px; color: var(--text-muted); font-size: 0.88rem; }
.outcomes li { margin-bottom: 4px; }

/* ---- Depoimentos placeholder ---- */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 24px; }
@media (min-width: 640px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  border: 1px dashed var(--border); border-radius: 12px; padding: 20px;
  color: var(--text-muted); font-size: 0.85rem; text-align: center;
}

/* ---- Instrutor ---- */
.instructor {
  display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center;
  margin-top: 20px;
}
@media (min-width: 640px) { .instructor { flex-direction: row; text-align: left; } }
.instructor img { width: 160px; height: 135px; object-fit: cover; border-radius: 14px; border: 2px solid var(--border-strong); box-shadow: var(--shadow-card); }
.instructor p { color: var(--text-muted); margin: 0 0 10px; }
.instructor p:last-child { margin-bottom: 0; }

/* ---- Oferta ---- */
.offer-box {
  background: linear-gradient(180deg, var(--navy-4) 0%, var(--navy-3) 100%);
  border: 1px solid var(--border-strong); border-radius: 18px;
  padding: 32px 26px; text-align: center; max-width: 480px; margin: 10px auto 0;
  box-shadow: var(--shadow-card); position: relative;
}
.offer-box::before {
  content: ''; position: absolute; left: 18px; right: 18px; top: 0; height: 3px;
  background: var(--grad-accent); border-radius: 0 0 6px 6px;
}
.offer-list { text-align: left; list-style: none; padding: 0; margin: 4px 0 20px; }
.offer-list li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; color: var(--text-muted); }
.offer-list li:last-child { border-bottom: none; }
.offer-list li:before { content: '✓ '; color: var(--green-light); font-weight: 700; }
.anchor-line {
  font-size: 0.82rem; color: var(--text-muted); font-style: italic; margin: 4px 0 18px;
  padding-top: 16px; border-top: 1px dashed var(--border-strong);
}
.price-block { margin-bottom: 20px; }
.price-block .new { font-size: 2.6rem; color: var(--yellow); font-weight: 800; line-height: 1.1; }
.price-block .per-module { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* ---- Garantia ---- */
.guarantee { display: flex; align-items: center; gap: 16px; max-width: 560px; margin: 0 auto; }
.guarantee .seal {
  flex: none; width: 66px; height: 66px; border-radius: 50%; background: var(--grad-accent);
  color: #06210a; font-weight: 800; font-size: 0.76rem; display: flex; align-items: center;
  justify-content: center; text-align: center; line-height: 1.15; box-shadow: var(--shadow-card);
}
.guarantee p { margin: 0; color: var(--text-muted); font-size: 0.92rem; }

/* ---- FAQ ---- */
.faq { max-width: 700px; margin: 24px auto 0; }
details {
  background: var(--navy-3); border: 1px solid var(--border); border-radius: 10px;
  margin-bottom: 10px; padding: 14px 18px;
}
summary {
  cursor: pointer; font-weight: 600; font-size: 0.96rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+'; color: var(--yellow); font-size: 1.1rem; font-weight: 700; flex: none;
  transition: transform .2s ease;
}
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--text-muted); margin: 10px 0 0; font-size: 0.9rem; }

/* ---- Footer ---- */
footer {
  text-align: center; padding: 30px 20px; color: var(--text-muted); font-size: 0.78rem;
  border-top: 1px solid var(--border);
}
footer img { height: 26px; margin: 0 auto 10px; }
