body {
    padding-top: 180px;
    width: 100%;
    height: 100%;
    background-color: #D9D9D6;
    text-align: justify;
    
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #2D2926;
    margin: 60px 0 80px;
    font-weight: 600;
    position: relative;
}

.projects {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}


.project-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
}

.project-item.reverse {
    flex-direction: row-reverse;
}

.project-image {
    flex: 1;
    overflow: hidden;
}

.project-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.project-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-image a:hover img {
    transform: scale(1.02);
}

.project-content {
    flex: 1;
    padding: 20px;
}

.project-content h2 {
    font-size: 2.5rem;
    color: #2D2926;
    margin-bottom: 20px;
}

.project-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2D2926;
}

/* Responsividade */
@media (max-width: 1024px) {
    .project-item {
        gap: 40px;
    }

    .project-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .project-item,
    .project-item.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .project-content {
        text-align: center;
        padding: 0 20px;
    }

    .project-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .projects {
        padding: 20px 15px;
    }

    .project-item {
        margin-bottom: 60px;
    }

    .project-content h2 {
        font-size: 1.5rem;
    }

    .project-content p {
        font-size: 1rem;
    }
}