/* ========= FONTS ========= */
@font-face {
  font-family: 'Satoshi';
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/Satoshi-Medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Satoshi';
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/Satoshi-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Gambarino';
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/Gambarino-Regular.woff2') format('woff2');
}

/* ========= TOKENS ========= */
:root {
  --bg: #0a0a0a;
  --bg-2: #111;
  --bg-3: #161616;
  --border: #252525;
  --fg: #ededed;
  --fg-muted: #a8a8a8;
  --fg-dim: #6e6e6e;
  --accent: #ee5a33;
  --accent-2: #d94a25;
  --radius: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --pad: clamp(1rem, 3vw, 2rem);
  --gap: clamp(1rem, 2.5vw, 2rem);

  --f-sans: 'Satoshi', system-ui, -apple-system, sans-serif;
  --f-serif: 'Gambarino', 'Times New Roman', serif;
}

/* ========= RESET ========= */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { margin: 0; line-height: 1.15; font-weight: 400; }
p { margin: 0 0 1em; color: var(--fg-muted); }
ul { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; color: var(--accent); }

/* ========= LAYOUT ========= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.caps {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.display {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--fg);
  margin-bottom: 1rem;
}
.lede {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--fg-muted);
  max-width: 62ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  cursor: pointer;
  text-align: center;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(238,90,51,.5);
}
.btn--primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn--lg { padding: 1.1rem 2.6rem; font-size: 1rem; }

/* ========= MARQUEE ========= */
.marquee {
  overflow: hidden;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  padding: .55rem 0;
}
.marquee__track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: max-content;
}
@keyframes scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ========= HERO ========= */
.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background: url('assets/img/hero-bg.webp') center / cover no-repeat,
              radial-gradient(60% 50% at 50% 20%, rgba(238,90,51,.15), transparent 70%),
              var(--bg);
  opacity: .7;
}
.hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,.3) 0%, var(--bg) 100%);
}
.hero__inner {
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(4rem, 10vw, 7rem);
  text-align: center;
  max-width: 900px;
}
.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  margin-bottom: 2.5rem;
}
.hero__brand-pre {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: clamp(.9rem, 1.3vw, 1rem);
  color: var(--fg);
  letter-spacing: .02em;
}
.hero__brand-mark {
  height: clamp(40px, 5vw, 56px);
  width: auto;
}
.hero__title {
  font-family: var(--f-serif);
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero__sub {
  max-width: 62ch;
  margin: 0 auto 2rem;
  color: var(--fg-muted);
}

/* ========= INTRO ========= */
.section--intro { background: var(--bg-2); text-align: center; }
.intro .display { margin-inline: auto; max-width: 20ch; }
.intro p { max-width: 65ch; margin-inline: auto; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
  margin: 3rem auto;
  max-width: 1000px;
  text-align: left;
}
.feature-grid li {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius);
  min-height: 140px;
  display: flex;
  align-items: flex-end;
  color: var(--fg);
  font-size: 1.05rem;
  line-height: 1.35;
}
.feature-grid li strong { font-weight: 700; }

/* ========= PANORAMA ========= */
.mockup { margin: 3rem auto; max-width: 980px; }
.mockup img { border-radius: var(--radius); }

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}
.pillars li {
  padding: .75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .85rem;
  color: var(--fg-muted);
  letter-spacing: .02em;
  transition: border-color .2s ease, color .2s ease;
}
.pillars li:hover { border-color: var(--accent); color: var(--fg); }

/* ========= MENTORIA ========= */
.section--mentoria { background: var(--bg-2); }
.mentoria {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: calc(var(--gap) * 2);
  align-items: center;
}
.mentoria__media {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mentoria__media .play {
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.3rem;
  padding-left: .3rem;
  box-shadow: 0 10px 30px -10px rgba(238,90,51,.6);
}
.mentoria__copy .note { font-size: .85rem; color: var(--fg-dim); margin-top: 1.5rem; }
@media (max-width: 820px) { .mentoria { grid-template-columns: 1fr; } }

/* ========= MENTORES ========= */
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  margin-top: 3rem;
}
.mentor { background: transparent; padding: 0; }
.mentor h3 {
  font-family: var(--f-serif);
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.mentor p { font-size: .9rem; line-height: 1.65; color: var(--fg-muted); }

/* ========= IMERSOES ========= */
.section--imersoes { background: var(--bg-2); }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  margin: 3rem 0;
}
.bonus {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.bonus h3 {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.bonus ul li {
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
  font-size: .95rem;
}
.bonus ul li:last-child { border: 0; }

/* ========= PRICE ========= */
.section--price { background: var(--bg); }
.price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--gap) * 2);
}
.price__left {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 3rem);
  text-align: center;
  align-self: start;
}
.price__big {
  font-family: var(--f-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--accent);
  margin: 1rem 0 .25rem;
  line-height: 1;
}
.price__big strong { font-weight: 400; }
.price__small { margin-bottom: 2rem; font-size: .95rem; }
.price__small strong { color: var(--fg); font-weight: 700; }
.pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
  margin-top: 1.5rem;
  color: var(--fg-dim);
}
.pay-methods li {
  background: #1c1c1c;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 6px;
  width: 48px;
  height: 30px;
  display: grid; place-items: center;
}
.pay-methods svg { width: 100%; height: 100%; }
.price__right h3 {
  font-family: var(--f-sans);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.checklist li {
  position: relative;
  padding: .6rem 0 .6rem 1.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
  font-size: .95rem;
}
.checklist li::before {
  content: '●';
  color: var(--accent);
  position: absolute;
  left: 0;
  top: .6rem;
}
.guarantee {
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--bg-3);
}
.guarantee h4 {
  font-family: var(--f-sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.guarantee p { font-size: .9rem; line-height: 1.6; margin: 0; }
.guarantee em { font-style: normal; color: var(--accent); }
@media (max-width: 820px) { .price { grid-template-columns: 1fr; } }

/* ========= MANIFESTO ========= */
.section--manifesto { background: var(--bg-2); }
.manifesto .pitch {
  max-width: 720px;
  margin: 2rem auto 0;
}
.manifesto .pitch li {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
  color: var(--fg);
  position: relative;
  font-size: 1rem;
}
.manifesto .pitch li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: var(--accent);
  transform: translateX(-50%);
}

/* ========= YAGO ========= */
.section--yago { background: var(--bg); }
.yago { max-width: 720px; margin-inline: auto; }
.yago .display { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem; }
.yago p { max-width: 62ch; margin-inline: auto; }

/* ========= DEPOIMENTOS ========= */
.section--depoimentos { background: var(--bg-2); }
.depoimento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  margin: 3rem 0;
}
.depoimento {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 0;
}
.depoimento h3 {
  font-family: var(--f-serif);
  font-size: 1.35rem;
  color: var(--accent);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.depoimento p { font-size: .95rem; line-height: 1.65; }
.depoimento cite {
  display: block;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-style: normal;
  font-weight: 700;
  color: var(--fg);
}

/* ========= CTA ========= */
.section--cta { background: var(--bg); }
.section--cta .display { max-width: 20ch; margin-inline: auto; }
.section--cta .lede { margin-bottom: 2rem; }
.section--cta .caps { display: block; margin-top: 1.5rem; }

/* ========= FAQ ========= */
.section--faq { background: var(--bg-2); }
.faq { max-width: 900px; margin: 0 auto; }
.faq .display { margin-bottom: 3rem; }
.faq details {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--accent); }
.faq summary {
  padding: 1.25rem 1.75rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform .25s ease;
  font-weight: 300;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 1.75rem 1.25rem;
  margin: 0;
  font-size: .95rem;
  line-height: 1.65;
}

/* ========= FOOTER ========= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
}
.footer p { margin: .25rem 0; font-size: .85rem; color: var(--fg-dim); }
.footer strong { color: var(--fg-muted); font-weight: 700; }

/* ========= UTIL ========= */
@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; }
}
