.containerC{
    margin-top: 200px;
    display:flex;
    justify-content: center;
}
.contatos{
    width: 50%;
}
.contatos a{
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: left;
    margin-bottom: 40px;
}
.contatos a *{
    transition: 0.3s;
}
.contatos a img{
    width: 50px;
    margin-right: 20px;
}
.contatos a h5{
    display: flex;
    flex-wrap: wrap;
}
.contatos a div{
    background-color: #7f1cb4;
    border-radius: 2px;
    height: 0px;
    opacity:0.6;
}
.contatos a:hover{
    img{
        opacity:0.6;
    }
    div{
        height: 5px;
    }
    h5{
        opacity:0.6;
    }
}
@media(max-width: 500px){
    .contatos{
        width: 90%;
    }
}