:root {
  --purple-950: #13051f;
  --purple-900: #24033f;
  --purple-850: #310957;
  --purple-800: #42106f;
  --purple-700: #5a1d8d;
  --purple: #7030a0;
  --purple-500: #8d42c8;
  --purple-400: #b06df0;
  --purple-300: #d8bcff;
  --ink: #100c19;
  --ink-soft: #31273d;
  --muted: #6f657b;
  --muted-dark: rgba(255, 255, 255, 0.68);
  --white: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f8f4fc;
  --surface-purple: #f0e7f8;
  --line: rgba(112, 48, 160, 0.16);
  --line-strong: rgba(112, 48, 160, 0.26);
  --line-dark: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 14px 34px rgba(31, 10, 52, 0.10);
  --shadow-md: 0 24px 72px rgba(31, 10, 52, 0.16);
  --shadow-lg: 0 34px 110px rgba(24, 4, 45, 0.36);
  --radius-xs: 12px;
  --radius-sm: 18px;
  --radius-md: 26px;
  --radius-lg: 36px;
  --radius-xl: 48px;
  --container: 1180px;
  --header-height: 76px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
img { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

::selection {
  color: #ffffff;
  background: var(--purple);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999px;
  padding: 10px 16px;
  color: #ffffff;
  background: var(--purple);
  text-decoration: none;
  font-weight: 850;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(19, 5, 31, 0.78);
  backdrop-filter: blur(20px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(19, 5, 31, 0.92);
  box-shadow: 0 18px 54px rgba(9, 2, 18, 0.26);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: #ffffff;
  text-decoration: none;
}

.brand-symbol {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.32), transparent 34%),
    linear-gradient(135deg, var(--purple-400), var(--purple));
  box-shadow: 0 14px 34px rgba(112, 48, 160, 0.36);
  font-size: 27px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  text-transform: lowercase;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-text strong {
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 0.15em;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav a {
  border-radius: 999px;
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 780;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.primary-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.primary-nav .nav-cta {
  margin-left: 6px;
  color: var(--purple-950);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.20);
}

.primary-nav .nav-cta:hover {
  color: var(--purple-950);
  background: #f3eafd;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.section { padding: 104px 0; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: inherit;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5.4vw, 66px);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.2vw, 52px);
}

h3 { font-size: 24px; }

p {
  color: var(--muted);
  line-height: 1.72;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-light { color: var(--purple-300); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple), var(--purple-500));
  box-shadow: 0 16px 36px rgba(112, 48, 160, 0.30);
}

.btn-primary:hover { box-shadow: 0 22px 46px rgba(112, 48, 160, 0.38); }

.btn-secondary {
  color: var(--purple-800);
  border-color: var(--line);
  background: #ffffff;
}

.btn-secondary:hover {
  border-color: var(--line-strong);
  background: var(--surface-soft);
}

.btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); }

.btn-light {
  color: var(--purple-950);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.btn-light:hover { background: #f3eafd; }

.section-header {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.section-header p {
  max-width: 720px;
  font-size: 17px;
}

.section-header.centered p { margin-inline: auto; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 92px 0 104px;
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 0%, rgba(176, 109, 240, 0.42), transparent 30rem),
    radial-gradient(circle at 100% 20%, rgba(112, 48, 160, 0.58), transparent 34rem),
    linear-gradient(135deg, #0f031d 0%, #24033f 42%, #4d137b 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 110px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.98));
  pointer-events: none;
  z-index: -1;
}

.hero-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
}

.hero-grid-light {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 60% 40%, #000 0%, transparent 72%);
}

.hero-orb {
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.64;
}

.hero-orb-a {
  top: -280px;
  right: -180px;
  background: rgba(216, 188, 255, 0.42);
}

.hero-orb-b {
  bottom: -360px;
  left: -240px;
  background: rgba(112, 48, 160, 0.42);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(440px, 1.04fr);
  gap: 58px;
  align-items: center;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.hero-showcase {
  position: relative;
  min-height: 670px;
  perspective: 1000px;
}

.product-console {
  position: absolute;
  top: 58px;
  right: 0;
  width: min(100%, 575px);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 38px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045)),
    linear-gradient(145deg, rgba(70, 20, 107, 0.82), rgba(15, 3, 29, 0.90));
  box-shadow: var(--shadow-lg);
  transform: rotateY(-8deg) rotateX(5deg);
  transform-style: preserve-3d;
  transition: transform 260ms ease;
}

.product-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 60%) var(--my, 30%), rgba(255, 255, 255, 0.26), transparent 28%),
    linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.10), transparent 30%);
  opacity: 0.7;
  pointer-events: none;
}

.product-console > * {
  position: relative;
  z-index: 1;
}

.console-header,
.architecture-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.console-kicker,
.architecture-header span {
  display: block;
  margin-bottom: 7px;
  color: var(--purple-300);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.console-header strong,
.architecture-header strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  font-size: 12px;
  font-weight: 900;
}

.live-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccffda;
  box-shadow: 0 0 0 5px rgba(204, 255, 218, 0.12);
}

.console-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 30px 0 18px;
}

.console-metrics article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.console-metrics span,
.console-metrics small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 750;
}

.console-metrics strong {
  display: block;
  margin: 8px 0 5px;
  color: #ffffff;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.console-chart {
  display: flex;
  align-items: end;
  gap: 16px;
  height: 172px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  padding: 24px 26px 20px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.06);
  background-size: 34px 34px;
}

.console-chart span {
  flex: 1;
  height: var(--h);
  min-width: 18px;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, #ffffff 0%, var(--purple-300) 44%, var(--purple-500) 100%);
  box-shadow: 0 10px 24px rgba(176, 109, 240, 0.34);
  animation: chartRise 900ms ease both;
}

.console-chart span:nth-child(2) { animation-delay: 70ms; }
.console-chart span:nth-child(3) { animation-delay: 130ms; }
.console-chart span:nth-child(4) { animation-delay: 190ms; }
.console-chart span:nth-child(5) { animation-delay: 250ms; }
.console-chart span:nth-child(6) { animation-delay: 310ms; }

@keyframes chartRise {
  from { height: 18%; opacity: 0.45; }
}

.console-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}

.console-flow span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 850;
}

.console-flow i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 188, 255, 0.15), rgba(216, 188, 255, 0.76));
}

.side-panel {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 300px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 16px;
  color: #ffffff;
  background: rgba(25, 6, 42, 0.82);
  box-shadow: 0 24px 74px rgba(9, 2, 18, 0.34);
  backdrop-filter: blur(18px);
  animation: panelFloat 5.8s ease-in-out infinite;
}

.side-panel-top {
  top: 12px;
  right: 22px;
  animation-delay: 0.2s;
}

.side-panel-bottom {
  left: 0;
  bottom: 58px;
  animation-delay: 1.2s;
}

.panel-icon,
.module-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--purple-400), var(--purple));
  box-shadow: 0 16px 32px rgba(112, 48, 160, 0.32);
}

.panel-icon::before,
.panel-icon::after {
  content: "";
  display: block;
  border: 2px solid currentColor;
}

.panel-icon-lock::before {
  width: 18px;
  height: 20px;
  border-radius: 7px;
}

.panel-icon-lock::after {
  position: absolute;
  width: 14px;
  height: 10px;
  margin-top: -24px;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.panel-icon-flow::before {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.panel-icon-flow::after {
  position: absolute;
  width: 18px;
  height: 8px;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-35deg);
}

.side-panel strong,
.side-panel small {
  display: block;
}

.side-panel strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.side-panel small {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}


@keyframes panelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ecosystem-console {
  min-height: 585px;
}

.ecosystem-header strong {
  max-width: 400px;
}

.ecosystem-stage {
  position: relative;
  min-height: 420px;
  margin: 24px 0 18px;
}

.ecosystem-stage::before,
.ecosystem-stage::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ecosystem-stage::before {
  width: min(100%, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    0 0 0 1px rgba(216, 188, 255, 0.06) inset,
    0 0 48px rgba(176, 109, 240, 0.10);
}

.ecosystem-stage::after {
  width: min(100%, 300px);
  aspect-ratio: 1;
  border: 1px dashed rgba(216, 188, 255, 0.16);
}

.ecosystem-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  opacity: 0.76;
  pointer-events: none;
}

.ecosystem-connectors line {
  stroke: rgba(216, 188, 255, 0.38);
  stroke-width: 0.38;
  vector-effect: non-scaling-stroke;
}

.ecosystem-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.ecosystem-center-core {
  position: relative;
  width: 188px;
  height: 188px;
  display: grid;
  place-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 40px;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.36), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.05)),
    linear-gradient(145deg, rgba(108, 48, 154, 0.92), rgba(32, 8, 56, 0.94));
  box-shadow:
    0 24px 70px rgba(11, 3, 21, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.ecosystem-center-core::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(176, 109, 240, 0.18);
  border-radius: 52px;
  animation: centerPulse 6s ease-in-out infinite;
}

.ecosystem-center-core img {
  width: 122px;
  filter: drop-shadow(0 10px 28px rgba(18, 3, 31, 0.32));
}

.ecosystem-center-core small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes centerPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.ecosystem-orbit {
  position: absolute;
  inset: 0;
}

.ecosystem-node {
  position: absolute;
  z-index: 3;
  animation: ecosystemFloat 6s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

@keyframes ecosystemFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-12px); }
}

.ecosystem-node-card {
  min-width: 106px;
  min-height: 96px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 26px;
  padding: 14px 12px;
  text-align: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.16), transparent 45%),
    linear-gradient(145deg, rgba(139, 74, 196, 0.50), rgba(38, 10, 62, 0.92));
  box-shadow: 0 18px 40px rgba(9, 2, 18, 0.28);
  backdrop-filter: blur(16px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.ecosystem-node-card:hover {
  transform: translateY(-5px) scale(1.04);
  border-color: rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.22), transparent 48%),
    linear-gradient(145deg, rgba(155, 88, 214, 0.64), rgba(52, 14, 82, 0.96));
  box-shadow: 0 24px 54px rgba(9, 2, 18, 0.36);
}

.ecosystem-node strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.1;
}

.ecosystem-node small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.25;
}

.node-compras { top: 16%; left: 50%; }
.node-servicos { top: 22%; left: 77%; }
.node-crm { top: 49%; left: 88%; }
.node-contratos { top: 74%; left: 77%; }
.node-contabil { top: 87%; left: 60%; }
.node-producao { top: 87%; left: 40%; }
.node-estoque { top: 74%; left: 23%; }
.node-fiscal { top: 49%; left: 12%; }
.node-documents { top: 22%; left: 23%; }
.node-vendas { top: 16%; left: 38%; }

.ecosystem-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ecosystem-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 800;
}


.hero-ecosystem {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 660px;
}

.ecosystem-stage-standalone {
  position: relative;
  width: min(100%, 610px);
  min-height: 560px;
  margin-left: auto;
}

.ecosystem-stage-standalone::before,
.ecosystem-stage-standalone::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

.ecosystem-stage-standalone::before {
  width: min(100%, 470px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(216, 188, 255, 0.08) inset,
    0 0 64px rgba(176, 109, 240, 0.18);
}

.ecosystem-stage-standalone::after {
  width: min(100%, 590px);
  height: 140px;
  top: auto;
  bottom: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 109, 240, 0.18), transparent 65%);
  filter: blur(24px);
}

.hero-ecosystem .ecosystem-connectors {
  opacity: 0.9;
}

.hero-ecosystem .ecosystem-connectors line {
  stroke: rgba(216, 188, 255, 0.38);
  stroke-width: 0.42;
}

.ecosystem-center-standalone .ecosystem-center-core {
  width: 196px;
  height: 196px;
  border-radius: 50%;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.42), transparent 42%),
    linear-gradient(145deg, rgba(168, 112, 222, 0.72), rgba(52, 14, 82, 0.96));
  box-shadow:
    0 26px 76px rgba(11, 3, 21, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.ecosystem-center-standalone .ecosystem-center-core::before {
  inset: -20px;
  border-radius: 50%;
  border: 14px solid rgba(133, 69, 194, 0.92);
  box-shadow:
    0 0 0 12px rgba(73, 26, 120, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.10) inset;
  animation: centerPulse 6s ease-in-out infinite;
}

.ecosystem-center-standalone .ecosystem-center-core::after {
  content: "";
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 8%, rgba(122, 57, 186, 0.92) 8% 16%, transparent 16% 20%, rgba(122, 57, 186, 0.92) 20% 28%, transparent 28% 32%, rgba(122, 57, 186, 0.92) 32% 40%, transparent 40% 44%, rgba(122, 57, 186, 0.92) 44% 52%, transparent 52% 56%, rgba(122, 57, 186, 0.92) 56% 64%, transparent 64% 68%, rgba(122, 57, 186, 0.92) 68% 76%, transparent 76% 80%, rgba(122, 57, 186, 0.92) 80% 88%, transparent 88% 92%, rgba(122, 57, 186, 0.92) 92% 100%);
  -webkit-mask: radial-gradient(circle, transparent 0 61%, #000 62% 76%, transparent 77%);
  mask: radial-gradient(circle, transparent 0 61%, #000 62% 76%, transparent 77%);
  opacity: 0.92;
  filter: drop-shadow(0 8px 18px rgba(30, 6, 54, 0.24));
}

.ecosystem-center-standalone .ecosystem-center-core img {
  width: 118px;
}

.hero-ecosystem .ecosystem-node-card {
  width: 108px;
  min-width: 108px;
  min-height: 108px;
  border-radius: 50%;
  padding: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.20), transparent 48%),
    linear-gradient(145deg, rgba(139, 74, 196, 0.58), rgba(38, 10, 62, 0.96));
}

.hero-ecosystem .ecosystem-node-card strong {
  font-size: 16px;
}

.hero-ecosystem .ecosystem-node-card:hover {
  transform: translateY(-6px) scale(1.05);
}

.hero-ecosystem .node-compras { top: 11%; left: 50%; }
.hero-ecosystem .node-servicos { top: 21%; left: 77%; }
.hero-ecosystem .node-crm { top: 49%; left: 88%; }
.hero-ecosystem .node-contratos { top: 77%; left: 77%; }
.hero-ecosystem .node-producao { top: 89%; left: 50%; }
.hero-ecosystem .node-estoque { top: 77%; left: 23%; }
.hero-ecosystem .node-fiscal { top: 49%; left: 12%; }
.hero-ecosystem .node-documents { top: 29%; left: 20%; }
.hero-ecosystem .node-vendas { top: 18%; left: 30%; }

.intro-section {
  padding-top: 44px;
  background: linear-gradient(180deg, #ffffff, #fbf8ff);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.intro-card {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background:
    radial-gradient(circle at 88% 0%, rgba(112, 48, 160, 0.12), transparent 38%),
    #ffffff;
  box-shadow: var(--shadow-sm);
}

.intro-card span,
.process-card span {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.intro-card h2 {
  font-size: clamp(24px, 2.4vw, 32px);
}

.intro-card p { margin-bottom: 0; }

.solutions-section {
  position: relative;
  background: #ffffff;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.module-card {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 0%, rgba(112, 48, 160, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 210ms ease, box-shadow 210ms ease, border-color 210ms ease;
}

.module-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--purple-400), var(--purple), var(--purple-500));
  opacity: 0.82;
  transform: scaleX(0.46);
  transform-origin: left;
  transition: transform 210ms ease;
}

.module-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.module-card:hover::after { transform: scaleX(1); }

.module-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-status {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  border: 1px solid rgba(112, 48, 160, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--purple-700);
  background: rgba(112, 48, 160, 0.08);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.module-card h3 {
  margin: 26px 0 12px;
  font-size: 27px;
}

.module-card p { margin-bottom: 26px; }

.module-card strong {
  margin-top: auto;
  color: var(--purple-800);
  font-size: 14px;
}

.custom-section {
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 0%, rgba(176, 109, 240, 0.24), transparent 34rem),
    linear-gradient(135deg, #13051f 0%, #24033f 48%, #42106f 100%);
}

.custom-section p { color: var(--muted-dark); }

.custom-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  gap: 56px;
  align-items: center;
}

.custom-layout .section-header { margin-bottom: 0; }
.custom-layout .btn { margin-top: 12px; }

.architecture-card {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow-lg);
}

.architecture-list {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.architecture-list article {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 19px 20px;
  background: rgba(255, 255, 255, 0.07);
}

.architecture-list span {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

.architecture-list p {
  margin-bottom: 0;
  font-size: 14px;
}

.clients-section {
  background:
    radial-gradient(circle at 0% 10%, rgba(112, 48, 160, 0.10), transparent 28rem),
    linear-gradient(180deg, #ffffff, #faf7fe);
}

.clients-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 56px;
  align-items: center;
}

.clients-copy h2 { max-width: 600px; }

.client-access-card {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.client-access-card > span {
  display: block;
  margin-bottom: 14px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.client-access-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.client-access-card a {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--purple-800);
  background: var(--surface-soft);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.client-access-card a:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

.clients-board {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 138px;
  gap: 16px;
}

.client-logo-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition: transform 210ms ease, box-shadow 210ms ease, border-color 210ms ease;
}

.client-logo-card:nth-child(1) { grid-column: 1 / 4; grid-row: span 2; }
.client-logo-card:nth-child(2) { grid-column: 4 / 7; }
.client-logo-card:nth-child(3) { grid-column: 4 / 7; }

.client-logo-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background: rgba(112, 48, 160, 0.09);
}

.client-logo-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.client-logo-card img {
  position: relative;
  z-index: 1;
  max-width: 220px;
  max-height: 92px;
  object-fit: contain;
}

.process-section {
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-card {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(112, 48, 160, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff, #fbf8ff);
  box-shadow: var(--shadow-sm);
}

.process-card span { margin-bottom: 70px; }
.process-card h3 { margin-bottom: 10px; }
.process-card p { margin-bottom: 0; }

.company-section {
  color: #ffffff;
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 188, 255, 0.20), transparent 30rem),
    linear-gradient(135deg, #0f031d, #24033f 48%, #3a0b63);
}

.company-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: end;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow-lg);
}

.company-card p { color: var(--muted-dark); font-size: 18px; }

.company-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.company-points span {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 850;
}

.final-cta-section {
  padding-top: 0;
  background: #ffffff;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 58px);
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.24), transparent 30rem),
    linear-gradient(135deg, var(--purple-800), var(--purple), var(--purple-500));
  box-shadow: var(--shadow-lg);
}

.final-cta h2 { max-width: 760px; }
.final-cta p { max-width: 680px; margin-bottom: 0; color: rgba(255, 255, 255, 0.76); }
.final-cta .btn { flex: 0 0 auto; }

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0;
  color: rgba(255, 255, 255, 0.66);
  background: var(--purple-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 40px;
}

.footer-brand { margin-bottom: 18px; }

.site-footer h2 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.6;
  text-decoration: none;
}

.site-footer a:hover { color: #ffffff; }
.footer-company p { max-width: 420px; }

.search-hero {
  padding: 88px 0 72px;
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 0%, rgba(216, 188, 255, 0.26), transparent 30rem),
    linear-gradient(135deg, #0f031d, #24033f 52%, #42106f);
}

.search-panel {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.search-panel h1 { max-width: 760px; font-size: clamp(34px, 5vw, 58px); }

.search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.search-form input {
  flex: 1 1 320px;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 13px 18px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.search-form input::placeholder { color: rgba(255, 255, 255, 0.54); }
.search-form input:focus { border-color: rgba(255, 255, 255, 0.40); }

.search-results-section { background: #ffffff; }

.results-list {
  display: grid;
  gap: 16px;
}

.result-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.result-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.result-card h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.result-card h2 a { text-decoration: none; }
.result-card h2 a:hover { color: var(--purple); }
.result-card p, .empty-state p { margin-bottom: 0; }
.empty-state .btn { margin-top: 20px; }

.pagination-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .product-console { transform: none; }
}

@media (max-width: 1120px) {
  .hero-layout,
  .custom-layout,
  .clients-layout,
  .company-card {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 650px;
    max-width: 700px;
    margin-inline: auto;
    width: 100%;
  }

  .hero-ecosystem {
    justify-content: center;
  }

  .ecosystem-stage-standalone { width: min(100%, 620px); }

  .product-console {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotateY(-5deg) rotateX(4deg);
  }

  .ecosystem-stage { min-height: 440px; }
  .node-crm { left: 86%; }
  .node-fiscal { left: 14%; }

  .intro-grid { grid-template-columns: 1fr; }
  .intro-card { min-height: auto; }
  .intro-card span { margin-bottom: 34px; }
  .module-grid,
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-board { max-width: 760px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }

  .brand-symbol { width: 40px; height: 40px; }
  .brand-text small { display: none; }

  .nav-toggle { display: inline-block; }

  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    left: 20px;
    display: grid;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 10px;
    background: rgba(19, 5, 31, 0.96);
    box-shadow: 0 24px 62px rgba(9, 2, 18, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 13px 14px;
  }

  .primary-nav .nav-cta {
    margin: 4px 0 0;
    justify-content: center;
    text-align: center;
  }

  .section { padding: 78px 0; }
  .hero { padding: 70px 0 86px; }
  .hero-layout { gap: 36px; }
  .hero-showcase { min-height: 620px; }
  .product-console { width: min(100%, 560px); min-height: 560px; }
  .ecosystem-stage { min-height: 410px; }
  .ecosystem-center-core { width: 168px; height: 168px; }
  .ecosystem-center-core img { width: 110px; }
  .ecosystem-node-card { min-width: 96px; min-height: 88px; }
  .ecosystem-node strong { font-size: 14px; }

  .hero-ecosystem { min-height: 640px; }
  .ecosystem-stage-standalone { min-height: 520px; }
  .hero-ecosystem .ecosystem-node-card { width: 92px; min-width: 92px; min-height: 92px; }
  .hero-ecosystem .ecosystem-node-card strong { font-size: 14px; }
  .hero-ecosystem .node-crm { left: 86%; }
  .hero-ecosystem .node-fiscal { left: 14%; }
  .side-panel-top { right: 0; }
  .side-panel-bottom { left: 0; bottom: 32px; }
  .console-metrics { grid-template-columns: 1fr; }
  .console-chart { height: 142px; }
  .clients-board { grid-auto-rows: 124px; }
  .final-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }

  h1 { font-size: clamp(35px, 11vw, 48px); }
  h2 { font-size: clamp(28px, 9vw, 38px); }

  .hero-lead { font-size: 16px; }
  .hero-actions .btn { width: 100%; }
  .trust-row span { width: 100%; justify-content: center; }

  .hero-showcase { min-height: auto; padding-top: 16px; }
  .product-console {
    position: relative;
    top: auto;
    left: auto;
    min-height: auto;
    padding: 20px;
    transform: none;
  }

  .hero-ecosystem {
    min-height: auto;
    justify-content: center;
  }

  .ecosystem-stage-standalone {
    min-height: auto;
    width: 100%;
    display: grid;
    gap: 18px;
  }

  .hero-ecosystem .ecosystem-stage-standalone::before,
  .hero-ecosystem .ecosystem-stage-standalone::after,
  .hero-ecosystem .ecosystem-connectors { display: none; }

  .ecosystem-center-standalone {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-inline: auto;
    order: 1;
  }

  .ecosystem-center-standalone .ecosystem-center-core {
    width: 178px;
    height: 178px;
  }

  .hero-ecosystem .standalone-orbit {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    order: 2;
  }

  .hero-ecosystem .ecosystem-node {
    position: relative;
    top: auto;
    left: auto;
    animation: none;
    transform: none;
  }

  .hero-ecosystem .ecosystem-node-card {
    width: 100%;
    min-width: 0;
    min-height: 84px;
    border-radius: 26px;
  }

  .ecosystem-stage {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .ecosystem-stage::before,
  .ecosystem-stage::after,
  .ecosystem-connectors { display: none; }

  .ecosystem-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    order: 1;
    margin-inline: auto;
  }

  .ecosystem-center-core {
    width: min(100%, 190px);
    height: 160px;
    border-radius: 30px;
  }

  .ecosystem-orbit {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    order: 2;
  }

  .ecosystem-node {
    position: relative;
    top: auto;
    left: auto;
    animation: none;
    transform: none;
  }

  .ecosystem-node-card {
    min-width: 0;
    min-height: 84px;
  }

  .console-header,
  .architecture-header {
    flex-direction: column;
  }

  .console-flow { display: none; }
  .side-panel { position: relative; max-width: none; margin-top: 14px; inset: auto; }

  .module-grid,
  .process-grid { grid-template-columns: 1fr; }
  .module-card, .process-card { min-height: auto; }
  .process-card span { margin-bottom: 34px; }

  .clients-board {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .client-logo-card,
  .client-logo-card:nth-child(1),
  .client-logo-card:nth-child(2),
  .client-logo-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    min-height: 138px;
  }

  .client-access-card div { flex-direction: column; }
  .client-access-card a { justify-content: center; text-align: center; }

  .company-card { padding: 26px; }
  .final-cta { border-radius: 32px; }
  .search-form .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* Correção do ecossistema: módulos fixos em suas posições e flutuação apenas no card interno. */
.hero-ecosystem {
  min-height: 650px;
}

.hero-ecosystem .ecosystem-stage-standalone {
  width: min(100%, 600px);
  min-height: 560px;
}

.hero-ecosystem .ecosystem-connectors line {
  stroke: rgba(216, 188, 255, 0.34);
  stroke-width: 0.42;
}

.hero-ecosystem .ecosystem-node {
  transform: translate(-50%, -50%);
  animation: none;
}

.hero-ecosystem .ecosystem-node-card {
  animation: nodeCardFloat 5.8s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  will-change: transform;
}

.hero-ecosystem .ecosystem-node-card:hover {
  transform: translateY(-6px) scale(1.05);
  animation-play-state: paused;
}

@keyframes nodeCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-ecosystem .node-compras { top: 10%; left: 50%; }
.hero-ecosystem .node-servicos { top: 22%; left: 78%; }
.hero-ecosystem .node-crm { top: 50%; left: 90%; }
.hero-ecosystem .node-contabil { top: 78%; left: 78%; }
.hero-ecosystem .node-ponto { top: 90%; left: 50%; }
.hero-ecosystem .node-legison { top: 78%; left: 22%; }
.hero-ecosystem .node-docs { top: 50%; left: 10%; }
.hero-ecosystem .node-fiscal { top: 22%; left: 22%; }

@media (max-width: 900px) {
  .hero-ecosystem {
    min-height: 610px;
  }

  .hero-ecosystem .ecosystem-stage-standalone {
    min-height: 520px;
  }

  .hero-ecosystem .ecosystem-node-card {
    width: 92px;
    min-width: 92px;
    min-height: 92px;
  }

  .hero-ecosystem .ecosystem-node-card strong {
    font-size: 14px;
  }

  .hero-ecosystem .node-crm { left: 86%; }
  .hero-ecosystem .node-docs { left: 14%; }
}

@media (max-width: 680px) {
  .hero-ecosystem {
    min-height: auto;
  }

  .hero-ecosystem .ecosystem-stage-standalone {
    min-height: auto;
    width: 100%;
  }

  .hero-ecosystem .standalone-orbit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-ecosystem .ecosystem-node {
    transform: none;
  }

  .hero-ecosystem .ecosystem-node-card {
    width: 100%;
    min-width: 0;
    min-height: 84px;
    border-radius: 26px;
    animation: none;
  }
}
