.contanier-contact{
    width: 100%;
    height: 100vh;
    background-color: var(--color--cinza--escuro);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    padding-left: 10%;
}

.contanier-contact h4{
    margin-bottom: 30px;
    color: var(--color--branco);
}

p{

    color: white;
}

.contanier-contact > div{
    margin-top: 40px;
    display: flex; 
    flex-direction: row; 
    width: 100%; 
    justify-content: center;
}

.contanier-contact article{
    width: 50%;
    align-items: flex-start;
}


.contanier-form{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 25px;
    flex-wrap: wrap;
}

.contanier-form input{
    width: 500px;
    height: 60px;
    padding: 10px;
    border: 0px;
    border-bottom: 1px solid var(--color--branco);
    background-color: transparent;
    color: var(--color--branco);
    margin-bottom: 10px;
}

.contanier-form input:focus{
    border: 1px solid var(--color--vermelho--rosa);
}

.contanier-form textarea{
    width: 500px;
    height: 150px;
    padding: 10px;
    border: 0px;
    border-bottom: 1px solid var(--color--branco);
    background-color: transparent;
    color: var(--color--branco);
    margin-bottom: 10px;
}

.contanier-form button{
    width: 500px;
    padding: 15px 0px;
    border-radius: 10px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    background-color: var(--color--vermelho--rosa);
    color: black;
    margin-bottom: 10px;
    margin-top: 10px;
}



article{
    height: 100%;
    
}

.contanier-contacts{
    width: 500px;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contanier-contacts-itens{
    height: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content:space-between;
    margin-top: 50px;
    
}

.contanier-contacts-itens > div{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content:space-between;
}



.contanier-contacts-phone{
    width: 24%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content:space-between;
    color: white;
}

.contanier-contacts-itens > div > p{
    color: var(--color--vermelho--rosa);
    
}

.line{
    transform: rotate(0deg); 
    width: 1px; 
    height: 100%;
    margin-right: 10%;
}



@media (max-width: 1100px){
    .contanier-contact{
        height: auto;
        justify-content: center;
        align-items: center;
        padding-left: 0%;
    }
    .contanier-contact > div {
        margin-top: 150px;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .contanier-contact article{
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .contanier-form input,
    .contanier-form textarea,
    .contanier-form button{
        width: 80%;
    }
    
    .line{
        border: none;
    }

    .contanier-form{
        align-items: center;
        justify-content: space-between;
        margin-bottom: 15%;
    }

    .article-contact > p,
    .line + article > p {
        text-align: center;
    }

    .contanier-contacts, 
    .contanier-contacts-itens{
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
   
    article{
        align-items: center;
        justify-content: center;
    }

    .contanier-contacts-itens > div{
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .contanier-contacts-itens > div >i,
    .contanier-contacts-phone > i{
        font-size: 1.6rem;
        padding-right: 10px;
    }

    #svg3{
        width: 100%;
        margin-bottom: 15%;
    }
}