/* Estilos para seções de produtos com banner */

/* Título da seção */
.product-section {
    margin-bottom: 40px;
}

.section-title {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    font-size: 16px !important;
    margin-bottom: 0 !important;
    padding-bottom: 10px;
    color: #333; /* Cor padrão, será substituída pelo CSS inline */
}

/* Banner da seção */
.section-banner {
    width: 100%;
    aspect-ratio: 16 / 14.5;
}

.section-banner img{
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 14.5;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

/* Produtos ao lado do banner */
.section-products {
    width: 100%;
}

.section-products ul.products {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.section-products ul.products li.product {
    width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 10px;
    box-sizing: border-box;
}

/* Estilos específicos para produtos */
.section-products ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    padding: 10px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-banner,
    .section-products {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .section-banner {
        height: 300px;
    }
    
    .section-products ul.products li.product {
        width: 48% !important;
    }
}
