/* =========================================================
   ASTRO — Landing
   Sistema visual do DNA: clean-tech, roxo #5820A8 sobre off-white #FAFAFC,
   grotesca pura, glassmorphism, respiro generoso. Sem travessão na copy.
   ========================================================= */

:root {
  --violet: #5820A8;
  --violet-600: #3F1877;
  --violet-400: #7B44C9;
  --lilac: #EDE7F7;
  --lilac-soft: #F4F0FB;

  --bg: #FAFAFC;
  --bg-2: #F3F2F7;
  --ink: #1A1A22;
  --muted: #6B6B76;
  --line: #E4E2EA;

  --dark: #171320;
  --dark-2: #241B37;

  --ok: #16A34A;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 16px;
  --radius-lg: 24px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-color: #FAFAFC;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.09 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E"),
    radial-gradient(1100px 640px at 12% -8%, rgba(88, 32, 168, .12), transparent 60%),
    radial-gradient(900px 720px at 108% 4%, rgba(123, 68, 201, .10), transparent 55%),
    linear-gradient(180deg, #FBFAFE 0%, #F3F1FB 45%, #FAFAFC 100%);
  background-size: 280px 280px, 140% 90vh, 130% 90vh, 100% 100%;
  background-repeat: repeat, no-repeat, no-repeat, no-repeat;
  background-position: 0 0, 0 0, 100% 0, 0 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; letter-spacing: -0.02em; }

/* ---------- WebGL canvases ---------- */
.webgl { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; }
.webgl--hero { position: absolute; z-index: 0; opacity: 1; pointer-events: none; -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 84%); mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 84%); }
.webgl--orbit { position: absolute; z-index: 0; opacity: 0.9; pointer-events: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  padding: 5px 6px 5px 18px; border-radius: 100px;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  cursor: pointer;
  transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn::after {
  content: ""; width: 30px; height: 30px; border-radius: 50%; flex: 0 0 auto;
  background-color: var(--violet);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { border-color: var(--violet); transform: translateY(-2px); box-shadow: 0 12px 26px -14px rgba(88, 32, 168, .45); }
.btn:hover::after { transform: translateX(2px); }
.btn--lg { font-size: .96rem; padding: 6px 6px 6px 22px; gap: 13px; }
.btn--lg::after { width: 34px; height: 34px; }
.btn--primary { border-color: rgba(88, 32, 168, .35); }
.btn--primary:hover { border-color: var(--violet); }
.btn--wa::after { background-color: #22C55E; }
.btn--down::after { background-color: #2A2833; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5v14M6 13l6 6 6-6' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.btn--down:hover::after { transform: translateY(3px); }

/* ---------- Glass ---------- */
.glass {
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 20px 60px -30px rgba(26,26,34,.4);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 50;
  padding: 0 var(--pad);
  transition: top .4s var(--ease);
}
.nav.is-scrolled { top: 10px; }
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; gap: 28px;
  padding: 9px 14px 9px 24px; border-radius: 100px;
  background: rgba(18, 14, 30, .42); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(184, 150, 255, .2);
  box-shadow: 0 16px 46px -20px rgba(0, 0, 0, .55), 0 0 26px -6px rgba(123, 68, 201, .4), inset 0 1px 0 rgba(255, 255, 255, .16);
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.is-scrolled .nav__inner {
  background: rgba(255, 255, 255, .82); border-color: rgba(123, 68, 201, .18);
  box-shadow: 0 16px 40px -22px rgba(26, 26, 34, .32), 0 0 22px -8px rgba(123, 68, 201, .22), inset 0 1px 0 rgba(255, 255, 255, .7);
}
.nav__logo { height: 26px; width: auto; }
.nav__links { display: flex; gap: 30px; margin-left: auto; }
.nav__links a { font-family: var(--font-display); font-weight: 500; font-size: .95rem; color: var(--ink); position: relative; opacity: .8; transition: opacity .25s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--violet); transition: width .3s var(--ease); border-radius: 2px; }
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }
.nav__cta { margin-left: 4px; }
.nav__burger { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; margin-left: auto; }
.nav__burger span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ---------- Shared section bits ---------- */
.kicker, .section-kicker {
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--violet); display: inline-flex; align-items: center; gap: .6em;
}
.kicker__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 0 4px var(--lilac); }
.section-title { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.section-lead { color: var(--muted); font-size: 1.12rem; max-width: 52ch; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 150px var(--pad) 96px; overflow: hidden;
  background:
    radial-gradient(56% 48% at 50% 3%, rgba(178, 120, 245, .55) 0%, rgba(112, 62, 192, .32) 32%, transparent 62%),
    radial-gradient(120% 78% at 50% -10%, rgba(58, 30, 100, .72), transparent 56%),
    linear-gradient(180deg, #050309 0%, #0E0819 30%, #1E1039 52%, #341C63 70%, #7A54B0 83%, #D8CBEF 92%, #FFFFFF 100%);
}
/* céu estrelado só na área escura do topo */
.hero__stars {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(1.6px 1.6px at 18% 24%, rgba(255, 255, 255, .95), transparent),
    radial-gradient(1.4px 1.4px at 72% 12%, rgba(214, 196, 255, .9), transparent),
    radial-gradient(1.5px 1.5px at 52% 34%, rgba(255, 255, 255, .8), transparent),
    radial-gradient(1.3px 1.3px at 88% 30%, rgba(255, 255, 255, .8), transparent),
    radial-gradient(1px 1px at 30% 40%, rgba(255, 255, 255, .5), transparent),
    radial-gradient(1px 1px at 62% 22%, rgba(255, 255, 255, .5), transparent),
    radial-gradient(1px 1px at 8% 14%, rgba(200, 180, 255, .55), transparent);
  background-size: 240px 240px, 240px 240px, 240px 240px, 240px 240px, 380px 380px, 380px 380px, 380px 380px;
  background-repeat: repeat;
  animation: starDrift 60s linear infinite;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 70%);
  mask-image: linear-gradient(180deg, #000 0%, #000 42%, transparent 70%);
}
/* hero escuro: textos claros */
.hero .hero__title { color: #fff; }
.hero .hero__sub { color: rgba(255, 255, 255, .82); }
.hero .kicker { color: #cbaaff; }
.hero .kicker__dot { background: #cbaaff; }
.hero .stat__num { color: #fff; }
.hero .stat dd { color: rgba(255, 255, 255, .62); }
.hero__scroll { color: rgba(255, 255, 255, .55); }
.hero__scroll-line { background: linear-gradient(90deg, #fff, transparent); }
/* nav sobre o hero escuro (antes de rolar) */
.nav:not(.is-scrolled) .nav__links a { color: #fff; }
.nav:not(.is-scrolled) .nav__logo { filter: brightness(0) invert(1); }
.nav:not(.is-scrolled) .nav__burger span { background: #fff; }
.hero__inner { max-width: 900px; position: relative; z-index: 1; }
/* hero centralizado */
.hero__inner--center { max-width: 940px; margin-left: auto; margin-right: auto; text-align: center; }
.hero__inner--center .kicker { justify-content: center; }
.hero__inner--center .hero__sub { margin-left: auto; margin-right: auto; }
.hero__inner--center .hero__actions { justify-content: center; }
.hero__inner--center .hero__stats { justify-content: center; }
/* frase-acento com gradiente roxo animado (texto fixo, estilo em movimento) */
.hero__accent { background: linear-gradient(100deg, #A672F0 0%, #C9A6FF 28%, #EADCFF 48%, #B98BFF 68%, #A672F0 100%); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; animation: accentShift 7s ease-in-out infinite; }
@keyframes accentShift { 0%, 100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }
/* orbs animados do hero */
.hero-orb { position: absolute; z-index: 0; border-radius: 50%; filter: blur(52px); pointer-events: none; }
.hero-orb--1 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(123, 68, 201, .45), transparent 70%); top: 4%; right: 2%; animation: floaty 11s ease-in-out infinite; }
.hero-orb--2 { width: 340px; height: 340px; background: radial-gradient(circle, rgba(88, 32, 168, .36), transparent 70%); bottom: 6%; left: 0%; animation: floaty 14s ease-in-out infinite reverse; }
.kicker { margin-bottom: 26px; }
.hero__title { font-size: clamp(2.7rem, 7.4vw, 5.7rem); font-weight: 700; letter-spacing: -0.03em; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line--accent { color: var(--violet); }
.hero__sub { margin: 30px 0 38px; font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--muted); max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(28px, 6vw, 72px); margin-top: 64px; }
.stat__num, .impact__num { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; }
.stat__num { font-size: clamp(2rem, 4vw, 2.9rem); color: var(--ink); display: block; line-height: 1; }
.stat dd { color: var(--muted); font-size: .98rem; margin-top: 8px; }
.hero__scroll { position: absolute; bottom: 34px; left: var(--pad); display: flex; align-items: center; gap: 12px; color: var(--muted); font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; }
.hero__scroll-line { width: 46px; height: 1px; background: linear-gradient(90deg, var(--violet), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; left: -30%; top: 0; width: 30%; height: 100%; background: var(--violet); animation: scrollLine 2s infinite var(--ease); }
@keyframes scrollLine { to { left: 110%; } }

/* ---------- FAIXA DE VÍDEO (transição dark abaixo do hero) ---------- */
.vidband { position: relative; overflow: hidden; min-height: clamp(280px, 40vh, 440px); display: grid; place-items: center; background-color: #08060F; }
.vidband__bg { position: absolute; left: 0; right: 0; top: -30%; height: 160%; z-index: 0; background-color: #08060F; will-change: transform;
  background-image:
    /* estrelas perto (grandes, brilhantes) */
    radial-gradient(1.7px 1.7px at 20% 30%, rgba(255, 255, 255, .95), transparent),
    radial-gradient(1.5px 1.5px at 75% 15%, rgba(214, 196, 255, .9), transparent),
    radial-gradient(1.6px 1.6px at 55% 72%, rgba(255, 255, 255, .85), transparent),
    radial-gradient(1.4px 1.4px at 88% 55%, rgba(255, 255, 255, .8), transparent),
    /* estrelas longe (pequenas, fracas) */
    radial-gradient(1px 1px at 12% 65%, rgba(255, 255, 255, .55), transparent),
    radial-gradient(1px 1px at 40% 40%, rgba(255, 255, 255, .5), transparent),
    radial-gradient(1px 1px at 66% 88%, rgba(255, 255, 255, .5), transparent),
    radial-gradient(1px 1px at 92% 25%, rgba(200, 180, 255, .55), transparent),
    /* nebulosa / brilho */
    radial-gradient(70% 60% at 50% 96%, rgba(140, 90, 235, .5) 0%, rgba(88, 32, 168, .22) 34%, transparent 64%),
    radial-gradient(46% 50% at 10% 20%, rgba(88, 32, 168, .3), transparent 62%),
    radial-gradient(46% 50% at 90% 16%, rgba(123, 68, 201, .24), transparent 62%);
  background-size: 220px 220px, 220px 220px, 220px 220px, 220px 220px, 360px 360px, 360px 360px, 360px 360px, 360px 360px, cover, cover, cover;
  background-repeat: repeat, repeat, repeat, repeat, repeat, repeat, repeat, repeat, no-repeat, no-repeat, no-repeat;
  animation: starDrift 55s linear infinite;
}
@keyframes starDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, center, center, center; }
  to   { background-position: -220px 440px, -220px 440px, -220px 440px, -220px 440px, 360px -360px, 360px -360px, 360px -360px, 360px -360px, center, center, center; }
}
.vidband__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; z-index: 0; }
.vidband__overlay { position: absolute; inset: 0; z-index: 1; background: radial-gradient(120% 120% at 50% 0%, rgba(88, 32, 168, .30), transparent 62%), linear-gradient(180deg, rgba(14, 11, 24, .58) 0%, rgba(14, 11, 24, .74) 100%); }
.vidband::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .45; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='gv'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23gv)'/%3E%3C/svg%3E"); background-size: 260px; }
.vidband__content { position: relative; z-index: 2; text-align: center; padding: 0 var(--pad); max-width: 900px; }
.vidband__kicker { font-family: var(--font-mono); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--violet-400); margin-bottom: 18px; }
.vidband__title { color: #fff; font-size: clamp(1.35rem, 3vw, 2.2rem); }
.vidband__marquee { position: absolute; bottom: 26px; left: 0; right: 0; z-index: 2; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.vidband__track { display: inline-flex; gap: 26px; align-items: center; white-space: nowrap; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: rgba(255, 255, 255, .48); animation: vbMarquee 24s linear infinite; }
@keyframes vbMarquee { to { transform: translateX(-50%); } }

/* ---------- CLIENTS ---------- */
.clients { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 54px var(--pad) 30px; text-align: center; }
/* faixa branca full-width pra transição limpa vinda do hero */
.clients::before { content: ""; position: absolute; top: -1px; bottom: -50px; left: 50%; transform: translateX(-50%); width: 100vw; z-index: -1; background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 52%, transparent 100%); }
.clients__label { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.clients__row { margin-top: 26px; display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(24px, 5vw, 56px); }
.clients__row span { font-family: var(--font-display); font-weight: 600; font-size: clamp(1rem, 2.4vw, 1.5rem); color: #B9B7C4; letter-spacing: -0.01em; transition: color .3s; }
.clients__row span:hover { color: var(--violet); }

/* Carrossel horizontal de logos de clientes */
.logos { margin-top: 38px; overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logos__track { display: flex; align-items: center; gap: clamp(30px, 5vw, 64px); width: max-content; animation: logosScroll 24s linear infinite; }
.logos:hover .logos__track { animation-play-state: paused; }
.logos__item { height: 54px; width: 150px; object-fit: contain; filter: grayscale(1); opacity: .55; transition: filter .35s var(--ease), opacity .35s var(--ease); flex: 0 0 auto; }
.logos__item:hover { filter: grayscale(0); opacity: 1; }
@keyframes logosScroll { to { transform: translateX(-50%); } }

/* ---------- MANIFESTO ---------- */
.manifesto { max-width: var(--maxw); margin: 0 auto; padding: clamp(80px, 12vw, 150px) var(--pad); }
.manifesto__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 6vw, 80px); align-items: start; }
.manifesto__title { font-size: clamp(2.2rem, 5vw, 4rem); grid-row: span 1; }
.section-kicker { grid-column: 1 / -1; margin-bottom: 8px; }
.manifesto__body p { font-size: 1.18rem; color: var(--ink); margin-bottom: 20px; }
.manifesto__body p:last-child { color: var(--muted); }

/* ---------- SERVICES ---------- */
.services { position: relative; max-width: var(--maxw); margin: 0 auto; padding: clamp(50px, 7vw, 90px) var(--pad) 0; }
/* Propulsão (escuro) cola no painel do método (claro): junção sem canto arredondado */
.levels .level--propulsao { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
/* faixa distinta atrás dos serviços, para quebrar a monotonia de cor */
.services::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 100vw; z-index: -1; background: radial-gradient(90% 70% at 50% 0%, #ECE7FA 0%, #F4F1FC 55%, transparent 100%); border-top: 1px solid rgba(88, 32, 168, .10); }
.services__head { text-align: center; max-width: 640px; margin: 0 auto 56px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ---------- NÍVEIS DE SERVIÇO (Órbita / Propulsão) ---------- */
.levels { display: flex; flex-direction: column; gap: 22px; }
.level { --mx: 50%; --my: 50%; position: relative; border-radius: var(--radius-lg); overflow: hidden; transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s cubic-bezier(.2, .8, .2, 1); }
.level > * { position: relative; z-index: 1; }
.level::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0; transition: opacity .8s ease; filter: blur(22px); background: radial-gradient(500px circle at var(--mx) var(--my), rgba(123, 68, 201, .06), transparent 74%); }
@media (hover: hover) and (pointer: fine) {
  .level:hover::after { opacity: 1; }
  .level:hover { transform: translateY(-5px); }
}
.level__badge { display: inline-block; font-family: var(--font-mono); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--violet); background: var(--lilac); padding: 7px 13px; border-radius: 100px; margin-bottom: 16px; }
.level__badge--light { color: #fff; background: rgba(255, 255, 255, .12); }
.level__name { font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 12px; }
.level__slogan { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.05rem, 1.9vw, 1.35rem); color: var(--violet-400); letter-spacing: -0.01em; margin: -4px 0 18px; }
.level__desc { color: var(--muted); margin-bottom: 26px; max-width: 46ch; }
.level__desc strong, .manifesto__body strong { font-weight: 700; color: var(--ink); }
.level--propulsao .level__desc strong { color: #fff; }
.level__flag { position: absolute; top: clamp(22px, 3vw, 34px); right: clamp(22px, 3vw, 34px); z-index: 2; display: inline-flex; align-items: center; gap: 7px; background: var(--violet); color: #fff; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; padding: 7px 14px 7px 12px; border-radius: 100px; overflow: hidden; box-shadow: 0 0 0 0 rgba(123, 68, 201, .55); animation: flagPulse 2.4s ease-out infinite; }
.level__flag-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 0 rgba(255, 255, 255, .75); animation: flagDot 2.4s ease-in-out infinite; flex: 0 0 auto; }
.level__flag::after { content: ""; position: absolute; top: 0; left: -70%; width: 45%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent); transform: skewX(-18deg); animation: flagShine 3.6s ease-in-out infinite; }
@keyframes flagPulse { 0% { box-shadow: 0 0 0 0 rgba(123, 68, 201, .55); } 70%, 100% { box-shadow: 0 0 0 13px rgba(123, 68, 201, 0); } }
@keyframes flagDot { 0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, .75); } 70%, 100% { box-shadow: 0 0 0 6px rgba(255, 255, 255, 0); } }
@keyframes flagShine { 0%, 12% { left: -70%; } 55%, 100% { left: 130%; } }
/* Órbita: card claro compacto */
.level--orbita { background: linear-gradient(180deg, #FFFFFF 0%, #FCFAFF 100%); border: 1px solid var(--line); padding: clamp(30px, 4vw, 48px); display: flex; flex-direction: column; gap: clamp(28px, 3.5vw, 42px); box-shadow: 0 1px 0 rgba(255, 255, 255, .9) inset, 0 26px 55px -34px rgba(88, 32, 168, .3); }
.level--orbita:hover { box-shadow: 0 1px 0 rgba(255, 255, 255, .9) inset, 0 40px 70px -34px rgba(88, 32, 168, .4); }
.level__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 54px); align-items: start; }
.level--orbita .level__name { color: var(--ink); }
.level__list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.level__list li { position: relative; padding-left: 30px; color: var(--ink); transition: transform .28s cubic-bezier(.2, .8, .2, 1), color .28s ease; }
.level__list li:hover { transform: translateX(5px); color: var(--violet); }
.level__list li:hover::before { box-shadow: inset 0 0 0 2px var(--violet), 0 0 0 4px rgba(88, 32, 168, .14); }
.level__list li::before { content: ""; position: absolute; left: 0; top: 5px; width: 18px; height: 18px; border-radius: 50%; background: var(--lilac); box-shadow: inset 0 0 0 2px var(--violet); }
.level__list li::after { content: ""; position: absolute; left: 5px; top: 10px; width: 7px; height: 3px; border-left: 2px solid var(--violet); border-bottom: 2px solid var(--violet); transform: rotate(-45deg); }
/* Propulsão: painel escuro, maior, 3 pilares */
.level--propulsao { background: radial-gradient(120% 150% at 100% 0%, rgba(123, 68, 201, .4), transparent 55%), linear-gradient(135deg, #241B37 0%, #171320 100%); color: #fff; padding: clamp(34px, 4.5vw, 58px); display: flex; flex-direction: column; gap: clamp(30px, 3.5vw, 40px); border: 1px solid rgba(184, 150, 255, .16); box-shadow: 0 1px 0 rgba(255, 255, 255, .06) inset, 0 40px 80px -34px rgba(23, 19, 32, .65); }
.level--propulsao:hover { box-shadow: 0 1px 0 rgba(255, 255, 255, .08) inset, 0 56px 96px -34px rgba(88, 32, 168, .55); }
.level--propulsao::after { background: radial-gradient(560px circle at var(--mx) var(--my), rgba(163, 116, 245, .1), transparent 74%); }
.level--propulsao .level__intro { max-width: 640px; }
.level--propulsao .level__name { color: #fff; }
.level--propulsao .level__desc { color: rgba(255, 255, 255, .76); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 36px); }
.pillar__title { font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; color: #fff; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.pillar ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.pillar li { position: relative; padding-left: 20px; color: rgba(255, 255, 255, .8); font-size: .95rem; transition: transform .28s cubic-bezier(.2, .8, .2, 1), color .28s ease; }
.pillar li:hover { transform: translateX(5px); color: #fff; }
.pillar li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--violet-400); transition: box-shadow .28s ease; }
.pillar li:hover::before { box-shadow: 0 0 10px 1px var(--violet-400); }
.levels__cta { text-align: center; margin-top: clamp(30px, 4vw, 46px); }
.btn--spot { background: linear-gradient(135deg, #6A2FBE 0%, #7B44C9 100%); color: #fff; border-color: transparent; padding: 9px 9px 9px 26px; box-shadow: 0 16px 34px -14px rgba(88, 32, 168, .6); animation: ctaGlow 2.8s ease-out infinite; }
.btn--spot .btn__label { text-align: center; line-height: 1.24; }
.btn--spot::after { background-color: #fff; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='%235820A8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.btn--spot:hover { border-color: transparent; transform: translateY(-3px); box-shadow: 0 24px 46px -14px rgba(88, 32, 168, .72); }
@keyframes ctaGlow { 0% { box-shadow: 0 16px 34px -14px rgba(88, 32, 168, .6), 0 0 0 0 rgba(123, 68, 201, .5); } 70%, 100% { box-shadow: 0 16px 34px -14px rgba(88, 32, 168, .6), 0 0 0 16px rgba(123, 68, 201, 0); } }
@media (max-width: 820px) {
  .level__grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 600px) {
  .level--propulsao { gap: 24px; }
  .level__flag { position: relative; align-self: flex-start; top: auto; right: auto; }
}
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; will-change: transform; }
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(88,32,168,.35); border-color: rgba(88,32,168,.35); }
.tier { display: flex; flex-direction: column; position: relative; }
.tier--featured { background: linear-gradient(180deg, #fff, var(--lilac-soft)); border-color: rgba(88,32,168,.4); box-shadow: 0 24px 60px -34px rgba(88,32,168,.4); }
.tier__flag { position: absolute; top: -12px; left: 30px; background: var(--violet); color: #fff; font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px; }
.tier__head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; }
.tier__badge { font-family: var(--font-mono); font-size: .74rem; color: var(--violet); background: var(--lilac); padding: 4px 10px; border-radius: 100px; }
.tier__name { font-size: 1.7rem; }
.tier__desc { color: var(--muted); margin-bottom: 22px; }
.tier__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.tier__list li { position: relative; padding-left: 28px; font-size: .98rem; }
.tier__list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px; border-radius: 50%; background: var(--lilac); box-shadow: inset 0 0 0 2px var(--violet); }
.tier__list li::after { content: ""; position: absolute; left: 5px; top: 11px; width: 6px; height: 3px; border-left: 2px solid var(--violet); border-bottom: 2px solid var(--violet); transform: rotate(-45deg); }
.tier__cta { font-family: var(--font-display); font-weight: 500; font-size: .95rem; color: var(--violet); display: inline-flex; align-items: center; gap: 8px; padding: 12px 0; border-top: 1px solid var(--line); transition: gap .3s; }
.tier__cta::after { content: "→"; transition: transform .3s; }
.tier__cta:hover::after { transform: translateX(5px); }
.tier__cta--solid { justify-content: center; background: var(--violet); color: #fff; border: 0; border-radius: 100px; padding: 14px; box-shadow: 0 8px 24px -8px rgba(88,32,168,.5); }
.tier__cta--solid::after { content: "→"; }
.tier__cta--solid:hover { background: var(--violet-600); }

/* Hover: card do plano troca para o modo dark (só no hover), com transição suave e leve aumento */
.tier { transition: transform .5s cubic-bezier(.34, 1.45, .55, 1), box-shadow .55s var(--ease), background .55s var(--ease), border-color .55s var(--ease); }
.tier__name, .tier__desc, .tier__badge, .tier__cta, .tier__flag { transition: color .55s var(--ease), background .55s var(--ease), border-color .55s var(--ease); }
.tier__list li { transition: color .55s var(--ease); }
.tier__list li::before, .tier__list li::after { transition: background .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease); }
.tier:hover { transform: translateY(-12px) scale(1.06); background: var(--dark); border-color: var(--dark); box-shadow: 0 48px 86px -28px rgba(10, 8, 18, .8); z-index: 3; }
.tier--featured:hover { background: var(--dark); }
.tier:hover .tier__name { color: #fff; }
.tier:hover .tier__desc { color: rgba(255,255,255,.66); }
.tier:hover .tier__list li { color: rgba(255,255,255,.9); }
.tier:hover .tier__badge { background: rgba(255,255,255,.12); color: #fff; }
.tier:hover .tier__list li::before { background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 2px var(--violet-400); }
.tier:hover .tier__list li::after { border-color: var(--violet-400); }
.tier:hover .tier__flag { background: var(--violet-400); color: var(--dark); }
.tier:hover .tier__cta { color: var(--violet-400); border-top-color: rgba(255,255,255,.16); }
.tier:hover .tier__cta--solid { background: var(--violet-400); color: var(--dark); border-top-color: transparent; }

.special { position: relative; overflow: hidden; margin-top: 30px; border-radius: var(--radius-lg); padding: clamp(30px, 5vw, 52px); background: radial-gradient(120% 150% at 100% 0%, rgba(123, 68, 201, .38), transparent 55%), linear-gradient(135deg, #241B37 0%, #171320 100%); color: #fff; display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(26px, 4vw, 50px); align-items: center; }
.special__kicker { font-family: var(--font-mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--violet-400); margin-bottom: 10px; }
.special__title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: #fff; margin-bottom: 14px; }
.special__desc { color: rgba(255, 255, 255, .74); margin-bottom: 26px; max-width: 44ch; }
.special .btn { background: #fff; color: var(--ink); border-color: transparent; }
.special .btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(0, 0, 0, .5); }
.special__list { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; }
.special__list li { font-family: var(--font-display); font-weight: 500; font-size: 1rem; padding: 13px 22px; border-radius: 100px; background: rgba(155, 108, 240, .14); border: 1px solid rgba(155, 108, 240, .32); }
@media (max-width: 760px) { .special { grid-template-columns: 1fr; } }

/* ---------- MÉTODO ---------- */
.method { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad) clamp(60px, 8vw, 100px); }
.method__panel { position: relative; z-index: 1; border: 1px solid var(--line); border-top: none; border-radius: 0 0 var(--radius-lg) var(--radius-lg); background: linear-gradient(180deg, #fff 0%, #FCFAFF 100%); padding: clamp(30px, 4vw, 56px) clamp(24px, 3.5vw, 48px); box-shadow: 0 30px 60px -42px rgba(88, 32, 168, .18); }
.method--of-propulsao .method__head { align-items: center; text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.method__head { margin-bottom: 48px; display: flex; flex-direction: column; gap: 14px; }
/* Bloco de fechamento com o CTA, ancorado numa superfície suave */
.method__close { margin-top: clamp(34px, 4.5vw, 52px); padding: clamp(26px, 3.5vw, 40px); border-radius: var(--radius-lg); background: linear-gradient(180deg, #fff 0%, var(--lilac) 100%); border: 1px solid var(--line); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.method__close-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 3vw, 1.95rem); letter-spacing: -0.01em; color: var(--ink); }
.method__close-lead { color: var(--muted); max-width: 40ch; font-size: 1.02rem; }
.method__close .levels__cta { margin-top: 0; }
.method__steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.method__steps--six { grid-template-columns: repeat(6, 1fr); gap: 16px; }
/* trilho do progresso: base apagada + preenchimento que "carrega" no scroll */
.method__line { position: absolute; top: 34px; left: 6%; right: 6%; height: 4px; z-index: 0; }
.method__line::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 7px, transparent 7px 14px); }
.method__line-fill { position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 4px; width: calc(var(--p, 0) * 100%); background: linear-gradient(90deg, var(--violet-400), var(--violet)); border-radius: 4px; box-shadow: 0 0 16px rgba(88, 32, 168, .5); transition: width .12s linear; }
.method__step { position: relative; z-index: 1; }
.method__num { display: inline-grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: #fff; border: 1px solid var(--line); font-family: var(--font-display); font-weight: 700; color: var(--violet); font-size: 1.2rem; margin-bottom: 22px; box-shadow: 0 10px 26px -14px rgba(88,32,168,.4); }
.method__step h3 { font-size: 1.35rem; margin-bottom: 10px; }
.method__step p { color: var(--muted); font-size: 1rem; }

/* ---------- SÓCIOS ---------- */
.socios { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px, 9vw, 110px) var(--pad) clamp(50px, 7vw, 90px); }
.socios__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; margin-bottom: 46px; }
.socios__title { font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 13ch; margin-top: 12px; }
.socios__aside { display: flex; flex-direction: column; align-items: flex-end; gap: 22px; max-width: 400px; }
.socios__intro { color: var(--muted); text-align: right; font-size: 1.05rem; }
.socios__nav { display: flex; gap: 12px; }
.socios__arrow { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255, 255, 255, .5); color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease); }
.socios__arrow:hover { background: var(--violet); border-color: var(--violet); color: #fff; transform: translateY(-2px); }
.socios__carousel { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.socios__track { display: flex; width: max-content; animation: sociosScroll 40s linear infinite; }
.socios__carousel:hover .socios__track { animation-play-state: paused; }
.socios__track .socio { margin-right: 20px; }
@keyframes sociosScroll { to { transform: translateX(-50%); } }
.socio { flex: 0 0 auto; width: clamp(240px, 27vw, 310px); aspect-ratio: 3 / 4; position: relative; border-radius: var(--radius-lg); overflow: hidden; background: #201A2E; }
.socio__mono { position: absolute; inset: 0; z-index: 0; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 3rem; color: rgba(255, 255, 255, .16); }
.socio__img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center 18%; filter: grayscale(1); }
.socio__scrim { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, transparent 38%, rgba(14, 11, 24, .12) 58%, rgba(14, 11, 24, .88) 100%); }
.socio__info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 22px; color: #fff; }
.socio__num { font-family: var(--font-mono); font-size: .74rem; color: rgba(255, 255, 255, .62); letter-spacing: .08em; }
.socio__name { font-size: 1.35rem; margin: 8px 0 3px; color: #fff; }
.socio__role { color: rgba(255, 255, 255, .74); font-size: .92rem; }
.socio__ig { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-family: var(--font-mono); font-size: .78rem; color: rgba(255, 255, 255, .72); transition: color .25s var(--ease); position: relative; z-index: 3; }
.socio__ig:hover { color: var(--violet-400); }
.socio__ig svg { display: block; }
@media (max-width: 700px) {
  .socios__head { align-items: flex-start; }
  .socios__aside { align-items: flex-start; }
  .socios__intro { text-align: left; }
}

/* ---------- IMPACT (dark) ---------- */
.impact { position: relative; background: radial-gradient(1000px 640px at 50% 122%, rgba(123, 68, 201, .5), transparent 62%), linear-gradient(180deg, #171320 0%, #241B37 100%); color: #fff; margin-top: 40px; overflow: hidden; }
.impact::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='gw'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.13 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23gw)'/%3E%3C/svg%3E"); background-size: 260px; }
.impact__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: clamp(80px, 12vw, 150px) var(--pad); text-align: center; }
.impact__title { font-size: clamp(2rem, 5vw, 3.6rem); color: #fff; margin-bottom: 60px; }
.impact__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.impact__card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: 40px 24px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.impact__num { font-size: clamp(2.6rem, 6vw, 4rem); color: #fff; line-height: 1; }
.impact__label { color: rgba(255,255,255,.66); font-size: .98rem; }
.impact__note { margin-top: 50px; color: rgba(255,255,255,.72); font-size: 1.15rem; max-width: 60ch; margin-left: auto; margin-right: auto; }

/* ---------- CTA FINAL ---------- */
.cta-final { position: relative; overflow: hidden; padding: clamp(70px, 10vw, 130px) var(--pad); background: radial-gradient(130% 130% at 50% -12%, rgba(123, 68, 201, .30) 0%, rgba(237, 231, 247, .55) 32%, transparent 64%); }
.cta-final::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .6; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='gc'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23gc)'/%3E%3C/svg%3E"); background-size: 260px; }
.cta-final__box { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; text-align: center; padding: clamp(44px, 6vw, 72px); border-radius: var(--radius-lg); }
.cta-final__box h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-bottom: 18px; }
.cta-final__box p { color: var(--muted); font-size: 1.15rem; max-width: 52ch; margin: 0 auto 34px; }

/* ---------- DEPOIMENTOS ---------- */
.testimonials { max-width: var(--maxw); margin: 0 auto; padding: clamp(60px, 9vw, 110px) var(--pad); }
.testimonials__head { text-align: center; max-width: 660px; margin: 0 auto 48px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.testimonials__carousel { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.testimonials__track { display: flex; align-items: stretch; width: max-content; animation: testiScroll 36s linear infinite; }
.testimonials__carousel:hover .testimonials__track { animation-play-state: paused; }
.testimonials__track .testi { flex: 0 0 clamp(280px, 80vw, 420px); margin-right: 22px; }
@keyframes testiScroll { to { transform: translateX(-50%); } }
.testi { display: flex; flex-direction: column; gap: 18px; }
.testi__stars { color: var(--violet); letter-spacing: 3px; font-size: .95rem; }
.testi blockquote { font-family: var(--font-display); font-weight: 500; font-size: 1.12rem; line-height: 1.45; letter-spacing: -0.01em; color: var(--ink); }
.testi figcaption { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testi__avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--lilac); color: var(--violet); font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; flex: 0 0 auto; }
.testi__who { display: flex; flex-direction: column; }
.testi__who strong { font-family: var(--font-display); font-weight: 600; font-size: .98rem; }
.testi__who small { color: var(--muted); font-size: .86rem; }
.testimonials__note { text-align: center; color: var(--muted); font-size: .82rem; margin-top: 26px; opacity: .7; }

/* ---------- FOOTER ---------- */
.footer { position: relative; overflow: hidden; background: linear-gradient(180deg, #241B37 0%, #171320 100%); color: #fff; padding: clamp(60px, 8vw, 90px) var(--pad) 30px; }
.footer::after { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .4; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='gf'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23gf)'/%3E%3C/svg%3E"); background-size: 260px; }
.footer__inner, .footer__base { position: relative; z-index: 1; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; gap: 50px; flex-wrap: wrap; }
.footer__logo { height: 30px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer__brand p { color: rgba(255,255,255,.6); max-width: 34ch; }
.footer__cols { display: flex; gap: 70px; flex-wrap: wrap; }
.footer__cols h4 { font-size: .82rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--violet-400); margin-bottom: 16px; font-weight: 500; }
.footer__cols a, .footer__cols span { display: block; color: rgba(255,255,255,.72); margin-bottom: 10px; transition: color .25s; }
.footer__cols a:hover { color: #fff; }
.footer__base { max-width: var(--maxw); margin: 50px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,.5); font-size: .88rem; }
.footer__mono { font-family: var(--font-mono); color: var(--violet-400); }

/* ---------- Glow inferior (fixo, aparece e anima no scroll) ---------- */
.scroll-glow { position: fixed; left: 0; right: 0; bottom: 0; height: 300px; z-index: 3; pointer-events: none; overflow: hidden; opacity: 0; transition: opacity .7s var(--ease);
  background: linear-gradient(0deg,
    rgba(120, 60, 210, .95) 0%,
    rgba(123, 68, 201, .62) 20%,
    rgba(100, 45, 180, .34) 42%,
    rgba(88, 32, 168, .12) 66%,
    transparent 92%);
}
.scroll-glow.is-on { opacity: 1; }
.scroll-glow::before {
  content: ""; position: absolute; bottom: -80px; left: 50%; width: 72%; margin-left: -36%; height: 270px;
  background: radial-gradient(58% 100% at 50% 100%, rgba(202, 98, 246, .95) 0%, rgba(150, 78, 232, .5) 40%, transparent 74%);
  filter: blur(34px); animation: hotspotMove 12s ease-in-out infinite; will-change: transform;
}
@keyframes hotspotMove { 0%, 100% { transform: translateX(-30%) scale(1); } 50% { transform: translateX(30%) scale(1.14); } }

/* ---------- Botão flutuante (aparece no scroll) ---------- */
.floatcta { position: fixed; left: 50%; bottom: 24px; z-index: 60; display: inline-flex; align-items: center; gap: 12px; padding: 7px 20px 7px 7px; border-radius: 100px; background: rgba(20, 16, 30, .94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, .12); box-shadow: 0 20px 44px -16px rgba(0, 0, 0, .55); color: #fff; opacity: 0; transform: translate(-50%, 130%); transition: transform .5s var(--ease), opacity .5s var(--ease), box-shadow .3s var(--ease); }
.floatcta.is-visible { opacity: 1; transform: translate(-50%, 0); animation: ctaPulse 2s ease-out infinite; }
@keyframes ctaPulse { 0% { box-shadow: 0 20px 44px -16px rgba(0, 0, 0, .5), 0 0 0 0 rgba(123, 68, 201, .6); } 70%, 100% { box-shadow: 0 20px 44px -16px rgba(0, 0, 0, .5), 0 0 0 15px rgba(123, 68, 201, 0); } }
.floatcta:hover { box-shadow: 0 24px 54px -14px rgba(88, 32, 168, .6); }
.floatcta__badge { width: 38px; height: 38px; border-radius: 50%; background: #fff; display: grid; place-items: center; flex: 0 0 auto; }
.floatcta__badge img { width: 20px; height: 20px; }
.floatcta__text { font-family: var(--font-display); font-weight: 500; font-size: .95rem; white-space: nowrap; }
.floatcta__dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 0 0 rgba(34, 197, 94, .5); animation: pulseGreen 2s ease-in-out infinite; flex: 0 0 auto; }
@keyframes pulseGreen { 0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .5); } 70%, 100% { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); } }
.floatcta__arrow { color: var(--violet-400); transition: transform .3s var(--ease); }
.floatcta:hover .floatcta__arrow { transform: translateX(4px); }
@media (max-width: 480px) { .floatcta__text { font-size: .88rem; } }

/* ---------- Reveal animation base ---------- */
.reveal, [data-reveal] { opacity: 0; transform: translateY(26px); filter: blur(8px); transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }
.reveal.is-in, [data-reveal].is-in { opacity: 1; transform: none; filter: blur(0); }

/* animações extras: ambiente + micro-interações */
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-32px); } }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(88, 32, 168, .45); } 70%, 100% { box-shadow: 0 0 0 9px rgba(88, 32, 168, 0); } }
@keyframes shineSweep { to { left: 150%; } }
.kicker__dot { animation: pulseDot 2.6s ease-in-out infinite; }
.cta-orb { position: absolute; z-index: 0; top: -70px; left: 50%; width: 340px; height: 340px; margin-left: -170px; border-radius: 50%; background: radial-gradient(circle, rgba(123, 68, 201, .55), transparent 68%); filter: blur(34px); pointer-events: none; animation: floaty 10s ease-in-out infinite; }

/* menu (desktop = itens soltos; mobile = painel flutuante) */
.nav__menu { display: contents; }
.nav.is-open .nav__menu {
  display: flex; flex-direction: column; gap: 8px;
  position: absolute; top: calc(100% + 12px); left: var(--pad); right: var(--pad);
  padding: 14px; border-radius: 20px;
  background: rgba(255, 255, 255, .97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line); box-shadow: 0 26px 60px -22px rgba(26, 26, 34, .4);
}
.nav.is-open .nav__links { display: flex; flex-direction: column; gap: 4px; margin: 0; }
.nav.is-open .nav__links a { color: var(--ink) !important; padding: 13px 14px; border-radius: 12px; font-size: 1.05rem; opacity: 1; }
.nav.is-open .nav__links a::after { display: none; }
.nav.is-open .nav__cta { display: inline-flex; justify-content: center; }
/* animação elegante de abertura */
@keyframes menuIn { from { opacity: 0; transform: translateY(-10px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes menuItemIn { from { opacity: 0; transform: translateY(-7px); } to { opacity: 1; transform: none; } }
.nav.is-open .nav__menu { animation: menuIn .32s var(--ease); transform-origin: top center; }
.nav.is-open .nav__links a, .nav.is-open .nav__cta { animation: menuItemIn .3s var(--ease) backwards; }
.nav.is-open .nav__links a:nth-of-type(1) { animation-delay: .05s; }
.nav.is-open .nav__links a:nth-of-type(2) { animation-delay: .09s; }
.nav.is-open .nav__links a:nth-of-type(3) { animation-delay: .13s; }
.nav.is-open .nav__links a:nth-of-type(4) { animation-delay: .17s; }
.nav.is-open .nav__cta { animation-delay: .21s; }
.nav__burger.is-active span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.is-active span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__menu { display: none; }
  .nav__logo { height: 22px; }
  .nav__burger { display: flex; }
  .manifesto__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .impact__stats { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Método vira lista vertical com trilho lateral que carrega de cima para baixo */
  .method__steps { grid-template-columns: 1fr; gap: 26px; }
  .method__step { display: grid; grid-template-columns: 58px 1fr; column-gap: 18px; row-gap: 4px; }
  .method__num { grid-row: 1 / span 2; margin-bottom: 0; }
  .method__line { top: 10px; bottom: 10px; left: 27px; right: auto; width: 4px; height: auto; }
  .method__line::before { left: 50%; right: auto; top: 0; bottom: 0; transform: translateX(-50%); width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--line) 0 7px, transparent 7px 14px); }
  .method__line-fill { top: 0; left: 0; transform: none; width: 4px; height: calc(var(--p, 0) * 100%); background: linear-gradient(180deg, var(--violet-400), var(--violet)); }
}
@media (max-width: 560px) {
  .hero__stats { gap: 26px; }
  .services__special { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal, [data-reveal] { opacity: 1; transform: none; }
  .hero__scroll-line::after { animation: none; }
  .webgl { display: none; }
  .vidband, .vidband__track, .vidband__bg, .floatcta.is-visible { animation: none !important; }
  .vidband__video { display: none; }
  .logos__track, .testimonials__track, .socios__track { animation: none !important; }
  .kicker__dot, .cta-orb, .floatcta__dot, .hero-orb, .hero__accent, .level__flag, .level__flag-dot, .level__flag::after, .btn--spot { animation: none !important; }
  .scroll-glow::before { animation: none !important; }
  .btn--primary::after { display: none; }
  .reveal, [data-reveal] { filter: none !important; }
}
