section.contato {
    padding-bottom: 46px;
    width: 100%;
    height: 100%;
    background-image: url("../img/contato/banner.webp");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}
section.contato .content{
    max-width: 840px;
}
section.contato #subtitle{
    text-align: center;
    color: var(--cinza);
    font-size: 16.67px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 40px;
}
.box-form{
    outline: 5px solid var(--azul); 
    border: 3px solid #fff;
    background-color: var(--azul);
}
.box-form form{
    padding: 43px 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    row-gap: 25px;
}
.group-input{
    width: 100%;
    row-gap: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.group-input label{
    font-size: 20px;
    font-weight: 500;
}
.group-input input,
.group-input textarea{
    font-family: "Montserrat", sans-serif;
    width: 100%;
    height: 46px;
    border: none;
    outline: none;
    background-color: #fff;
    padding: 0 12px;
    font-weight: 500;
    font-size: 18.54px;
}
.group-input textarea{
    height: 100px;
    padding: 12px;
}
.group-terms label{
    font-weight: 500;
    font-size: 16.67px;
}
.group-terms label a{
    text-decoration: underline;
}
.group-button button{
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 auto;
    position: relative;
    width: 108px;
    height: 37px;
    background-color: var(--azul);
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
}
.group-button button:after{
    content: '';
    position: absolute;
    width: 35px;
    height: 20px;
    border-bottom: #fff 3px solid;
    border-right: #fff 3px solid;
    bottom: 0px;
    right: 0px;
    opacity: 1;
    transition: all .4s ease;
}
.group-button button:before{
    content: '';
    position: absolute;
    width: 35px;
    height: 20px;
    border-top: #fff 3px solid;
    border-left: #fff 3px solid;
    top: 0px;
    left: 0px;
    opacity: 1;
    transition: all .4s ease;
}
.banner-footer{
    transform: translateY(-10px);
}

@media(max-width: 768px){
    .box-form form{
        row-gap: 15px;
        padding: 30px 20px;
    }
    .group-input input{
        height: 35px;
    }
}