#habilidades{
    background: linear-gradient(to right, #1c1e25, #2C313C);
    padding: 10px;

}

.skills-section {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    padding: 20px;

}

.skills-header {
    margin-bottom: 30px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1.3em;
    max-width: 100%;
    margin-top: -50px;
    text-shadow: 2px 2px 0 rgb(0, 0, 0.018);
}

.skill {
    position: relative;
    width: 100px;
    height: 100px;
    cursor: pointer;
    transition: transform 0.3s ease;
    transition: background-color 0.3s, transform 0.3s; 
}

.skill-logo {
    width: 100%;
    height: 100%;
    margin-top: -20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50%;
    transition: background-color 0.3s, transform 0.3s; 
}

.skill:hover .skill-logo {
    filter: grayscale(0%);
    box-shadow: 0 0 15px #efc3ff;
    border-radius: 50%;
    transform: scale(1.1);
}

.skill-name {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;

    color: #ffffff;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 1.3em;
    max-width: 100%; 
}

.skill:hover .skill-name {
    opacity: 1; 
}

.skills-title {
    text-align: center;
    margin-top: auto;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 2.5em;
    max-width: 100%; 
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
