
.skills-section {
    margin-top: 6.5rem;
}

.skills-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    opacity: 0;
    animation: leftSideAni 1s ease forwards;
    animation-delay: 0.8s;
    margin-bottom: 2.5rem;
    
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.8rem;
}

.skill-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    animation: topSideAni 1s ease forwards;
    margin-bottom: 6rem;
}

.skill-card h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.skill-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.skill-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Dark mode */
.dark-mode .skill-card {
    background: #2a2f3a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Tablet */
@media screen and (max-width: 1024px) {
    .skills-section {
        margin-top: 5rem;
    }

    .skills-grid {
        gap: 1.5rem;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .skills-section {
        margin-top: 4rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .skill-card {
        padding: 1.4rem;
        animation-delay: 0s;
    }
}

/* Mobile pequeno */
@media screen and (max-width: 480px) {
    .skills-section {
        margin-top: 3rem;
    }

    .skill-card {
        padding: 1.2rem;
    }
}