/* assets/css/insalubridade-periculosidade.css */
/* CSS ISOLADO - Apenas para Calculadora de Adicional de Insalubridade */

/* ===================================
   VARIÁVEIS CSS - ÁREA TRABALHISTA/JURÍDICA
   ================================== */
:root {
    --primary: #2c3e50;          /* Azul marinho sério */
    --secondary: #34495e;        /* Cinza profissional */
    --accent: #e67e22;           /* Laranja alerta */
    --light: #ecf0f1;            /* Fundo neutro */
    --gradient: linear-gradient(135deg, #2c3e50, #34495e);
}

/* ===================================
   SOBRESCREVER CSS BASE - TÍTULO
   ================================== */
/* Regra específica para sobrescrever o CSS base que usa !important */
/* Estratégia 1: Maior especificidade */
.main-container .content section.insalubridade-calculator-section .insalubridade-header h1 {
    color: var(--primary) !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 4px rgba(44, 62, 80, 0.2) !important;
}

/* Estratégia 2: Sobrescrever a variável CSS no contexto específico */
.insalubridade-calculator-section {
    --primary-local: var(--primary);
}

/* ===================================
   SEÇÃO DA CALCULADORA INSALUBRIDADE
   ================================== */
.insalubridade-calculator-section {
    margin-bottom: 3rem;
}

.insalubridade-header {
    text-align: center;
    margin-bottom: 2rem;
}

.insalubridade-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.insalubridade-header p {
    font-size: 1.2rem;
    color: var(--secondary);
}

.insalubridade-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.1);
    border: 1px solid var(--light);
}

.insalubridade-inputs h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ===================================
   DADOS BÁSICOS INSALUBRIDADE
   ================================== */
.insalubridade-dados-basicos {
    background: var(--light);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.insalubridade-input-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.insalubridade-input-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.insalubridade-input-group label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.insalubridade-input-group input,
.insalubridade-input-group select {
    padding: 0.8rem;
    border: 2px solid var(--accent);
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.insalubridade-input-group input:focus,
.insalubridade-input-group select:focus {
    outline: none;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.2);
}

.insalubridade-money-input {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--accent);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.insalubridade-money-input:focus-within {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.2);
}

.insalubridade-money-input span {
    background: var(--accent);
    color: white;
    padding: 0.8rem 1rem;
    font-weight: bold;
    font-size: 1rem;
}

.insalubridade-money-input input {
    border: none;
    padding: 0.8rem;
    flex: 1;
    font-size: 1rem;
    background: transparent;
}

.insalubridade-money-input input:focus {
    outline: none;
    transform: none;
    box-shadow: none;
}

/* ===================================
   BOTÃO CALCULAR INSALUBRIDADE
   ================================== */
.insalubridade-calculate-section {
    text-align: center;
    margin: 2rem 0;
}

.insalubridade-calculate-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.insalubridade-calculate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.insalubridade-calculate-btn:active {
    transform: translateY(-1px);
}

/* ===================================
   RESULTADO DA INSALUBRIDADE
   ================================== */
.insalubridade-resultado {
    background: var(--light);
    border: 2px solid var(--accent);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    animation: slideInUp 0.5s ease;
}

.insalubridade-resultado h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.insalubridade-resultado-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Resultado Principal */
.insalubridade-resultado-principal {
    background: var(--accent);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.insalubridade-resultado-principal h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.insalubridade-valor-principal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.insalubridade-percent {
    font-size: 2.8rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.insalubridade-unit {
    font-size: 1.2rem;
    opacity: 0.8;
}

.insalubridade-valor-money {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.insalubridade-currency {
    font-size: 1.3rem;
    opacity: 0.8;
}

.insalubridade-value {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.insalubridade-tempo {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Detalhamento */
.insalubridade-detalhamento {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--light);
}

.insalubridade-detalhamento h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
}

.insalubridade-item-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.insalubridade-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: var(--light);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.insalubridade-item:hover {
    transform: translateX(5px);
    background: rgba(44, 62, 80, 0.05);
}

.insalubridade-item.destaque {
    background: var(--accent);
    color: white;
    border-left-color: var(--primary);
    font-weight: bold;
}

.insalubridade-item.destaque:hover {
    background: var(--primary);
}

.insalubridade-item-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.insalubridade-item.destaque .insalubridade-item-label {
    color: white;
}

.insalubridade-item-value {
    font-weight: bold;
    color: var(--accent);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.insalubridade-item.destaque .insalubridade-item-value {
    color: white;
}

/* Informações Especiais */
.insalubridade-informacoes {
    background: #e8f5e8;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #4caf50;
}

.insalubridade-informacoes h4 {
    color: #2e7d32;
    margin-bottom: 1rem;
    border-bottom: 2px solid #4caf50;
    padding-bottom: 0.5rem;
}

.insalubridade-info-content p {
    margin: 0.5rem 0;
    color: #2e7d32;
    font-size: 0.95rem;
}

.insalubridade-info-content strong {
    color: #1b5e20;
}

/* Aviso Legal */
.insalubridade-aviso-legal {
    background: #fff8e1;
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.insalubridade-aviso-legal p {
    margin: 0;
    color: var(--secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===================================
   EXPLICAÇÃO DO CÁLCULO INSALUBRIDADE
   ================================== */
.insalubridade-explanation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light);
    border: 2px solid var(--accent);
    border-radius: 12px;
    animation: slideInUp 0.5s ease;
}

.insalubridade-explanation h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.insalubridade-step {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent);
}

.insalubridade-step h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.insalubridade-step p {
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
    color: var(--secondary);
}

/* ===================================
   EXPLICAÇÃO DETALHADA COM BASE LEGAL CLT - INSALUBRIDADE
   ================================== */
.insalubridade-detailed-explanation {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light) 0%, var(--light) 100%);
    border: 2px solid var(--accent);
    border-radius: 15px;
    animation: slideInUp 0.5s ease;
    box-shadow: 0 5px 20px rgba(44, 62, 80, 0.1);
}

.insalubridade-detailed-explanation h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    border-bottom: 3px solid var(--accent);
    padding-bottom: 0.8rem;
}

.insalubridade-legal-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insalubridade-legal-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(44, 62, 80, 0.08);
    border: 1px solid var(--light);
    transition: all 0.3s ease;
}

.insalubridade-legal-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.15);
    border-color: var(--accent);
}

.insalubridade-legal-section h4 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid var(--light);
    padding-bottom: 0.8rem;
    padding-top: 0.3rem;
}

.insalubridade-legal-section + .insalubridade-legal-section {
    margin-top: 2.5rem;
}

.insalubridade-legal-section:first-child {
    margin-top: 0;
}

.insalubridade-legal-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.insalubridade-legal-item:hover {
    background: rgba(44, 62, 80, 0.05);
    transform: translateY(-2px);
}

.insalubridade-legal-artigo {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 3px 10px rgba(44, 62, 80, 0.3);
    align-self: flex-start;
    min-width: 200px;
}

.insalubridade-legal-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.insalubridade-legal-content p {
    margin: 0;
    color: var(--secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.insalubridade-legal-content strong {
    color: var(--primary);
    font-weight: 600;
}

/* Detalhes dos Cálculos - Insalubridade */
.insalubridade-calculo-detalhe {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 10px;
    padding: 1.2rem;
    margin-top: 0.5rem;
    width: 100%;
}

.insalubridade-calculo-detalhe p {
    font-family: 'Courier New', monospace;
    color: #2e7d32;
    font-size: 0.9rem;
    margin: 0.4rem 0;
    line-height: 1.5;
}

.insalubridade-calculo-detalhe p:first-child {
    font-weight: bold;
    color: #1b5e20;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-family: inherit;
}

.insalubridade-calculo-detalhe p strong {
    color: #1b5e20;
    font-weight: bold;
}

.insalubridade-calculo-detalhe small {
    color: #558b2f;
    font-style: italic;
    font-size: 0.8rem;
}

/* Footer da Explicação Legal - Insalubridade */
.insalubridade-legal-footer {
    background: #fff8e1;
    border: 2px solid var(--accent);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.insalubridade-legal-footer p {
    margin: 0.5rem 0;
    color: var(--secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.insalubridade-legal-footer p:first-child {
    font-weight: 600;
    color: var(--primary);
}

.insalubridade-legal-footer strong {
    color: var(--primary);
}

/* ===================================
   EXEMPLOS E AJUDA INSALUBRIDADE
   ================================== */
.insalubridade-examples {
    text-align: center;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.insalubridade-examples.hidden {
    display: none;
}

.insalubridade-examples p {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.insalubridade-example-btn {
    background: var(--light);
    border: 2px solid var(--accent);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    margin: 0.3rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.insalubridade-example-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.insalubridade-help {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fff8e1;
    border-radius: 8px;
    border: 1px solid var(--accent);
    transition: all 0.3s ease;
}

.insalubridade-help.hidden {
    display: none;
}

/* ===================================
   CONTEÚDO EDUCACIONAL INSALUBRIDADE
   ================================== */
.insalubridade-educational-content {
    margin-top: 3rem;
}

.insalubridade-content-block {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 3px 15px rgba(44, 62, 80, 0.08);
    border: 1px solid var(--light);
}

.insalubridade-content-block h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 3px solid var(--accent);
    padding-bottom: 0.5rem;
}

.insalubridade-content-block p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary);
}

.insalubridade-content-block strong {
    color: var(--primary);
}

/* Formula Display Insalubridade */
.insalubridade-formula-display {
    background: var(--light);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.insalubridade-formula-display h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.insalubridade-formula-display .formula p {
    margin: 0.5rem 0;
    font-family: 'Courier New', monospace;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Grids Exemplos e Dicas Insalubridade */
.insalubridade-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.insalubridade-example-item {
    background: var(--light);
    border: 1px solid rgba(44, 62, 80, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.insalubridade-example-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.1);
    border-color: var(--accent);
}

.insalubridade-example-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.insalubridade-example-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.insalubridade-example-item p {
    color: var(--secondary);
    font-size: 0.95rem;
    margin: 0;
}

.insalubridade-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.insalubridade-tip-item {
    background: var(--light);
    border: 1px solid rgba(44, 62, 80, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.insalubridade-tip-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
}

.insalubridade-tip-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.insalubridade-tip-item p {
    color: var(--secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Exemplo de Solução Insalubridade */
.insalubridade-example-solution {
    background: var(--light);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.insalubridade-example-solution h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.insalubridade-solution-step {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.insalubridade-solution-step h5 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.insalubridade-solution-step p {
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
    color: var(--secondary);
}

.insalubridade-solution-final {
    background: var(--accent);
    color: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

.insalubridade-solution-final h5 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.insalubridade-solution-final p {
    margin: 0;
    font-family: inherit;
}

/* Prazos e Direitos Insalubridade */
.insalubridade-prazo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.insalubridade-prazo-item {
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.insalubridade-prazo-item.urgente {
    background: #fff5f5;
    border: 2px solid #dc3545;
}

.insalubridade-prazo-item.importante {
    background: #fff8e1;
    border: 2px solid var(--accent);
}

.insalubridade-prazo-item.atencao {
    background: var(--light);
    border: 2px solid var(--primary);
}

.insalubridade-prazo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.insalubridade-prazo-item h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.insalubridade-prazo-item.urgente h4 {
    color: #dc3545;
}

.insalubridade-prazo-item.importante h4 {
    color: var(--accent);
}

.insalubridade-prazo-item.atencao h4 {
    color: var(--primary);
}

.insalubridade-prazo-destaque {
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.insalubridade-prazo-destaque h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.insalubridade-prazo-destaque p {
    color: var(--secondary);
    margin: 0;
    font-weight: 600;
}

/* ===================================
   FAQ TRABALHISTA
   ================================== */
.faq-container {
    margin-top: 1.5rem;
}

.faq-item {
    background: var(--light);
    border: 1px solid rgba(44, 62, 80, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
    box-shadow: 0 3px 10px rgba(44, 62, 80, 0.1);
}

.faq-question {
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    list-style: none;
}

.faq-question:hover {
    background: var(--secondary);
}

.faq-question::marker {
    display: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-answer {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.faq-answer p {
    margin: 0.8rem 0;
    color: var(--secondary);
    line-height: 1.6;
}

.faq-answer p:first-child {
    margin-top: 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--primary);
}

/* ===================================
   REFERÊNCIAS E CREDIBILIDADE
   ================================== */
.references-container {
    margin-top: 1.5rem;
}

.references-list {
    background: var(--light);
    border: 1px solid rgba(44, 62, 80, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0;
    list-style: none;
}

.references-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    color: var(--secondary);
    line-height: 1.6;
}

.references-list li:last-child {
    border-bottom: none;
}

.references-list li strong {
    color: var(--primary);
}

.accuracy-note {
    background: #fff8e1;
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.accuracy-note h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.accuracy-note p {
    color: var(--secondary);
    margin: 0;
    line-height: 1.6;
}

.credibilidade-container {
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.credibilidade-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.credibilidade-icon {
    font-size: 2.5rem;
    color: var(--accent);
}

.credibilidade-title {
    color: var(--primary);
    margin: 0;
    font-size: 1.5rem;
}

.credibilidade-content {
    color: var(--secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.credibilidade-logo {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.credibilidade-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.credibilidade-badge {
    background: var(--primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(44, 62, 80, 0.2);
}

/* ===================================
   ANIMAÇÕES INSALUBRIDADE
   ================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   RESPONSIVIDADE INSALUBRIDADE
   ================================== */
@media (max-width: 1024px) {
    .insalubridade-input-row {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .insalubridade-header h1 {
        font-size: 2rem;
    }
    
    .insalubridade-container {
        padding: 1rem;
    }
    
    .insalubridade-dados-basicos {
        padding: 1rem;
    }
    
    .insalubridade-input-group {
        min-width: auto;
    }
    
    .insalubridade-calculate-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .insalubridade-percent {
        font-size: 2.2rem;
    }
    
    .insalubridade-value {
        font-size: 1.5rem;
    }
    
    .insalubridade-examples-grid,
    .insalubridade-tips-grid,
    .insalubridade-prazo-grid {
        grid-template-columns: 1fr;
    }
    
    .insalubridade-detailed-explanation {
        padding: 1.5rem;
    }
    
    .insalubridade-detailed-explanation h3 {
        font-size: 1.3rem;
    }
    
    .insalubridade-legal-container {
        gap: 1.5rem;
    }
    
    .insalubridade-legal-section {
        padding: 1rem;
    }
    
    .insalubridade-legal-item {
        gap: 0.8rem;
        padding: 0.8rem;
    }
    
    .insalubridade-legal-artigo {
        min-width: 180px;
        font-size: 0.85rem;
        padding: 0.7rem 0.9rem;
    }
    
    .insalubridade-calculo-detalhe {
        padding: 1rem;
    }
    
    .insalubridade-calculo-detalhe p {
        font-size: 0.85rem;
    }
    
    .insalubridade-legal-section + .insalubridade-legal-section {
        margin-top: 2rem;
    }
    
    .credibilidade-badges {
        gap: 0.8rem;
    }
    
    .credibilidade-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .insalubridade-header h1 {
        font-size: 1.8rem;
    }
    
    .insalubridade-container {
        padding: 0.8rem;
    }
    
    .insalubridade-dados-basicos {
        padding: 0.8rem;
    }
    
    .insalubridade-calculate-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .insalubridade-percent {
        font-size: 2rem;
    }
    
    .insalubridade-value {
        font-size: 1.3rem;
    }
    
    .insalubridade-currency {
        font-size: 1.1rem;
    }
    
    .insalubridade-item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .insalubridade-example-icon {
        font-size: 2rem;
    }
    
    .insalubridade-detailed-explanation {
        padding: 1rem;
    }
    
    .insalubridade-detailed-explanation h3 {
        font-size: 1.2rem;
    }
    
    .insalubridade-legal-section {
        padding: 0.8rem;
    }
    
    .insalubridade-legal-section h4 {
        font-size: 1.1rem;
    }
    
    .insalubridade-legal-artigo {
        min-width: 160px;
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
        align-self: center;
    }
    
    .insalubridade-legal-content p {
        font-size: 0.9rem;
    }
    
    .insalubridade-calculo-detalhe p {
        font-size: 0.8rem;
    }
    
    .insalubridade-legal-footer {
        padding: 1rem;
    }
    
    .insalubridade-legal-footer p {
        font-size: 0.85rem;
    }
    
    .insalubridade-legal-section + .insalubridade-legal-section {
        margin-top: 1.5rem;
    }
    
    .credibilidade-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .credibilidade-title {
        font-size: 1.3rem;
    }
    
    .credibilidade-badges {
        flex-direction: column;
        align-items: center;
    }
}