.container-espiral {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 50px auto;
}

.center-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #F1F1F1;
    border-radius: 50%;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: bold;
}

.circle-container {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50px;
    right: -100px;
    animation: rotate 40s linear infinite;
}

.circle-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: #F1F1F1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.circle-item .icon {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: rotate 40s linear infinite reverse;
}

.circle-item:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border: #0F7ADE dotted 2px;
}

.circle-item:nth-child(2) {
    top: 21%;
    right: 8%;
    border: #0F7ADE dotted 2px;
}

.circle-item:nth-child(3) {
    bottom: 21%;
    right: 8%;
    border: #0F7ADE dotted 2px;
}

.circle-item:nth-child(4) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border: #0F7ADE dotted 2px;
}

.circle-item:nth-child(5) {
    bottom: 21%;
    left: 8%;
    border: #0F7ADE dotted 2px;
}

.circle-item:nth-child(6) {
    top: 22%;
    left: 7%;
    border: #0F7ADE dotted 2px;
}

.icone-centro{
    width: 50px;
    opacity: 80%;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.pause-animation {
    animation-play-state: paused !important;
}

.hover-infos {
    position: fixed;
    width: 300px;
    text-align: center;
    background-color: #F1F1F1;
    padding: 10px;
    border: solid rgba(77, 83, 87, 0.12) 1px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    pointer-events: none;
}

.hover-infos h2 {
    font-size: 18px;
    color: #0F7BDE;
    font-weight: 600;
}

.hover-infos p {
    color: #4D5357;
    font-size: 14px;
}

@media (max-width: 1440px) {
    .center-circle {
        right: 80px;
    }

    .circle-container {
        right: -20px;
    }
}

@media (max-width: 1024px) {
    .center-circle {
        right: 150px;
    }

    .circle-container {
        right: 50px;
    }
}


@media (max-width: 600px) {

    .container-espiral {
        margin: 0;
    }

    .circle-item {
        width: 60px;
        height: 60px;
    }

    .circle-item .icon > img {
        width: 24px;
        height: 24px;
    }

    .circle-item:nth-child(1) {
        top: 15%;
        left: 50%;
    }

    .circle-item:nth-child(2) {
        top: 30%;
        right: 18%;
    }

    .circle-item:nth-child(3) {
        bottom: 26%;
        right: 19%;
    }

    .circle-item:nth-child(4) {
        bottom: 17%;
        left: 50%;
    }

    .circle-item:nth-child(5) {
        bottom: 31%;
        left: 20%;
    }

    .circle-item:nth-child(6) {
        top: 27%;
        left: 20%;
    }
}
