/* ==========================
   CHATBOT FLOTANTE BJX MODA
========================== */

.chatbot-container{
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.chatbot-btn{
    width: 65px;
    height: 65px;
    border-radius: 50%;

    background: #000;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    font-size: 24px;

    box-shadow: 0 10px 30px rgba(0,0,0,.25);

    transition: all .3s ease;

    animation: floatChat 3s ease-in-out infinite;
}

.chatbot-btn:hover{
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,.35);
}

@keyframes floatChat{
    0%,100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-6px);
    }
}

@media(max-width:768px){

    .chatbot-container{
        right: 15px;
        bottom: 15px;
    }

    .chatbot-btn{
        width: 58px;
        height: 58px;
        font-size: 22px;
    }
}