/* 🍽️ Seção de Venda */
.venda {
    background-color: #fefefe;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
    overflow-x: auto;
}

.venda-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.venda-left,
.venda-right {
    flex: 0 0 50%;
    min-width: 300px;
}

.venda-left {
    position: relative;
    display: flex;
    justify-content: center;
}

.venda-left img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 200px;
}

.venda-left::after {
    content: "";
    position: absolute;
    right: 60px;
    bottom: -30px;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: #6b0400;
    border-radius: 200px;
    z-index: 1;
}

.venda-right h3 {
    font-size: 2.2rem;
    color: #6b0400;
    margin-bottom: 20px;
}

.venda-right p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

@media (max-width: 768px) {
    .venda {
        padding: 60px 10px;
    }

    .venda-container {
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        overflow-x: auto;
    }

    .venda-left,
    .venda-right {
        flex: 0 0 80%;
        min-width: 320px;
    }

    .venda-left img,
    .venda-left::after {
        max-width: 300px;
        border-radius: 150px;
    }

    .venda-left::after {
        right: -20px;
        bottom: -20px;
    }

    .venda-right h3 {
        font-size: 1.6rem;
        text-align: center;
        margin-top: 30px;
    }

    .venda-right p {
        font-size: 0.95rem;
        text-align: center;
    }
}
