.elementor-2207 .elementor-element.elementor-element-6b4bacb{--display:flex;--min-height:200px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:space-between;--align-items:flex-end;}.elementor-2207 .elementor-element.elementor-element-01f6b3d{--display:flex;--min-height:150px;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:flex-start;--gap:10px 10px;--row-gap:10px;--column-gap:10px;}.elementor-2207 .elementor-element.elementor-element-ca61af2 .jet-breadcrumbs{text-align:left;}.elementor-2207 .elementor-element.elementor-element-ca61af2 .jet-breadcrumbs__item > *{font-family:"Helvetica", Sans-serif;font-size:18px;font-weight:700;line-height:20px;letter-spacing:0.18px;}.elementor-2207 .elementor-element.elementor-element-ca61af2 .jet-breadcrumbs__item-link{color:#A1A1A1;}.elementor-2207 .elementor-element.elementor-element-ca61af2 .jet-breadcrumbs__item-link:hover{color:#FF5224;}.elementor-2207 .elementor-element.elementor-element-ca61af2 .jet-breadcrumbs__item-target{color:#000000;}.elementor-2207 .elementor-element.elementor-element-ca61af2 .jet-breadcrumbs__item-sep{margin-left:10px;margin-right:10px;font-size:20px;color:#585858;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2207 .elementor-element.elementor-element-d426cbc .elementor-heading-title{font-family:"Helvetica", Sans-serif;font-size:67px;font-weight:600;color:#000000;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-2207 .elementor-element.elementor-element-4e6d3dc{--display:flex;}.elementor-2207 .elementor-element.elementor-element-d0890b6{--display:flex;--min-height:100px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(max-width:767px){.elementor-2207 .elementor-element.elementor-element-01f6b3d{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2207 .elementor-element.elementor-element-ca61af2 .jet-breadcrumbs__item > *{font-size:18px;}}@media(min-width:768px){.elementor-2207 .elementor-element.elementor-element-6b4bacb{--content-width:1250px;}.elementor-2207 .elementor-element.elementor-element-01f6b3d{--width:30%;}}/* Start custom CSS for shortcode, class: .elementor-element-4f61a4d *//* ========================================================================
   1. Variáveis de Cor para Personalização Rápida
   ======================================================================== */
:root {
    --mci-cor-principal: #38c172; /* Seu Verde de Destaque */
    --mci-cor-secundaria-hover: #007346; /* Verde um pouco mais escuro para hover */
    --mci-cor-fundo-lateral: #f9f9f9; /* Fundo cinza claro do menu */
    --mci-cor-texto-padrao: #000000;
    --mci-cor-texto-inativo: #555555;
    --mci-cor-borda-card: #CACACA; /* Borda do Card */
    --mci-cor-fundo-ativo: #e6e6e6;
    --mci-cor-fundo-submenu: #ededed;
    --mci-cor-alerta: #dc3232; /* Cor para documentos (PDF) */
}

/* ========================================================================
   2. LAYOUT GERAL E GRID DE PRODUTOS
   ======================================================================== */
.mci-catalogo-wrapper { 
    display: flex; 
    gap: 30px; 
    margin-top: 20px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.mci-grid-produtos { 
    flex-grow: 1; 
    min-height: 400px;
    min-width: 0; 
}
.mci-grid-header {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--mci-cor-principal);
    padding-bottom: 5px;
}
.mci-grid-titulo {
    font-size: 1.5em;
    margin: 0;
    color: var(--mci-cor-texto-padrao);
}

/* CORREÇÃO DE GRID: Uso de !important para garantir que a coluna funcione */
.mci-grid {
    display: grid !important; /* FORÇA O LAYOUT DE GRID */
    gap: 25px; 
}
.mci-colunas-3 { grid-template-columns: repeat(3, 1fr) !important; }
.mci-colunas-4 { grid-template-columns: repeat(4, 1fr) !important; }


/* ========================================================================
   3. CARREGAMENTO (AJAX) E PAGINAÇÃO
   ======================================================================== */
.mci-grid-produtos.mci-loading { 
    opacity: 0.8; 
    pointer-events: none; 
    position: relative; 
}
.mci-grid-produtos.mci-loading::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
}
.mci-grid-produtos.mci-loading::after {
    content: "\f110"; /* Ícone de spinner */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    color: var(--mci-cor-principal);
    z-index: 11;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Paginação */
.mci-paginacao {
    grid-column: 1 / -1; 
    text-align: center;
    margin-top: 30px;
}
.mci-carregar-mais {
    padding: 12px 30px;
    background-color: #009C59; 
    color: #fff;
    border: 1px solid #ccc;
    border-radius: 189px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: bold;
    font-size: 15px;
}
.mci-carregar-mais:hover {
    background-color: var(--mci-cor-secundaria-hover);
    border-color: #bbb;
}
.mci-carregar-mais.mci-loading { 
    cursor: wait; 
    background-color: #f5f5f5;
    color: var(--mci-cor-texto-inativo);
}

.mci-mensagem-vazio {
    grid-column: 1 / -1; 
    padding: 20px;
    background-color: #fefefe;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    color: var(--mci-cor-texto-inativo);
}

/* ========================================================================
   4. MENU LATERAL (FILTROS)
   ======================================================================== */
.mci-sidebar-filtros { 
    flex: 0 0 250px; 
    background-color: var(--mci-cor-fundo-lateral);
    border-radius: 8px;
    padding: 0; 
    margin: 0; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    overflow: hidden; 
}
.mci-sidebar-filtros h3 { display: none; } 

/* Busca */
.mci-busca-wrapper {
    padding: 15px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}
#mci-busca-produto {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Lista Principal de Categorias */
.mci-lista-categorias { 
    list-style: none; 
    padding: 0; 
    margin: 0;
}
.mci-lista-categorias .mci-filter-item {
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
}
.mci-lista-categorias > li:last-child { border-bottom: none; }

/* Wrapper Flex (Link + Chevron) */
.mci-filter-link-wrapper {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 10px 15px; 
    transition: background-color 0.2s;
}

/* Link (Texto e Ícone) - UPPERCASE INTEGRADO */
.mci-filter-link { 
    flex-grow: 1; 
    display: flex; 
    align-items: center;
    text-decoration: none; 
    color: var(--mci-cor-texto-inativo); 
    font-weight: 500;
    padding: 0; 
    
    /* AQUI ESTÁ A MUDANÇA: FORÇA TODO O TEXTO PARA MAIÚSCULAS */
    text-transform: uppercase !important; 
}

.mci-filter-link i.fas {
    font-size: 0.8em;
    color: var(--mci-cor-principal);
    margin-right: 10px;
}

/* Estilo para categorias pai (com subcategorias) - COR E CAIXA CORRIGIDOS */
.mci-lista-categorias li.has-children a.mci-filter-link { 
    color: var(--mci-cor-principal); /* Cor verde principal */
    font-weight: bold;
    text-transform: uppercase !important;
}

/* Estilo de Hover */
.mci-lista-categorias li a:hover { 
    color: var(--mci-cor-principal); 
}

/* Ícone de Expansão (Chevron) */
.mci-chevron {
    transition: transform 0.2s;
    font-size: 0.7em;
    color: var(--mci-cor-texto-inativo);
    padding: 5px;
    cursor: pointer;
}
/* Rotação do Chevron */
.mci-lista-categorias li.has-children.aberto .mci-chevron {
    transform: rotate(180deg);
}


/* --- ESTADO ATIVO (SELECIONADO) --- */

/* Fundo do item ATIVO */
.mci-lista-categorias .mci-filter-item.ativo > .mci-filter-link-wrapper,
.mci-lista-categorias .mci-filter-item.ativo:not(.has-children) > .mci-filter-link-wrapper {
    background-color: var(--mci-cor-fundo-ativo);
}

/* Cor do texto do link ATIVO (Garante o Verde) */
.mci-lista-categorias .mci-filter-item.ativo a.mci-filter-link { 
    color: var(--mci-cor-principal); 
}
.mci-lista-categorias .mci-filter-item.ativo a.mci-filter-link i.fas {
    color: var(--mci-cor-principal);
}


/* --- SUBMENU (ACORDEÃO) --- */

.mci-sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none; 
    background-color: var(--mci-cor-fundo-submenu);
}

.mci-sub-menu .mci-filter-item {
    border-bottom: 1px solid #d0d0d0;
}
.mci-sub-menu li:last-child { border-bottom: none; }

.mci-sub-menu .mci-filter-link-wrapper {
    padding: 10px 15px 10px 40px; /* Aumenta o recuo */
}
.mci-sub-menu .mci-filter-link {
    font-weight: normal;
    font-size: 0.95em;
    color: var(--mci-cor-texto-inativo);
    /* Garante UPPERCASE nos submenus também */
    text-transform: uppercase !important; 
}
/* Subcategoria ATIVA */
.mci-sub-menu .mci-filter-item.ativo .mci-filter-link-wrapper {
    background-color: #e0e0e0;
}
.mci-sub-menu .mci-filter-item.ativo a.mci-filter-link {
    font-weight: bold;
    color: var(--mci-cor-texto-padrao);
}
.mci-sub-menu .mci-filter-item.ativo a.mci-filter-link i.fas {
    color: var(--mci-cor-texto-padrao); 
}

/* ========================================================================
   5. ESTILO DOS CARDS DE PRODUTO
   ======================================================================== */

.mci-produto-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--mci-cor-borda-card); 
    padding: 20px; 
    z-index: 10;
    
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow: hidden;
    box-shadow: none; 
    transition: box-shadow 0.2s, transform 0.2s;
}

.mci-produto-card:hover {
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* Imagem */
.mci-produto-thumbnail {
    height: 180px; 
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    padding: 15px; 
}
.mci-produto-thumbnail img {
    max-width: 100%;
    height: auto;
    object-fit: contain; 
}
.mci-placeholder-thumb {
    font-size: 3em;
    color: #ccc;
}

/* Informações */
.mci-produto-info {
    padding: 15px;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
}

/* Título */
.mci-produto-info .mci-produto-titulo, 
.mci-produto-info .mci-produto-titulo a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    margin: 5px 0;
    max-height: 70px;
    min-height: 70px; 
    
    display: flex;
    align-items: center; 
    justify-content: center;
    text-align: center;
    color: var(--mci-cor-texto-padrao);
    text-decoration: none;
    
    /* Garante que o título do produto seja MAIÚSCULA */
    text-transform: uppercase;
}
.mci-produto-info .mci-produto-titulo a:hover {
    color: var(--mci-cor-principal);
}

/* Botão "Ver Mais" */
.mci-botao-detalhes {
    background-color: #009C59; 
    padding: 10px 50px; 
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    
    margin-top: 40px; 
    margin-bottom: 4px; 
    
    display: inline-block; 
    width: auto; 
    align-self: center; 
    text-transform: uppercase;
    color: #fff !important;
    text-decoration: none;
    transition: background-color 0.2s;
}
.mci-botao-detalhes:hover {
    background-color: var(--mci-cor-secundaria-hover);
}

/* ========================================================================
   6. ESTILO DE DETALHE (Shortcodes)
   ======================================================================== */

.mci-documentos a.elementor-button {
    background-color: var(--mci-cor-alerta) !important;
    border-color: var(--mci-cor-alerta) !important;
}
.mci-documentos a.elementor-button:hover {
    background-color: #a52828 !important;
}

/* ========================================================================
   7. RESPONSIVIDADE (MOBILE E TABLET)
   ======================================================================== */

@media (max-width: 1024px) {
    /* Tablet: 2 Colunas */
    .mci-colunas-3, .mci-colunas-4 { 
        grid-template-columns: repeat(2, 1fr) !important; 
    }
    .mci-sidebar-filtros { 
        flex: 0 0 200px;
    }
}

@media (max-width: 768px) {
    .mci-catalogo-wrapper { 
        flex-direction: column; 
        gap: 20px; 
    }
    /* Menu lateral ocupa a largura total no mobile */
    .mci-sidebar-filtros { 
        flex: none; 
        width: 100%; 
        box-sizing: border-box;
    }
    /* Grid passa para uma coluna */
    .mci-colunas-3, .mci-colunas-4 { 
        grid-template-columns: 1fr !important; 
    }
    .mci-grid {
        gap: 15px;
    }
    .mci-produto-thumbnail {
        height: 150px;
    }
}

/* --- Ajuste do Botão Carregar Mais (Baseado no seu ID e Classe real) --- */

/* Estado Normal */
#mci-load-more.mci-load-more-btn {
    padding: 12px 30px;
    background-color: #009C59; /* Verde Original */
    color: #fff !important;
    border: 1px solid #ccc;
    border-radius: 189px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-weight: bold;
    font-size: 15px;
    outline: none;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
}

/* HOVER: Verde Escuro ao passar o mouse */
#mci-load-more.mci-load-more-btn:hover {
    background-color: #007346 !important; /* Verde escuro */
    border-color: #007346;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* ATIVO: Laranja ao clicar (momento da pressão) */
#mci-load-more.mci-load-more-btn:active {
    background-color: #FF5224 !important; /* Laranja vibrante */
    border-color: #E0461F !important;
    transform: scale(0.95); /* Efeito de 'apertar' o botão */
    transition: 0s; /* Resposta imediata ao clique */
}

/* Estado de Carregamento (via JS prop disabled) */
#mci-load-more.mci-load-more-btn:disabled {
    background-color: #ccc !important;
    cursor: not-allowed;
    opacity: 0.7;
}/* End custom CSS */