/* =========================================
   1. ESTRUTURA E CORES GERAIS
   ========================================= */
:root {
    --cor_primaria: #777777;
    --cor_secundaria: #4d3425;
    --cor_botao: #2E4838;
    --cor_botao_hover: #2E4838;
    --cor_texto_botao: #ffffff;
    --cor_texto_botao_hover: #ffd600;
    --pre_cabecalho: #000;
    --cor_texto_pre_cabecalho: #EBE9E4;
    --cor_cabecalho: #071a0a;
    --cor_icones: #ffffff;
    --cor_icones_hover: #ffffff;
    --cor_texto_icones: #ffffff;
    --cor_menu: #EBE9E4;
    --cor_texto_menu: #000000;
    --cor_newsletter: #222222;
    --cor_texto_newsletter: #ffffff;
    --cor_footer: #000000;
    --cor_texto_footer: #b6b6b6;
    --texto_global: #7a3409;
    --texto_background: #ffffff;
    --cor_tag_frete_gratis: #ffffff;
}

body .fundo-principal.bandeira-promocao {
    background: #000000 !important;
}

/* =========================================
   2. BOTÕES FANTASMAS (Principal + Flutuante + Carrinho)
   ========================================= */
/* BLINDAGEM: Remove visual e bloqueia clique (mouse e toque) */
.produto .principal .botao.principal.grande,
.produto .principal .botao.principal.grande:hover,
#flutuante-produto .produto-flutuante .acoes-produto .botao-comprar.principal.grande,
#flutuante-produto .produto-flutuante .acoes-produto .botao-comprar.principal.grande:hover,
.pagina-carrinho .acao-editar .botao.principal.grande,
.pagina-carrinho .acao-editar .botao.principal.grande:hover { 
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    color: transparent !important;
    text-shadow: none !important;
    pointer-events: none !important; /* Impede clique no vazio */
    cursor: default !important;
}

/* Esconde ícones (carrinho) dentro desses botões */
.produto .principal .botao.principal.grande i,
#flutuante-produto .produto-flutuante .acoes-produto .botao-comprar.principal.grande i,
.pagina-carrinho .acao-editar .botao.principal.grande i {
    display: none !important;
}

/* =========================================
   3. PREÇO E PIX
   ========================================= */
body .price-pix.v2 {
  color: #333333;
  font-weight: bold;
}
body .pixIm b {
  color: #9f8916 !important; /* Dourado */
  font-size: 24px !important;
}
/* Remove a linha 'Economize' */
.conteinerPix {
    display: none !important;
}

/* =========================================
   4. LOGOTIPO DO RODAPÉ (Correção Cirúrgica)
   ========================================= */
/* Afeta APENAS a imagem específica do logo no rodapé */
img[src*="manh--perfeita---png-wkgm719q0e"] {
    background-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
}

/* =========================================
   5. WHATSAPP (Versão Leve: Loja ON, Tema OFF)
   ========================================= */
   
/* PASSO A: Esconde TODOS os botões do Tema */
.whats-button, .whatsapp-float, .icon-whatsapp, #whatsapp-button, .wts-float {
    display: none !important;
}

/* PASSO B: Estiliza o Botão da Loja (.li-whatsapp) */
.li-whatsapp {
    display: block !important;
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 99999 !important;
}

/* O Círculo Verde */
.li-whatsapp a {
    background-color: #25D366 !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3) !important;
}

/* O Ícone dentro do círculo */
.li-whatsapp i {
    color: #ffffff !important;
    font-size: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Botão de Compra via Whats (Página de Produto) */
.btn-pay-wp-prod {
    background-color: var(--cor_botao) !important;
    border-color: var(--cor_botao) !important;
    color: var(--cor_texto_botao) !important;
    box-shadow: none !important;
}
.btn-pay-wp-prod:hover {
    background-color: var(--cor_botao_hover) !important;
    color: var(--cor_texto_botao_hover) !important;
    opacity: 0.9;
}
.btn-pay-wp-prod i {
    color: inherit !important;
}

/* =========================================
   6. RODAPÉ MOBILE (Fundo Preto Luxo)
   ========================================= */
@media only screen and (max-width: 767px) {
    #rodape, 
    .rodape, 
    #rodape .institucional, 
    #rodape .pagamento-selos,
    .conteiner-rodape {
        background-color: var(--cor_footer) !important;
        color: var(--cor_texto_footer) !important;
        border-top: none !important;
    }
    #rodape h4, 
    #rodape .titulo, 
    .institucional .titulo {
        color: var(--cor_texto_footer) !important;
        text-shadow: none !important;
    }
    #rodape a, 
    #rodape p, 
    #rodape span {
        color: var(--cor_texto_footer) !important;
    }
}

/* =========================================
   7. MENUS E ROLAGEM
   ========================================= */
#cabecalho .all-menu.com-filho ul.nivel-dois {
    overflow-x: hidden;
}
body .menu.superior .all-menu ul.nivel-dois ul.nivel-dois {
    display: contents !important;
    visibility: visible !important;
}
.menu.superior .all-menu ul.nivel-dois .nivel-dois a:hover {
    color: var(--cor_primaria);
    font-weight: bold;
    text-decoration: none !important;
}
#cabecalho .all-menu.com-filho ul.nivel-dois::-webkit-scrollbar {
    background: #ffffff;
    width: 6px;
}
#cabecalho .all-menu.com-filho ul.nivel-dois::-webkit-scrollbar-thumb {
    background: var(--cor_primaria);
    border-radius: 10px;
    border: 3px solid var(--cor_primaria);
}