/* ============================================================
   MÉTODO [NOME] — Landing page de vendas
   Personalize as cores no bloco :root abaixo.
============================================================= */

:root {
  /* Marca — troque estas cores para adaptar ao seu produto */
  --brand:        #6c5ce7;   /* cor principal */
  --brand-2:      #00d4a0;   /* cor de destaque/CTA */
  --accent:       #ff7a59;   /* urgência / promoções */

  /* Base */
  --bg:           #0b0f1a;
  --bg-soft:      #121829;
  --surface:      #161d31;
  --surface-2:    #1d2640;
  --text:         #eaf0ff;
  --text-soft:    #a9b3cf;
  --line:         rgba(255,255,255,.09);

  --radius:       18px;
  --radius-sm:    12px;
  --maxw:         1140px;
  --shadow:       0 20px 60px rgba(0,0,0,.35);
  --shadow-glow:  0 12px 40px rgba(0, 212, 160, .35);

  --font:         'Inter', system-ui, -apple-system, sans-serif;
  --font-head:    'Sora', var(--font);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -.02em; }

a { color: inherit; text-decoration: none; }
s { color: var(--text-soft); }

.hl { color: var(--brand-2); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container--narrow { max-width: 760px; }

.section { padding: 92px 0; position: relative; }
.section__title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: 14px;
}
.section__title--left { text-align: left; }
.section__lead { text-align: center; color: var(--text-soft); max-width: 620px; margin: 0 auto 44px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  font-weight: 700; font-family: var(--font-head);
  border-radius: 999px;
  padding: 16px 30px;
  cursor: pointer; border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-align: center; line-height: 1.2;
}
.btn small { font-weight: 500; font-size: .72rem; opacity: .85; font-family: var(--font); }
.btn--primary {
  background: linear-gradient(135deg, var(--brand-2), #00b487);
  color: #022; box-shadow: var(--shadow-glow);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(0,212,160,.5); }
.btn--ghost { background: transparent; border: 1px solid var(--line); color: var(--text); }
.btn--ghost:hover { background: var(--surface); }
.btn--sm { padding: 10px 20px; font-size: .9rem; }
.btn--lg { font-size: 1.1rem; padding: 18px 38px; }
.btn--xl { font-size: 1.25rem; padding: 22px 46px; }

/* pulsação suave para chamar atenção ao CTA principal */
@keyframes pulse { 0%,100% { box-shadow: var(--shadow-glow);} 50% { box-shadow: 0 18px 55px rgba(0,212,160,.65);} }
.btn--xl.btn--primary { animation: pulse 2.4s ease-in-out infinite; }

/* ---------- Badges ---------- */
.badge {
  display: inline-block; font-size: .82rem; font-weight: 600;
  padding: 7px 15px; border-radius: 999px; margin-bottom: 22px;
  background: rgba(108,92,231,.15); color: #c3b9ff; border: 1px solid rgba(108,92,231,.35);
}
.badge--soft { background: var(--surface); color: var(--text-soft); border-color: var(--line); }
.badge--accent { background: rgba(255,122,89,.15); color: #ffb9a6; border-color: rgba(255,122,89,.4); }

/* ---------- Topbar urgência ---------- */
.topbar {
  background: linear-gradient(90deg, var(--accent), #ff5a8a);
  color: #fff; text-align: center; font-size: .9rem; font-weight: 600;
  padding: 10px 16px; position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.topbar__timer { font-variant-numeric: tabular-nums; }
.topbar__dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: .25; } }

/* ---------- Nav ---------- */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 22px; }
.brand { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; display: flex; gap: 8px; align-items: center; }
.brand__mark { color: var(--brand-2); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(108,92,231,.25), transparent 60%),
    radial-gradient(900px 500px at 0% 10%, rgba(0,212,160,.12), transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero__inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center;
  padding: 40px 22px 90px;
}
.hero__title { font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 20px; }
.hero__sub { color: var(--text-soft); font-size: 1.12rem; max-width: 560px; margin-bottom: 30px; }
.hero__cta { margin-bottom: 18px; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 18px; color: var(--text-soft); font-size: .92rem; margin-bottom: 28px; }
.hero__proof { display: flex; align-items: center; gap: 14px; font-size: .9rem; color: var(--text-soft); }
.hero__proof strong { color: var(--text); }
.stars { color: #ffc83d; letter-spacing: 1px; }

.avatars { display: flex; }
.avatars span {
  width: 38px; height: 38px; border-radius: 50%; margin-left: -10px;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.avatars span:first-child { margin-left: 0; }

.hero__media { display: flex; justify-content: center; }
.vsl {
  width: 100%; aspect-ratio: 16/10; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.vsl__play {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--brand-2); color: #022; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center; padding-left: 5px;
  box-shadow: var(--shadow-glow); cursor: pointer; transition: transform .2s;
}
.vsl__play:hover { transform: scale(1.08); }
.vsl__label { color: var(--text-soft); font-size: .9rem; }

/* ---------- Faixa de logos ---------- */
.logos { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 26px 0; }
.logos__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.logos__label { color: var(--text-soft); font-size: .85rem; }
.logos__viewport {
  width: 100%; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.logos__row { display: flex; gap: 18px; width: max-content; }
.logo { font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--text); letter-spacing: .02em; }

/* ---------- Cards genéricos ---------- */
.cards { display: grid; gap: 22px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(0,212,160,.4); }
.card__icon { font-size: 1.9rem; display: block; margin-bottom: 14px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--text-soft); font-size: .96rem; }
.card--pain { border-left: 3px solid var(--accent); }
.card--bonus { border-top: 3px solid var(--brand); position: relative; }
.card__value { display: inline-block; margin-top: 14px; font-weight: 700; color: var(--brand-2); font-size: .9rem; }
.tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; color: #c3b9ff; margin-bottom: 10px; }

/* ---------- Problema ---------- */
.problem__bridge { text-align: center; max-width: 720px; margin: 44px auto 0; font-size: 1.15rem; }

/* ---------- Solução / Autor (grids 2 col) ---------- */
.solution__grid, .author__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.solution__content p, .author__content p { color: var(--text-soft); margin-bottom: 18px; }
.placeholder {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px dashed var(--line); display: flex; align-items: center; justify-content: center;
  color: var(--text-soft); font-size: .9rem;
}
.placeholder--portrait { aspect-ratio: 3/4; }

.check-list { list-style: none; display: grid; gap: 12px; margin: 0 0 26px; }
.check-list li { position: relative; padding-left: 32px; color: var(--text-soft); }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,212,160,.15); color: var(--brand-2);
  display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 700;
}

/* ---------- Módulos ---------- */
.modules__list { display: grid; gap: 16px; max-width: 820px; margin: 0 auto; }
.module {
  display: flex; gap: 22px; align-items: center;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 26px; transition: border-color .2s;
}
.module:hover { border-color: rgba(108,92,231,.5); }
.module__num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--brand); min-width: 46px; }
.module h3 { font-size: 1.15rem; margin-bottom: 4px; }
.module p { color: var(--text-soft); font-size: .95rem; }

/* ---------- Depoimentos ---------- */
.testimonial { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.testimonial blockquote { font-size: 1.02rem; margin: 12px 0 20px; }
.testimonial figcaption { display: flex; gap: 12px; align-items: center; font-size: .9rem; }
.testimonial__avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--brand-2)); flex-shrink: 0; }

/* ---------- Oferta ---------- */
.offer { background: var(--bg-soft); }
.offer__box {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid rgba(0,212,160,.3); border-radius: 24px;
  padding: 44px 38px; box-shadow: var(--shadow);
}
.offer__title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 6px 0 26px; }
.offer__stack { list-style: none; text-align: left; margin-bottom: 26px; }
.offer__stack li { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--text-soft); }
.offer__stack li strong { color: var(--text); }
.offer__stack-total { font-size: 1.05rem; }
.offer__stack-total span, .offer__stack-total strong { color: var(--text) !important; font-weight: 700; }
.offer__price { margin-bottom: 26px; }
.offer__from { color: var(--text-soft); }
.offer__amount { font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; line-height: 1.1; }
.offer__amount strong { color: var(--brand-2); }
.offer__cash { color: var(--text-soft); }
.offer__countdown { margin-top: 18px; font-size: .92rem; color: var(--text-soft); }
.offer__timer { color: var(--accent); font-weight: 700; font-variant-numeric: tabular-nums; }
.payments { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 22px; font-size: .82rem; color: var(--text-soft); }

/* ---------- Garantia ---------- */
.guarantee { background: linear-gradient(135deg, rgba(108,92,231,.12), rgba(0,212,160,.08)); }
.guarantee__inner { display: flex; gap: 36px; align-items: center; max-width: 860px; margin: 0 auto; }
.guarantee__seal {
  flex-shrink: 0; width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--brand-2), #00876a);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: #022;
  box-shadow: var(--shadow-glow); border: 4px solid rgba(255,255,255,.15);
}
.guarantee__seal small { font-size: .8rem; letter-spacing: .15em; }
.guarantee p { color: var(--text-soft); }

/* ---------- FAQ ---------- */
.faq__list { display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 22px; }
.faq__item summary {
  cursor: pointer; font-weight: 600; font-family: var(--font-head);
  padding: 18px 0; list-style: none; position: relative; padding-right: 30px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 0; top: 16px; font-size: 1.5rem; color: var(--brand-2); transition: transform .2s; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--text-soft); padding-bottom: 20px; }

/* ---------- CTA final ---------- */
.final-cta { text-align: center; background: radial-gradient(800px 400px at 50% 0%, rgba(108,92,231,.2), transparent 60%); }
.final-cta__title { font-size: clamp(1.8rem, 4.5vw, 3rem); margin-bottom: 16px; }
.final-cta__sub { color: var(--text-soft); font-size: 1.15rem; max-width: 600px; margin: 0 auto 34px; }
.final-cta__ps { margin-top: 18px; color: var(--text-soft); font-size: .9rem; }

/* ---------- Rodapé ---------- */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 50px 0; }
.footer__inner { display: flex; flex-direction: column; gap: 18px; align-items: center; text-align: center; }
.footer__brand { font-family: var(--font-head); font-weight: 800; display: flex; gap: 8px; align-items: center; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer__links a { color: var(--text-soft); font-size: .9rem; }
.footer__links a:hover { color: var(--text); }
.footer__legal { color: var(--text-soft); font-size: .8rem; max-width: 560px; }

/* ---------- CTA flutuante (mobile) ---------- */
.sticky-cta {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-2), #00b487); color: #022;
  font-weight: 700; font-family: var(--font-head);
  padding: 14px 26px; border-radius: 999px; box-shadow: var(--shadow-glow);
  z-index: 50; display: none; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.sticky-cta.show { opacity: 1; pointer-events: auto; }

/* ============================================================
   RESPONSIVO
============================================================= */
@media (max-width: 920px) {
  .hero__inner, .solution__grid, .author__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .cards--3 { grid-template-columns: repeat(2, 1fr); }
  .guarantee__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .cards--3 { grid-template-columns: 1fr; }
  .hero__trust { gap: 12px; }
  .offer__box { padding: 34px 22px; }
  .btn--xl { font-size: 1.1rem; padding: 18px 30px; width: 100%; }
  .sticky-cta { display: block; }
  .module { flex-direction: row; }
}

/* ============================================================
   REFINAMENTO VISUAL — efeito "uau"
============================================================= */

/* ---- Ilustração do hero ---- */
.hero__art { position: relative; width: 100%; }
.hero__art img { width: 100%; height: auto; display: block; filter: drop-shadow(0 30px 60px rgba(0,0,0,.4)); }

/* ---- Imagens ilustrativas (mockup / mentor) ---- */
.art-img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius);
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.4));
}

/* ---- Moldura da foto do mentor (foto com fundo transparente) ---- */
.photo-frame {
  position: relative; border-radius: 26px; overflow: visible;
  background:
    radial-gradient(120% 90% at 50% 10%, rgba(108,92,231,.30), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  padding: 18px 18px 0;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.photo-frame__glow {
  position: absolute; inset: auto 0 0 50%; transform: translateX(-50%);
  width: 78%; height: 70%; z-index: -1; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,160,.35), transparent 70%);
  filter: blur(22px);
}
.photo-frame__img {
  display: block; width: 100%; height: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.45));
}
.photo-frame__badge {
  position: absolute; left: -14px; bottom: 40px;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line); border-radius: 16px;
  padding: 12px 18px; box-shadow: var(--shadow);
  animation: floatY 4.5s ease-in-out infinite;
}
.photo-frame__badge strong { display: block; font-family: var(--font-head); font-size: 1.5rem; color: var(--brand-2); line-height: 1; }
.photo-frame__badge span { font-size: .8rem; color: var(--text-soft); }
.photo-frame__verified {
  position: absolute; top: 18px; right: -12px;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-2), #00b487); color: #022;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.3rem; box-shadow: var(--shadow-glow);
  border: 3px solid var(--bg);
  animation: floatY 5s ease-in-out infinite .6s;
}

/* ---- Faixa de números animados ---- */
.stats {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; position: relative; padding: 10px; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: -11px; top: 50%; transform: translateY(-50%);
  width: 1px; height: 46px; background: var(--line);
}
.stat__num {
  display: block;
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3rem); line-height: 1;
  background: linear-gradient(120deg, var(--brand-2), #7d6ff0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px;
}
.stat__label { color: var(--text-soft); font-size: .92rem; }

/* ---- Destaque animado (gradiente correndo) ---- */
.hl {
  background: linear-gradient(100deg, var(--brand-2), #7d6ff0, var(--brand-2));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* ---- Marquee das ferramentas ---- */
.logos__row { animation: marquee 24s linear infinite; }
.logos__viewport:hover .logos__row { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo {
  white-space: nowrap; padding: 8px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface);
  opacity: .8; transition: opacity .2s, border-color .2s;
}
.logo:hover { opacity: 1; border-color: rgba(0,212,160,.4); }

/* ---- Brilho extra nos cards ao passar o mouse ---- */
.card { position: relative; overflow: hidden; }
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px circle at 50% 0%, rgba(0,212,160,.08), transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.card:hover::before { opacity: 1; }

/* ---- Borda em gradiente no box da oferta ---- */
.offer__box {
  position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, var(--surface), var(--surface-2)) padding-box,
    linear-gradient(135deg, rgba(0,212,160,.6), rgba(108,92,231,.6)) border-box;
  border: 1.5px solid transparent;
}
.offer__box::after {
  content: ""; position: absolute; top: -60%; left: -30%; width: 80%; height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
  transform: rotate(20deg); animation: sweep 6s ease-in-out infinite;
}
@keyframes sweep { 0%,100% { left: -40%; } 50% { left: 110%; } }

/* ---- Selo da garantia girando suave ---- */
.guarantee__seal { animation: floatY 4s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---- Animação de revelação ao rolar (só com JS ativo) ---- */
.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 700px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
  .stat:nth-child(2)::after { display: none; }
}

/* Acessibilidade: respeita preferência de menos movimento */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
