header{
    margin-bottom: 20px;
}
body{
    background-image: url("../img/contato/banner.webp");
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
}
section.contato{
    padding: 20px 0;
    margin: 0 auto;
    width: fit-content;
    background-color: #ebebeb59;
    margin-bottom: 30px;
}
section.contato .wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
section.contato .wrapper .text{
    color: #fff;
    padding: 40px;
    padding-right: 30px;
    flex-basis: 48%;
}
section.contato .wrapper .text h3{
    font-size: 33.33px;
    font-weight: 600;
    text-shadow: 0px 2px 16px rgb(27, 35, 75);
    margin-bottom: 30px;
}
section.contato .wrapper .text p{
    font-size: 16.67px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.724);
}
section.contato .wrapper form{
    padding-top: 105px !important;
    padding-bottom: 14px !important;
    padding: 0 14px;
    background-color: #ffffff5e;
    flex-basis: 47%;
    width: 100%;
}
input::placeholder,
textarea::placeholder{
    width: 100%;
    color: var(--azul);
}
section.contato .wrapper form .group-input{
    width: 100%;
}
section.contato .wrapper form .group-input:not(.textarea){
    margin-bottom: 30px;
}
section.contato .wrapper form input[type="text"],
section.contato .wrapper form input[type="email"],
section.contato .wrapper form textarea{
    width: 100%;
    height: 33px;
    background-color: #fff;
    border: none;
    outline: none;
    font-size: 16.67px;
    font-weight: 500;
    padding-left: 10px;
    color: var(--azul);
}
section.contato .wrapper form textarea{
    height: 276px;
    padding-top: 10px;
}
section.contato .wrapper form .group-terms{
    margin-top: 5px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    padding-left: 7px;
    gap: 7px;
}
section.contato .wrapper form .group-terms label{
    font-size: 12.46px;
    color: #fff;
}
section.contato .wrapper form .group-terms label a{
    text-decoration: underline;
}
section.contato .wrapper form .group-button{
    display: flex;
    justify-content: center;
}
section.contato .wrapper form .group-button button{
    cursor: pointer;
    background-color: var(--azul);
    width: 103px;
    height: 34px;
    border: none;
    outline: none;
    color: #fff;
    font-weight: 500;
    font-size: 16.67px;
}

@media(max-width: 768px){
    body{
        background-size: cover;
    }
    section.contato {
        padding: 40px 0;
    }
    section.contato .wrapper{
        flex-direction: column;
    }
    section.contato .wrapper .text{
        padding: 0;
        padding-right: 0;
        margin-bottom: 20px;
    }
}