/* Neural Network Background Animation */
.neural-network {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.neural-network canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  display: block;
}

/* Ajustar z-index para que esté detrás del contenido */
.hero-bg {
  position: relative;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
}

/* Asegurar que el hero-bg tenga posición relativa */
.hero {
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
