/* Cursor personalizado */
.custom-cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid #166fd3;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, background-color 0.2s ease-out, border-color 0.2s ease-out, opacity 0.1s ease-out;
    z-index: 9999998;
    left: -100px;
    top: -100px;
}

.custom-cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: #166fd3;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999999;
    transition: opacity 0.05s ease-out;
    left: -100px;
    top: -100px;
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(2);
    background-color: rgba(255, 255, 255, 0.5);
    border-color: transparent;
}

.custom-cursor-dot.hover-dot {
    opacity: 0;
}

@media (max-width: 1024px) {
    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }
}
