.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circunferencia {
    opacity: 1;
    width: 85px;
    height: 85px;
    border: 1px solid rgb(214,214,214,0.5);
    box-shadow: inset 0 0 0px 0.9px #dedede;
    pointer-events: none;
    position: absolute;
    border-radius: 50%;
    z-index: 9222;
    transition: opacity 0.2s ease-in-out 0s, transform 0.5s ease-in-out 0s;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: scale 0.2s ease-in-out;
}


.cursor-dot {
    opacity: 1;
    width: 6px;
    height: 6px;
    box-shadow: inset 0 0 0px 0.5px #dedede;
    background-color:#d6d6d6;
    pointer-events: none;
    position: absolute;
    border-radius: 50%;
    z-index: 9222;
    transition: opacity 0.2s ease-in-out 0s, transform 0.5s ease-in-out 0s;
    display: block;
}
.circunferencia_relleno{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    backdrop-filter: blur(0.8px);
    pointer-events: none;
    position: absolute;
    transition: opacity 0.1s ease-in-out 0s, transform 0.5s ease-in-out 0s
    
}
