@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
body {
    font-family: 'Inter', sans-serif;
}
.logo img  {
  width: 110px;
}
/* Clase personalizada para el gradiente del logo */
.text-gradient {
    background-image: linear-gradient(to right, #84cc16, #22c55e); /* Lima a Verde */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

:root {
      --fluxos-green: #a3e635; /* color principal fluxos */
      --fluxos-blue: #3b82f6;  /* acento secundario */
      --ink: #0f172a;
      --bg: #ffffff;
    }

/* Fondo tipo red (Network) */
canvas#network {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 30% 70%, rgba(163,230,53,0.05), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(59,130,246,0.05), transparent 50%);
}

