#div-fixa {
    position: fixed;
    bottom: 20px;
    margin: 0 20px;
    background: rgb(89, 245, 122);
    width: 230px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.5s all;
}

#div-fixa.shrink {
    width: 50px;
    transition: 0.5s all;
    overflow: hidden;
}

#div-fixa img {
    width: 50px;
    height: 50px;
}

#div-fixa a .flex-itens {
    display: flex;
    align-items: center;
}

#div-fixa a .flex-itens span {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: #00102E;
    margin-left: 5px;
    font-size: 18px;
    min-width: 170px;
    opacity: 0;
}

#div-fixa a .flex-itens span.aparecer {
    transition: 0.5s all;
    opacity: 1;
}

#div-fixa a {
    text-decoration: none;
}

.flutuar {
    animation-name: flutuar;
    animation-duration: 0.7s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

@keyframes flutuar {
    from {
        transform: translate3d(0, 0, 0);
        filter: brightness(100%);
    }
    to {
        transform: translate3d(0, -15px, 0);
        filter: brightness(150%);
    }
}