#cursor-follower-circle {
    position: fixed;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    pointer-events: none;
    border-radius: 50%;
    background: transparent;
    border: 2.5px solid rgba(255,255,255,1);
    box-shadow: 0 0 10px 2px rgba(255,255,255,0.09);
    z-index: 9999;
    will-change: transform;
    transition: border-color 0.2s;
}
body, html {
    cursor: none !important; /* Oculta el cursor original */
}
