.botao {
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #3FA110;
    cursor: pointer;
    height: 35px;
}

.botao i {
    vertical-align: middle;
    font-size: 1.5em;
}

.botao i + span {
    margin-left: 5px;
}

.botao span + i {
    margin-left: 5px;
}

.botao:disabled {
    color: white;
    background-color: #C5C5C5;
    border-color: #C5C5C5;
    cursor: default;
}

.botao-primario {
    color: white;
    background-color: #3FA110;
}

.botao-primario:hover:enabled {
    color: #3FA110;
    background-color: white;
}

.botao-secundario {
    color: #3FA110;
    background-color: white;
}

.botao-secundario:hover:enabled {
    color: white;
    background-color: #3FA110;
}