/**
 * BikePortella B2B - Estilos WooCommerce Extras
 * Complementa o style.css com estilos específicos do WooCommerce
 *
 * @package BikePortella_B2C
 */

/* ===========================================
   ESTRELAS DE AVALIAÇÃO
   =========================================== */
.woocommerce .star-rating {
    color: var(--bp-alerta) !important;
}

.woocommerce .star-rating::before {
    color: var(--bp-cinza-200) !important;
}

.woocommerce p.stars a {
    color: var(--bp-alerta) !important;
}

/* ===========================================
   CUPOM NO CARRINHO
   =========================================== */
.woocommerce .cart .coupon input.input-text {
    width: 200px;
    height: 42px;
    padding: 8px 15px;
    border: 1px solid var(--bp-cinza-200);
    border-radius: var(--bp-radius-sm);
    font-size: 0.9rem;
}

.woocommerce .cart .coupon button {
    height: 42px;
}

/* ===========================================
   TABELA DE PEDIDOS (MINHA CONTA)
   =========================================== */
.woocommerce-account table.woocommerce-orders-table {
    border: 1px solid var(--bp-cinza-200);
    border-radius: var(--bp-radius);
    overflow: hidden;
}

/* Cabeçalho neutro: vermelho é acento pontual, não fundo de área. */
.woocommerce-account table.woocommerce-orders-table thead th {
    background-color: var(--gray-050);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 12px 15px;
    border: none;
    border-bottom: 1px solid var(--gray-200);
}

.woocommerce-account table.woocommerce-orders-table td {
    padding: 15px;
    border-bottom: 1px solid var(--bp-cinza-100);
    font-size: 0.9rem;
}

.woocommerce-account table.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a {
    margin: 2px;
    padding: 6px 14px !important;
    font-size: 0.75rem !important;
}

/* ===========================================
   ENDEREÇOS (MINHA CONTA)
   =========================================== */
.woocommerce-account .woocommerce-address-fields .form-row {
    margin-bottom: 15px;
}

.woocommerce-account .addresses .title h3 {
    font-size: 1rem;
    color: var(--bp-primaria);
    text-transform: uppercase;
}

.woocommerce-account .addresses address {
    background: var(--bp-cinza-50);
    padding: 20px;
    border-radius: var(--bp-radius-sm);
    border: 1px solid var(--bp-cinza-200);
    font-style: normal;
    color: var(--bp-cinza-700);
    line-height: 1.7;
}

/* ===========================================
   PRODUTO SINGLE - VARIAÇÕES
   =========================================== */
.woocommerce div.product .variations {
    margin-bottom: 20px;
}

.woocommerce div.product .variations td {
    padding: 8px 0;
}

.woocommerce div.product .variations select {
    height: 45px;
    padding: 8px 15px;
    border: 1px solid var(--bp-cinza-200);
    border-radius: var(--bp-radius-sm);
    background-color: var(--bp-cinza-50);
    font-size: 0.9rem;
}

.woocommerce div.product .variations label {
    font-weight: 700;
    color: var(--bp-primaria);
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* ===========================================
   PRODUCT SHORT DESCRIPTION
   =========================================== */
.woocommerce div.product .woocommerce-product-details__short-description {
    color: var(--bp-cinza-700);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--bp-cinza-200);
}

/* ===========================================
   WIDGET FILTROS ATIVOS
   =========================================== */
.woocommerce .woocommerce-widget-layered-nav-list li {
    padding: 6px 0;
}

.woocommerce .woocommerce-widget-layered-nav-list li a {
    color: var(--bp-cinza-700);
    font-size: 0.88rem;
}

.woocommerce .woocommerce-widget-layered-nav-list li .count {
    background: var(--bp-cinza-100);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    color: var(--bp-cinza-500);
    float: right;
}

/* ===========================================
   MINI CART WIDGET
   =========================================== */
.woocommerce .widget_shopping_cart .cart_list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--bp-cinza-100);
}

.woocommerce .widget_shopping_cart .cart_list li a.remove {
    color: var(--bp-erro) !important;
    font-size: 1.2rem;
}

/* ===========================================
   LOADING STATES
   =========================================== */
.woocommerce .blockUI.blockOverlay::before {
    height: 20px !important;
    width: 20px !important;
    border: 3px solid var(--bp-cinza-200);
    border-top: 3px solid var(--bp-preto);
    border-radius: 50%;
    animation: bp-spin 0.8s linear infinite;
}

@keyframes bp-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===========================================
   PRODUCT CATEGORIES WIDGETS
   =========================================== */
.woocommerce .widget_product_categories ul li {
    position: relative;
}

.woocommerce .widget_product_categories ul li a {
    display: block;
    padding: 6px 0;
    color: var(--bp-cinza-700);
    font-size: 0.88rem;
}

.woocommerce .widget_product_categories ul li a:hover {
    color: var(--bp-destaque);
}

.woocommerce .widget_product_categories .children {
    padding-left: 15px;
}

.woocommerce .widget_product_categories .children li a {
    font-size: 0.82rem;
    color: var(--bp-cinza-500);
}

/* ===========================================
   CAMPO DE BUSCA NO SEARCH FORM
   =========================================== */
.woocommerce-product-search {
    display: flex;
}

.woocommerce-product-search input[type="search"] {
    flex: 1;
    border-radius: var(--bp-radius-sm) 0 0 var(--bp-radius-sm);
    border-right: none;
}

.woocommerce-product-search button {
    border-radius: 0 var(--bp-radius-sm) var(--bp-radius-sm) 0 !important;
    min-width: 45px;
}

/* ===========================================
   PEDIDO RECEBIDO - DETALHES EXTRAS
   =========================================== */
.woocommerce-order-received .woocommerce-customer-details {
    margin-top: 30px;
}

.woocommerce-order-received .woocommerce-columns--addresses {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .woocommerce-order-received .woocommerce-columns--addresses {
        grid-template-columns: 1fr;
    }
}

.woocommerce-order-received .woocommerce-column__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bp-preto);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.woocommerce-order-received address {
    background: var(--bp-branco);
    border: 1px solid var(--bp-cinza-200);
    padding: 20px;
    border-radius: var(--bp-radius-sm);
    font-style: normal;
    color: var(--bp-cinza-700);
    line-height: 1.7;
}

/* ===========================================
   PRODUTO - TAGS E CATEGORIAS
   =========================================== */
.woocommerce div.product .tagged_as a,
.woocommerce div.product .posted_in a {
    color: var(--bp-primaria);
    font-weight: 600;
}

.woocommerce div.product .tagged_as a:hover,
.woocommerce div.product .posted_in a:hover {
    color: var(--bp-destaque);
}

/* ===========================================
   CROSS-SELLS (CARRINHO)
   =========================================== */
.woocommerce .cross-sells {
    margin-top: 40px;
}

.woocommerce .cross-sells h2 {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--bp-preto);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bp-cinza-900);
    display: inline-block;
}

/* ===========================================
   FAVORITOS (Minha Conta → Favoritos)
   =========================================== */
/* A área de conteúdo da conta é estreita: a grade da vitrine (4 col) ficaria
   espremida aqui, então usa auto-fill com piso de 200px. */
.bp-favoritos .products,
.woocommerce-account .bp-favoritos ul.products {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
}

.bp-favoritos-vazio {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0 4px;
}

.bp-favoritos-vazio p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.55;
}

.bp-favoritos-vazio .bp-btn {
    margin-top: 6px;
    text-decoration: none;
}

/* ===========================================
   DESCRIÇÃO PADRONIZADA DE PRODUTOS (BICICLETAS & GERAL)
   Padronização visual elegante, zero emojis, ícones pretos em SVG
   =========================================== */

/* Ícone Vetorial Base (SVG Preto Minimalista) */
.bp-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    display: inline-block;
    flex-shrink: 0;
    background-color: var(--bp-primaria, #111827);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.bp-icon--sm {
    width: 16px;
    height: 16px;
}

.bp-icon--lg {
    width: 24px;
    height: 24px;
}

/* 1. Descrição Curta (Acima da Dobra) */
.bp-short-desc-wrap {
    margin: 12px 0 18px;
}

.bp-short-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bp-short-bullets li {
    font-size: 0.92rem;
    color: var(--bp-cinza-800, #1f2937);
    line-height: 1.45;
    position: relative;
    padding-left: 18px;
}

.bp-short-bullets li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--bp-destaque, #dc2626);
}

.bp-quick-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--bp-cinza-50, #f8fafc);
    border: 1px solid var(--bp-cinza-200, #e2e8f0);
    border-radius: var(--bp-radius-sm, 6px);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--bp-cinza-700, #334155);
}

/* 2. Container Principal da Descrição Detalhada (Padrão Bike Center) */
.bp-bike-desc {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--bp-cinza-800, #334155);
    padding-top: 5px;
}

.bp-desc-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bp-primaria, #0f172a);
    margin: 0 0 1rem;
    text-transform: capitalize;
}

.bp-desc-section-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--bp-primaria, #0f172a);
    margin: 1.8rem 0 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bp-desc-lead {
    font-size: 0.95rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.bp-desc-subhead {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--bp-primaria, #0f172a);
    margin: 1.2rem 0 0.4rem;
}

/* Listas de Benefícios e Diferenciais */
.bp-desc-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1.2rem 0;
}

.bp-desc-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
    color: var(--bp-cinza-800, #334155);
    font-size: 0.92rem;
    line-height: 1.5;
}

.bp-desc-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--bp-primaria, #0f172a);
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 1;
}

/* Especificações Categorizadas Limpas */
.bp-specs-clean {
    margin: 1.5rem 0;
}

.bp-spec-group {
    margin-bottom: 1.2rem;
}

.bp-spec-group-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--bp-primaria, #0f172a);
    margin: 0 0 0.35rem;
}

.bp-spec-group-items {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.bp-spec-group-items li {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 0.2rem;
}

.bp-spec-group-items li strong {
    color: var(--bp-cinza-800, #1e293b);
    font-weight: 600;
}

.bp-specs-disclaimer {
    font-size: 0.8rem;
    color: #64748b;
    font-style: italic;
    margin: 1rem 0 1.5rem;
}

/* Envio e Montagem */
.bp-desc-shipping-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

/* 3. Chamada para Bike Fit e Guia de Tamanhos */
.bp-size-callout {
    margin: 2.2rem 0 1rem;
    padding: 1.5rem 1.75rem;
    background: var(--bp-cinza-50, #f8fafc);
    border: 1px solid var(--bp-cinza-200, #e2e8f0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.bp-size-callout__content {
    flex: 1;
}

.bp-size-callout__title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--bp-primaria, #0f172a);
    margin: 0 0 0.4rem;
}

.bp-size-callout__text {
    font-size: 0.88rem;
    color: var(--bp-cinza-600, #475569);
    margin: 0;
    line-height: 1.55;
}

.bp-size-callout__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.35rem;
    background-color: var(--bp-primaria, #111827);
    color: #ffffff !important;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-radius: 6px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.15s ease;
    flex-shrink: 0;
}

.bp-size-callout__btn:hover {
    background-color: var(--bp-destaque, #dc2626);
    color: #ffffff !important;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .bp-size-callout {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .bp-size-callout__btn {
        width: 100%;
        text-align: center;
    }
}


/* Mapeamento de Ícones Vetoriais Pretos (Mask SVG) */
.bp-icon--bike { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%225.5%22%20cy%3D%2217.5%22%20r%3D%223.5%22/%3E%3Ccircle%20cx%3D%2218.5%22%20cy%3D%2217.5%22%20r%3D%223.5%22/%3E%3Cpath%20d%3D%22M15%206a1%201%200%201%200%200-2%201%201%200%200%200%200%202zm-3%2011.5L8.5%2010l4-4h2.5%22/%3E%3Cpath%20d%3D%22M5.5%2017.5l4-7.5h5l4%207.5%22/%3E%3Cpath%20d%3D%22M12%2017.5V10%22/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%225.5%22%20cy%3D%2217.5%22%20r%3D%223.5%22/%3E%3Ccircle%20cx%3D%2218.5%22%20cy%3D%2217.5%22%20r%3D%223.5%22/%3E%3Cpath%20d%3D%22M15%206a1%201%200%201%200%200-2%201%201%200%200%200%200%202zm-3%2011.5L8.5%2010l4-4h2.5%22/%3E%3Cpath%20d%3D%22M5.5%2017.5l4-7.5h5l4%207.5%22/%3E%3Cpath%20d%3D%22M12%2017.5V10%22/%3E%3C/svg%3E"); }
.bp-icon--frame { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%2018L10%206h4l6%2012H4z%22/%3E%3Cpath%20d%3D%22M10%206l4%2012%22/%3E%3Cpath%20d%3D%22M7%2012h10%22/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M4%2018L10%206h4l6%2012H4z%22/%3E%3Cpath%20d%3D%22M10%206l4%2012%22/%3E%3Cpath%20d%3D%22M7%2012h10%22/%3E%3C/svg%3E"); }
.bp-icon--gears { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%223%22/%3E%3Cpath%20d%3D%22M19.4%2015a1.65%201.65%200%200%200%20.33%201.82l.06.06a2%202%200%200%201%200%202.83%202%202%200%200%201-2.83%200l-.06-.06a1.65%201.65%200%200%200-1.82-.33%201.65%201.65%200%200%200-1%201.51V21a2%202%200%200%201-2%202%202%202%200%200%201-2-2v-.09A1.65%201.65%200%200%200%209%2019.4a1.65%201.65%200%200%200-1.82.33l-.06.06a2%202%200%200%201-2.83%200%202%202%200%200%201%200-2.83l.06-.06a1.65%201.65%200%200%200%20.33-1.82%201.65%201.65%200%200%200-1.51-1H3a2%202%200%200%201-2-2%202%202%200%200%201%202-2h.09A1.65%201.65%200%200%200%204.6%209a1.65%201.65%200%200%200-.33-1.82l-.06-.06a2%202%200%200%201%200-2.83%202%202%200%200%201%202.83%200l.06.06a1.65%201.65%200%200%200%201.82.33H9a1.65%201.65%200%200%200%201-1.51V3a2%202%200%200%201%202-2%202%202%200%200%201%202%202v.09a1.65%201.65%200%200%200%201%201.51%201.65%201.65%200%200%200%201.82-.33l.06-.06a2%202%200%200%201%202.83%200%202%202%200%200%201%200%202.83l-.06.06a1.65%201.65%200%200%200-.33%201.82V9a1.65%201.65%200%200%200%201.51%201H21a2%202%200%200%201%202%202%202%202%200%200%201-2%202h-.09a1.65%201.65%200%200%200-1.51%201z%22/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%223%22/%3E%3Cpath%20d%3D%22M19.4%2015a1.65%201.65%200%200%200%20.33%201.82l.06.06a2%202%200%200%201%200%202.83%202%202%200%200%201-2.83%200l-.06-.06a1.65%201.65%200%200%200-1.82-.33%201.65%201.65%200%200%200-1%201.51V21a2%202%200%200%201-2%202%202%202%200%200%201-2-2v-.09A1.65%201.65%200%200%200%209%2019.4a1.65%201.65%200%200%200-1.82.33l-.06.06a2%202%200%200%201-2.83%200%202%202%200%200%201%200-2.83l.06-.06a1.65%201.65%200%200%200%20.33-1.82%201.65%201.65%200%200%200-1.51-1H3a2%202%200%200%201-2-2%202%202%200%200%201%202-2h.09A1.65%201.65%200%200%200%204.6%209a1.65%201.65%200%200%200-.33-1.82l-.06-.06a2%202%200%200%201%200-2.83%202%202%200%200%201%202.83%200l.06.06a1.65%201.65%200%200%200%201.82.33H9a1.65%201.65%200%200%200%201-1.51V3a2%202%200%200%201%202-2%202%202%200%200%201%202%202v.09a1.65%201.65%200%200%200%201%201.51%201.65%201.65%200%200%200%201.82-.33l.06-.06a2%202%200%200%201%202.83%200%202%202%200%200%201%200%202.83l-.06.06a1.65%201.65%200%200%200-.33%201.82V9a1.65%201.65%200%200%200%201.51%201H21a2%202%200%200%201%202%202%202%202%200%200%201-2%202h-.09a1.65%201.65%200%200%200-1.51%201z%22/%3E%3C/svg%3E"); }
.bp-icon--brake { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%229%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%223%22/%3E%3Cpath%20d%3D%22M12%203v3m0%2012v3M3%2012h3m12%200h3m-3.5-5.5l-2%202m-7%207l-2%202m11%200l-2-2m-7-7l-2-2%22/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%229%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%223%22/%3E%3Cpath%20d%3D%22M12%203v3m0%2012v3M3%2012h3m12%200h3m-3.5-5.5l-2%202m-7%207l-2%202m11%200l-2-2m-7-7l-2-2%22/%3E%3C/svg%3E"); }
.bp-icon--wheel { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%229%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%222%22/%3E%3Cpath%20d%3D%22M12%203v7m0%204v7M3%2012h7m4%200h7m-4.5-6.5l-5%205m0%203l-5%205m10%200l-5-5m0-3l-5-5%22/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%229%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%222%22/%3E%3Cpath%20d%3D%22M12%203v7m0%204v7M3%2012h7m4%200h7m-4.5-6.5l-5%205m0%203l-5%205m10%200l-5-5m0-3l-5-5%22/%3E%3C/svg%3E"); }
.bp-icon--suspension { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M8%203h8M12%203v4M8%207h8M9%207v6m6-6v6M7%2013h10M10%2013v8M14%2013v8M8%2021h8%22/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M8%203h8M12%203v4M8%207h8M9%207v6m6-6v6M7%2013h10M10%2013v8M14%2013v8M8%2021h8%22/%3E%3C/svg%3E"); }
.bp-icon--cockpit { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%208c2-3%206-4%209-4s7%201%209%204%22/%3E%3Cpath%20d%3D%22M12%204v8%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2216%22%20r%3D%224%22/%3E%3Cpath%20d%3D%22M3%208v3m18-3v3%22/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M3%208c2-3%206-4%209-4s7%201%209%204%22/%3E%3Cpath%20d%3D%22M12%204v8%22/%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2216%22%20r%3D%224%22/%3E%3Cpath%20d%3D%22M3%208v3m18-3v3%22/%3E%3C/svg%3E"); }
.bp-icon--battery { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%221%22%20y%3D%226%22%20width%3D%2218%22%20height%3D%2212%22%20rx%3D%222%22%20ry%3D%222%22/%3E%3Cpath%20d%3D%22M23%2013v-2%22/%3E%3Cpath%20d%3D%22M11%209l-3%204h4l-2%204%22/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Crect%20x%3D%221%22%20y%3D%226%22%20width%3D%2218%22%20height%3D%2212%22%20rx%3D%222%22%20ry%3D%222%22/%3E%3Cpath%20d%3D%22M23%2013v-2%22/%3E%3Cpath%20d%3D%22M11%209l-3%204h4l-2%204%22/%3E%3C/svg%3E"); }
.bp-icon--package_extra { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M21%2016V8a2%202%200%200%200-1-1.73l-7-4a2%202%200%200%200-2%200l-7%204A2%202%200%200%200%203%208v8a2%202%200%200%200%201%201.73l7%204a2%202%200%200%200%202%200l7-4A2%202%200%200%200%2021%2016z%22/%3E%3Cpolyline%20points%3D%223.27%206.96%2012%2012.01%2020.73%206.96%22/%3E%3Cline%20x1%3D%2212%22%20y1%3D%2222.08%22%20x2%3D%2212%22%20y2%3D%2212%22/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M21%2016V8a2%202%200%200%200-1-1.73l-7-4a2%202%200%200%200-2%200l-7%204A2%202%200%200%200%203%208v8a2%202%200%200%200%201%201.73l7%204a2%202%200%200%200%202%200l7-4A2%202%200%200%200%2021%2016z%22/%3E%3Cpolyline%20points%3D%223.27%206.96%2012%2012.01%2020.73%206.96%22/%3E%3Cline%20x1%3D%2212%22%20y1%3D%2222.08%22%20x2%3D%2212%22%20y2%3D%2212%22/%3E%3C/svg%3E"); }
.bp-icon--ruler { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M21.3%208.7l-6-6a2%202%200%200%200-2.8%200L3%2012.2a2%202%200%200%200%200%202.8l6%206a2%202%200%200%200%202.8%200L21.3%2011.5a2%202%200%200%200%200-2.8z%22/%3E%3Cpath%20d%3D%22M7.5%2010.5l2-2m-1%205l2-2m-1%205l2-2m-1%205l2-2%22/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M21.3%208.7l-6-6a2%202%200%200%200-2.8%200L3%2012.2a2%202%200%200%200%200%202.8l6%206a2%202%200%200%200%202.8%200L21.3%2011.5a2%202%200%200%200%200-2.8z%22/%3E%3Cpath%20d%3D%22M7.5%2010.5l2-2m-1%205l2-2m-1%205l2-2m-1%205l2-2%22/%3E%3C/svg%3E"); }
.bp-icon--box { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%202l9%205v10l-9%205-9-5V7l9-5z%22/%3E%3Cpath%20d%3D%22M12%2022V12%22/%3E%3Cpath%20d%3D%22M21%207l-9%205-9-5%22/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%202l9%205v10l-9%205-9-5V7l9-5z%22/%3E%3Cpath%20d%3D%22M12%2022V12%22/%3E%3Cpath%20d%3D%22M21%207l-9%.bp-icon--shield { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%2022s8-4%208-10V5l-8-3-8%203v7c0%206%208%2010%208%2010z%22/%3E%3Cpolyline%20points%3D%229%2012%2011%2014%2015%2010%22/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M12%2022s8-4%208-10V5l-8-3-8%203v7c0%206%208%2010%208%2010z%22/%3E%3Cpolyline%20points%3D%229%2012%2011%2014%2015%2010%22/%3E%3C/svg%3E"); }
.bp-icon--wrench { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M14.7%206.3a1%201%200%200%200%200%201.4l1.6%201.6a1%201%200%200%200%201.4%200l3.77-3.77a6%206%200%200%201-7.94%207.94l-6.91%206.91a2.12%202.12%200%200%201-3-3l6.91-6.91a6%206%200%200%201%207.94-7.94l-3.76%203.76z%22/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M14.7%206.3a1%201%200%200%200%200%201.4l1.6%201.6a1%201%200%200%200%201.4%200l3.77-3.77a6%206%200%200%201-7.94%207.94l-6.91%206.91a2.12%202.12%200%200%201-3-3l6.91-6.91a6%206%200%200%201%207.94-7.94l-3.76%203.76z%22/%3E%3C/svg%3E"); }
.bp-icon--file_check { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M14%202H6a2%202%200%200%200-2%202v16a2%202%200%200%200%202%202h12a2%202%200%200%200%202-2V8z%22/%3E%3Cpolyline%20points%3D%2214%202%2014%208%2020%208%22/%3E%3Cpolyline%20points%3D%229%2015%2011%2017%2015%2013%22/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M14%202H6a2%202%200%200%200-2%202v16a2%202%200%200%200%202%202h12a2%202%200%200%200%202-2V8z%22/%3E%3Cpolyline%20points%3D%2214%202%2014%208%2020%208%22/%3E%3Cpolyline%20points%3D%229%2015%2011%2017%2015%2013%22/%3E%3C/svg%3E"); }
.bp-icon--list { -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cline%20x1%3D%228%22%20y1%3D%226%22%20x2%3D%2221%22%20y2%3D%226%22/%3E%3Cline%20x1%3D%228%22%20y1%3D%2212%22%20x2%3D%2221%22%20y2%3D%2212%22/%3E%3Cline%20x1%3D%228%22%20y1%3D%2218%22%20x2%3D%2221%22%20y2%3D%2218%22/%3E%3Cline%20x1%3D%223%22%20y1%3D%226%22%20x2%3D%223.01%22%20y2%3D%226%22/%3E%3Cline%20x1%3D%223%22%20y1%3D%2212%22%20x2%3D%223.01%22%20y2%3D%2212%22/%3E%3Cline%20x1%3D%223%22%20y1%3D%2218%22%20x2%3D%223.01%22%20y2%3D%2218%22/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23000000%22%20stroke-width%3D%221.8%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cline%20x1%3D%228%22%20y1%3D%226%22%20x2%3D%2221%22%20y2%3D%226%22/%3E%3Cline%20x1%3D%228%22%20y1%3D%2212%22%20x2%3D%2221%22%20y2%3D%2212%22/%3E%3Cline%20x1%3D%228%22%20y1%3D%2218%22%20x2%3D%2221%22%20y2%3D%2218%22/%3E%3Cline%20x1%3D%223%22%20y1%3D%226%22%20x2%3D%223.01%22%20y2%3D%226%22/%3E%3Cline%20x1%3D%223%22%20y1%3D%2212%22%20x2%3D%223.01%22%20y2%3D%2212%22/%3E%3Cline%20x1%3D%223%22%20y1%3D%2218%22%20x2%3D%223.01%22%20y2%3D%2218%22/%3E%3C/svg%3E"); }

/* ===========================================
   CATEGORIAS RÁPIDAS (CARDS REDONDOS / BUBBLES)
   =========================================== */
.bp-round-cats-section {
    padding: 1.5rem 0 2rem;
}

.bp-round-cats-wrapper {
    width: 100%;
    overflow: hidden;
}

.bp-round-cats-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.75rem 0.25rem 1.25rem;
    justify-content: center;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.bp-round-cats-scroll::-webkit-scrollbar {
    height: 4px;
}

.bp-round-cats-scroll::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.bp-round-cat-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    scroll-snap-align: start;
    width: 135px;
    transition: transform 0.25s ease;
}

.bp-round-cat-bubble:hover {
    transform: translateY(-5px);
}

.bp-round-cat-bubble__img-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.bp-round-cat-bubble:hover .bp-round-cat-bubble__img-wrap {
    border-color: var(--bp-primaria, #cc0000);
    box-shadow: 0 6px 18px rgba(204, 0, 0, 0.22);
}

.bp-round-cat-bubble__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #f8fafc;
}

.bp-round-cat-bubble__title {
    margin-top: 0.75rem;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--bp-preto, #111827);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.25;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
}

.bp-round-cat-bubble:hover .bp-round-cat-bubble__title {
    color: var(--bp-primaria, #cc0000);
}

/* ===========================================
   HEADER DE SEÇÃO COM CTA (HOME)
   =========================================== */
.bp-home-head--with-action {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.bp-home-head__main {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bp-home-head__content {
    display: flex;
    flex-direction: column;
}

.bp-home-head__sub {
    font-size: 0.88rem;
    color: #64748b;
    margin-top: 2px;
    font-weight: 400;
}

.bp-home-head__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bp-primaria, #cc0000);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.bp-home-head__cta:hover {
    color: var(--bp-destaque, #c48b48);
    transform: translateX(3px);
}

.bp-home-head__cta-arrow {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* ===========================================
   SELOS & BADGES CUSTOMIZADOS (WATERMARKS / TAGS)
   =========================================== */
.bp-custom-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    top: auto;
    left: auto;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    pointer-events: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.bp-custom-badge__icon {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.bp-custom-badge__icon svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.bp-custom-badge--dark {
    background: #111827;
    color: #ffffff;
}

.bp-custom-badge--red {
    background: var(--bp-primaria, #cc0000);
    color: #ffffff;
}

.bp-custom-badge--green {
    background: #008a00;
    color: #ffffff;
}

.bp-custom-badge--gold {
    background: #d97706;
    color: #ffffff;
}

.bp-custom-badge--blue {
    background: #1d4ed8;
    color: #ffffff;
}

/* Selo estilo Imagem / Watermark */
.bp-custom-badge--image {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    max-width: 85px;
    max-height: 55px;
}

.bp-custom-badge--image .bp-custom-badge__img {
    max-width: 85px;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

/* Selo na Página Individual do Produto */
.bp-single-badge-wrap {
    margin-bottom: 8px;
}

.bp-custom-badge--single {
    position: static;
    bottom: auto;
    right: auto;
    display: inline-flex;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
}

.bp-custom-badge--single.bp-custom-badge--image {
    max-width: 120px;
    max-height: 70px;
}

.bp-custom-badge--single.bp-custom-badge--image .bp-custom-badge__img {
    max-width: 120px;
    max-height: 70px;
}

.bp-custom-badge--single .bp-custom-badge__icon svg {
    width: 14px;
    height: 14px;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .bp-round-cats-scroll {
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 1rem;
    }
    .bp-round-cat-bubble {
        width: 105px;
    }
    .bp-round-cat-bubble__img-wrap {
        width: 95px;
        height: 95px;
        border-width: 2.5px;
        padding: 4px;
    }
    .bp-round-cat-bubble__title {
        font-size: 0.8rem;
    }
    .bp-home-head--with-action {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ===========================================
   BARRA DE VANTAGENS (BENEFIT BAR)
   =========================================== */
.bp-benefit-bar-section {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    padding: 18px 0;
    margin-bottom: 2rem;
}

.bp-benefit-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.bp-benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bp-benefit-item:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.bp-benefit-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.bp-benefit-item:hover .bp-benefit-item__icon {
    background: var(--bp-primaria, #cc0000);
    border-color: var(--bp-primaria, #cc0000);
    color: #ffffff;
}

.bp-benefit-item__icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.bp-benefit-item__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.bp-benefit-item__title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.bp-benefit-item__sub {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.2;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .bp-benefit-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .bp-benefit-bar {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    .bp-benefit-item {
        min-width: 260px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

/* ===========================================
   BANNERS DE CAMPANHAS INTERMEDIÁRIOS
   =========================================== */
.bp-campaign-banners-section {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}

.bp-campaign-banners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bp-campaign-banner-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
    padding: 30px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bp-campaign-banner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.bp-campaign-banner-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.bp-campaign-banner-card__tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--bp-primaria, #cc0000);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 4px;
}

.bp-campaign-banner-card__title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bp-campaign-banner-card__sub {
    font-size: 0.92rem;
    color: #e2e8f0;
    line-height: 1.4;
    margin: 0;
    max-width: 85%;
}

.bp-campaign-banner-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--bp-primaria, #cc0000);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.bp-campaign-banner-card:hover .bp-campaign-banner-card__cta {
    color: #ffffff;
    border-color: #ffffff;
}

@media (max-width: 768px) {
    .bp-campaign-banners-grid {
        grid-template-columns: 1fr;
    }
    .bp-campaign-banner-card {
        min-height: 220px;
        padding: 20px;
    }
    .bp-campaign-banner-card__title {
        font-size: 1.3rem;
    }
}

/* ===========================================
   FAIXA DE MARCAS PARCEIRAS (BRAND STRIP)
   =========================================== */
.bp-brands-section {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.bp-brands-scroll-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 6px 0;
}

.bp-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.bp-brand-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bp-brand-card:hover {
    border-color: var(--bp-primaria, #cc0000);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.bp-brand-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
}

.bp-brand-card__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bp-brand-card__name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    transition: color 0.2s ease;
}

.bp-brand-card:hover .bp-brand-card__name {
    color: var(--bp-primaria, #cc0000);
}

@media (max-width: 640px) {
    .bp-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .bp-brand-card {
        padding: 14px 10px 12px;
    }
    .bp-brand-card__logo {
        height: 48px;
    }
}


