.contato {
    display: grid;
    grid-template-columns: 40% 40%;
    justify-content: center;
    padding: 0px 72px;
    margin-top: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.back_contato{
    background-color: var(--cor-azul);
}

.back_contato .left .title{
    font-family: 'm-bold';
    color: white;
    margin-bottom: 10px;

}

.contato .left .subtitle  {
    font-family: 'm-semibold';
    font-size: 1.5rem;
    color: white;
    max-width: 600px;
}

.contato form input{
    width: 100%;
    border: 0px;
    height: 30px;
    margin-bottom: 10px;

}

.contato form{
    margin-top: 20px;
}
.contato form textarea{
    width: 100%;
    border: 0;
}

.contato form .item{
    display: flex;
    column-gap: 10px;
}

.contato form button{
    padding: 10px 20px;
    background: var(--cor-azul-claro);
    color: white;
    border: 0;
    font-family: 'm-bold';
    margin-top: 5px;
}

.contato .right{
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    color: white;
    font-family: 'm-bold';
    font-size: 1rem;
    padding-left: 60px;
    margin-top: 10px;

    
}

.contato .right .title{
    color: white;
    font-family: 'm-bold';
    font-size: 1.3rem;

}

.contato .right .title_cont{
    color:var(--cor-azul-claro);
    font-family: 'm-bold';
    margin-top: 10px;

}

.contato .right .itens_network{
    display: flex;
    column-gap: 10px;
    margin-top: 20px;
}

.contato .right .itens_network i{
    font-size: 1.8rem;
    
}

.contato .formulario_contato input {
    padding: 10px;

}


.contato .formulario_contato input::placeholder {
    font-family: 'm-medium';

}


@media only screen and (max-width: 782px) {

    .contato {
        display: grid;
        grid-template-columns: 90%;
        justify-content: center;
        padding: 0px 0px;
        margin-top: 0px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .contato .left .subtitle {
        font-family: 'm-semibold';
        font-size: 1rem;
        color: white;
        max-width: 600px;
    }

    .contato form .item {
        display: flex;
        flex-direction: column;
        column-gap: 10px;
    }

    .contato .right {
        display: flex;
        flex-direction: column;
        color: white;
        font-family: 'm-bold';
        font-size: 0.9rem;
        padding-left: 0px;
        margin-top: 10px;
    }

    .contato .right .title {
        color: white;
        font-family: 'm-bold';
        font-size: 1rem;
    }

}