/* ANIMACIONES SOLO PARA DESKTOP */
@media (min-width: 768px) {
.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: rgba(255, 255, 255, 0.9);
}

.cursor-large {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.15s ease-out;
    transform: translate(-50%, -50%);
}

@media (hover: none) and (pointer: coarse) {
    .cursor-follower {
        display: none !important;
    }
}
}