.contato__page {
    margin: 3rem auto;
}

.contato__page .content {
    display: flex;
    align-items: flex-start;
}
.contato__page .content .image {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin-right: 1.5rem;
}
.contato__page .content .image img {
    width: 100%;
    height: auto;
}

.contato__page .content .image .line {
    width: 100%;
    height: 2px;
    background-color: #ed1d24;
    margin: 1rem 0;
}

.contato__page .content .box {
    background-color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    border-radius: 3rem 1rem 3rem 1rem;

}
.contato__page .content .box .form__section {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.contato__page .content .box .form__section form {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-right: 1rem;
}
.contato__page .content .box .form__section form input {
    border: 2px solid #ed1d24;
    height: 40px;
    border-radius: 20px;
    padding-left: 1.2rem;
    outline: none;
    transition: .3s;
}
.contato__page .content .box .form__section form input.is-invalid {
    background-color: #ed1d24;
    color: #fff;
}

.contato__page .content .box .form__section form input:hover,
.contato__page .content .box .form__section form textarea:hover {
    box-shadow: 0 0 15px #ed1d24;
}



.contato__page .content .box .form__section form input + input {
    margin-bottom: 10px;
}
.contato__page .content .box .form__section form div.alert + input {
    margin-bottom: 10px;
}

.contato__page .content .box .form__section form textarea {
    border: 2px solid #ed1d24;
    height: 120px;
    border-radius: 20px;
    padding: .5rem 1.2rem;
    margin-bottom: 10px;
    outline: none;
    transition: .3s;
}
.contato__page .content .box .form__section form button {
    background-color: #ed1d24;
    outline: none;
    border: none;
    width: max-content;
    padding: 10px 40px;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}
.contato__page .content .box .form__section form button:hover {
    background-color: #f55359;
}
.contato__page .content .box .form__section form button[disabled] {
    background-color: #d8d8d8;
    pointer-events: none;
}





.contato__page .content .box .form__section .actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    padding-left: 1rem;
}
.contato__page .content .box .form__section .actions img {
    width: 30px;
    height: auto;
}
.contato__page .content .box .form__section .actions h5 {
    font-size: 1.1rem;
    font-family: "Poppins SemiBold", sans-serif;
    color: #ed1d24;
    margin: .2rem 0;
}
.contato__page .content .box .form__section .actions a {
    color: #292929;
    font-size: .9rem;
    font-family: "Calibri", sans-serif;
    text-decoration: none;
}

.contato__page .content .box .addresses {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}
.contato__page .content .box .addresses .address {
    width: 50%;
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}
.contato__page .content .box .addresses .address h3 {
    color: #333;
    font-family: "Poppins SemiBold", sans-serif;
    font-size: 1.3rem;
}
.contato__page .content .box .addresses .address a {
    color: #333;
    font-size: .9rem;
    font-family: "Calibri", sans-serif;
    text-decoration: none;
    max-width: 90%;
}
.contato__page .content .box .addresses .address a + a {
    margin-top: .5rem;
}





@media screen and (max-width: 991px), (orientation: portrait) {
    .contato__page .content {
        flex-direction: column;
        align-items: center;
    }
    .contato__page .content .image {
        margin-right: 0;
        width: 60%;
    }
    .contato__page .content .box {
        flex-direction: column;
        width: 100%;
    }
    .contato__page .content .box .form__section {
        width: 100%;
        flex-direction: column;
    }
    .contato__page .content .box .form__section form {
        width: 100%;
        margin-bottom: 1.5rem;
        padding-right: 0;
        align-items: center;
    }
    .contato__page .content .box .form__section form input,
    .contato__page .content .box .form__section form textarea,
    .contato__page .content .box .form__section form button {
        width: 100%;
    }
    .contato__page .content .box .form__section .actions {
        width: 100%;
        align-items: center;
    }
}




