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

:root {
  --bg-deep: #020203;
  --bg-base: #050506;
  --bg-elevated: #0A0A0C;
  --surface: rgba(255,255,255,0.03);
  --surface-hover: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --fg: #EDEDEF;
  --fg-muted: #8A8F98;
  --fg-dim: #5A5F68;
  --accent: #FF8A00;
  --accent-soft: #FFB800;
  --accent-glow: rgba(255,138,0,0.2);
  --accent-ring: rgba(255,138,0,0.35);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.accent { color: var(--accent); }

/* ═══════ AMBIENT ═══════ */
.ambient { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.15; will-change: transform; }
.blob--1 { width: 500px; height: 500px; background: var(--accent); top: -120px; left: -100px; animation: float1 22s ease-in-out infinite; }
.blob--2 { width: 420px; height: 420px; background: var(--accent-soft); top: 45%; right: -100px; opacity: 0.1; animation: float2 28s ease-in-out infinite; }
.blob--3 { width: 380px; height: 380px; background: var(--accent); bottom: -120px; left: 40%; opacity: 0.08; animation: float3 32s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(60px,80px) scale(1.15); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-80px,-50px) scale(0.9); } }
@keyframes float3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(100px,-60px) scale(1.1); } }

main { position: relative; z-index: 1; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

section { position: relative; padding: 72px 0; }

.section-title { font-size: clamp(1.7rem, 4.5vw, 2.7rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; text-align: center; }
.section-sub { text-align: center; color: var(--fg-muted); max-width: 620px; margin: 14px auto 0; font-size: 1.05rem; }

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #1a0e00; font-weight: 800; text-decoration: none;
  padding: 16px 30px; border-radius: 999px; font-size: 1.02rem;
  box-shadow: 0 8px 30px var(--accent-glow); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 44px var(--accent-ring); }
.btn--lg { padding: 19px 40px; font-size: 1.12rem; }
.btn--sm { padding: 10px 18px; font-size: .88rem; box-shadow: none; }
.btn--full { width: 100%; }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--border-strong);
  color: var(--fg-muted); font-size: .82rem; font-weight: 600;
  padding: 7px 15px; border-radius: 999px; letter-spacing: .01em;
}

/* ═══════ BRAND BAR ═══════ */
.brand-bar {
  position: sticky; top: 0; z-index: 60;
  background: rgba(2,2,3,0.72); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.brand-bar__inner { display: flex; align-items: center; gap: 14px; padding-top: 12px; padding-bottom: 12px; }
.brand-bar__logo { font-weight: 800; font-size: 1rem; letter-spacing: -0.01em; }
.brand-bar__tag { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); border: 1px solid var(--accent-ring); padding: 3px 9px; border-radius: 999px; }
.brand-bar__inner .btn { margin-left: auto; }

/* ═══════ HERO ═══════ */
.hero { padding-top: 70px; padding-bottom: 80px; }
.hero__inner { text-align: center; max-width: 860px; margin: 0 auto; }
.hero__title { font-size: clamp(2rem, 6vw, 3.6rem); font-weight: 900; line-height: 1.06; letter-spacing: -0.03em; margin-top: 22px; }
.hero__sub { color: var(--fg-muted); font-size: 1.12rem; max-width: 600px; margin: 22px auto 0; }
.hero__cta { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 36px; }
.hero__price { display: flex; flex-direction: column; align-items: center; line-height: 1.3; }
.hero__price-main { font-size: 1.05rem; }
.hero__price-main strong { color: var(--accent); }
.hero__price-cash { color: var(--fg-muted); font-size: .9rem; }
.hero__badges { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; margin-top: 30px; color: var(--fg-muted); font-size: .92rem; }

/* ═══════ UNLOCK ═══════ */
.unlock__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.unlock__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; text-align: center; }
.unlock__item strong { display: block; font-size: 1.25rem; color: var(--accent); }
.unlock__item span { display: block; color: var(--fg-muted); font-size: .9rem; margin-top: 6px; }

/* ═══════ PILLARS ═══════ */
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.pcard { position: relative; background: linear-gradient(180deg, var(--surface-hover), var(--surface)); border: 1px solid var(--border-strong); border-radius: var(--radius-lg); padding: 34px 26px; overflow: hidden; transition: transform .3s var(--ease), border-color .3s var(--ease); }
.pcard:hover { transform: translateY(-4px); border-color: var(--accent-ring); }
.pcard__num { font-size: 3rem; font-weight: 900; color: var(--accent); opacity: .25; line-height: 1; }
.pcard__title { font-size: 1.3rem; font-weight: 800; margin-top: 10px; line-height: 1.2; }
.pcard__desc { color: var(--fg-muted); margin-top: 12px; font-size: .98rem; }
.pcard__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pcard__tags li { background: var(--bg-elevated); border: 1px solid var(--border); color: var(--fg-muted); font-size: .78rem; padding: 5px 11px; border-radius: 999px; }

/* ═══════ BONUS ═══════ */
.bonus__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 44px; }
.bcard { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 16px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 7px; transition: border-color .25s var(--ease), transform .25s var(--ease); }
.bcard:hover { border-color: var(--accent-ring); transform: translateY(-3px); }
.bcard__ico { font-size: 1.6rem; }
.bcard strong { font-size: .92rem; line-height: 1.25; }
.bcard__price { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--accent); }
.bonus__subtitle { text-align: center; font-size: 1.2rem; font-weight: 700; margin-top: 48px; color: var(--fg-muted); }
.bonus__grid--extra { grid-template-columns: repeat(3, 1fr); margin-top: 22px; }
.bcard--extra { text-align: left; align-items: flex-start; padding: 24px 22px; }
.bcard--extra span:not(.bcard__price) { color: var(--fg-muted); font-size: .9rem; font-weight: 400; }

/* ═══════ AULAS / CAPAS (9:16) ═══════ */
.center { text-align: center; margin-bottom: 16px; }
.aulas__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 46px; }
.aulas__grid--6 { grid-template-columns: repeat(6, 1fr); }
.acard { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-strong); background: var(--bg-elevated); aspect-ratio: 9/16; box-shadow: 0 10px 30px rgba(0,0,0,0.4); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.acard:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,0.55); }
.acard img { width: 100%; height: 100%; object-fit: cover; display: block; }
.aulas__extra { text-align: center; color: var(--fg-muted); margin-top: 34px; font-size: 1rem; }
.aulas__extra span { color: var(--accent); font-weight: 700; }

/* ═══════ MÉTODO — MÓDULOS ═══════ */
.mod { padding: 44px 0; border-top: 1px solid var(--border); }
.mod:first-of-type { border-top: none; padding-top: 30px; }
.mod__head { text-align: center; max-width: 700px; margin: 0 auto; }
.mod__tag { display: inline-block; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); }
.mod__title { font-size: clamp(1.4rem, 3.5vw, 2.1rem); font-weight: 800; line-height: 1.15; margin-top: 8px; }
.mod__copy { color: var(--fg-muted); margin-top: 12px; font-size: 1.06rem; }
.mod__cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 30px; }
.mod__cards .acard { width: 190px; }

.robos { max-width: 780px; margin: 32px auto 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; }
.robos__title { font-size: 1.12rem; font-weight: 700; }
.robos__title span { color: var(--accent); font-weight: 800; }
.robos__copy { color: var(--fg-muted); font-size: .95rem; max-width: 580px; margin: 8px auto 0; }
.robos--list { margin-top: 22px; }

/* ═══════ DEPOIMENTOS (linha de prints) ═══════ */
.depo-label { text-align: center; color: var(--fg); font-weight: 800; margin-top: 42px; font-size: clamp(1.2rem, 2.6vw, 1.6rem); letter-spacing: -0.01em; line-height: 1.2; }
.depo-label strong { color: var(--accent); }
.depo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; align-items: start; }
.depo-row img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-elevated); object-fit: contain; }

.depo-feature { max-width: 640px; margin: 56px auto 0; text-align: center; padding-top: 44px; border-top: 1px solid var(--border); }
.depo-feature__title { font-size: clamp(1.4rem, 3.2vw, 2rem); font-weight: 800; line-height: 1.18; letter-spacing: -0.01em; }
.depo-feature__sub { color: var(--fg-muted); margin-top: 12px; font-size: 1.05rem; }
.depo-feature img { width: 100%; max-width: 520px; height: auto; margin: 24px auto 0; display: block; border-radius: var(--radius); border: 1px solid var(--border-strong); background: var(--bg-elevated); box-shadow: 0 14px 40px rgba(0,0,0,0.45); }

/* ═══════ BÔNUS POSTS ═══════ */
.bonus-posts { max-width: 860px; margin: 44px auto 0; text-align: center; border-top: 1px solid var(--border); padding-top: 40px; }
.bonus-posts__label { margin-top: 22px; color: var(--fg-muted); font-weight: 600; }
.bonus-posts__grid { margin-top: 16px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; min-height: 130px; border: 1px dashed var(--border-strong); border-radius: var(--radius); padding: 12px; }
.bonus-posts__grid:empty { display: flex; align-items: center; justify-content: center; }
.bonus-posts__grid:empty::before { content: attr(data-placeholder); color: var(--fg-dim); font-size: .85rem; }
.bonus-posts__grid img { width: 100%; height: auto; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.robos__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 18px; }
.robo-chip { display: inline-flex; align-items: center; gap: 7px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 999px; padding: 8px 14px; font-size: .85rem; color: var(--fg); }
.robo-chip::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); flex: none; }

/* ═══════ MODULE (bônus destacado) ═══════ */
.module { background: linear-gradient(180deg, rgba(255,138,0,0.05), transparent); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ═══════ VIRAL ═══════ */
.viral__grid { columns: 5; column-gap: 14px; margin-top: 44px; }
.viral__grid img { width: 100%; height: auto; display: block; margin-bottom: 14px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--bg-elevated); break-inside: avoid; }

/* ═══════ PROOFS ═══════ */
.proofs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; align-items: start; }
.proof { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.proof img { width: 100%; display: block; height: auto; object-fit: contain; background: var(--bg-elevated); }
.proof figcaption { padding: 14px 16px; font-size: .92rem; color: var(--fg-muted); }
.proof figcaption strong { color: var(--fg); }

/* ═══════ MURAL ═══════ */
.mural { padding-bottom: 80px; overflow: hidden; }
.mural__strip { display: flex; gap: 18px; margin-top: 26px; width: max-content; will-change: transform; backface-visibility: hidden; animation: scrollX 40s linear infinite; }
.mural__strip--rev { animation-direction: reverse; }
.mural__strip:hover { animation-play-state: paused; }
.mural__strip img { height: 260px; width: auto; border-radius: var(--radius-sm); border: 1px solid var(--border); object-fit: contain; background: var(--bg-elevated); }
@keyframes scrollX { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

/* ═══════ AUTHOR ═══════ */
.author__inner { display: grid; grid-template-columns: 280px 1fr; gap: 44px; align-items: center; }
.author__photo { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--border-strong); aspect-ratio: 4/5; object-fit: cover; }
.author__name { font-size: 2rem; font-weight: 800; margin-top: 14px; }
.author__text p { color: var(--fg-muted); margin-top: 14px; font-size: 1.02rem; }
.author__creds { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.author__creds li { background: var(--surface); border: 1px solid var(--border); padding: 7px 14px; border-radius: 999px; font-size: .85rem; font-weight: 600; }

/* ═══════ CLIENTS ═══════ */
.clients { padding: 48px 0; }
.clients__label { text-align: center; color: var(--fg-dim); font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; }
.clients__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 32px; margin-top: 24px; }
.clients__row span { color: var(--fg-muted); font-weight: 700; font-size: 1.05rem; opacity: .7; }

/* ═══════ OFFER ═══════ */
.offer__stack { max-width: 620px; margin: 44px auto 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 12px 26px; }
.offer__line { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); color: var(--fg-muted); }
.offer__line:last-child { border-bottom: none; }
.offer__val { color: var(--fg); font-weight: 700; white-space: nowrap; }
.offer__line--total { color: var(--fg); font-weight: 800; }
.offer__line--total .offer__val { color: var(--accent); font-size: 1.15rem; }
.offer__box { max-width: 460px; margin: 32px auto 0; position: relative; background: linear-gradient(180deg, rgba(255,138,0,0.10), var(--surface)); border: 1px solid var(--accent-ring); border-radius: var(--radius-lg); padding: 34px 30px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.offer__badge { position: absolute; top: -14px; right: 22px; background: var(--accent); color: #1a0e00; font-weight: 800; font-size: .85rem; letter-spacing: .02em; padding: 6px 14px; border-radius: 999px; box-shadow: 0 6px 20px var(--accent-glow); }
.offer__from { color: var(--fg-muted); font-size: .95rem; }
.offer__price { font-size: 2.2rem; font-weight: 900; line-height: 1; }
.offer__price strong { color: var(--accent); }
.offer__cash { color: var(--fg-muted); }
.offer__box .btn { margin-top: 18px; }
.offer__note { color: var(--fg-dim); font-size: .82rem; margin-top: 4px; }

/* ═══════ FAQ ═══════ */
.faq__list { max-width: 720px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 4px 22px; }
.faq__item summary { cursor: pointer; padding: 18px 0; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; color: var(--accent); font-size: 1.4rem; font-weight: 400; transition: transform .25s var(--ease); }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--fg-muted); padding: 0 0 20px; font-size: .98rem; }

/* ═══════ FINAL ═══════ */
.final { padding: 90px 0; }
.final__inner { text-align: center; max-width: 760px; margin: 0 auto; }
.final__title { font-size: clamp(1.7rem, 5vw, 3rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }
.final__sub { color: var(--fg-muted); margin: 18px auto 32px; font-size: 1.08rem; max-width: 540px; }
.final__price { color: var(--fg-muted); margin-top: 18px; font-size: .95rem; }

/* ═══════ FOOTER ═══════ */
.footer { border-top: 1px solid var(--border); padding: 34px 0; text-align: center; color: var(--fg-dim); font-size: .88rem; }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 900px) {
  .unlock__grid { grid-template-columns: repeat(2, 1fr); }
  .pillars__grid { grid-template-columns: 1fr; }
  .bonus__grid { grid-template-columns: repeat(3, 1fr); }
  .bonus__grid--extra { grid-template-columns: 1fr; }
  .proofs__grid { grid-template-columns: repeat(2, 1fr); }
  .aulas__grid, .aulas__grid--6 { grid-template-columns: repeat(3, 1fr); }
  .mod__cards .acard { width: 160px; }
  .depo-row { grid-template-columns: repeat(2, 1fr); }
  .viral__grid { columns: 3; }
  .bonus-posts__grid { grid-template-columns: repeat(3, 1fr); }
  .author__inner { grid-template-columns: 1fr; text-align: center; }
  .author__photo { max-width: 260px; margin: 0 auto; }
  .author__creds { justify-content: center; }
}
@media (max-width: 560px) {
  section { padding: 56px 0; }
  .container { padding: 0 20px; }
  .unlock__grid { grid-template-columns: 1fr; }
  .bonus__grid { grid-template-columns: repeat(2, 1fr); }
  .aulas__grid, .aulas__grid--6 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .mod__cards { gap: 12px; }
  .mod__cards .acard { width: 43vw; }
  .depo-row { grid-template-columns: 1fr; gap: 14px; }
  .viral__grid { columns: 2; column-gap: 10px; }
  .bonus-posts__grid { grid-template-columns: repeat(2, 1fr); }
  .proofs__grid { grid-template-columns: 1fr; }
  .brand-bar__tag { display: none; }
  .brand-bar__logo { font-size: .82rem; }
  .brand-bar__inner .btn--sm { font-size: .66rem; padding: 7px 10px; white-space: normal; line-height: 1.15; text-align: center; }
  .mural__strip img { height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}
