.botao {
    background: var(--cor-primaria);
    border: none;
    border-radius: 4rem;
    height: 6.2rem;
    width: 26.3rem;
    color: white;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.botao a {
    text-decoration: none;
    color: #FFFF;
}

/*
Para Cellphones
*/
@media (max-width: 1100px) {
    .wraper{
        width: 37.5rem;
        margin-inline: auto;
        padding-inline: 2.4rem;
    }
}

/*
Para Pc
*/
@media (min-width: 1100px) and (orientation: landscape) {
    .wraper{
        width: 1000px;
        margin-inline: auto;
        padding-inline: 2.4rem;
    }
}