/* ===============================
   ESTILOS GENERALES PARA PARTÍCULAS
   =============================== */

/* Canvas de partículas — genérico para cualquier sección */
canvas[id^="particulas"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* No bloquea clics */
  z-index: 0; /* Siempre al fondo */
  background: transparent;
}

/* Cualquier sección que tenga partículas */
section:has(canvas[id^="particulas"]) {
  position: relative;
  overflow: hidden;
}
