.hidden {
    display: none;
}

.hotspot-container {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
}

.hotspot-container img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hotspot-item {
    position: absolute;
    transform: translate(-50%, -50%);
}


.icon-hotspot {
    font-size: 24px;
    color: #FF0000;
}

.radar-hotspot {
    position: relative;
    border-radius: 50%;
    animation: pulse 2s infinite;
    cursor: pointer;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }

}

.icon-hotspot {
    font-size: 24px;
    color: #FF0000; /* Cor padrão */
    cursor: pointer;
    transition: color 0.3s ease; /* Animação suave para a mudança de cor */
}

.icon-hotspot:hover {
    color: #FF4500; /* Cor no estado de hover */
}



