.botoesMobile {
    position: fixed;
    bottom: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 33.3333vw);
    text-align: center;
}

.botaoMobile {
    background-color: var(--cor_principal_clara);
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    width: 102%;
    height: 80px;
}

.botaoMobile a {
    text-decoration: none;
    color: var(--cor_branca);
}

.botaoMobile__imagem {
    width: 2.5rem;
    margin-top: .5rem;
}

@media screen and (min-width: 481px) {
    .botoesMobile {
        display: none;
    }
}