.rotating-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
    transition: transform 0s;
}

.image-container {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #333;
    cursor: grab;
    user-select: none;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hotspot {
    position: absolute;
    background-color: rgba(255, 0, 0, 0.0);
    cursor: pointer;
}

.angle-display {
    font-size: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.titulo {
    text-align: center;
    margin-bottom: 20px;
}

.flex {
    display: flex;
    justify-items: center;
    align-items: center;
}

.center-abs {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.indicador {
    position: fixed;
    background-color: #333;
    color: white;
    padding: 6px 10px;
    border-radius: 5px;
    max-width: 400px;
    font-size: 25px;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.laser {
    bottom: -450px;
}