/* ==========================================================================
   CÓDIGO CSS COMPLETO E CORRIGIDO PARA TECH FITNESS
   Inclui: Ícones do Menu + Correção da Newsletter da Barra Lateral
   ========================================================================== */

/* --- INÍCIO - ÍCONES NO MENU PRINCIPAL (SELETORES CORRIGIDOS) --- */

/* 1. Prepara APENAS os links do menu do topo para receberem um ícone */
.menu.hidden-phone .nivel-um > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 2. Adiciona o espaço para o ícone ANTES do texto do link, APENAS no menu do topo */
.menu.hidden-phone .nivel-um > li > a::before {
    font-family: "FontAwesome";
    font-size: 16px;
    font-weight: normal;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
}

/* 3. Define qual ícone vai para cada categoria, APENAS no menu do topo */

/* --- Ícone para BIKES (ID: 22783813) --- */
.menu.hidden-phone .categoria-id-22783813 > a::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: currentColor;
    -webkit-mask-image: url('https://api.iconify.design/material-symbols/pedal-bike.svg' );
    mask-image: url('https://api.iconify.design/material-symbols/pedal-bike.svg' );
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

/* --- Ícones para as outras categorias, APENAS no menu do topo --- */
.menu.hidden-phone .categoria-id-21947626 > a::before { content: "\f108"; } /* PAINEIS */
.menu.hidden-phone .categoria-id-22007218 > a::before { content: "\f085"; } /* INVERSORES E PLACAS */
.menu.hidden-phone .categoria-id-22007117 > a::before { content: "\f036"; } /* ADESIVOS */
.menu.hidden-phone .categoria-id-21989438 > a::before { content: "\f07d"; } /* AMORTECEDORES */
.menu.hidden-phone .categoria-id-21989443 > a::before { content: "\f0e7"; } /* FONTES */
.menu.hidden-phone .categoria-id-22007128 > a::before { content: "\f0fe"; } /* OUTROS */

/* --- FIM - ÍCONES NO MENU PRINCIPAL --- */


/* --- INÍCIO - CORREÇÃO APENAS DA NEWSLETTER DA BARRA LATERAL --- */

/* 1. Aplica-se apenas ao menu lateral das páginas de listagem */
.coluna-esquerda .componente.newsletter {
    border: 1px solid #eee;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    margin-top: 20px; /* Adiciona um espaço acima */
}

/* 2. Estiliza o título */
.coluna-esquerda .componente.newsletter .titulo {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

/* 3. Esconde o ícone de envelope */
.coluna-esquerda .componente.newsletter .titulo .icon-envelope-alt {
    display: none;
}

/* 4. Estiliza o subtítulo */
.coluna-esquerda .componente.newsletter .texto-newsletter {
    font-size: 14px;
    margin-bottom: 15px;
}

/* 5. Garante que o formulário ocupe a largura toda */
.coluna-esquerda .componente.newsletter .input-conteiner {
    display: flex;
    width: 100%;
    margin: 0;
}

/* 6. Estiliza o campo de e-mail */
.coluna-esquerda .componente.newsletter input[name="email"] {
    flex-grow: 1;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    padding: 10px;
    font-size: 14px;
    height: auto;
}

/* 7. Estiliza o botão */
.coluna-esquerda .componente.newsletter .botao.botao-input {
    border-radius: 0 4px 4px 0;
    background-color: #ffc107; /* Amarelo */
    border: 1px solid #ffc107;
    font-size: 0; /* Esconde o ícone quebrado */
}
.coluna-esquerda .componente.newsletter .botao.botao-input::before {
    content: "OK"; /* Um texto mais curto para o botão */
    font-size: 14px;
    color: #333;
    font-weight: bold;
    padding: 0 15px;
}

/* --- FIM - CORREÇÃO APENAS DA NEWSLETTER DA BARRA LATERAL --- */


/* --- INÍCIO - ESTILO DAS ABAS DA PÁGINA DE PRODUTO --- */
.abas-produto-techfitness {
    margin-top: 30px;
    width: 100%;
}
.abas-nav-techfitness {
    display: flex;
    border-bottom: 2px solid #eee;
}
.aba-link-techfitness {
    padding: 15px 25px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-weight: 600;
    color: #888;
    position: relative;
    transition: color 0.3s ease;
}
.aba-link-techfitness.active {
    color: #00438a; /* Azul da sua marca */
}
.aba-link-techfitness.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00438a; /* Azul da sua marca */
}
.abas-conteudo-techfitness {
    padding: 25px 10px;
}
.aba-painel-techfitness {
    display: none;
    line-height: 1.6;
    color: #333;
}
.aba-painel-techfitness.active {
    display: block;
}
/* --- FIM - ESTILO DAS ABAS DA PÁGINA DE PRODUTO --- */







/* ESCONDE A NEWSLETTER ORIGINAL DE FORMA PERMANENTE */
#barraNewsletter { display: none !important; }
