/* ========================================================
   2º Salário em Dólar — Página de Vendas
   Sistema de design completo + estilos da página
   ======================================================== */

/* ========= TOKENS ========= */
:root {
  /* Cores — verde */
  --green-50:#E6FBEF; --green-100:#B3F5CF; --green-300:#4EE08A;
  --green-500:#10D879; --green-600:#0BB465; --green-700:#088E50; --green-900:#053D24;
  /* Cores — amarelo */
  --yellow-50:#FFFAE0; --yellow-100:#FFEFA8; --yellow-300:#FFD740;
  --yellow-500:#FFC700; --yellow-600:#E0AE00; --yellow-800:#7A5F00;
  /* Cores — carbono */
  --ink-50:#F4F6F4; --ink-100:#E2E6E2; --ink-300:#9CA59C; --ink-500:#5B635B;
  --ink-700:#2A2F2A; --ink-800:#181C18; --ink-900:#0E110E; --ink-950:#070907;
  /* Texto */
  --text:#F4F6F4; --text-muted:#A8B0A8; --text-dim:#5B635B;
  /* Semânticos */
  --error:#FF4D4F;
  /* Fontes */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
  /* Container */
  --container: 1200px;
  /* Gradientes */
  --grad-hero: linear-gradient(180deg, #070907 0%, #0E110E 60%, #181C18 100%);
  --grad-cta: linear-gradient(180deg, #FFD740 0%, #FFC700 100%);
  --grad-cta-green: linear-gradient(180deg, #10D879 0%, #0BB465 100%);
}

/* ========= RESET ========= */
*,*::before,*::after { box-sizing: border-box; }
* { margin:0; padding:0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--ink-900);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ========= UTILS ========= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-mono { font-family: var(--font-mono); }
.text-green { color: var(--green-500); }
.text-yellow { color: var(--yellow-500); }
.text-muted { color: var(--text-muted); }

/* badge / pill */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(16,216,121,0.4); background: rgba(16,216,121,0.06);
  color: var(--green-500);
}
.badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-500); box-shadow: 0 0 12px var(--green-500);
}
.badge.yellow {
  border-color: rgba(255,199,0,0.4); background: rgba(255,199,0,0.06); color: var(--yellow-500);
}
.badge.yellow::before { background: var(--yellow-500); box-shadow: 0 0 12px var(--yellow-500); }

/* highlight estilo marca-texto */
.hl {
  background: var(--yellow-500); color: var(--ink-900);
  padding: 0 10px 4px; border-radius: 4px; white-space: nowrap;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}

/* botão */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 28px; border-radius: 14px;
  font-weight: 800; font-size: 17px; letter-spacing: -0.01em;
  min-height: 52px;
  transition: transform 120ms ease, box-shadow 200ms ease, background 200ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow { font-size: 20px; line-height: 1; transition: transform 200ms ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--grad-cta); color: var(--ink-900);
  box-shadow: 0 0 0 1px var(--yellow-500) inset, 0 14px 30px rgba(255,199,0,0.25);
}
.btn-primary:hover { box-shadow: 0 0 0 1px var(--yellow-500) inset, 0 18px 40px rgba(255,199,0,0.4); }
.btn-secondary {
  background: var(--grad-cta-green); color: #fff;
  box-shadow: 0 0 0 1px var(--green-500) inset, 0 14px 30px rgba(16,216,121,0.25);
}
.btn-xl { padding: 22px 36px; font-size: 19px; border-radius: 16px; }

/* card padrão */
.card {
  background: var(--ink-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
}
.card.elevated { box-shadow: 0 24px 60px rgba(0,0,0,0.3); }

/* microcopy ícones inline */
.checks { display: flex; flex-wrap: wrap; gap: 16px 24px; font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); letter-spacing: 0.10em; align-items: center; }
.checks .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-muted); }

/* ========= HEADER ========= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(14,17,14,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.site-header .inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px; max-width: var(--container); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 36px; width: auto; }
.brand-text { font-weight: 900; font-size: 16px; letter-spacing: -0.01em; line-height: 1.1; }
.brand-text .y { color: var(--yellow-500); }
.brand-text span { display: block; font-family: var(--font-mono); font-weight: 500; font-size: 10px; color: var(--text-muted); letter-spacing: 0.16em; margin-top: 2px; }
.top-cta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em;
  color: var(--text-muted); border: 1px solid rgba(255,255,255,0.1);
  padding: 9px 14px; border-radius: 999px; transition: border-color 200ms;
}
.top-cta:hover { border-color: var(--green-500); color: var(--text); }
.top-cta b { color: var(--green-500); }
@media (max-width: 640px){ .top-cta { display: none; } }

/* ========= HERO ========= */
.hero {
  position: relative; overflow: hidden; background: var(--grad-hero);
  padding: 80px 0 96px;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(16,216,121,0.30) 0%, transparent 60%);
  filter: blur(40px); z-index: 0;
}
.hero::after {
  content: ''; position: absolute; bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,199,0,0.18) 0%, transparent 60%);
  filter: blur(50px); z-index: 0;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.hero h1 {
  font-size: clamp(34px, 5vw, 60px); font-weight: 900; line-height: 1.05;
  letter-spacing: -0.03em; margin: 24px 0;
}
.hero h1 .num { color: var(--green-500); }
.hero .sub { font-size: clamp(16px, 2vw, 20px); color: var(--text-muted); line-height: 1.5; max-width: 560px; margin-bottom: 40px; }
.hero .sub b { color: var(--text); font-weight: 700; }
.hero .ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 24px; }

/* coluna direita — foto */
.photo-card {
  position: relative; border-radius: 28px; overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--ink-700) 0%, var(--ink-900) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 80px rgba(16,216,121,0.15);
}
.photo-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; color: var(--text-muted); gap: 12px; }
.photo-placeholder b { color: var(--text); }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .photo-card { aspect-ratio: 1/1; max-width: 520px; margin: 0 auto; }
  .final-cta .btn { width: 100%; }
}

/* ========= SECTION genéricos ========= */
section { padding: 96px 0; position: relative; }
section.dim { background: var(--ink-950); }
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; text-align: center; margin-bottom: 16px; }
.section-sub { color: var(--text-muted); text-align: center; max-width: 720px; margin: 0 auto 64px; font-size: 18px; }

/* ========= 3 PILARES ========= */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pillar { background: var(--ink-800); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 36px 28px; transition: border-color 200ms, transform 200ms; }
.pillar:hover { border-color: rgba(16,216,121,0.3); transform: translateY(-2px); }
.pillar .ic-pill { width: 56px; height: 56px; border-radius: 16px; background: rgba(16,216,121,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.pillar .ic-pill svg { width: 28px; height: 28px; }
.pillar h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.01em; }
.pillar .tag { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; color: var(--green-500); text-transform: uppercase; margin-bottom: 12px; display: block; }
.pillar p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.center-cta { display: flex; justify-content: center; margin-top: 48px; }
@media (max-width: 768px) { .pillars { grid-template-columns: 1fr; } }

/* ========= DOR / VIRADA ========= */
.pain { max-width: 760px; margin: 0 auto; font-size: 18px; line-height: 1.75; color: var(--text-muted); }
.pain p { margin-bottom: 20px; }
.pain b, .pain strong { color: var(--text); font-weight: 700; }
.pain ul { list-style: none; padding-left: 0; margin: 24px 0; }
.pain ul li { padding: 12px 0 12px 32px; position: relative; }
.pain ul li::before { content: '✕'; position: absolute; left: 0; top: 12px; color: var(--error); font-weight: 900; }

/* ========= CURRÍCULO ========= */
.curriculum { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.module { background: var(--ink-800); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; padding: 32px; transition: border-color 200ms; }
.module:hover { border-color: rgba(16,216,121,0.3); }
.module-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.module-num { font-family: var(--font-mono); font-weight: 700; font-size: 14px; color: var(--yellow-500); letter-spacing: 0.1em; }
.module h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.01em; }
.module .desc { color: var(--text-muted); font-size: 14px; font-style: italic; margin-bottom: 20px; }
.module ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.module ul li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--text); }
.module ul li::before { content: '✓'; color: var(--green-500); font-weight: 900; margin-top: 1px; }
@media (max-width: 900px) { .curriculum { grid-template-columns: 1fr; } }

/* ========= BÔNUS ========= */
.bonuses { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bonus { background: linear-gradient(180deg, var(--ink-800) 0%, var(--ink-900) 100%); border: 1px solid rgba(255,199,0,0.2); border-radius: 20px; padding: 32px; position: relative; overflow: hidden; }
.bonus::before { content: ''; position: absolute; top: -40px; right: -40px; width: 160px; height: 160px; background: radial-gradient(circle, rgba(255,199,0,0.15), transparent 60%); }
.bonus .gift { font-family: var(--font-mono); font-weight: 700; font-size: 11px; letter-spacing: 0.2em; color: var(--yellow-500); display: flex; align-items: center; gap: 6px; }
.bonus h3 { font-size: 20px; font-weight: 800; margin: 12px 0 8px; letter-spacing: -0.01em; }
.bonus .val { font-family: var(--font-mono); font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.bonus .val s { opacity: 0.6; }
.bonus p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.bonuses-foot { text-align: center; margin-top: 40px; font-size: 18px; }
.bonuses-foot b { color: var(--yellow-500); font-weight: 900; }
@media (max-width: 900px) { .bonuses { grid-template-columns: 1fr; } }

/* ========= EMOCIONAL ========= */
.emotional { max-width: 760px; margin: 0 auto; text-align: center; }
.emotional h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 32px; }
.emotional h2 .y { color: var(--yellow-500); }
.emotional p { font-size: 18px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.emotional p b { color: var(--text); font-weight: 700; }
.emotional .seal { font-size: 22px; font-weight: 900; color: var(--text); margin-top: 32px; }

/* ========= OFERTA ========= */
.offer-block { background: linear-gradient(180deg, var(--ink-800) 0%, var(--ink-900) 100%); border: 2px solid rgba(255,199,0,0.4); border-radius: 28px; padding: 48px 40px; max-width: 720px; margin: 0 auto; box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 80px rgba(255,199,0,0.1); position: relative; overflow: hidden; }
.offer-block::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(255,199,0,0.10), transparent 50%); pointer-events: none; }
.offer-block > * { position: relative; }
.offer-tag { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--yellow-500); text-align: center; display: block; margin-bottom: 16px; }
.offer-from { text-align: center; color: var(--text-muted); font-size: 18px; }
.offer-from s { color: var(--text-dim); }
.offer-now { text-align: center; font-size: clamp(56px, 9vw, 88px); font-weight: 900; letter-spacing: -0.04em; color: var(--yellow-500); line-height: 1; margin: 8px 0; font-family: var(--font-mono); }
.offer-now .cur { font-size: 0.5em; vertical-align: middle; margin-right: 4px; opacity: 0.9; }
.offer-parcel { text-align: center; color: var(--text-muted); font-family: var(--font-mono); font-size: 14px; margin-bottom: 32px; letter-spacing: 0.04em; }
.offer-list { list-style: none; padding: 0; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.offer-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.offer-list li::before { content: '✓'; color: var(--green-500); font-weight: 900; flex-shrink: 0; }
.offer-list li b { color: var(--yellow-500); }
.offer-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.offer-cta .btn { width: 100%; max-width: 480px; justify-content: center; text-align: center; }

/* ========= GARANTIA ========= */
.guarantee { display: flex; align-items: center; gap: 32px; max-width: 760px; margin: 0 auto; background: var(--ink-800); border: 1px solid rgba(16,216,121,0.25); border-radius: 24px; padding: 36px 40px; }
.guarantee .seal-img { flex-shrink: 0; width: 120px; height: 120px; }
.guarantee h3 { font-size: 24px; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.01em; }
.guarantee p { color: var(--text-muted); line-height: 1.7; }
.guarantee p b { color: var(--text); }
@media (max-width: 640px) { .guarantee { flex-direction: column; text-align: center; padding: 32px 24px; } }

/* ========= QUEM É A BECA ========= */
.about { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; max-width: 1080px; margin: 0 auto; }
.about-photo { background: transparent; border-radius: 24px; display: inline-block; overflow: hidden; }
.about-photo b { color: var(--text); }
.about-img { display: block; width: 100%; height: auto; object-fit: cover; object-position: center; border-radius: 24px; }
.about h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; letter-spacing: -0.025em; margin-bottom: 24px; }
.about p { font-size: 17px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.about p b { color: var(--text); font-weight: 700; }
.about .signature { margin-top: 24px; font-family: var(--font-mono); font-size: 14px; color: var(--green-500); letter-spacing: 0.1em; }
.about .signature span { display: block; color: var(--text-muted); margin-top: 4px; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; gap: 32px; } .about-photo { max-width: 360px; margin: 0 auto; } }

/* ========= FAQ ========= */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { background: var(--ink-800); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; margin-bottom: 12px; overflow: hidden; transition: border-color 200ms; }
.faq details:hover { border-color: rgba(16,216,121,0.3); }
.faq details[open] { border-color: rgba(16,216,121,0.4); }
.faq summary { padding: 22px 24px; cursor: pointer; font-size: 17px; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 28px; font-weight: 400; color: var(--green-500); transition: transform 200ms ease; flex-shrink: 0; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 24px 24px; color: var(--text-muted); line-height: 1.7; font-size: 15px; }
.faq .answer b { color: var(--text); }

/* ========= CTA FINAL ========= */
.final-cta { background: linear-gradient(180deg, var(--ink-900) 0%, var(--ink-950) 100%); text-align: center; }
.final-cta h2 { font-size: clamp(36px, 6vw, 64px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 24px; }
.final-cta h2 .y { color: var(--yellow-500); }
.final-cta p { font-size: 18px; color: var(--text-muted); line-height: 1.6; max-width: 600px; margin: 0 auto 40px; }
.final-cta p b { color: var(--text); }
.final-cta .btn { font-size: 20px; padding: 24px 40px; }

/* ========= RODAPÉ ========= */
footer { background: var(--ink-950); padding: 48px 0 32px; border-top: 1px solid rgba(255,255,255,0.05); }
footer .container { display: flex; flex-direction: column; gap: 24px; align-items: center; text-align: center; }
footer .links { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
footer .links a { color: var(--text-muted); font-size: 14px; transition: color 200ms; }
footer .links a:hover { color: var(--text); }
footer .disclaimer { font-size: 12px; color: var(--text-dim); max-width: 720px; line-height: 1.6; }
footer .copy { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim); letter-spacing: 0.1em; }

/* ========================================================
   MOBILE — otimização 100% (≤768px e ≤480px)
   ======================================================== */

/* CTA fixo no rodapé — só mobile */
.mobile-cta { display: none !important; }

/* offset pra âncora não ficar atrás do header sticky */
[id] { scroll-margin-top: 80px; }

@media (max-width: 768px) {
  body { font-size: 15px; }
  .container { padding: 0 18px; }

  /* respiro vertical menor */
  section { padding: 56px 0; }
  .section-sub { margin-bottom: 40px; font-size: 16px; }
  .center-cta { margin-top: 32px; }

  /* HERO */
  .hero { padding: 40px 0 48px; }
  .hero .container { gap: 32px; }
  .hero h1 { margin: 16px 0; }
  .hero h1 .hl { white-space: normal; }
  .hero .sub { margin-bottom: 28px; }
  .hero .ctas .btn { width: 100%; justify-content: center; }

  .photo-card { flex: 0 0 100%; aspect-ratio: 4/5; max-width: 100%; }

  /* botões — texto longo não estoura */
  .btn { padding: 16px 22px; font-size: 16px; gap: 8px; }
  .btn-xl { padding: 18px 22px; font-size: 16px; }

  /* tipografia de blocos de texto */
  .pain, .emotional p, .about p { font-size: 16px; }
  .pain { line-height: 1.7; }

  /* OFERTA */
  .offer-block { padding: 36px 22px; border-radius: 22px; }
  .offer-list li { font-size: 15px; }

  /* GARANTIA */
  .guarantee .seal-img { width: 96px; height: 96px; }

  /* FAQ */
  .faq summary { padding: 18px 18px; font-size: 16px; }
  .faq .answer { padding: 0 18px 20px; }

  /* === barra CTA fixa === */
  .mobile-cta {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(14,17,14,0.92);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,199,0,0.25);
    box-shadow: 0 -10px 30px rgba(0,0,0,0.45);
  }
  .mobile-cta .mc-price {
    font-family: var(--font-mono); font-weight: 800; font-size: 18px;
    color: var(--yellow-500); letter-spacing: -0.01em; line-height: 1; white-space: nowrap;
  }
  .mobile-cta .mc-price s { color: var(--text-dim); font-size: 12px; font-weight: 500; margin-left: 4px; }
  .mobile-cta .mc-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--grad-cta); color: var(--ink-900);
    font-weight: 800; font-size: 14px; letter-spacing: -0.01em;
    padding: 13px 18px; border-radius: 12px; white-space: nowrap;
    box-shadow: 0 6px 18px rgba(255,199,0,0.3);
  }
  .mobile-cta .mc-btn .arrow { font-size: 16px; }

  /* espaço pro conteúdo não ficar atrás da barra fixa */
  body { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 44px 0; }

  .offer-now { font-size: clamp(48px, 16vw, 64px); }
  .offer-block { padding: 30px 18px; }
  .guarantee { padding: 28px 20px; }
  .emotional .seal { font-size: 19px; }

  .mobile-cta .mc-price { font-size: 16px; }
  .mobile-cta .mc-btn { font-size: 13px; padding: 12px 14px; }
}
