/* Seção de Projetos */
.projects-section {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    margin: 40px auto 60px auto;
    max-width: 1100px;
    padding: 40px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.projects-section h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 32px;
    font-weight: 700;
    letter-spacing: 1px;
}
.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    width: 100%;
}
.project-card {
    position: relative;
    width: 270px;
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    background: #f5f5f5;
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
}
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.project-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transform: translateY(-8px) scale(1.03);
}
.project-card:hover img {
    transform: scale(1.08) blur(2px) brightness(0.7);
}
.project-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(20, 20, 30, 0.82);
    color: #fff;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 18px;
    text-align: center;
    transition: opacity 0.4s;
    pointer-events: none;
}
.project-card:hover .project-overlay {
    opacity: 1;
    pointer-events: auto;
}
.project-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.project-overlay p {
    font-size: 1rem;
    color: #e0e0e0;
}
.project-overlay a{
    padding: 3px 12px;
    background: #fff;
    color: #121212;
    font-weight: 600;
    border-radius: 100px;

    &:hover {
        background: #161123;
        color: #fff;
    }
}
@media (max-width: 900px) {
    .projects-grid {
        gap: 18px;
    }
    .project-card {
        width: 90vw;
        max-width: 340px;
        height: 180px;
    }
}
