.contatosLink {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: calc(40%);
    left: 0px;
    z-index: 5;
}

.itemWhatsapp {
    background-color: var(--verde-claro);
    border-radius: 0px 10px 10px 0px;
    transition: 0.3s all ease-in-out;
}

.itemWhatsapp:hover{
    background-color: var(--azul-claro);
    transition: 0.3s all ease-in-out;
}

.contatosLink a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 70px;
    text-decoration: none;
    color: white;
    border-radius: 0px 8px 8px 0px;
}

.itemWhatsapp svg{
    height:26px;
    width:26px;
}


/* Breakpoint Desktop */
@media(min-width:700px){
    .contatosLink a {
        width: 70px;
        height: 70px;
    }

    .itemWhatsapp svg{
        height:36px;
        width:36px;
    }
}