/* Estilos para el fondo de partículas animadas */

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
    background: transparent;
}

/* Ajustar opacidad según el tema */
[data-theme="dark"] #particleCanvas {
    opacity: 1;
}

/* Reducir partículas en dispositivos móviles para rendimiento */
@media (max-width: 768px) {
    #particleCanvas {
        opacity: 0.4;
    }
}

/* Asegurar que el contenido esté por encima del canvas pero debajo del menú móvil */
.hero,
.features,
.how-it-works,
.pricing,
footer,
section {
    position: relative;
    z-index: 2;
}

/* Navbar debe estar por encima del contenido pero debajo del menú móvil */
.navbar {
    position: relative;
    z-index: 5;
}
