
.botao-ajuda {
    align-items: center;
    bottom: 5rem;
    cursor: pointer;
    display: flex;
    gap: 1rem;
    position: fixed;
    right: 0rem;
    text-transform: uppercase;
    z-index: 9999
}

@media (max-width:60rem) {
    .botao-ajuda {
        bottom: 1rem;
        right: 1rem
    }
}

.botao-ajuda p {
    color: #8c909a;
    font-size: 1.4rem;
    line-height: 1.7rem;
    text-align: right;
    transition: all .3s ease
}

.botao-ajuda button {
    align-items: center;
    background-color: #02c277;
    box-shadow: 0 11px 9px #024744;
    border-radius: 50%;
    border: 1px solid #00000000;
    display: flex;
    height: 4rem;
    justify-content: center;
    transition: all .3s ease;
    width: 4rem;
    color: #fff
}

    .botao-ajuda button svg {
        color: #fff;
        font-size: 2.2rem
    }

.botao-ajuda:hover p {
    opacity: 1
}

.botao-ajuda:hover button {
    height: 5.0rem;
    width: 5.0rem
}

    .botao-ajuda:hover button svg {
        font-size: 2.4rem
    }