/* Efecto de Círculos Seguidores del Mouse - Centrados */
.cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    top: 0;
    left: 0;
}
.cursor-small {
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    background-color: #6f42c1;
}
.cursor-large {
    width: 40px;
    height: 40px;
    border: 2px solid #6f42c1;
    transition: all 0.15s ease-out;
    transform: translate(-50%, -50%);
}
/* Efecto hover para elementos interactivos */
body.has-cursor-follower a:hover ~ .cursor-large,
body.has-cursor-follower button:hover ~ .cursor-large,
body.has-cursor-follower .bricks-button:hover ~ .cursor-large {
    width: 60px;
    height: 60px;
    border-color: #6f42c1;
}
/* Ocultar círculos en dispositivos táctiles */
@media (hover: none) and (pointer: coarse) {
    .cursor-follower {
        display: none !important;
    }
}