/* =========================================================
   ME FORMEI. E AGORA?
   Identidade: preto, creme e dourado
   ========================================================= */

:root {
  --black: #070908;
  --black-soft: #0d100e;
  --surface: #121512;
  --surface-2: #171b17;
  --cream: #f0ece2;
  --muted: #aaa69d;
  --gold: #d7aa4d;
  --gold-light: #f1cf79;
  --gold-dark: #96722f;
  --line: rgba(240, 236, 226, .12);
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(215,170,77,.07), transparent 26%),
    radial-gradient(circle at 82% 28%, rgba(255,255,255,.035), transparent 23%);
  z-index: -2;
}
.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .14;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 110px 0; border-top: 1px solid var(--line); }
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 700;
}
h1, h2, h3, p { margin-top: 0; }
h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.035em;
}
h3 { font-size: 1.18rem; line-height: 1.25; }
.section-intro { max-width: 560px; color: var(--muted); font-size: 1.06rem; }
.centered { text-align: center; max-width: 800px; margin: 0 auto 60px; }

.site-header {
  position: fixed;
  z-index: 50;
  width: 100%;
  top: 0;
  background: linear-gradient(to bottom, rgba(7,9,8,.96), rgba(7,9,8,.72));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-wrap { min-height: 78px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; }
.brand { display: inline-flex; flex-direction: column; width: max-content; line-height: 1.05; letter-spacing: .16em; font-size: .68rem; }
.brand strong { color: var(--gold); font-weight: 700; }
.nav { display: flex; gap: 35px; font-size: .82rem; color: #d8d3c9; }
.nav a { position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--gold); transition: .3s; }
.nav a:hover::after { right: 0; }
.header-cta { justify-self: end; border: 1px solid rgba(215,170,77,.3); padding: 12px 18px; color: var(--gold-light); text-transform: uppercase; letter-spacing: .16em; font-size: .65rem; }
.menu-button { display: none; background: none; border: 0; padding: 10px; }
.menu-button span { display: block; width: 25px; height: 1px; margin: 7px 0; background: var(--cream); }

.hero { min-height: 100vh; padding: 150px 0 55px; display: flex; flex-direction: column; justify-content: center; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .8fr; gap: 90px; align-items: center; }
.hero h1 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(4.7rem, 9vw, 8.8rem); line-height: .75; letter-spacing: -.065em; font-weight: 500; }
.hero h1 span, .hero h1 em { display: block; }
.hero h1 em { color: var(--gold-light); font-weight: 500; }
.hero-subtitle { margin-bottom: 34px; font-family: var(--serif); font-size: clamp(1.35rem, 2.1vw, 2rem); line-height: 1.25; }
.hero-actions { display: flex; align-items: center; gap: 22px; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 24px; padding: 18px 24px; border: 1px solid transparent; text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; font-weight: 800; cursor: pointer; transition: transform .25s, box-shadow .25s, filter .25s; }
.button-primary {
  color: #17130b;
  background: linear-gradient(100deg, #b8872d 0%, #f0cd72 48%, #c18e31 100%);
  box-shadow: 0 0 22px rgba(215,170,77,.24), inset 0 1px 0 rgba(255,255,255,.45);
}
.button-primary:hover { transform: translateY(-3px); filter: brightness(1.08); box-shadow: 0 0 38px rgba(215,170,77,.45); }
.button-large { width: 100%; padding: 22px 26px; font-size: .78rem; }
.microcopy { color: var(--muted); font-size: .64rem; line-height: 1.35; text-transform: uppercase; letter-spacing: .15em; }

.portrait-wrap { position: relative; justify-self: end; width: min(100%, 430px); }
.portrait-frame { overflow: hidden; aspect-ratio: 4 / 5; background: #24251f; border: 1px solid rgba(255,255,255,.12); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.name-card { position: absolute; right: -34px; bottom: 28px; min-width: 250px; padding: 18px 22px; background: rgba(240,236,226,.95); color: #2c2923; box-shadow: 0 18px 50px rgba(0,0,0,.35); }
.name-card strong { display: block; font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.name-card span { display: block; margin-top: 4px; text-transform: uppercase; letter-spacing: .14em; font-size: .58rem; }
.gold-line { position: absolute; width: 100px; height: 2px; background: var(--gold); left: -48px; bottom: 78px; }

.chapter-line { display: flex; align-items: center; gap: 28px; margin-top: 90px; color: rgba(240,236,226,.34); font-size: .62rem; text-transform: uppercase; letter-spacing: .22em; }
.chapter-line::after { content: ""; flex: 1; height: 1px; background: rgba(240,236,226,.08); }

.two-columns { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; align-items: start; }
.section-heading h2 { max-width: 760px; }
.pain-list { border-top: 1px solid var(--line); }
.pain-item { display: grid; grid-template-columns: 60px 1fr; gap: 12px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.pain-item span { color: var(--gold); font-size: .72rem; }
.pain-item p { margin: 0; font-family: var(--serif); font-size: clamp(1.25rem, 2.2vw, 1.8rem); line-height: 1.28; }

.manifesto { padding-top: 0; border-top: 0; }
.manifesto-box { padding: 70px; background: linear-gradient(140deg, rgba(215,170,77,.13), rgba(255,255,255,.03)); border: 1px solid rgba(215,170,77,.22); position: relative; overflow: hidden; }
.quote-mark { position: absolute; top: -30px; right: 45px; color: rgba(215,170,77,.12); font-family: var(--serif); font-size: 13rem; line-height: 1; }
blockquote { position: relative; margin: 0 0 30px; max-width: 920px; font-family: var(--serif); font-size: clamp(2rem, 4.6vw, 4.1rem); line-height: 1.03; }
.manifesto-box > p:last-child { max-width: 720px; color: #c4c0b7; }

.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature-card { min-height: 310px; padding: 28px; background: var(--surface); border: 1px solid var(--line); transition: transform .25s, border-color .25s; }
.feature-card:hover { transform: translateY(-6px); border-color: rgba(215,170,77,.4); }
.card-number { color: var(--gold); font-size: .65rem; letter-spacing: .2em; }
.feature-card h3 { margin-top: 90px; font-family: var(--serif); font-size: 1.55rem; font-weight: 500; }
.feature-card p { color: var(--muted); font-size: .92rem; }

.content-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.sticky-heading { position: sticky; top: 130px; }
.modules { border-top: 1px solid var(--line); }
.module { padding: 34px 0; border-bottom: 1px solid var(--line); }
.module span { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .64rem; }
.module h3 { margin: 10px 0 8px; font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2.25rem); font-weight: 500; }
.module p { max-width: 650px; margin-bottom: 0; color: var(--muted); }

.deliverables { background: var(--black-soft); }
.deliverables-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.deliverable { min-height: 145px; padding: 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; gap: 18px; align-items: flex-start; }
.deliverable span { color: var(--gold); font-weight: 700; }
.deliverable p { margin: 0; font-family: var(--serif); font-size: 1.2rem; }

.mentor-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 85px; align-items: center; }
.mentor-image { max-height: 680px; overflow: hidden; border: 1px solid var(--line); }
.mentor-image img { width: 100%; height: 680px; object-fit: cover; object-position: center top; }
.mentor-copy p { max-width: 660px; color: #c1bdb4; font-size: 1.02rem; }
.signature { margin-top: 35px; color: var(--gold-light); font-family: var(--serif); font-size: 1.65rem; font-style: italic; }

.offer { background: linear-gradient(120deg, #10130f 0%, #080a09 70%); }
.offer-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 90px; align-items: center; }
.offer-copy > p { max-width: 600px; color: var(--muted); }
.offer-copy ul { list-style: none; padding: 0; margin: 34px 0 0; }
.offer-copy li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.offer-copy li::before { content: "↗"; color: var(--gold); margin-right: 14px; }
.price-card { padding: 46px; border: 1px solid rgba(215,170,77,.34); background: rgba(255,255,255,.025); box-shadow: 0 0 70px rgba(215,170,77,.07); }
.price-label { text-transform: uppercase; letter-spacing: .17em; color: var(--muted); font-size: .68rem; }
.price { margin: 22px 0 4px; }
.installments { display: block; color: #c9c3b7; font-size: .92rem; }
.price strong { display: block; font-family: var(--serif); font-size: clamp(4.3rem, 8vw, 6.8rem); line-height: .96; color: var(--gold-light); font-weight: 500; letter-spacing: -.055em; }
.price small { font-family: var(--sans); font-size: .92rem; letter-spacing: 0; }
.cash-price { margin-bottom: 34px; color: #c3beb4; }
.secure-note { margin: 16px 0 0; text-align: center; color: var(--muted); font-size: .7rem; }

.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; align-items: start; }
.accordion { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; padding: 27px 45px 27px 0; position: relative; font-family: var(--serif); font-size: 1.3rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 5px; color: var(--gold); font-family: var(--sans); font-weight: 300; }
details[open] summary::after { content: "−"; }
details p { padding: 0 45px 25px 0; color: var(--muted); max-width: 700px; }

.final-cta { padding: 120px 0; text-align: center; border-top: 1px solid var(--line); background: radial-gradient(circle at 50% 50%, rgba(215,170,77,.12), transparent 45%); }
.final-cta h2 { max-width: 950px; margin: 0 auto 42px; }
.final-cta .button { width: auto; }

footer { border-top: 1px solid var(--line); padding: 36px 0; }
.footer-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-wrap p { margin: 0; color: var(--muted); font-size: .72rem; }

.floating-cta { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 920px) {
  .nav-wrap { grid-template-columns: 1fr auto; }
  .nav, .header-cta { display: none; }
  .menu-button { display: block; justify-self: end; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: #0b0d0c;
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 22px;
  }
  .nav.open a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .hero-grid, .two-columns, .content-grid, .mentor-grid, .offer-grid, .faq-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero { padding-top: 125px; }
  .hero-copy { order: 1; }
  .portrait-wrap { order: 2; justify-self: center; }
  .sticky-heading { position: static; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .mentor-image img { height: 560px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 78px 0; }
  .hero { min-height: auto; padding: 110px 0 35px; }
  .hero h1 { font-size: clamp(4.1rem, 22vw, 6.1rem); }
  .hero-subtitle { font-size: 1.28rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .microcopy { display: none; }
  .button { width: 100%; }
  .portrait-wrap { width: 92%; }
  .name-card { right: -8px; min-width: 225px; }
  .gold-line { left: -18px; }
  .chapter-line { margin-top: 55px; }
  .manifesto-box { padding: 38px 26px; }
  .cards-grid, .deliverables-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 255px; }
  .feature-card h3 { margin-top: 60px; }
  .mentor-image img { height: 500px; }
  .price-card { padding: 34px 24px; }
  .price strong { font-size: 4.7rem; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
  .floating-cta {
    display: block;
    position: fixed;
    z-index: 45;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px 20px;
    text-align: center;
    background: linear-gradient(100deg, #b8872d, #efce79, #b8872d);
    color: #17130b;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .68rem;
    font-weight: 800;
    box-shadow: 0 10px 40px rgba(0,0,0,.45), 0 0 28px rgba(215,170,77,.25);
  }
  footer { padding-bottom: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition: none !important; }
}
