.custom-cursor {
    position: fixed; /* Cambiado a fixed */
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 1000;
    border: 2px solid #0047ab;
    border-radius: 50%;
    transition: transform 0.1s ease-out;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.rotating {
    animation: rotate 1s linear infinite;
}

.pulsing {
    animation: pulse 1s ease-in-out infinite;
}

@media (max-width: 768px) {
    .custom-cursor {
        display: none;
    }
}