@font-face {
  font-family: MarkPro;
  src: url('../fonts/Mark-Pro.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: MarkPro;
  src: url('../fonts/Mark-Pro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #0b0b0b;
  --dark: #101010;
  --panel: #181818;
  --white: #ffffff;
  --yellow: #fefb00;
  --gold: #ffc100;
  --gold-contrast: #1c1200;
  --muted: #9a9a9a;
  --container: 1120px;
  --side: 4vw;
  --section: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: MarkPro, Arial, sans-serif;
  color: var(--white);
  background: var(--black);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.container { width: min(var(--container), calc(100% - var(--side) * 2)); margin-inline: auto; }
.center { text-align: center; }
.section { padding-block: var(--section); background: var(--black); }
.section.dark { background: var(--dark); }
.section-title { margin: 0 0 24px; font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; line-height: 1.1; }
.section-title .accent, .accent { color: var(--gold); }
.section p { font-size: 17px; line-height: 1.6; color: var(--white); }
.sub { color: var(--muted); margin-top: -12px; margin-bottom: 40px; }

/* Topbar */

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 16px 36px; border-radius: 6px; font-weight: 700; text-decoration: none; text-align: center; transition: transform .2s ease, filter .2s ease; }
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-primary, .btn-small, .btn-xl {
  color: var(--gold-contrast);
  background: linear-gradient(180deg, #ffd84d, var(--gold));
  box-shadow: 0 8px 22px rgb(255 193 0 / 28%);
}
.btn-primary { font-size: 17px; }
.btn-small { min-height: auto; padding: 12px 28px; font-size: 15px; }
.btn-xl { padding: 20px 48px; font-size: clamp(18px, 2.2vw, 22px); border-radius: 8px; }
.btn-ghost { background: transparent; border: 1px solid rgb(255 193 0 / 45%); color: var(--gold); }

/* Hero */
.hero {
  position: relative;
  padding-block: 56px 64px;
  background: radial-gradient(60% 420px at 30% 0%, rgb(255 193 0 / 12%), transparent 70%), var(--black);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.course-logo { width: 96px; height: 96px; object-fit: contain; margin-bottom: 20px; border-radius: 12px; }
.hero h1 { margin: 0 0 20px; font-size: clamp(32px, 4vw, 50px); font-weight: 700; line-height: 1.08; }
.hero-sub { color: var(--muted); font-size: 19px; line-height: 1.55; margin: 0 0 32px; max-width: 560px; }
.hero-media img { border-radius: 16px; box-shadow: 0 24px 50px rgb(0 0 0 / 50%); margin-inline: auto; max-width: 420px; }
.badges { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 20px 28px; }
.badges li { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--white); }
.badges svg { width: 20px; height: 20px; fill: var(--gold); flex-shrink: 0; }

/* Para quem é */
.para-quem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.para-quem-col { background: var(--panel); border: 1px solid rgb(255 193 0 / 14%); border-radius: 12px; padding: 32px; }
.para-quem-col h3 { margin: 0 0 20px; font-size: 20px; color: var(--gold); }
.checks { margin: 0; padding: 0; list-style: none; }
.checks li { position: relative; margin: 14px 0; padding-left: 32px; font-size: 15px; line-height: 1.5; }
.checks li::before { content: '\2713'; position: absolute; top: 0; left: 0; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; color: var(--gold-contrast); background: var(--gold); font-size: 12px; font-weight: 700; }

/* Testimonials (video) */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 28px; }
.video-testimonial { display: flex; flex-direction: column; }
.video-caption { margin: 12px 0 0; padding-top: 12px; border-top: 1px solid rgb(255 193 0 / 18%); text-align: center; font-size: 14px; color: var(--muted); }
.video-caption strong { color: var(--gold); display: block; margin-bottom: 2px; font-size: 15px; }
.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid rgb(255 193 0 / 14%);
  cursor: pointer;
  box-shadow: 0 10px 24px rgb(0 0 0 / 35%);
}
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.video-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-card .play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd84d, var(--gold));
  box-shadow: 0 8px 20px rgb(255 193 0 / 35%);
  display: grid;
  place-items: center;
}
.video-card .play::before {
  content: '';
  width: 0; height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--gold-contrast);
}

/* Método */
.metodo-intro { max-width: 720px; margin: 0 auto 40px; }
.metodo-intro p { color: var(--muted); margin: 0; }
.pilares { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 0 18px; margin-bottom: 36px; }
.pilar-card { display: flex; flex-direction: column; background: var(--panel); border: 1px solid rgb(255 193 0 / 18%); border-radius: 12px; overflow: hidden; }
.pilar-card img { width: 100%; aspect-ratio: 1200 / 675; object-fit: cover; }
.pilar-card .pilar-num, .pilar-card h3, .pilar-card p { padding-inline: 20px; }
.pilar-num { display: block; margin-top: 18px; color: var(--gold); font-weight: 700; font-size: 13px; }
.pilar-card h3 { margin: 6px 0 4px; font-size: 19px; }
.pilar-card p { margin: 0 0 20px; color: var(--muted); font-size: 13px; line-height: 1.45; flex-grow: 1; }
.pilar-arrow { display: flex; align-items: center; justify-content: center; color: rgb(255 193 0 / 45%); }
.pilar-arrow svg { width: 26px; height: 26px; }

/* Módulos accordion */
.modulos-accordion { display: grid; gap: 14px; max-width: 800px; margin: 0 auto 36px; }
details { background: var(--panel); border: 1px solid rgb(255 193 0 / 14%); border-radius: 10px; overflow: hidden; }
summary { padding: 18px 24px; font-weight: 700; font-size: 16px; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; float: right; color: var(--gold); font-size: 20px; }
details[open] summary::after { content: '\2212'; }
details ul { margin: 0; padding: 0 24px 20px 44px; }
details li { margin: 6px 0; color: var(--muted); font-size: 15px; }

/* Bônus */
.bonus-list { display: grid; gap: 16px; margin-bottom: 36px; }
.bonus-card { display: grid; grid-template-columns: 110px auto 1fr auto; gap: 20px; align-items: center; background: var(--panel); border: 1px solid rgb(255 193 0 / 16%); border-radius: 12px; padding: 16px 26px; }
.bonus-card:first-child { grid-template-columns: auto 1fr auto; }
.bonus-card img { width: 110px; aspect-ratio: 1672 / 941; object-fit: cover; border-radius: 8px; }
.bonus-num { font-size: 22px; font-weight: 700; color: var(--gold); }
.bonus-card h3 { margin: 0 0 6px; font-size: 17px; }
.bonus-card p { margin: 0; font-size: 14px; color: var(--muted); }
.bonus-valor { font-weight: 700; color: var(--gold); white-space: nowrap; }

/* Mentoria */
.mentoria-grid { max-width: 720px; margin: 0 auto; text-align: center; }
.mentoria-img { border-radius: 14px; margin-bottom: 32px; box-shadow: 0 18px 40px rgb(0 0 0 / 40%); }
.mentoria .checks { display: inline-block; text-align: left; margin: 20px 0; }
.valor-impagavel { color: var(--muted); font-style: italic; font-size: 14px; }

/* Tudo o que você recebe */
.recebe-list { list-style: none; margin: 0 auto; padding: 0; max-width: 520px; }
.recebe-list li { padding: 14px 0; border-bottom: 1px solid rgb(255 193 0 / 12%); font-size: 16px; }
.recebe-list li:last-child { border-bottom: none; }
.recebe-img {
  width: 100%;
  max-width: 920px;
  margin: 0 auto 40px;
  border-radius: 18px;
  border: 1px solid rgb(255 193 0 / 35%);
  box-shadow: 0 0 0 1px rgb(255 193 0 / 10%), 0 30px 70px rgb(0 0 0 / 55%), 0 0 90px rgb(255 193 0 / 12%);
}

/* Oferta */
.offer .price-card { display: flex; flex-direction: column; gap: 6px; width: fit-content; margin: 24px auto 32px; padding: 32px 48px; border-radius: 14px; background: var(--panel); border: 1px solid rgb(255 193 0 / 25%); }
.price-total { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.price-card strong { font-size: clamp(36px, 5vw, 52px); color: var(--gold); line-height: 1.1; }
.price-card span:last-child { font-size: 15px; color: var(--muted); }

/* Garantia */
.guarantee { background: linear-gradient(180deg, #ffd84d, var(--gold)); color: var(--gold-contrast); }
.guarantee .section-title { color: var(--gold-contrast); }
.guarantee p { color: var(--gold-contrast); max-width: 720px; margin: 0 auto 16px; }
.guarantee strong { color: var(--gold-contrast); }

/* Autoridade */
.autoridade-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.autoridade-grid img { border-radius: 16px; max-width: 460px; margin-inline: auto; box-shadow: 0 20px 44px rgb(0 0 0 / 45%); }

/* FAQ */
.faq-accordion { display: grid; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-accordion summary { font-size: 16px; }
.faq-accordion details p { padding: 0 24px 20px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }

/* Suporte */
.suporte .btn { margin-top: 16px; }

.footer { padding-block: 44px; color: var(--white); font-size: 15px; text-align: center; border-top: 1px solid rgb(255 193 0 / 14%); }
.footer p { margin: 0; line-height: 1.6; }
.footer-disclaimer { max-width: 680px; margin: 24px auto 0; color: var(--muted); font-size: 13px; line-height: 1.6; text-align: center; }

@media (max-width: 900px) {
  .hero-grid, .autoridade-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-grid > *, .autoridade-grid > * { min-width: 0; }
  .hero-media { order: -1; }
  .hero-media img { max-width: 280px; }
  .para-quem-grid { grid-template-columns: 1fr; gap: 24px; }
  .video-grid { grid-template-columns: 1fr; }
  .autoridade-grid img { max-width: 100%; }
}

@media (max-width: 720px) {
  .pilares { grid-template-columns: 1fr; gap: 12px; }
  .pilar-arrow { transform: rotate(90deg); padding-block: 4px; }
}

@media (max-width: 640px) {
  :root { --side: 20px; --section: 52px; }
  .btn-small { padding: 10px 18px; font-size: 14px; }
  .bonus-card, .bonus-card:first-child { grid-template-columns: 1fr; text-align: left; }
  .bonus-card img { width: 100%; height: auto; }
  .bonus-num { font-size: 18px; }
  .price-card { padding: 26px 28px; }
}
