
.habilidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 56px;
    width: 100%;
    justify-items: center;
    margin-top: 36px;
}

.habilidade-card {
    background: #23283a;
    outline: var(--cor-destaque) solid 2px;
    border-radius: 8px;
    padding: 0 0 22px 0;
    display: flex;
    flex-direction: column;
    min-width: 0;
    max-width: 320px;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.habilidade-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px #0004;
}

.habilidade-card h3 {
    margin: 0 0 10px 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
}

.habilidade-card p {
    color: #BDBDBD;
    font-size: 1rem;
    margin: 0 18px;
    text-align: justify;
    opacity: 0.85;
}