/* Ícones de tecnologias para a seção de especialização */
.tech-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-icon svg {
    width: 100%;
    height: 100%;
}

.tech-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dark-theme .tech-card {
    background-color: var(--dark-card-bg);
}

.tech-card h4 {
    margin-top: 10px;
    font-weight: 600;
    font-size: 16px;
}

.specialization-area {
    margin-top: 40px;
    margin-bottom: 40px;
}

.specialization-title {
    margin-bottom: 30px;
    text-align: center;
}

.specialization-title h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.specialization-title p {
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Cores específicas para cada tecnologia */
.php-icon {
    color: #777BB3;
}

.flutter-icon {
    color: #02569B;
}

.html-css-icon {
    color: #E44D26;
}

.python-icon {
    color: #3776AB;
}

.javascript-icon {
    color: #F7DF1E;
}

.laravel-icon {
    color: #FF2D20;
}
