/* assets/css/valor-aposentadoria.css */
/* CSS ISOLADO - Apenas para Calculadora de Valor da Aposentadoria */
/* CORES FINANCEIRAS APLICADAS */

/* ===================================
   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.valor-calculator-section .valor-header h1 {
    color: var(--primary-financeiro) !important;
    font-weight: 700 !important;
    text-shadow: 0 2px 4px rgba(39, 174, 96, 0.2) !important;
}

/* Estratégia 2: Sobrescrever a variável CSS no contexto específico */
.valor-calculator-section {
    --primary: var(--primary-financeiro);
}

/* ===================================
   VARIÁVEIS DE CORES FINANCEIRAS
   ================================== */
:root {
    --primary-financeiro: #27ae60;    /* Verde dinheiro */
    --secondary-financeiro: #2ecc71;  /* Verde crescimento */
    --accent-financeiro: #f1c40f;     /* Dourado riqueza */
    --light-financeiro: #e8f5e8;      /* Fundo verde claro */
    --gradient-financeiro: linear-gradient(135deg, #27ae60, #2ecc71);
    --dark-financeiro: #1e7e34;       /* Verde escuro */
    --success-financeiro: #28a745;    /* Verde sucesso */
}

/* ===================================
   SEÇÃO DA CALCULADORA VALOR
   ================================== */
.valor-calculator-section {
    margin-bottom: 3rem;
}

.valor-header {
    text-align: center;
    margin-bottom: 2rem;
}

.valor-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.valor-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.valor-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e6ed;
}

.valor-inputs h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ===================================
   DADOS PESSOAIS VALOR
   ================================== */
.valor-dados-pessoais {
    background: var(--light-financeiro);
    border: 2px solid var(--accent-financeiro);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.valor-dados-detalhados {
    background: #f3e5f5;
    border: 2px solid #9c27b0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.valor-dados-detalhados h4 {
    color: #7b1fa2;
    margin-bottom: 1rem;
    text-align: center;
}

.valor-input-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.valor-input-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.valor-input-group label {
    font-weight: 600;
    color: var(--dark-financeiro);
    font-size: 0.95rem;
}

.valor-dados-detalhados .valor-input-group label {
    color: #7b1fa2;
}

.valor-input-group input,
.valor-input-group select {
    padding: 0.8rem;
    border: 2px solid var(--accent-financeiro);
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.valor-dados-detalhados .valor-input-group input,
.valor-dados-detalhados .valor-input-group select {
    border-color: #9c27b0;
}

.valor-input-group input:focus,
.valor-input-group select:focus {
    outline: none;
    border-color: var(--primary-financeiro);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.valor-dados-detalhados .valor-input-group input:focus,
.valor-dados-detalhados .valor-input-group select:focus {
    border-color: #7b1fa2;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.2);
}

.valor-money-input {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--accent-financeiro);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.valor-money-input:focus-within {
    border-color: var(--primary-financeiro);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.valor-money-input span {
    background: var(--accent-financeiro);
    color: white;
    padding: 0.8rem 1rem;
    font-weight: bold;
    font-size: 1rem;
}

.valor-money-input input {
    border: none;
    padding: 0.8rem;
    flex: 1;
    font-size: 1rem;
    background: transparent;
}

.valor-money-input input:focus {
    outline: none;
    transform: none;
    box-shadow: none;
}

/* ===================================
   BOTÃO CALCULAR VALOR
   ================================== */
.valor-calculate-section {
    text-align: center;
    margin: 2rem 0;
}

.valor-calculate-btn {
    background: var(--gradient-financeiro);
    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(39, 174, 96, 0.3);
}

.valor-calculate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    background: linear-gradient(135deg, var(--secondary-financeiro) 0%, var(--primary-financeiro) 100%);
}

.valor-calculate-btn:active {
    transform: translateY(-1px);
}

/* ===================================
   RESULTADO DO VALOR
   ================================== */
.valor-resultado {
    background: var(--light-financeiro);
    border: 2px solid var(--secondary-financeiro);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    animation: slideInUp 0.5s ease;
}

.valor-resultado h3 {
    color: var(--success-financeiro);
    margin-bottom: 1.5rem;
    text-align: center;
}

.valor-resultado-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Valor Principal */
.valor-resultado-principal {
    background: var(--gradient-financeiro);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.valor-resultado-principal h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    opacity: 0.9;
}

.valor-principal-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.valor-currency {
    font-size: 2rem;
    font-weight: bold;
    opacity: 0.8;
}

.valor-amount {
    font-size: 3.5rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.valor-percentual {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.valor-info-extra {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Detalhamento */
.valor-detalhamento {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e0e6ed;
}

.valor-detalhamento h4 {
    color: var(--success-financeiro);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-financeiro);
    padding-bottom: 0.5rem;
}

.valor-item-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.valor-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: var(--light-financeiro);
    border-radius: 8px;
    border-left: 4px solid var(--accent-financeiro);
    transition: all 0.3s ease;
}

.valor-item:hover {
    transform: translateX(5px);
    background: #a5d6a7;
}

.valor-item.destaque {
    background: var(--accent-financeiro);
    color: white;
    border-left-color: var(--dark-financeiro);
    font-weight: bold;
    font-size: 1.1rem;
}

.valor-item.destaque:hover {
    background: var(--primary-financeiro);
}

.valor-item-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.valor-item.destaque .valor-item-label {
    color: white;
}

.valor-item-value {
    font-weight: bold;
    color: var(--primary-financeiro);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.valor-item.destaque .valor-item-value {
    color: white;
    font-size: 1.2rem;
}

/* Comparativo */
.valor-comparativo {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #2196f3;
}

.valor-comparativo h4 {
    color: #1976d2;
    margin-bottom: 1rem;
    border-bottom: 2px solid #2196f3;
    padding-bottom: 0.5rem;
}

.valor-comparativo-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.valor-comparativo-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
    transition: all 0.3s ease;
}

.valor-comparativo-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(33, 150, 243, 0.2);
}

.valor-comparativo-item h5 {
    color: #1976d2;
    margin-bottom: 0.5rem;
}

.valor-comparativo-item p {
    margin: 0.3rem 0;
    color: #5a6c7d;
    font-size: 0.9rem;
}

/* Aviso Legal */
.valor-aviso-legal {
    background: #fff3cd;
    border: 2px solid var(--accent-financeiro);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.valor-aviso-legal p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===================================
   EXPLICAÇÃO DO CÁLCULO VALOR (DINÂMICO)
   ================================== */
.valor-explanation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-financeiro);
    border: 2px solid var(--primary-financeiro);
    border-radius: 12px;
    animation: slideInUp 0.5s ease;
}

.valor-explanation h3 {
    color: var(--dark-financeiro);
    margin-bottom: 1rem;
    text-align: center;
}

.valor-step {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-financeiro);
}

.valor-step h4 {
    color: var(--dark-financeiro);
    margin-bottom: 0.5rem;
}

.valor-step p {
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
    color: #444;
}

/* ===================================
   CARD FUNDAMENTAÇÃO (DINÂMICO)
   ================================== */
.legal-explanation,
.calc-legal {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-financeiro) 0%, #e8f5e8 100%);
    border: 2px solid var(--primary-financeiro);
    border-radius: 15px;
    animation: slideInUp 0.5s ease;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.1);
}

.legal-explanation h3,
.calc-legal h3 {
    color: var(--primary-financeiro);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    border-bottom: 3px solid var(--primary-financeiro);
    padding-bottom: 0.8rem;
}

.legal-explanation h4,
.calc-legal h4 {
    color: var(--primary-financeiro);
    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-financeiro);
    padding-bottom: 0.8rem;
    padding-top: 0.3rem;
}

.legal-explanation p,
.calc-legal p {
    color: #2c3e50;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.legal-explanation strong,
.calc-legal strong {
    color: var(--primary-financeiro);
    font-weight: 600;
}

.formula-highlight {
    background: var(--light-financeiro);
    border: 2px solid var(--primary-financeiro);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.formula-main {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-financeiro);
    font-family: 'Courier New', monospace;
    margin-bottom: 0.5rem;
}

/* ===================================
   EXEMPLOS E AJUDA VALOR
   ================================== */
.valor-examples {
    text-align: center;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.valor-examples.hidden {
    display: none;
}

.valor-examples p {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.valor-example-btn {
    background: var(--light-financeiro);
    border: 2px solid var(--primary-financeiro);
    color: var(--dark-financeiro);
    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;
}

.valor-example-btn:hover {
    background: var(--primary-financeiro);
    color: white;
    transform: translateY(-2px);
}

.valor-help {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fff3cd;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    transition: all 0.3s ease;
}

.valor-help.hidden {
    display: none;
}

/* ===================================
   CONTEÚDO EDUCACIONAL VALOR
   ================================== */
.valor-educational-content {
    margin-top: 3rem;
}

.valor-content-block {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e6ed;
}

.valor-content-block h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 3px solid var(--primary-financeiro);
    padding-bottom: 0.5rem;
}

.valor-content-block p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.valor-content-block strong {
    color: var(--primary-financeiro);
}

/* Formula Display Valor */
.valor-formula-display {
    background: var(--light-financeiro);
    border: 2px solid var(--primary-financeiro);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.valor-formula-display h4 {
    color: var(--dark-financeiro);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.valor-formula-display .formula p {
    margin: 0.5rem 0;
    font-family: 'Courier New', monospace;
    color: var(--dark-financeiro);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Grids Exemplos e Dicas Valor */
.valor-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.valor-example-item {
    background: var(--light-financeiro);
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.valor-example-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-financeiro);
}

.valor-example-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-financeiro);
}

.valor-example-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.valor-example-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
}

.valor-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.valor-tip-item {
    background: var(--light-financeiro);
    border: 1px solid #81c784;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.valor-tip-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.valor-tip-item h4 {
    color: var(--success-financeiro);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.valor-tip-item p {
    color: var(--success-financeiro);
    margin: 0;
    font-size: 0.95rem;
}

/* Exemplo de Solução Valor */
.valor-example-solution {
    background: var(--light-financeiro);
    border: 2px solid var(--primary-financeiro);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.valor-example-solution h4 {
    color: var(--dark-financeiro);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.valor-solution-step {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--primary-financeiro);
}

.valor-solution-step h5 {
    color: var(--dark-financeiro);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.valor-solution-step p {
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
    color: #444;
}

.valor-solution-final {
    background: var(--primary-financeiro);
    color: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

.valor-solution-final h5 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.valor-solution-final p {
    margin: 0;
    font-family: inherit;
}

/* Estratégias Grid */
.valor-strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.valor-strategy-item {
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.valor-strategy-item.urgente {
    background: #ffebee;
    border: 2px solid #f44336;
}

.valor-strategy-item.importante {
    background: var(--light-financeiro);
    border: 2px solid var(--accent-financeiro);
}

.valor-strategy-item.dica {
    background: #e3f2fd;
    border: 2px solid #2196f3;
}

.valor-strategy-item.atencao {
    background: #f3e5f5;
    border: 2px solid #9c27b0;
}

.valor-strategy-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.valor-strategy-item h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.valor-strategy-item.urgente h4 {
    color: #d32f2f;
}

.valor-strategy-item.importante h4 {
    color: var(--dark-financeiro);
}

.valor-strategy-item.dica h4 {
    color: #1976d2;
}

.valor-strategy-item.atencao h4 {
    color: #7b1fa2;
}

/* ===================================
   FAQ, REFERÊNCIAS E CREDIBILIDADE
   ================================== */
.content-block {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e6ed;
}

.content-block h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 3px solid var(--primary-financeiro);
    padding-bottom: 0.5rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-financeiro);
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.1);
}

.faq-question {
    padding: 1rem;
    background: var(--light-financeiro);
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-financeiro);
    font-size: 1rem;
    list-style: none;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #a5d6a7;
}

.faq-answer {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e0e6ed;
}

.faq-answer p {
    margin: 0.5rem 0;
    color: #444;
    line-height: 1.6;
}

.faq-answer strong {
    color: var(--primary-financeiro);
}

/* Referências */
.referencias-container {
    background: var(--light-financeiro);
    border: 2px solid var(--primary-financeiro);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.referencias-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.referencias-icon {
    font-size: 2rem;
    color: var(--primary-financeiro);
}

.referencias-title {
    color: var(--dark-financeiro);
    margin: 0;
    font-size: 1.3rem;
}

.referencias-content {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.referencias-lista {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.referencia-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-financeiro);
    transition: all 0.3s ease;
    color: #444;
}

.referencia-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.1);
}

.referencia-item strong {
    color: var(--primary-financeiro);
}

/* Credibilidade */
.credibilidade-container {
    background: white;
    border: 2px solid var(--accent-financeiro);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.credibilidade-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.credibilidade-icon {
    font-size: 2rem;
    color: var(--accent-financeiro);
}

.credibilidade-title {
    color: var(--dark-financeiro);
    margin: 0;
    font-size: 1.3rem;
}

.credibilidade-content {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.credibilidade-logo {
    color: var(--primary-financeiro);
    font-weight: bold;
}

.credibilidade-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.credibilidade-badge {
    background: var(--light-financeiro);
    color: var(--dark-financeiro);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--primary-financeiro);
    transition: all 0.3s ease;
}

.credibilidade-badge:hover {
    background: var(--primary-financeiro);
    color: white;
    transform: translateY(-2px);
}

/* ===================================
   ANIMAÇÕES VALOR
   ================================== */
@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 VALOR
   ================================== */
@media (max-width: 1024px) {
    .valor-input-row {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .valor-header h1 {
        font-size: 2rem;
    }
    
    .valor-container {
        padding: 1rem;
    }
    
    .valor-dados-pessoais,
    .valor-dados-detalhados {
        padding: 1rem;
    }
    
    .valor-input-group {
        min-width: auto;
    }
    
    .valor-calculate-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .valor-amount {
        font-size: 2.8rem;
    }
    
    .valor-currency {
        font-size: 1.5rem;
    }
    
    .valor-examples-grid,
    .valor-tips-grid,
    .valor-strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .credibilidade-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .valor-header h1 {
        font-size: 1.8rem;
    }
    
    .valor-container {
        padding: 0.8rem;
    }
    
    .valor-dados-pessoais,
    .valor-dados-detalhados {
        padding: 0.8rem;
    }
    
    .valor-calculate-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .valor-amount {
        font-size: 2.5rem;
    }
    
    .valor-currency {
        font-size: 1.3rem;
    }
    
    .valor-item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .valor-example-icon {
        font-size: 2rem;
    }
    
    .referencias-header,
    .credibilidade-header {
        flex-direction: column;
        text-align: center;
    }
}


/* ===================================
   FUNDAMENTAÇÃO LEGAL DETALHADA (DINÂMICO)
   ================================== */
.valor-detailed-explanation {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-financeiro) 0%, #e8f5e8 100%);
    border: 2px solid var(--primary-financeiro);
    border-radius: 15px;
    animation: slideInUp 0.5s ease;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.1);
}

.valor-detailed-explanation h3 {
    color: var(--primary-financeiro);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    border-bottom: 3px solid var(--primary-financeiro);
    padding-bottom: 0.8rem;
}

.valor-legal-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.valor-legal-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e0e6ed;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.valor-legal-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.1);
    border-color: var(--primary-financeiro);
}

.valor-legal-section h4 {
    color: var(--primary-financeiro);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid var(--light-financeiro);
    padding-bottom: 0.5rem;
}

.valor-legal-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.valor-legal-artigo {
    background: var(--accent-financeiro);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(241, 196, 15, 0.3);
    align-self: flex-start;
}

.valor-legal-content {
    flex: 1;
}

.valor-legal-content > p {
    color: #2c3e50;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.valor-legal-content strong {
    color: var(--primary-financeiro);
    font-weight: 600;
}

.valor-calculo-detalhe {
    background: var(--light-financeiro);
    border: 1px solid #a5d6a7;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
}

.valor-calculo-detalhe p {
    margin: 0.4rem 0;
    color: var(--dark-financeiro);
    font-size: 0.95rem;
    line-height: 1.5;
}

.valor-calculo-detalhe p strong {
    color: var(--primary-financeiro);
    font-weight: 600;
}

.valor-legal-footer {
    background: #fff3cd;
    border: 2px solid var(--accent-financeiro);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.valor-legal-footer p {
    margin: 0.5rem 0;
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
}

.valor-legal-footer strong {
    color: #b8860b;
    font-weight: 600;
}

/* Responsividade para fundamentação legal */
@media (max-width: 768px) {
    .valor-detailed-explanation {
        padding: 1rem;
    }
    
    .valor-legal-section {
        padding: 1rem;
    }
    
    .valor-legal-artigo {
        align-self: stretch;
        text-align: center;
    }
    
    .valor-calculo-detalhe {
        padding: 0.8rem;
    }
    
    .valor-legal-footer {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .valor-detailed-explanation h3 {
        font-size: 1.3rem;
    }
    
    .valor-legal-section h4 {
        font-size: 1.1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .valor-legal-artigo {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .valor-calculo-detalhe p {
        font-size: 0.9rem;
    }
}