.lingagem-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    width: 120px;
    height: 140px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transform: rotateX(90deg); 
    opacity: 1; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer; 
}

.lingagem-link {
    text-decoration: none;
    color: inherit;
    display: flex; /* mantém o tamanho do card */
}

.lingagem-link:hover {
    text-decoration: none;
}

.lingagem-div.animate {
    transform: rotateX(0deg);
}

.lingagem-div:hover {
    text-decoration: none;
    transform: translateY(-15px) rotateX(0deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.linguagens-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px; 
    perspective: 1000px;
}
