/* ============================================================
   CRIANDO SISTEMAS COM IA FIRST — landing page
   Design: dark editorial + acento lima elétrico / brasa
   ============================================================ */

/* fonte self-hosted (performance: sem requisições a terceiros) */
@font-face {
  font-family: "Archivo";
  src: url("../assets/fonts/archivo-var.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #060709;
  --bg-2: #0b0d11;
  --panel: #0e1116;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f2f3f5;
  --muted: #9aa0aa;
  --dim: #6b717c;
  --lime: #c8ff4d;
  --lime-soft: rgba(200, 255, 77, 0.12);
  --volt: #4de1ff;
  --volt-soft: rgba(77, 225, 255, 0.12);
  --ember: #ff5c1f;
  --ember-soft: rgba(255, 92, 31, 0.12);
  --font: "Archivo", "Segoe UI", system-ui, sans-serif;
  --mono: ui-monospace, "Cascadia Code", "SF Mono", Consolas, monospace;
  --radius: 18px;
  --nav-h: 72px;
  --ease-snap: cubic-bezier(0.22, 1.4, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  font-variation-settings: "wdth" 100;
}

::selection { background: var(--lime); color: #060709; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
b, strong { font-weight: 700; }

section[id], [id="oferta"] { scroll-margin-top: calc(var(--nav-h) + 12px); }

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}
.container--narrow { width: min(860px, 100% - 48px); }

/* ============ camadas de efeito ============ */

#fx {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(8) infinite;
}
@keyframes grain {
  0%, 100% { background-position: 0 0; }
  25% { background-position: -8px 12px; }
  50% { background-position: 12px -8px; }
  75% { background-position: -12px -12px; }
}

.cursor-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 225, 255, 0.055) 0%, rgba(200, 255, 77, 0.03) 35%, transparent 65%);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 110;
  background: transparent;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--lime), var(--ember));
}

/* ============ botões ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-snap), box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
  will-change: transform;
  white-space: nowrap;
}
.btn--primary {
  background: var(--lime);
  color: #0a0c04;
  box-shadow: 0 0 0 0 rgba(200, 255, 77, 0.4), 0 8px 30px -8px rgba(200, 255, 77, 0.45);
}
.btn--primary:hover {
  box-shadow: 0 0 0 4px rgba(200, 255, 77, 0.18), 0 12px 40px -6px rgba(200, 255, 77, 0.55);
  transform: translateY(-2px);
}
.btn--ghost {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
}
.btn--ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn--outline {
  color: var(--lime);
  border-color: rgba(200, 255, 77, 0.4);
  background: transparent;
}
.btn--outline:hover { background: var(--lime-soft); }
.btn--big { padding: 18px 34px; font-size: 16px; }
.btn--small { padding: 10px 20px; font-size: 13.5px; }
.btn--full { width: 100%; }

/* ============ pills / kickers / chips ============ */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.pill strong { color: var(--ember); font-weight: 800; }
.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0 rgba(255, 92, 31, 0.5);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 92, 31, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(255, 92, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 92, 31, 0); }
}

.kicker {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-block;
  margin-bottom: 18px;
}

/* ============ nav ============ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(6, 7, 9, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  width: min(1280px, 100% - 48px);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(150deg, #12161d, #0a0c0e);
  border: 1px solid rgba(200, 255, 77, 0.35);
  box-shadow: 0 0 20px -5px rgba(200, 255, 77, 0.45), inset 0 0 12px rgba(200, 255, 77, 0.06);
  color: var(--lime);
  flex: none;
  transition: box-shadow 0.3s, transform 0.3s var(--ease-snap);
}
.nav__logo-mark svg {
  width: 21px;
  height: 21px;
  filter: drop-shadow(0 0 5px rgba(200, 255, 77, 0.75));
}
.nav__logo:hover .nav__logo-mark {
  box-shadow: 0 0 26px -3px rgba(200, 255, 77, 0.7), inset 0 0 12px rgba(200, 255, 77, 0.1);
  transform: translateY(-1px);
}
.nav__logo-text {
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}
.nav__logo-text em {
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--lime); }

.nav__ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s, transform 0.25s var(--ease-snap);
}
.nav__ig svg { width: 20px; height: 20px; flex: none; }
.nav__ig span { display: none; }
.nav__ig:hover { color: var(--lime); transform: translateY(-1px); }

/* botão hamburguer — só aparece no mobile */
.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.3s var(--ease-snap), opacity 0.2s, top 0.3s;
}
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 28px; }
.nav.is-open .nav__toggle span:nth-child(1) { top: 22px; transform: translateX(-50%) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { top: 22px; transform: translateX(-50%) rotate(-45deg); }

/* ============ hero ============ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 48px) 0 90px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 75% 40%, rgba(200, 255, 77, 0.07), transparent 70%),
    radial-gradient(ellipse 45% 40% at 15% 85%, rgba(255, 92, 31, 0.06), transparent 70%),
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 72px 72px, 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 40%, transparent 100%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: center;
}

.hero__title {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.98;
  font-weight: 900;
  font-variation-settings: "wdth" 106;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin: 26px 0 24px;
}
.hero__title .line { display: block; }
.hero__title .line--accent {
  color: var(--lime);
  text-shadow: 0 0 60px rgba(200, 255, 77, 0.35);
}
.hero__title-tag {
  display: block;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--volt);
  font-variation-settings: "wdth" 100;
}
.hero__title-tag::before {
  content: "⚡ ";
}

.hero__sub {
  max-width: 560px;
  font-size: 18px;
  color: var(--muted);
}
.hero__sub strong { color: var(--text); }
.hero__sub em { font-style: normal; color: var(--lime); font-weight: 600; }

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 46px; }

.hero__proof {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 26px;
}
.hero__proof-item b {
  display: block;
  font-size: 30px;
  font-weight: 900;
  font-variation-settings: "wdth" 112;
  color: var(--text);
  line-height: 1.1;
}
.hero__proof-item span {
  font-size: 12.5px;
  color: var(--dim);
  line-height: 1.45;
  display: block;
  margin-top: 4px;
}

.hero__figure {
  position: relative;
  justify-self: center;
  align-self: start;
  width: min(440px, 100%);
  transform: translateY(-56px);
}
.hero__figure-glow {
  position: absolute;
  inset: 8% 4% 0;
  background: radial-gradient(ellipse 60% 55% at 50% 45%, rgba(200, 255, 77, 0.16), transparent 70%);
  filter: blur(10px);
}
.hero__photo {
  position: relative;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  mask-image: linear-gradient(#000 82%, transparent 100%);
}

.chip {
  position: absolute;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: rgba(14, 17, 22, 0.85);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
  padding: 9px 14px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  animation: float 5.5s ease-in-out infinite;
  white-space: nowrap;
}
.chip--1 { top: 14%; left: -12%; animation-delay: 0s; }
.chip--2 { top: 44%; right: -14%; animation-delay: -1.8s; border-color: rgba(200, 255, 77, 0.35); color: var(--lime); }
.chip--3 { bottom: 12%; left: -6%; animation-delay: -3.4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__scrollhint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero__scrollhint i {
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--lime), transparent);
  animation: drip 1.6s var(--ease-out) infinite;
  transform-origin: top;
}
@keyframes drip {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(18px); opacity: 0; }
}

/* ============ marquee ============ */

.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  padding: 16px 0;
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee__track span {
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-variation-settings: "wdth" 115;
  color: var(--text);
}
.marquee__track span:nth-child(4n + 1) { color: var(--lime); }
.marquee__track i { color: var(--dim); font-style: normal; font-size: 14px; }
@keyframes marquee {
  to { transform: translateX(calc(-100% / 3)); }
}

/* ============ manifesto ============ */

.manifesto {
  padding: 150px 0 130px;
  text-align: center;
}
.manifesto__line {
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 900px;
  margin: 0 auto 34px;
  color: var(--muted);
}
.manifesto__line--big {
  font-size: clamp(2.2rem, 5.6vw, 4.4rem);
  font-weight: 900;
  font-variation-settings: "wdth" 112;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text);
}
.manifesto__line--big mark {
  background: none;
  color: var(--lime);
  text-shadow: 0 0 50px rgba(200, 255, 77, 0.35);
}
.manifesto__line--dim {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 500;
  color: var(--dim);
  max-width: 640px;
}

/* ============ seções genéricas ============ */

.section { padding: 120px 0; position: relative; }
.section--alt {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.section__head { max-width: 780px; margin-bottom: 64px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head h2 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 900;
  font-variation-settings: "wdth" 110;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.section__lead {
  margin-top: 20px;
  font-size: 18px;
  color: var(--muted);
}
.section__lead strong { color: var(--text); }

/* ============ método / steps ============ */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
}
.step:hover {
  border-color: var(--line-strong);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.7);
}
.step__num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--dim);
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 10px;
  margin-bottom: 40px;
}
.step h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
}
.step p { font-size: 14.5px; color: var(--muted); margin-bottom: 22px; }
.step__tag {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-soft);
  padding: 5px 12px;
  border-radius: 100px;
}
.step--accent { border-color: rgba(200, 255, 77, 0.35); }
.step--accent .step__num { border-color: rgba(200, 255, 77, 0.35); color: var(--lime); }
.step--accent .step__tag { background: var(--ember-soft); color: var(--ember); }

/* ============ stack de ferramentas ============ */

.stack {
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(77, 225, 255, 0.05), transparent 70%),
    var(--panel);
  padding: 30px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.stack__title {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-variation-settings: "wdth" 110;
  color: var(--muted);
  flex: none;
}
.stack__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.stack__chip {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 15px;
  border-radius: 100px;
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease-snap);
}
.stack__chip:hover {
  border-color: var(--volt);
  color: var(--volt);
  transform: translateY(-2px);
}
.stack__chip--hot {
  border-color: rgba(200, 255, 77, 0.45);
  color: var(--lime);
  background: var(--lime-soft);
}

/* ============ cases / portfólio ============ */

.cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.case {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
}
.case:hover {
  border-color: var(--line-strong);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.75);
}
.case__media {
  position: relative;
  overflow: hidden;
  background: #0b0d11;
  display: flex;
  justify-content: center;
  align-items: center;
}
.case__media img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  display: block;
}
.case__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
  background: rgba(6, 7, 9, 0.82);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px);
  padding: 7px 12px;
  border-radius: 100px;
}
.case__badge--gold {
  color: #ffd76a;
  border-color: rgba(255, 215, 106, 0.4);
}
.case__body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.case__body h3 { font-size: 24px; font-weight: 900; font-variation-settings: "wdth" 108; }
.case__metric {
  font-size: 30px;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
  font-variation-settings: "wdth" 112;
}
.case__metric small {
  font-size: 13px;
  font-weight: 600;
  color: var(--dim);
  letter-spacing: 0.02em;
}
.case__body > p:not(.case__metric) { font-size: 15px; color: var(--muted); }
.case__link {
  margin-top: auto;
  padding-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--lime);
  transition: opacity 0.2s;
}
.case__link:hover { opacity: 0.75; }

.case--more {
  align-items: stretch;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200, 255, 77, 0.05), transparent 70%),
    var(--panel);
}
.case__more-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
  padding: 30px 28px 0;
}
.case__more-grid i {
  aspect-ratio: 1;
  border: 1px dashed var(--line-strong);
  border-radius: 10px;
  position: relative;
}
.case__more-grid i::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--dim);
  font-weight: 300;
  font-size: 18px;
}
.case__more-grid i:nth-child(3n)::after { color: var(--lime); }

/* ============ mentor ============ */

.mentor {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.mentor__figure { position: relative; }
.mentor__frame {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(200, 255, 77, 0.08), transparent 70%),
    var(--panel);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.mentor__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.mentor__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 70%, rgba(6, 7, 9, 0.85));
}
.mentor__frame-label {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
}
.mentor__bio { font-size: 18px; color: var(--muted); margin: 22px 0 26px; }
.mentor__bio strong { color: var(--text); }
.mentor__timeline { display: flex; flex-direction: column; gap: 0; }
.mentor__timeline li {
  position: relative;
  padding: 16px 0 16px 34px;
  color: var(--muted);
  font-size: 15.5px;
  border-bottom: 1px solid var(--line);
}
.mentor__timeline li:last-child { border-bottom: none; }
.mentor__timeline li b { color: var(--text); }
.mentor__timeline li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 26px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(200, 255, 77, 0.6);
}
.mentor__quote {
  margin-top: 28px;
  padding: 22px 26px;
  border-left: 3px solid var(--lime);
  background: var(--lime-soft);
  border-radius: 0 14px 14px 0;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--text);
}
.mentor__quote em { font-style: normal; color: var(--lime); }

/* ============ para quem ============ */

.fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.fit__col {
  border-radius: var(--radius);
  padding: 34px 32px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.fit__col--yes { border-color: rgba(200, 255, 77, 0.3); }
.fit__col--no { border-color: rgba(255, 92, 31, 0.28); }
.fit__col h3 {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  font-variation-settings: "wdth" 110;
  margin-bottom: 20px;
}
.fit__col--yes h3 { color: var(--lime); }
.fit__col--no h3 { color: var(--ember); }
.fit__col li {
  position: relative;
  padding: 10px 0 10px 32px;
  color: var(--muted);
  font-size: 15.5px;
}
.fit__col li strong { color: var(--text); }
.fit__col--yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--lime);
  font-weight: 900;
}
.fit__col--no li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--ember);
  font-weight: 900;
}

/* ============ oferta ============ */

.offer {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
}
.offer__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(200, 255, 77, 0.09), transparent 70%),
    radial-gradient(ellipse 40% 35% at 85% 90%, rgba(255, 92, 31, 0.07), transparent 70%);
}
.offer .container { position: relative; }

.offer__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: start;
}
.offer__value {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 36px;
}
.offer__value h3 {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  font-variation-settings: "wdth" 110;
  margin-bottom: 22px;
}
.checklist li {
  position: relative;
  padding: 12px 0 12px 36px;
  color: var(--muted);
  font-size: 15.5px;
  border-bottom: 1px solid var(--line);
}
.checklist li:last-child { border-bottom: none; }
.checklist li b { color: var(--text); display: block; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--lime-soft);
  border: 1px solid rgba(200, 255, 77, 0.4);
}
.checklist li::after {
  content: "✓";
  position: absolute;
  left: 4.5px;
  top: 14px;
  font-size: 12px;
  font-weight: 900;
  color: var(--lime);
}

.offer__spots {
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 92, 31, 0.35);
  background: var(--ember-soft);
  border-radius: 14px;
}
.offer__spots-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 700;
  margin-bottom: 14px;
}
.offer__spots-bar {
  height: 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.offer__spots-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--ember), #ff8a50);
  transition: width 1.4s var(--ease-out);
}
.offer__spots-count {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--muted);
}
.offer__spots-count b { color: var(--ember); font-size: 16px; }

.offer__card {
  position: relative;
  background: linear-gradient(170deg, #12161d, #0b0d11);
  border: 1px solid rgba(200, 255, 77, 0.35);
  border-radius: 24px;
  padding: 40px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}
.offer__card-glow {
  position: absolute;
  inset: -1px;
  background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(200, 255, 77, 0.14), transparent 70%);
  pointer-events: none;
}
.offer__card-tag {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--lime-soft);
  border: 1px solid rgba(200, 255, 77, 0.3);
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 100px;
}
.offer__price { margin: 10px 0 14px; position: relative; }
.offer__price-installments {
  display: block;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 900;
  font-variation-settings: "wdth" 112;
  line-height: 1;
  color: var(--text);
}
.offer__price-installments b { color: var(--lime); }
.offer__price-installments i { font-style: normal; font-size: 0.55em; }
.offer__price-full {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  color: var(--muted);
}
.offer__price-full b { color: var(--text); }
.offer__price-full em {
  font-style: normal;
  color: var(--lime);
  font-weight: 700;
}
.offer__trust {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.offer__trust li { font-size: 13.5px; color: var(--muted); }

.offer__ps {
  max-width: 720px;
  margin: 54px auto 0;
  text-align: center;
  font-size: 15.5px;
  color: var(--muted);
  border-top: 1px dashed var(--line-strong);
  padding-top: 30px;
}
.offer__ps b { color: var(--ember); }

/* ============ faq ============ */

.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq details[open] { border-color: rgba(200, 255, 77, 0.35); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  user-select: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary h3 {
  margin: 0;
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary i {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  position: relative;
  transition: transform 0.35s var(--ease-snap), border-color 0.25s;
}
.faq summary i::before,
.faq summary i::after {
  content: "";
  position: absolute;
  background: var(--muted);
  left: 50%;
  top: 50%;
}
.faq summary i::before { width: 10px; height: 1.6px; transform: translate(-50%, -50%); }
.faq summary i::after { width: 1.6px; height: 10px; transform: translate(-50%, -50%); }
.faq details[open] summary i { transform: rotate(135deg); border-color: var(--lime); }
.faq details[open] summary i::before,
.faq details[open] summary i::after { background: var(--lime); }
.faq details p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15.5px;
}
.faq__cta { text-align: center; margin-top: 48px; }

/* ============ faixa instagram ============ */

.igband {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, #0c0e13, #0a0c10);
}
.igband__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 82% 50%, rgba(200, 255, 77, 0.10), transparent 70%),
    radial-gradient(ellipse 45% 60% at 12% 30%, rgba(77, 225, 255, 0.09), transparent 70%);
  pointer-events: none;
}
.igband__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.igband__text { max-width: 640px; }
.igband__title {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  font-weight: 900;
  font-variation-settings: "wdth" 110;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 16px 0 18px;
}
.igband__title span {
  background: linear-gradient(90deg, var(--lime), var(--volt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.igband__text p { font-size: 16.5px; color: var(--muted); }
.igband__handle {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--lime);
}
.igband__btn { flex: none; }

/* ============ footer ============ */

.footer {
  border-top: 1px solid var(--line);
  padding: 44px 0;
  background: var(--bg-2);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand b { display: block; font-size: 15px; }
.footer__brand span { font-size: 13px; color: var(--dim); }
.footer__nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__nav a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--lime); }
.footer__ig {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--lime) !important;
}
.footer__ig svg { width: 17px; height: 17px; }
.footer__legal { font-size: 12.5px; color: var(--dim); max-width: 480px; }

/* ============ sticky bar ============ */

.stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  transform: translateY(110%);
  transition: transform 0.45s var(--ease-out);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(6, 7, 9, 0.85);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.stickybar.is-visible { transform: translateY(0); }
.stickybar__inner {
  width: min(1200px, 100%);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.stickybar__text b { display: block; font-size: 14px; }
.stickybar__text span { font-size: 12.5px; color: var(--ember); font-weight: 600; }

/* ============ animações de entrada ============ */

/* estado oculto só existe com JS ativo (html.js) — sem JS, e para
   crawlers sem renderização, todo o conteúdo fica visível */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
html.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* palavras que se montam — estado inicial vem do JS */
[data-assemble] .w {
  display: inline-block;
  will-change: transform, opacity;
}

/* ============ responsivo ============ */

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 52px; }
  .hero__content { min-width: 0; }
  .hero__figure { width: min(360px, 78%); transform: none; align-self: center; }
  .chip--1 { left: -4%; }
  .chip--2 { right: -4%; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .mentor { grid-template-columns: 1fr; gap: 44px; }
  .mentor__figure { max-width: 420px; margin-inline: auto; }
  .offer__grid { grid-template-columns: 1fr; }
  .igband__inner { gap: 30px; }
}

/* ---- NAV mobile: menu hamburguer ---- */
@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 22px;
    background: rgba(8, 10, 13, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out), visibility 0.32s;
  }
  .nav.is-open { background: rgba(6, 7, 9, 0.92); backdrop-filter: blur(14px); }
  .nav.is-open .nav__menu { opacity: 1; visibility: visible; transform: none; }
  .nav__links { flex-direction: column; gap: 0; width: 100%; }
  .nav__links a {
    padding: 15px 4px;
    font-size: 16.5px;
    color: var(--text);
    border-bottom: 1px solid var(--line);
  }
  .nav__ig {
    padding: 15px 4px;
    font-size: 16.5px;
    color: var(--lime);
    border-bottom: 1px solid var(--line);
  }
  .nav__ig span { display: inline; }
  .nav__menu .btn { margin-top: 16px; width: 100%; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container, .container--narrow { width: calc(100% - 40px); }
  .section { padding: 76px 0; }
  .section__head { margin-bottom: 44px; }
  .steps { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr; }
  .fit { grid-template-columns: 1fr; }

  .hero { padding: calc(var(--nav-h) + 26px) 0 54px; min-height: auto; }
  .hero__title { font-size: clamp(2.2rem, 9vw, 3.6rem); margin: 18px 0 18px; letter-spacing: -0.02em; }
  .hero__title-tag { font-size: 11.5px; margin-top: 16px; }
  .hero__sub { font-size: 16px; }
  .hero__ctas { flex-direction: column; align-items: stretch; margin: 26px 0 34px; }
  .hero__ctas .btn { width: 100%; }
  .hero__proof { gap: 18px 26px; }
  .hero__proof-item b { font-size: 25px; }
  .hero__figure { width: min(320px, 80%); margin-top: 8px; }
  .hero__scrollhint { display: none; }
  .pill { font-size: 12px; }
  .chip { font-size: 10px; padding: 5px 9px; }
  .chip--1 { left: 0; top: 5%; }
  .chip--2 { display: none; }
  .chip--3 { left: 0; bottom: 6%; }

  .manifesto { padding: 90px 0 74px; }
  .stack { display: block; padding: 24px; }
  .stack__title { margin-bottom: 16px; }

  .mentor__quote { font-size: 15.5px; padding: 18px 20px; }

  .offer { padding: 88px 0 80px; }
  .offer__value, .offer__card { padding: 26px 20px; }

  .igband { padding: 60px 0; }
  .igband__inner { flex-direction: column; align-items: flex-start; gap: 26px; }
  .igband__btn { width: 100%; }

  .stickybar__text b { font-size: 12.5px; }
  .stickybar__text span { font-size: 11px; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 22px; }
}

@media (max-width: 420px) {
  .hero__title { font-size: clamp(1.85rem, 9.4vw, 2.5rem); }
  .hero__proof { flex-direction: column; gap: 16px; }
  .offer__price-installments { font-size: clamp(2rem, 10.5vw, 2.7rem); }
  .case__metric { font-size: 26px; }
  .btn--big { padding: 16px 24px; font-size: 15px; }
}

/* ============ acessibilidade ============ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js [data-reveal] { opacity: 1; transform: none; }
  #fx, .cursor-glow { display: none; }
}
