.contact{
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0.7) 90%), url("../img/portao.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    background-position-y: center;
    background-size: 850px;
}

.contBody{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;    
}

.contBody h2{
    margin-top: 0;
    margin-bottom: 30px;
}

.contIt{
    display: flex;
    flex-direction: row;
    justify-content: start;
    color: var(--text-black);
    padding-bottom: 20px;
    padding-top: 10px;
    border-bottom: 1px dashed #8f8f8f5f;
    min-width: 100%;
}

.contLeft{
    min-width: calc(50% - 30px);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    margin: 0;
    padding: 0;
    padding-right: 30px;
    margin-top: 0px;
}

.contIt i{
    font-size: 1.8rem;
    margin-right: 15px;
    margin-top: 10px;
}

.contIt h3{
    margin: 10px 0;
}

.contact a{
    color: var(--text-black);
    font-size: .9rem;
}

.contIt p{
    margin: 0;
    line-height: 1.5;
}

.contRigth{
    min-width: calc(50% - 30px);
    flex: 2;
    min-height: 100%;
    margin: 0;
    padding: 0;
    padding-left: 15px;
    margin-top: 0;
}

.contRigth iframe{
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 8px solid var(--blue);
}

.contRigth form{
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    width:100%;
    margin-top: 25px;
}

.contRigth label{
    display: none;
}

.contRigth input, textarea{
    margin-top: 5px;
    margin-bottom: 10px;
    width: calc(100% - 3.9px);
    height: 42px;
    border: none;
    border-bottom: 2px solid rgb(230, 230, 230);
    border-radius: 5px;
    font-size: .9rem;
    outline: none;
}

.contRigth textarea{
    min-height: 140px;
}

.contRigth button{
    cursor: pointer;
    width: 100%;
    height: 50px;
    border: none;
    margin-top: 5px;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 5px;
    color: #fff;
    background-color: var(--blue) !important;
}

.contRigth button:hover{
    opacity: .9;
}

@media screen and (max-width: 800px) {
    .contBody{
       flex-direction: column;
    }

    .contBody h2{
        width: 100%;
        text-align: center;
    }

    .contLeft{
        padding-right: 0;
    }

    .contRigth{
        margin-top: 60px;
        align-items: center;
        justify-content: center;
        padding-left: 0;
    }
}