/* ================= SOBRE ================= */
.sobre {
    background: #ffffff;
    padding: 80px 0;
}

.sobre-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap; /* permite responsivo */
}

.sobre-imagem {
    flex: 1;
    min-width: 300px;
}

.sobre-imagem img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}

.sobre-texto {
    flex: 1;
    min-width: 300px;
}

.sobre-texto h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #0d3b66;
    margin-bottom: 50px;
}

.sobre-texto p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

/* ================= RESPONSIVO ================= */
@media (max-width: 768px) {
    .sobre-container {
        flex-direction: column-reverse; /* texto acima da imagem em mobile */
        gap: 30px;
        text-align: center;
    }

    .sobre-texto p {
        font-size: 1rem;
    }
}