.circle-video {
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #c594ef;
    border-radius: 500px;
    position: relative;
    overflow: hidden;
}

.circle-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    border: 10px solid white;
    border-radius: 200px;
    box-shadow: -3px 3px 9px 6px #6957c3;
    animation: circular-motion 6s linear infinite;
    background-color: #1e1250;
    cursor: pointer;
    text-align: center;
}

.left-circle {
    position: absolute;
    top: 30px;
    z-index: 2;
    left: 75px;
}

.center-circle {
    position: absolute;
    top: -115px;
    z-index: 2;
    left: 330px;
}

.right-circle {
    position: absolute;
    top: 30px;
    z-index: 2;
    right: 75px;
}

.bottom-right-circle {
    position: absolute;
    top: -180px;
    z-index: 2;
    right: 65px;
}

.bottom-left-circle {
    position: absolute;
    top: -180px;
    z-index: 2;
    left: 65px;
}

.container-menu {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 125px; */
    color: white;
}

.logos-container {
    width: 100%;
    position: relative;
    text-align: center;
    z-index: 3;
}


.webchat__send-box__main {
    top: 755px !important;
    width: 470px !important;
}

.logosyd {
    max-width: 200px;
}

#content {
    margin-top: 12rem;
}

.animated-circle {
    width: 100px;
    height: 100px;
    border: 5px solid white;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #3498db;
    position: relative;
    animation: circular-motion 4s linear infinite;
}

.mr-2 {
    margin-right: 1rem;
}

.mr-3 {
    margin-right: 1.8rem;
}

#option-selected {
    max-width: 480px;
}

.back-moving {
    /* background-image: url('/img/back_moving.gif'); */
    background-image: url('/img/backgrounds/back_5.jpg');
    background-position: top;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-color: #1e1250;
    background-size:cover;
    position: fixed;
    z-index: 0;
    top: 0;
    box-shadow: 0 0 8px 8px #070c1e inset;
    /* opacity: 0.3; */
}

.span-text {
    position: absolute;
    bottom: -30px;
    color: white;
    width: 200px;
}

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

@keyframes move {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}


@keyframes circular-motion {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(5px, 5px);
    }

    50% {
        transform: translate(0, 10px);
    }

    75% {
        transform: translate(-5px, 5px);
    }

    100% {
        transform: translate(0, 0);
    }
}


/* Para pantallas medianas (tablets) */
@media (max-width: 768px) {
    .circle-item {
        width: 70px;
        height: 70px;
        border: 8px solid white;
        box-shadow: -2px 2px 7px 4px #6957c3;
    }

    .circle-icon {
        width: 30px;
        height: 30px
    }

    .center-circle {
        top: -94px;
        left: 260px;
    }

    .right-circle {
        top: 35px;
        right: 50px;
    }

    .left-circle {
        top: 40px;
        left: 45px;
    }

    .bottom-right-circle {
        top: -125px;
        right: 45px;
    }

    .bottom-left-circle {
        top: -120px;
        left: 40px;
    }

    #content {
        margin-top: 8rem;
        width: 100vw;
    }

    .logosyd {
        max-width: 180px;
    }

    .span-text {
        font-size: 12px;
    }
}

/* Para pantallas pequeñas (móviles) */
@media (max-width: 480px) {
    .circle-item {
        width: 50px;
        height: 50px;
        border: 6px solid white;
        box-shadow: -1px 1px 5px 3px #6957c3;
    }

    .circle-icon {
        width: 30px;
        height: 30px
    }

    .center-circle {
        top: -43px;
        left: 64px;
    }

    .right-circle {
        top: 45px;
        right: -43px;
    }

    .left-circle {
        top: 45px;
        left: -43px;
    }

    .bottom-right-circle {
        top: -100px;
        right: -45px;
    }

    .bottom-left-circle {
        top: -100px;
        left: -45px;
    }

    #content {
        margin-top: 5rem;
        width: 100vw;
    }

    .logosyd {
        max-width: 130px;
    }

    .span-text {
        font-size: 10px;
    }
}