.entre-contato {
    font-family: 'Raleway', sans-serif;
    width: 100%;
    height: auto;
    background-color: #0073C3;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0px 30px 0px;
}
.entre-contato .texto {
    width: 65%;
    height: auto;
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 10%;
}
.entre-contato .texto h3 {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    background: none;
    background: none;
    margin-bottom: 10px;
}
.entre-contato .texto p {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    background: none;
    background: none;
}
.entre-contato .botao {
    background: none;
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: 10%;
}
.entre-contato .botao a {
    text-decoration: none;
    padding: 10px 25px;
    font-weight: 700;
    border-radius: 50px;
    background-color: #FFF;
    color: #0073C3;
    transition: .1s;
}
.entre-contato .botao a:hover {
    background-color: transparent;
    padding: 8px 23px;
    color: #FFF;
    border: 2px solid #FFF;
}

/* Responsive -----------------------------------------------------------------------------*/
@media (max-width: 980px) {
    
}
@media (max-width: 860px) {
    .entre-contato {
        width: 100%;
        flex-direction: column;
    }
    .entre-contato .texto {
        width: 100%;
        margin-left: 0%;
        margin-bottom: 30px;
        justify-content: center;
        align-items: center;
    }
    .entre-contato .texto h3 {
        width: center;
        text-align: center;
        margin-left: 30px;
        margin-right: 30px;
    }
    .entre-contato .texto p {
        text-align: center;
        margin-left: 30px;
        margin-right: 30px;
    }
    .entre-contato .botao {
        width: 100%;
        justify-content: center;
        margin-right: 0%;
    }
}