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

:root {
  --dark:  #0D0D0D;
  --dark2: #111111;
  --dark3: #1a1a1a;
  --dark4: #222222;
  --gold:  #C9A84C;
  --gold-dark: #A88730;
  --white: #FFFFFF;
  --light: #F7F7F7;
  --text:  #1e1e1e;
  --muted: #666666;
  --radius: 8px;
  --shadow: 0 4px 28px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius);
  font-size: .9rem; font-weight: 700; cursor: pointer; border: none;
  transition: background .2s, transform .1s, color .2s; text-decoration: none; letter-spacing: .02em;
}
.btn:active { transform: scale(.98); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(201,168,76,.5); }
.btn-outline:hover { border-color: var(--gold); background: rgba(201,168,76,.1); }
.btn-sm  { padding: 9px 18px; font-size: .8rem; }
.btn-lg  { padding: 15px 34px; font-size: 1rem; }

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 52px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,.65); font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 16px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(130deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.72) 100%),
    url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 80px 5% 0;
  display: grid; grid-template-columns: 1fr 460px; gap: 40px; align-items: flex-end;
  min-height: 600px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.35);
  color: var(--gold); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  padding: 6px 16px; border-radius: 30px; margin-bottom: 22px;
}
.hero-content { padding-bottom: 80px; }
.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 900; line-height: 1.02;
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: -.5px;
}
.hero-content h1 span { color: var(--gold); }
.hero-sub {
  font-size: .8rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; padding-bottom: 18px;
  border-bottom: 1px solid rgba(201,168,76,.25);
}
.hero-desc {
  color: rgba(255,255,255,.68); font-size: .92rem; max-width: 500px;
  margin-bottom: 32px; line-height: 1.85;
}
.hero-features { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-bottom: 36px; }
.hero-feat { display: flex; align-items: center; gap: 8px; }
.hero-feat-icon {
  width: 28px; height: 28px;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.28);
  border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-feat-icon svg { width: 13px; height: 13px; fill: none; stroke: var(--gold); stroke-width: 2; }
.hero-feat span {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  color: rgba(255,255,255,.75);
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo {
  display: flex; align-items: flex-end; justify-content: center;
  margin-top: -220px;
}
.hero-photo img {
  width: 100%; max-width: 420px; height: 720px;
  object-fit: cover; object-position: top center;
  border-radius: 12px 12px 0 0;
  display: block;
}

/* ── SECTION COMMONS ── */
section { padding: 76px 5%; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-header h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 900; margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: .02em; color: var(--dark);
}
.section-header.light h2 { color: var(--white); }
.section-header p { color: var(--muted); font-size: .9rem; }
.section-header.light p { color: rgba(255,255,255,.55); }

/* ── COMO POSSO TE AJUDAR ── */
.ajudar-section { background: var(--white); }
.ajudar-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.ajudar-card {
  text-align: center; padding: 32px 16px 28px;
  border: 1px solid #ebebeb; border-radius: 12px;
  transition: box-shadow .25s, transform .25s;
}
.ajudar-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.09); transform: translateY(-5px); }
.ajudar-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.ajudar-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--gold); stroke-width: 2; }
.ajudar-card h3 {
  font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
  color: var(--dark); margin-bottom: 10px;
}
.ajudar-card p { font-size: .78rem; color: var(--muted); line-height: 1.75; }

/* ── COMO FUNCIONA ── */
.como-funciona-section { background: var(--dark); color: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 30px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, transparent, rgba(201,168,76,.3) 20%, rgba(201,168,76,.3) 80%, transparent);
  pointer-events: none;
}
.step-card { text-align: center; padding: 0 12px; }
.step-num {
  width: 60px; height: 60px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; font-weight: 900; color: var(--dark);
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(201,168,76,.3);
}
.step-card h3 {
  font-size: .82rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  color: var(--white); margin-bottom: 12px;
}
.step-card p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.85; }

/* ── PRODUTO ── */
.produto-section { background: var(--dark3); color: var(--white); }
.produto-inner {
  display: grid; grid-template-columns: 340px 1fr; gap: 80px;
  align-items: center; max-width: 960px; margin: 0 auto;
}
.produto-img { display: flex; align-items: center; justify-content: center; }
.book-cover {
  display: flex; filter: drop-shadow(-12px 12px 40px rgba(0,0,0,.6));
}
.book-spine {
  width: 18px; background: linear-gradient(180deg, #a87f20, #7a5c10);
  border-radius: 3px 0 0 3px; flex-shrink: 0;
}
.book-face {
  width: 210px; min-height: 290px;
  background: linear-gradient(160deg, #1a1a2e 0%, #0f0f1e 100%);
  border-radius: 0 6px 6px 0;
  padding: 30px 22px; display: flex; flex-direction: column; justify-content: space-between;
  border-top: 1px solid rgba(201,168,76,.2); border-right: 1px solid rgba(201,168,76,.1);
}
.book-label { font-size: .62rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.book-title { font-size: .9rem; font-weight: 900; text-transform: uppercase; line-height: 1.35; color: var(--white); flex: 1; }
.book-author { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: 14px; }
.book-deco { height: 3px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px; margin-top: 12px; }

.badge-pill {
  display: inline-block;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.35);
  color: var(--gold); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
  padding: 5px 14px; border-radius: 30px; margin-bottom: 18px;
}
.produto-text h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 900; text-transform: uppercase;
  line-height: 1.2; margin-bottom: 18px;
}
.produto-text p { font-size: .9rem; color: rgba(255,255,255,.62); line-height: 1.85; margin-bottom: 24px; }
.produto-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 34px; }
.produto-list li { font-size: .88rem; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 12px; }
.produto-list li span { color: var(--gold); font-weight: 900; font-size: 1.1rem; }

/* ── CURSO ── */
.curso-section { background: var(--light); }
.curso-inner { display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: center; }
.curso-text .badge-pill { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.08); }
.curso-text h2 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 900; text-transform: uppercase; line-height: 1.2; margin-bottom: 18px; color: var(--dark); }
.curso-text p { font-size: .9rem; color: var(--muted); line-height: 1.85; margin-bottom: 28px; }
.curso-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 34px; }
.curso-stat {
  text-align: center; padding: 16px 8px;
  background: var(--white); border-radius: 10px; border: 1px solid #e8e8e8;
}
.stat-num { font-size: 1.2rem; font-weight: 900; color: var(--gold); }
.stat-label { font-size: .67rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }
.curso-mockup {
  background: linear-gradient(135deg, var(--dark) 0%, #1e1e1e 100%);
  border-radius: 16px; padding: 36px;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4/3; box-shadow: 0 24px 60px rgba(0,0,0,.14);
}
.mockup-card { width: 100%; display: flex; flex-direction: column; gap: 10px; }
.mockup-bar { height: 12px; width: 40%; background: var(--gold); border-radius: 6px; opacity: .8; margin-bottom: 6px; }
.mockup-line { height: 8px; background: rgba(255,255,255,.12); border-radius: 4px; }
.mockup-line.short { width: 65%; }

/* ── NÚMEROS ── */
.numeros-section { background: var(--dark2); padding: 52px 5%; }
.numeros-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 760px; margin: 0 auto;
}
.numero-item { text-align: center; padding: 20px 40px; border-right: 1px solid rgba(255,255,255,.07); }
.numero-item:last-child { border-right: none; }
.numero { font-size: 2.6rem; font-weight: 900; color: var(--gold); line-height: 1; }
.numero-label { font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-top: 6px; }

/* ── SOBRE ── */
.sobre-section { background: var(--white); }
.sobre-inner { display: grid; grid-template-columns: 360px 1fr; gap: 72px; align-items: center; }
.sobre-photo { border-radius: 14px; overflow: hidden; }
.sobre-photo img { width: 100%; height: 480px; object-fit: cover; object-position: top center; display: block; }
.sobre-text .badge-pill { background: rgba(201,168,76,.08); border-color: var(--gold); color: var(--gold); }
.sobre-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 900; text-transform: uppercase; margin-bottom: 6px; }
.sobre-text h2 span { color: var(--gold); }
.sobre-cargo { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--gold); margin-bottom: 22px; }
.sobre-text p { font-size: .9rem; color: var(--muted); line-height: 1.85; margin-bottom: 14px; }
.sobre-text strong { color: var(--dark); }
.sobre-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.badge-tag {
  background: var(--light); border: 1px solid #e0e0e0;
  color: var(--dark); font-size: .73rem; font-weight: 600;
  padding: 6px 14px; border-radius: 20px;
}

/* ── DEPOIMENTOS ── */
.depoimentos-section { background: var(--light); }
.depoimentos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.depoimento-card {
  padding: 30px 26px; background: var(--white);
  border: 1px solid #e8e8e8; border-radius: 14px;
  transition: box-shadow .25s, transform .25s;
}
.depoimento-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); transform: translateY(-4px); }
.depo-stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 14px; }
.depoimento-card > p { font-size: .88rem; color: var(--muted); line-height: 1.85; font-style: italic; margin-bottom: 22px; }
.depo-autor { display: flex; align-items: center; gap: 12px; }
.depo-avatar {
  width: 44px; height: 44px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 900; color: var(--dark); flex-shrink: 0;
}
.depo-nome { font-size: .88rem; font-weight: 700; color: var(--dark); }
.depo-cargo { font-size: .74rem; color: var(--muted); }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--light); border: 1px solid #e8e8e8; border-radius: 10px; overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: rgba(201,168,76,.4); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; font-size: .9rem; font-weight: 700; color: var(--dark);
  text-align: left; font-family: inherit;
}
.faq-icon { font-size: 1.3rem; color: var(--gold); font-weight: 300; flex-shrink: 0; line-height: 1; }
.faq-answer { display: none; padding: 0 22px 18px; }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: .86rem; color: var(--muted); line-height: 1.85; }

/* ── CTA FINAL ── */
.cta-final { background: var(--dark); color: var(--white); padding: 96px 5%; }
.cta-final-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 60px;
  align-items: center; max-width: 1100px; margin: 0 auto;
}
.cta-final h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 900;
  text-transform: uppercase; line-height: 1.15; margin-bottom: 18px;
}
.cta-final h2 span { color: var(--gold); display: block; }
.cta-final p { color: rgba(255,255,255,.6); font-size: .95rem; max-width: 500px; margin-bottom: 36px; line-height: 1.8; }
.cta-logo-block { opacity: .2; }
.cta-logo-img { height: 120px; width: auto; object-fit: contain; }

/* ── FOOTER ── */
footer { background: var(--dark3); color: rgba(255,255,255,.5); padding: 60px 5% 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 44px; }
.footer-logo-img { height: 52px; width: auto; object-fit: contain; }
.footer-brand p { font-size: .82rem; line-height: 1.85; max-width: 280px; margin-top: 16px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 34px; height: 34px; background: rgba(255,255,255,.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); text-decoration: none; transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--gold); color: var(--dark); }
.footer-social svg { width: 14px; height: 14px; fill: currentColor; }
.footer-col h4 { color: var(--white); font-size: .82rem; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .08em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.45); font-size: .82rem; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: .82rem; }
.footer-contact-item svg { width: 15px; height: 15px; fill: none; stroke: var(--gold); stroke-width: 2; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .74rem;
}
.footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .ajudar-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-bottom: 0; }
  .hero-content { padding-bottom: 0; }
  .hero-photo { margin-top: 40px; max-width: 360px; margin-left: auto; margin-right: auto; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .produto-inner { grid-template-columns: 1fr; }
  .produto-img { justify-content: flex-start; }
  .curso-inner { grid-template-columns: 1fr; }
  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-photo { max-width: 360px; }
  .depoimentos-grid { grid-template-columns: 1fr 1fr; }
  .cta-final-inner { grid-template-columns: 1fr; }
  .cta-logo-block { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .ajudar-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .numeros-grid { grid-template-columns: 1fr; }
  .numero-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 20px; }
  .curso-stats { grid-template-columns: repeat(2, 1fr); }
  .depoimentos-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
