/* ========= 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;
  padding-top: 34px;
  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); font-family: var(--f-serif); }

/* ========= LAYOUT ========= */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(3rem, 7vw, 5.5rem) 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(1.75rem, 3.2vw, 2.75rem);
  line-height: 1.18;
  letter-spacing: -.005em;
  color: var(--fg);
  margin-bottom: 1rem;
}
.display em { font-family: var(--f-serif); font-style: italic; color: var(--accent); }
.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: .65rem;
  padding: .8rem 1.75rem .8rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
  background: transparent;
  color: var(--fg);
}
.btn::before {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(238,90,51,.18);
  flex: 0 0 auto;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(238,90,51,.5);
}
.btn--primary::before {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,.22);
}
.btn--primary:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn--ghost {
  border-color: var(--border);
  background: rgba(255,255,255,.02);
}
.btn--ghost:hover { border-color: var(--accent); }
.btn--lg { padding: .95rem 2.2rem .95rem 1.2rem; font-size: .85rem; }

/* ========= MARQUEE ========= */
.marquee {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  overflow: hidden;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  padding: .6rem 0;
  height: 34px;
}
.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; min-height: 100vh; display: flex; }
.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, 6vw, 5rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
  text-align: center;
  max-width: 1160px;
  align-self: center;
  margin-inline: auto;
  width: 100%;
}
.hero__brand {
  display: flex;
  justify-content: center;
  margin-bottom: 2.75rem;
}
.hero__brand-mark {
  height: clamp(110px, 12vw, 160px);
  width: auto;
}
.hero__title {
  font-family: var(--f-serif);
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}
.hero__title em { display: block; font-style: normal; color: var(--accent); font-family: var(--f-serif); }
.hero__sub {
  max-width: 68ch;
  margin: 0 auto 2.25rem;
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.6;
}
.hero__sub b { color: var(--fg); font-weight: 700; }

.hero__video {
  max-width: 880px;
  margin: 0 auto 2.5rem;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.7);
  background: #000;
}
.hero__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ========= INTRO ========= */
.section--intro {
  background: var(--bg-2);
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}
.intro .display { margin-inline: auto; max-width: 30ch; }
.intro p { max-width: 58ch; margin-inline: auto; font-size: .9rem; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 3rem auto;
  max-width: 980px;
  text-align: left;
}
.feature-grid li {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius);
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  font-family: var(--f-serif);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -.005em;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 3px solid var(--accent);
}
.feature-grid li::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,.35) 0%, rgba(10,10,10,.85) 100%);
}
.feature-grid li span { display: block; max-width: 22ch; }
@media (max-width: 720px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid li { min-height: 200px; padding: 1.25rem; font-size: 1.2rem; }
}

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

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 3rem;
}
.pillars li {
  padding: .55rem 1.25rem;
  font-size: .9rem;
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-3);
  letter-spacing: .01em;
  position: relative;
}
.pillars li::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
@media (max-width: 640px) {
  .pillars { flex-direction: column; align-items: center; gap: .65rem; }
}

/* ========= MENTORIA ========= */
.section--mentoria { background: var(--bg-2); }
.mentoria {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: calc(var(--gap) * 2);
  align-items: center;
}
.mentoria__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.mentoria__copy .display em {
  display: inline;
  font-family: var(--f-serif);
  font-style: italic;
  color: var(--accent);
}
@media (max-width: 820px) { .mentoria { grid-template-columns: 1fr; } }

/* Banner pill separator */
.section--banner-strip { padding: 0 0 clamp(2rem,5vw,4rem); background: var(--bg-2); }
.banner-pill {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .85rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 10px 30px -15px rgba(238,90,51,.55);
}
.banner-pill--wide {
  display: block;
  max-width: 820px;
  margin: 2rem auto 0;
  padding: 1rem 2rem;
}
.section--banner-strip .container { text-align: center; }

/* ========= MENTORES ========= */
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--gap) * 1.25);
  margin-top: 4rem;
}
.mentor { background: transparent; padding: 0; }
.mentor__photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: block;
}
.mentor h3 {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  color: var(--accent);
  margin-bottom: 1.25rem;
  letter-spacing: -.005em;
}
.eyebrow--center { display: block; text-align: center; }
.mentor p { font-size: .9rem; line-height: 1.65; color: var(--fg-muted); }
@media (max-width: 880px) {
  .mentor-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ========= 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 {
  margin: 1.25rem 0 .5rem;
  line-height: 1;
}
.price__big em {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  color: var(--accent);
  display: inline-block;
}
.price__small { margin-bottom: 2rem; font-size: .95rem; color: var(--fg-muted); }
.price__small strong { color: var(--fg); font-weight: 700; }
.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: 640px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.manifesto .pitch li {
  padding: 1rem 1.75rem;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  text-align: center;
  color: var(--fg);
  font-size: .95rem;
  font-weight: 500;
  background: rgba(238,90,51,.06);
  transition: background .2s ease;
}
.manifesto .pitch li:hover { background: rgba(238,90,51,.12); }

/* ========= YAGO ========= */
.divisor {
  display: block;
  width: 194px;
  max-width: 60%;
  height: auto;
  margin: 0 auto 2rem;
  opacity: .85;
}

.section--yago { background: var(--bg); }
.yago {
  max-width: 1000px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: calc(var(--gap) * 2);
  align-items: center;
}
.yago__photo { margin: 0; }
.yago__photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,.6);
}
.yago__copy .display { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.yago__copy p { margin-bottom: 1rem; }
@media (max-width: 720px) {
  .yago { grid-template-columns: 1fr; text-align: center; }
  .yago__copy p { margin-inline: auto; max-width: 48ch; }
  .yago__photo { max-width: 340px; 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-bottom: 2px solid var(--accent);
  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__author {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.depoimento__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  flex: 0 0 auto;
}
.depoimento cite {
  font-style: normal;
  font-weight: 700;
  color: var(--fg);
  font-size: .95rem;
}

/* ========= CTA ========= */
.section--cta { background: var(--bg); }
.section--cta .display { max-width: 28ch; margin-inline: auto; }
.section--cta .lede { margin-bottom: 2rem; }
.section--cta .banner-pill { margin-top: 2.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; }
}
