.section-contato {
    height: 315px;
}

.section-contato > div {
    background-image: url("../imgs/home-img.png");
    background-position: calc(-780px);
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    height: 100%;
}

.section-contato div .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-contato h2 {
    font-family: "Black Ops One";
    color: #A4161A;
    margin-bottom: 2rem;
}

.container-contato h2 {
    font-family: "Black Ops One";
}

.container-contato h2 span {
    color: #A4161A;
}

.p-red {
    color: #BA181B;
}

form input {
    width: 100%;
    height: 3rem;
    margin-top: 2rem;
    padding-left: 0.4rem;
    border: 1px solid #B1A7A6;
}

form input:focus {
    box-shadow: none;
    outline: 0;
}

form textarea:focus {
    box-shadow: none;
    outline: 0;
}

form textarea {
    margin-top: 2rem;
    padding-left: 0.4rem;
    padding-top: 0.6rem;
    border: 1px solid #B1A7A6;
    resize: none;
}

form button {
    background-color: #E5383B;
    border: none;
    color: white;
    width: 6rem;
    height: 3rem;
}

.flex-contato {
    justify-content: center;
}

.div-circle-red {
    height: 4rem;
    width: 4rem;
    background-color: #E5383B;
}

@media (min-width: 635px) {
    .section-contato > div {
        background-position: center;
        background-size: cover;
    }
    .section-contato div .container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    form input {
        width: 20rem;
        height: 3rem;
    }
    .flex-contato {
        justify-content: flex-end;
    }
}