/* Container Geral da Seção */
#skills {
    background-color: #050a14; 
    padding: 80px 8%;
    text-align: center;
    color: white;
}


/* O Container que segura as 3 colunas */
.tech-container {
    display: flex;
    justify-content: center;
    gap: 50px; 
    flex-wrap: wrap; 
}


.tech-category h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 400;
}


.tech-grid {
    display: flex;
    gap: 15px; 
    flex-wrap: wrap;
    justify-content: center;
    max-width: 300px; 
}


.tech-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3); 
    border-radius: 12px;
    width: 80px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}


.tech-card i {
    font-size: 2.5rem; 
    margin-bottom: 8px;
}


.tech-card span {
    font-size: 0.8rem;
    color: #ccc;
}

/* EFEITO NEON AO PASSAR O MOUSE */
.tech-card:hover {
    transform: translateY(-5px); 
    border-color: #a855f7; 
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.6); 
}


@media (max-width: 768px) {
    .tech-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .skills h2 {
        font-size: 1.8rem;
    }
}
