/* Fundo animado estilo circuito/Matrix para VIVATek */
:root {
  --primary: #0095da;
  --secondary: #ccc;
  --bg-dark: #181a20;
  --bg-light: #23272f;
  --text: #fff;
  --accent: #00eaff;
}
body, html {
  background: linear-gradient(120deg, var(--bg-dark) 60%, var(--primary) 100%);
  color: var(--text);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  overflow-x: hidden;
}
#bg-circuito-matrix {
  position: fixed;
  z-index: 0;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  opacity: 0.22;
}
.floating {
  animation: flutuar 4s ease-in-out infinite alternate;
}
@keyframes flutuar {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}
/* O restante do layout herda do futurista.css */
