/* assets/css/decimo-terceiro.css */
/* CSS ISOLADO - Apenas para Calculadora de 13º Salário */

/* ===================================
   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.decimo-calculator-section .decimo-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 */
.decimo-calculator-section {
    --primary-local: var(--primary);
}

/* ===================================
   SEÇÃO DA CALCULADORA 13º SALÁRIO
   ================================== */
.decimo-calculator-section {
    margin-bottom: 3rem;
}

.decimo-header {
    text-align: center;
    margin-bottom: 2rem;
}

.decimo-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;
}

.decimo-header p {
    font-size: 1.2rem;
    color: var(--secondary);
}

.decimo-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);
}

.decimo-inputs h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ===================================
   DADOS BÁSICOS 13º SALÁRIO
   ================================== */
.decimo-dados-basicos {
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.decimo-input-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.decimo-input-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.decimo-input-group label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.decimo-input-group input,
.decimo-input-group select {
    padding: 0.8rem;
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.decimo-input-group input:focus,
.decimo-input-group select:focus {
    outline: none;
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
}

.decimo-money-input {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.decimo-money-input:focus-within {
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
}

.decimo-money-input span {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1rem;
    font-weight: bold;
    font-size: 1rem;
}

.decimo-money-input input {
    border: none;
    padding: 0.8rem;
    flex: 1;
    font-size: 1rem;
    background: transparent;
}

.decimo-money-input input:focus {
    outline: none;
    transform: none;
    box-shadow: none;
}

/* ===================================
   BOTÃO CALCULAR 13º
   ================================== */
.decimo-calculate-section {
    text-align: center;
    margin: 2rem 0;
}

.decimo-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);
}

.decimo-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%);
}

.decimo-calculate-btn:active {
    transform: translateY(-1px);
}

/* ===================================
   RESULTADO DO 13º SALÁRIO
   ================================== */
.decimo-resultado {
    background: var(--light);
    border: 2px solid var(--accent);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    animation: slideInUp 0.5s ease;
}

.decimo-resultado h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.decimo-resultado-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Resultado Principal */
.decimo-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%;
}

.decimo-resultado-principal h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.decimo-valor-principal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.decimo-months {
    font-size: 2.8rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.decimo-unit {
    font-size: 1.2rem;
    opacity: 0.8;
}

.decimo-valor-money {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.decimo-currency {
    font-size: 1.3rem;
    opacity: 0.8;
}

.decimo-value {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.decimo-tempo {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Detalhamento */
.decimo-detalhamento {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--light);
}

.decimo-detalhamento h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
}

.decimo-item-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.decimo-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;
}

.decimo-item:hover {
    transform: translateX(5px);
    background: rgba(44, 62, 80, 0.05);
}

.decimo-item.destaque {
    background: var(--accent);
    color: white;
    border-left-color: var(--secondary);
    font-weight: bold;
}

.decimo-item.destaque:hover {
    background: var(--secondary);
}

.decimo-item-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.decimo-item.destaque .decimo-item-label {
    color: white;
}

.decimo-item-value {
    font-weight: bold;
    color: var(--accent);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.decimo-item.destaque .decimo-item-value {
    color: white;
}

/* Parcelas do 13º */
.decimo-parcelas {
    background: #f3e5f5;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #9c27b0;
}

.decimo-parcelas h4 {
    color: #7b1fa2;
    margin-bottom: 1rem;
    border-bottom: 2px solid #9c27b0;
    padding-bottom: 0.5rem;
}

.decimo-parcela-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.decimo-parcela-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e1bee7;
    transition: all 0.3s ease;
}

.decimo-parcela-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(156, 39, 176, 0.2);
    border-color: #9c27b0;
}

.decimo-parcela-item.primeira {
    border-color: var(--accent);
    background: linear-gradient(135deg, var(--light) 0%, rgba(236, 240, 241, 0.7) 100%);
}

.decimo-parcela-item.segunda {
    border-color: #ff9800;
    background: linear-gradient(135deg, #fff3e0 0%, #fef7ed 100%);
}

.decimo-parcela-item h5 {
    color: #7b1fa2;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.decimo-parcela-item.primeira h5 {
    color: var(--accent);
}

.decimo-parcela-item.segunda h5 {
    color: #f57c00;
}

.decimo-parcela-prazo {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 600;
}

.decimo-parcela-valor {
    font-size: 1.4rem;
    font-weight: bold;
    color: #7b1fa2;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.decimo-parcela-item.primeira .decimo-parcela-valor {
    color: var(--accent);
}

.decimo-parcela-item.segunda .decimo-parcela-valor {
    color: #f57c00;
}

.decimo-parcela-item small {
    color: #666;
    font-size: 0.8rem;
}

/* Aviso Legal */
.decimo-aviso-legal {
    background: #fff8e1;
    border: 2px solid var(--accent);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.decimo-aviso-legal p {
    margin: 0;
    color: var(--secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===================================
   EXPLICAÇÃO DO CÁLCULO 13º
   ================================== */
.decimo-explanation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light);
    border: 2px solid var(--accent);
    border-radius: 12px;
    animation: slideInUp 0.5s ease;
}

.decimo-explanation h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.decimo-step {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent);
}

.decimo-step h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.decimo-step p {
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
    color: var(--secondary);
}

/* ===================================
   EXPLICAÇÃO DETALHADA COM BASE LEGAL CLT - 13º SALÁRIO
   ================================== */
.decimo-detailed-explanation {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light) 0%, rgba(236, 240, 241, 0.7) 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);
}

.decimo-detailed-explanation h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    border-bottom: 3px solid var(--accent);
    padding-bottom: 0.8rem;
}

.decimo-legal-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.decimo-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;
}

.decimo-legal-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.15);
    border-color: var(--accent);
}

.decimo-legal-section h4 {
    color: var(--accent);
    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;
}

.decimo-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;
}

.decimo-legal-item:hover {
    background: rgba(44, 62, 80, 0.05);
    transform: translateY(-2px);
}

.decimo-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;
}

.decimo-legal-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.decimo-legal-content p {
    margin: 0;
    color: var(--secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.decimo-legal-content strong {
    color: var(--primary);
    font-weight: 600;
}

/* Detalhes dos Cálculos - 13º Salário */
.decimo-calculo-detalhe {
    background: #fff8e1;
    border: 1px solid var(--accent);
    border-radius: 10px;
    padding: 1.2rem;
    margin-top: 0.5rem;
    width: 100%;
}

.decimo-calculo-detalhe p {
    font-family: 'Courier New', monospace;
    color: #f57c00;
    font-size: 0.9rem;
    margin: 0.4rem 0;
    line-height: 1.5;
}

.decimo-calculo-detalhe p:first-child {
    font-weight: bold;
    color: #ef6c00;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-family: inherit;
}

.decimo-calculo-detalhe p strong {
    color: #ef6c00;
    font-weight: bold;
}

/* ===================================
   TABELA DE IR 13º SALÁRIO
   ================================== */
.decimo-ir-table {
    margin: 1.5rem 0;
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 3px 15px rgba(44, 62, 80, 0.1);
}

.decimo-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.decimo-table th {
    background: var(--primary);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--secondary);
}

.decimo-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--light);
    color: var(--secondary);
}

.decimo-table tbody tr:hover {
    background: rgba(44, 62, 80, 0.05);
}

.decimo-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.decimo-table tbody tr:nth-child(even):hover {
    background: rgba(44, 62, 80, 0.05);
}

.decimo-ir-exemplo {
    background: #fff8e1;
    border: 2px solid var(--accent);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.decimo-ir-exemplo h4 {
    color: var(--accent);
    margin-bottom: 1rem;
}

.decimo-ir-exemplo p {
    margin: 0.5rem 0;
    color: var(--secondary);
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}

/* ===================================
   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);
}

/* ===================================
   EXEMPLOS E AJUDA 13º SALÁRIO
   ================================== */
.decimo-examples {
    text-align: center;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.decimo-examples.hidden {
    display: none;
}

.decimo-examples p {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.decimo-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;
}

.decimo-example-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.decimo-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;
}

.decimo-help.hidden {
    display: none;
}

/* ===================================
   CONTEÚDO EDUCACIONAL 13º SALÁRIO
   ================================== */
.decimo-educational-content {
    margin-top: 3rem;
}

.decimo-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);
}

.decimo-content-block h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 3px solid var(--accent);
    padding-bottom: 0.5rem;
}

.decimo-content-block p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--secondary);
}

.decimo-content-block strong {
    color: var(--primary);
}

/* Formula Display 13º */
.decimo-formula-display {
    background: var(--light);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.decimo-formula-display h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.decimo-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 13º */
.decimo-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.decimo-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;
}

.decimo-example-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.1);
    border-color: var(--accent);
}

.decimo-example-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.decimo-example-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.decimo-example-item p {
    color: var(--secondary);
    font-size: 0.95rem;
    margin: 0;
}

.decimo-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.decimo-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;
}

.decimo-tip-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.1);
}

.decimo-tip-item h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.decimo-tip-item p {
    color: var(--secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Exemplo de Solução 13º */
.decimo-example-solution {
    background: var(--light);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.decimo-example-solution h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.decimo-solution-step {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.decimo-solution-step h5 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.decimo-solution-step p {
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
    color: var(--secondary);
}

.decimo-solution-final {
    background: var(--accent);
    color: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

.decimo-solution-final h5 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.decimo-solution-final p {
    margin: 0;
    font-family: inherit;
}

/* ===================================
   ANIMAÇÕES 13º SALÁRIO
   ================================== */
@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 13º SALÁRIO
   ================================== */
@media (max-width: 1024px) {
    .decimo-input-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .decimo-parcela-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .decimo-header h1 {
        font-size: 2rem;
    }
    
    .decimo-container {
        padding: 1rem;
    }
    
    .decimo-dados-basicos {
        padding: 1rem;
    }
    
    .decimo-input-group {
        min-width: auto;
    }
    
    .decimo-calculate-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .decimo-months {
        font-size: 2.2rem;
    }
    
    .decimo-value {
        font-size: 1.5rem;
    }
    
    .decimo-examples-grid,
    .decimo-tips-grid {
        grid-template-columns: 1fr;
    }
    
    .decimo-detailed-explanation {
        padding: 1.5rem;
    }
    
    .decimo-legal-section {
        padding: 1rem;
    }
    
    .decimo-ir-table {
        font-size: 0.8rem;
    }
    
    .decimo-table th,
    .decimo-table td {
        padding: 0.6rem 0.8rem;
    }
    
    .credibilidade-badges {
        gap: 0.8rem;
    }
    
    .credibilidade-badge {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .decimo-header h1 {
        font-size: 1.8rem;
    }
    
    .decimo-container {
        padding: 0.8rem;
    }
    
    .decimo-dados-basicos {
        padding: 0.8rem;
    }
    
    .decimo-calculate-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .decimo-months {
        font-size: 2rem;
    }
    
    .decimo-value {
        font-size: 1.3rem;
    }
    
    .decimo-currency {
        font-size: 1.1rem;
    }
    
    .decimo-item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .decimo-example-icon {
        font-size: 2rem;
    }
    
    .decimo-detailed-explanation {
        padding: 1rem;
    }
    
    .decimo-legal-artigo {
        min-width: 160px;
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }
    
    .decimo-ir-table {
        font-size: 0.75rem;
    }
    
    .decimo-table th,
    .decimo-table td {
        padding: 0.5rem;
    }
    
    .credibilidade-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .credibilidade-title {
        font-size: 1.3rem;
    }
    
    .credibilidade-badges {
        flex-direction: column;
        align-items: center;
    }
}