body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
}

.sobre-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    gap: 40px;
    background-color: #fff;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.sobre-texto {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.sobre-img {
    flex: 1;
    text-align: right;
}

.sobre-img img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .sobre-container {
        flex-direction: column;
        padding: 40px 20px;
    }

    .sobre-img {
        text-align: center;
    }
}
