h1 {
    font-size: 14px;
    font-weight: bolder;
    color: #04a106;
}

a {
    color: #04a106;
    font-weight: bolder;
    cursor: pointer;
}

a:hover {
    color: #ad8b00;
    text-decoration: underline;
}

.description-prod .abas-custom .tab-content .tab-pane .tabs .tab-link {
    border: 1px solid #000000;
    background-color: #eebe03;
    cursor: pointer;
}

.description-prod .abas-custom .tab-content .tab-pane .tabs .tab-link:houver {
    color: #ad8b00;
}

.description-prod .abas-custom .tab-content .tab-pane .tabs .tab-link.current:houver {
    color: #ad8b00;
}

/* Estilização geral da tabela */
table {
    width: 100%;
    border-collapse: collapse;
    color: #000000; /* texto preto */
    table-layout: fixed; /* Garante que a largura seja respeitada */
}

/* Cabeçalho da tabela */
table th {
    background-color: #e0e0e0; /* tom de cinza escuro */
    padding: 10px;
    text-align: left;
    border-bottom: 2px solid #444;
    color: #000000; /* texto preto */
}

/* Limita o tamanho da primeira coluna */
table th:first-child,
table td:first-child {
    max-width: 200px;
    width: 200px;
    word-wrap: break-word; /* quebra o texto se necessário */
    font-weight: bold;
}

/* Limita o tamanho da segunda coluna */
table th:nth-child(2),
table td:nth-child(2) {
    min-width: 50px;
    max-width: 200px;
    width: auto;
    word-wrap: break-word; /* quebra o texto se necessário */
}
/* Células padrão */
table td {
    padding: 10px;
    border-bottom: 1px solid #444;
}

/* Primeira coluna em negrito */
table td:first-child {
    font-weight: bold;
}

/* Fundo alternado das linhas */
table tr:nth-child(even) {
    background-color: #f9f9f9; /* branco suave */
}

table tr:nth-child(odd) {
    background-color: #F5F5F5; /* cinza claro */
}

ul {
    list-style-type: disc; /* bullet padrão */
    padding-left: 20px; /* espaço da margem à esquerda */
}

ul li {
    margin-bottom: 2px; /* espaço entre os itens */
}


