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

.contanier-skills-small{
    width: 50%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    justify-content: center;
}

.iconeSkills{
    font-size: 50px;
    margin-bottom: 5px;
    color: var(--color--vermelho--rosa);
}


.contanier-skills-small div{
    display: flex;
    flex-direction: column;
    width: 160px;
    height: 140px;
    border: 1px solid var(--color--vermelho--rosa);
    border-radius: 20px;
    margin-top: 50px;
    margin-bottom: 40px;
    padding: 10px;
    align-items: center;
    justify-content: space-around;

    transition-property: background-color;
    transition-duration: 2s;
    transition-timing-function: ease-in-out;
    animation: contanierSkills 1s;
}

.contanier-skills-small p{
    color: var(--color--vermelho--rosa);
    font-weight: 500;
}

.contanier-skills-small div:hover{
    background-color: var(--color--branco);

}


/*SVG*/
/*Engrenagens*/
#eng{
    animation: engrenagem .4s steps(5) infinite;
    transform-origin: center;
    
}

/*ANIMAÇÕES*/

@keyframes contanierSkills {
    from{
        transform: translateY(600px);
    }

    to{
        transform: translateY(0);
    }
}

@keyframes engrenagem{
   from{
        transform: rotate(0deg);
   }
   to{
        transform: rotate(360deg); 
   }
}


/* RESPONSIVIDADE*/
@media (max-width: 1000px) {
    .contanier-skills{
        height: 100vh;
        flex-direction: column;
        width: auto;
        height: auto;
    }

    .contanier-skills-draw{
        padding-top: 30%;
    }
   
    .contanier-skills-small{
        width: 50%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}