.divSkills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 100%;
    background-color: white;
    text-align: center;
    padding-bottom: 30px;
    
}
.divSkills-title {
    background-color: white;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.skills-title {
    text-align: center;
    font-size: 2.25rem;
    color: rgb(5, 5, 20);
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 5px 0; /* Reduzi a margem para evitar que o título fique muito longe do conteúdo */
    line-height: 59px;

}

.skill-content {
    font-size: 1.25rem;
    color: rgb(5, 5, 20);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    word-wrap: break-word; /* Adicionado para quebrar palavras longas em duas linhas */
    max-width: 60%;
    text-align: center;
}



.divSkills span {
    text-align: center;
    margin: 10px;
    position: relative;
}

.divSkills img {
    max-width: 100px;
    height: 80px;
    display: block;
    transition: opacity 0.3s;
    margin: 0 10px;
    margin-top: 10px;
}
.divSkills img:hover {
    opacity: 0.7;
}
.divSkills img[title]:hover:after {
    content: attr(title);
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    white-space: nowrap;
}

.skills-button {
    background-color:rgb(80, 80, 230);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-weight: bolder;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    margin: 5px;
    cursor: pointer;
    transition: background-color 0.3s;

}

.skills-button:hover {
    color:darkcyan;
    background-color: rgb(15, 25, 40);
}
@media screen and (max-width: 767px) {

    .divSkills img {
        height: 60px;
    }
    .skills-button {
        height: 30px;
        width: 30px;

    }
}
