/* assets/css/tempo-faltante-aposentadoria.css */
/* CSS ISOLADO - Apenas para Calculadora Tempo Faltante 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.tempo-calculator-section .tempo-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 */
.tempo-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 TEMPO APOSENTADORIA
   ================================== */
.tempo-calculator-section {
    margin-bottom: 3rem;
}

.tempo-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tempo-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.tempo-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.tempo-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;
}

.tempo-inputs h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ===================================
   DADOS BÁSICOS TEMPO APOSENTADORIA
   ================================== */
.tempo-dados-basicos {
    background: var(--light-financeiro);
    border: 2px solid var(--primary-financeiro);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.tempo-input-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tempo-input-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tempo-input-group label {
    font-weight: 600;
    color: var(--dark-financeiro);
    font-size: 0.95rem;
}

.tempo-input-group input,
.tempo-input-group select {
    padding: 0.8rem;
    border: 2px solid var(--primary-financeiro);
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.tempo-input-group input:focus,
.tempo-input-group select:focus {
    outline: none;
    border-color: var(--secondary-financeiro);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.tempo-input-group small {
    color: var(--dark-financeiro);
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

/* ===================================
   BOTÃO CALCULAR TEMPO
   ================================== */
.tempo-calculate-section {
    text-align: center;
    margin: 2rem 0;
}

.tempo-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);
}

.tempo-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%);
}

.tempo-calculate-btn:active {
    transform: translateY(-1px);
}

/* ===================================
   RESULTADO DO TEMPO APOSENTADORIA
   ================================== */
.tempo-resultado {
    background: var(--light-financeiro);
    border: 2px solid var(--primary-financeiro);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    animation: slideInUp 0.5s ease;
}

.tempo-resultado h3 {
    color: var(--dark-financeiro);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Opções de Aposentadoria */
.tempo-opcoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tempo-opcao-card {
    background: white;
    border: 2px solid #a5d6a7;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tempo-opcao-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.2);
    border-color: var(--primary-financeiro);
}

.tempo-opcao-card.melhor-opcao {
    border-color: var(--secondary-financeiro);
    background: var(--light-financeiro);
}

.tempo-opcao-card.melhor-opcao::before {
    content: "⭐ MELHOR OPÇÃO";
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary-financeiro);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    font-weight: bold;
    border-bottom-left-radius: 8px;
}

.tempo-opcao-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.tempo-opcao-icon {
    font-size: 2rem;
    color: var(--primary-financeiro);
}

.tempo-opcao-title {
    color: var(--dark-financeiro);
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

.tempo-opcao-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tempo-opcao-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: var(--light-financeiro);
    border-radius: 6px;
    border-left: 4px solid var(--primary-financeiro);
}

.tempo-opcao-label {
    font-weight: 600;
    color: var(--dark-financeiro);
    font-size: 0.9rem;
}

.tempo-opcao-value {
    font-weight: bold;
    color: var(--success-financeiro);
    font-family: 'Courier New', monospace;
}

.tempo-opcao-value.destaque {
    color: #d32f2f;
    font-size: 1.1rem;
}

.tempo-opcao-disponivel {
    background: var(--secondary-financeiro);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
}

.tempo-opcao-indisponivel {
    background: #f44336;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
}

/* ===================================
   SITUAÇÃO ATUAL
   ================================== */
.tempo-situacao-atual {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #a5d6a7;
    margin-bottom: 2rem;
}

.tempo-situacao-atual h4 {
    color: var(--dark-financeiro);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-financeiro);
    padding-bottom: 0.5rem;
}

.tempo-situacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tempo-situacao-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(--primary-financeiro);
}

.tempo-situacao-label {
    font-weight: 600;
    color: var(--dark-financeiro);
    font-size: 0.9rem;
}

.tempo-situacao-value {
    font-weight: bold;
    color: var(--success-financeiro);
    font-family: 'Courier New', monospace;
}

/* ===================================
   MARCOS TIMELINE
   ================================== */
.tempo-marcos {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #a5d6a7;
}

.tempo-marcos h4 {
    color: var(--dark-financeiro);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-financeiro);
    padding-bottom: 0.5rem;
}

.tempo-marcos-timeline {
    position: relative;
    padding-left: 2rem;
}

.tempo-marcos-timeline::before {
    content: '';
    position: absolute;
    left: 0.8rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-financeiro), #a5d6a7);
}

.tempo-marco-item {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-financeiro);
    border-radius: 8px;
    border-left: 4px solid var(--primary-financeiro);
}

.tempo-marco-item::before {
    content: '';
    position: absolute;
    left: -2.3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary-financeiro);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary-financeiro);
}

.tempo-marco-data {
    font-weight: bold;
    color: var(--primary-financeiro);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.tempo-marco-evento {
    color: var(--dark-financeiro);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.tempo-marco-detalhes {
    color: #666;
    font-size: 0.85rem;
}

/* ===================================
   EXPLICAÇÃO DO CÁLCULO TEMPO (DINÂMICO)
   ================================== */
.tempo-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;
}

.tempo-explanation h3 {
    color: var(--dark-financeiro);
    margin-bottom: 1rem;
    text-align: center;
}

.tempo-step {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-financeiro);
}

.tempo-step h4 {
    color: var(--dark-financeiro);
    margin-bottom: 0.5rem;
}

.tempo-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: 0.5rem;
    background: linear-gradient(135deg, var(--light-financeiro) 0%, #fce4ec 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;
}

/* ===================================
   EXPLICAÇÃO DETALHADA COM BASE LEGAL - TEMPO APOSENTADORIA (DINÂMICO)
   ================================== */
.tempo-detailed-explanation {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-financeiro) 0%, #fce4ec 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);
}

.tempo-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;
}

.tempo-legal-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tempo-legal-section {
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e6ed;
    transition: all 0.3s ease;
}

.tempo-legal-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.15);
    border-color: var(--primary-financeiro);
}

.tempo-legal-section 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;
}

.tempo-legal-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-financeiro);
    border-radius: 10px;
    border-left: 4px solid var(--primary-financeiro);
    transition: all 0.3s ease;
}

.tempo-legal-item:hover {
    background: #a5d6a7;
    transform: translateY(-2px);
}

.tempo-legal-artigo {
    background: var(--primary-financeiro);
    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(39, 174, 96, 0.3);
    align-self: flex-start;
    min-width: 200px;
}

.tempo-legal-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.tempo-legal-content p {
    margin: 0;
    color: #2c3e50;
    line-height: 1.6;
    font-size: 0.95rem;
}

.tempo-legal-content strong {
    color: var(--primary-financeiro);
    font-weight: 600;
}

/* Detalhes dos Cálculos - Tempo */
.tempo-calculo-detalhe {
    background: var(--light-financeiro);
    border: 1px solid var(--secondary-financeiro);
    border-radius: 10px;
    padding: 1.2rem;
    margin-top: 0.5rem;
    width: 100%;
}

.tempo-calculo-detalhe p {
    font-family: 'Courier New', monospace;
    color: var(--success-financeiro);
    font-size: 0.9rem;
    margin: 0.4rem 0;
    line-height: 1.5;
}

.tempo-calculo-detalhe p:first-child {
    font-weight: bold;
    color: var(--dark-financeiro);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-family: inherit;
}

.tempo-calculo-detalhe p strong {
    color: var(--dark-financeiro);
    font-weight: bold;
}

/* Footer da Explicação Legal - Tempo */
.tempo-legal-footer {
    background: #fff3cd;
    border: 2px solid var(--accent-financeiro);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.tempo-legal-footer p {
    margin: 0.5rem 0;
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
}

.tempo-legal-footer p:first-child {
    font-weight: 600;
    color: #854d0e;
}

.tempo-legal-footer strong {
    color: #854d0e;
}

/* ===================================
   EXEMPLOS E AJUDA TEMPO
   ================================== */
.tempo-examples {
    text-align: center;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.tempo-examples.hidden {
    display: none;
}

.tempo-examples p {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.tempo-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.85rem;
}

.tempo-example-btn:hover {
    background: var(--primary-financeiro);
    color: white;
    transform: translateY(-2px);
}

.tempo-help {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fff3cd;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    transition: all 0.3s ease;
}

.tempo-help.hidden {
    display: none;
}

/* ===================================
   CONTEÚDO EDUCACIONAL TEMPO
   ================================== */
.tempo-educational-content {
    margin-top: 3rem;
}

.tempo-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;
}

.tempo-content-block h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 3px solid var(--primary-financeiro);
    padding-bottom: 0.5rem;
}

.tempo-content-block p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.tempo-content-block strong {
    color: var(--primary-financeiro);
}

/* Formula Display Tempo */
.tempo-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;
}

.tempo-formula-display h4 {
    color: var(--dark-financeiro);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tempo-formula-display .formula p {
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
    color: var(--dark-financeiro);
    font-weight: 600;
}

/* Grids Exemplos e Dicas Tempo */
.tempo-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tempo-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;
}

.tempo-example-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-financeiro);
}

.tempo-example-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-financeiro);
}

.tempo-example-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tempo-example-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
}

.tempo-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tempo-tip-item {
    background: var(--light-financeiro);
    border: 1px solid #a5d6a7;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.tempo-tip-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tempo-tip-item h4 {
    color: var(--dark-financeiro);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tempo-tip-item p {
    color: var(--dark-financeiro);
    margin: 0;
    font-size: 0.95rem;
}

/* Exemplo de Solução Tempo */
.tempo-example-solution {
    background: var(--light-financeiro);
    border: 2px solid var(--primary-financeiro);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.tempo-example-solution h4 {
    color: var(--dark-financeiro);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.tempo-solution-step {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--primary-financeiro);
}

.tempo-solution-step h5 {
    color: var(--dark-financeiro);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.tempo-solution-step p {
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
    color: #444;
}

.tempo-solution-final {
    background: var(--primary-financeiro);
    color: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

.tempo-solution-final h5 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.tempo-solution-final p {
    margin: 0;
    font-family: inherit;
}

/* ===================================
   TIMELINE REFORMA
   ================================== */
.tempo-timeline {
    position: relative;
    padding: 1.5rem 0;
    margin: 2rem 0;
}

.tempo-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-financeiro), #a5d6a7);
    transform: translateX(-50%);
}

.tempo-timeline-item {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.tempo-timeline-item:nth-child(odd) {
    flex-direction: row;
}

.tempo-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.tempo-timeline-year {
    background: var(--primary-financeiro);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1rem;
    min-width: 70px;
    max-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 6px white, 0 0 0 9px var(--primary-financeiro);
}

.tempo-timeline-content {
    flex: 1;
    max-width: 280px;
    background: white;
    padding: 1rem 1.2rem;
    border-radius: 10px;
    border: 2px solid #a5d6a7;
    box-shadow: 0 3px 12px rgba(39, 174, 96, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.tempo-timeline-content:hover {
    transform: translateY(-2px);
    border-color: var(--primary-financeiro);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.2);
}

.tempo-timeline-content h5 {
    color: var(--primary-financeiro);
    margin-bottom: 0.4rem;
    font-size: 1rem;
    font-weight: 600;
}

.tempo-timeline-content p {
    margin: 0.2rem 0;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ===================================
   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 TEMPO
   ================================== */
@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 TEMPO
   ================================== */
@media (max-width: 1024px) {
    .tempo-input-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tempo-timeline::before {
        left: 20px;
    }
    
    .tempo-timeline-item {
        flex-direction: row !important;
        padding-left: 50px;
    }
    
    .tempo-timeline-year {
        position: absolute;
        left: 0;
        min-width: 60px;
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .tempo-timeline-content {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .tempo-header h1 {
        font-size: 2rem;
    }
    
    .tempo-container {
        padding: 1rem;
    }
    
    .tempo-dados-basicos {
        padding: 1rem;
    }
    
    .tempo-input-group {
        min-width: auto;
    }
    
    .tempo-calculate-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .tempo-opcoes-grid {
        grid-template-columns: 1fr;
    }
    
    .tempo-situacao-grid {
        grid-template-columns: 1fr;
    }
    
    .tempo-examples-grid,
    .tempo-tips-grid {
        grid-template-columns: 1fr;
    }
    
    .tempo-timeline-year {
        min-width: 50px;
        font-size: 0.8rem;
        padding: 0.6rem;
    }
    
    .credibilidade-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .tempo-header h1 {
        font-size: 1.8rem;
    }
    
    .tempo-container {
        padding: 0.8rem;
    }
    
    .tempo-dados-basicos {
        padding: 0.8rem;
    }
    
    .tempo-calculate-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .tempo-opcao-card {
        padding: 1rem;
    }
    
    .tempo-example-icon {
        font-size: 2rem;
    }
    
    .tempo-timeline-item {
        padding-left: 40px;
    }
    
    .tempo-timeline-year {
        min-width: 40px;
        font-size: 0.7rem;
        padding: 0.5rem;
    }
    
    .referencias-header,
    .credibilidade-header {
        flex-direction: column;
        text-align: center;
    }
}