.shortcut-button {
    color: #fff;
    background: var(--bg-botao-azul);
    width: 100%;
    max-width: 260px; 
    height: 90px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 0 10px var(--borda-cinza-botoes), 0 0 5px 9px rgb(193, 193, 193);
    font-size: 20px;
    margin: 0 auto; 
}

.shortcut-button:hover {
    background: var(--bg-botao-azul-hover);
}

.shortcut-button a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    display: flex; 
    align-items: center;
    justify-content: center;
    width: 100%; 
}

.shortcut-button img {
    width: 30px;
    height: 30px;
    margin-right: 5px; 
}

.shortcut-button span {
    margin-top: -2px;
}

#botoes_atalho{
    margin-bottom: 51px;
}

@media (max-width: 992px) {
    .shortcut-button {
        margin-top: 32px;
        width: 52px; 
        height: 52px; 
        border-radius: 50%; 
    }

    .shortcut-button span {
        display: none; 
    }

    .shortcut-button img {
        width: 30px; 
        height: 30px;
        margin-left: 5px;
    }

    #botoes_atalho{
        margin-bottom: 45px;
        margin-top: 117px;
    }
}