/* shared/calculadoras/tempo-entre-datas/tempo-entre-datas.css */
/* CSS ISOLADO - Tempo Entre Datas (Universal) */
/* CORES UTILITÁRIOS: #5B9BD5 (primária) e #4472C4 (secundária) */

/* ===================================
   SEÇÃO DA CALCULADORA TEMPO ENTRE DATAS
   ================================== */
.tempo-calculator-section {
    margin-bottom: 3rem;
}

.tempo-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tempo-header h1 {
    font-size: 2.5rem;
    color: #4472C4; /* Cor secundária utilitários */
    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: #4472C4; /* Cor secundária utilitários */
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ===================================
   SEÇÕES DE DATAS INICIAL E FINAL
   ================================== */
.tempo-data-inicial {
    background: rgba(91, 155, 213, 0.1); /* Background baseado na cor primária */
    border: 2px solid #5B9BD5; /* Cor primária utilitários */
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.tempo-data-final {
    background: rgba(68, 114, 196, 0.1); /* Background baseado na cor secundária */
    border: 2px solid #4472C4; /* Cor secundária utilitários */
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.tempo-opcoes-calculo {
    background: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.tempo-data-inicial h4 {
    color: #4472C4; /* Cor secundária utilitários */
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tempo-data-final h4 {
    color: #4472C4; /* Cor secundária utilitários */
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tempo-opcoes-calculo h4 {
    color: #1976d2;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tempo-input-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    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;
    font-size: 0.95rem;
}

.tempo-data-inicial .tempo-input-group label {
    color: #4472C4; /* Cor secundária utilitários */
}

.tempo-data-final .tempo-input-group label {
    color: #4472C4; /* Cor secundária utilitários */
}

.tempo-opcoes-calculo .tempo-input-group label {
    color: #1976d2;
}

.tempo-input-group input,
.tempo-input-group select {
    padding: 0.8rem;
    border: 2px solid;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.tempo-data-inicial .tempo-input-group input,
.tempo-data-inicial .tempo-input-group select {
    border-color: #5B9BD5; /* Cor primária utilitários */
}

.tempo-data-final .tempo-input-group input,
.tempo-data-final .tempo-input-group select {
    border-color: #4472C4; /* Cor secundária utilitários */
}

.tempo-opcoes-calculo .tempo-input-group input,
.tempo-opcoes-calculo .tempo-input-group select {
    border-color: #2196f3;
}

.tempo-input-group input:focus,
.tempo-input-group select:focus {
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.tempo-data-inicial .tempo-input-group input:focus,
.tempo-data-inicial .tempo-input-group select:focus {
    border-color: #4472C4; /* Cor secundária utilitários */
    box-shadow: 0 4px 15px rgba(91, 155, 213, 0.2);
}

.tempo-data-final .tempo-input-group input:focus,
.tempo-data-final .tempo-input-group select:focus {
    border-color: #4472C4; /* Cor secundária utilitários */
    box-shadow: 0 4px 15px rgba(68, 114, 196, 0.2);
}

.tempo-opcoes-calculo .tempo-input-group input:focus,
.tempo-opcoes-calculo .tempo-input-group select:focus {
    border-color: #1976d2;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
}

/* ===================================
   BOTÃO CALCULAR TEMPO
   ================================== */
.tempo-btn-calcular {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #5B9BD5, #4472C4); /* Gradiente com cores utilitários */
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tempo-btn-calcular:hover {
    background: linear-gradient(135deg, #4472C4, #365A9B); /* Hover com cores mais escuras */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(91, 155, 213, 0.3);
}

.tempo-btn-calcular:active {
    transform: translateY(-1px);
}

/* ===================================
   RESULTADO TEMPO ENTRE DATAS
   ================================== */
.tempo-resultado {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    animation: slideInUp 0.5s ease;
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.3);
}

.tempo-resultado h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
    color: #fff;
}

.tempo-display-principal {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.tempo-valor-principal {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tempo-descricao-principal {
    font-size: 1.2rem;
    opacity: 0.9;
}

.tempo-detalhes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.tempo-detalhe-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.tempo-detalhe-valor {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 0.3rem;
    font-family: 'Courier New', monospace;
}

.tempo-detalhe-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===================================
   ANÁLISE ESTATÍSTICA
   ================================== */
.tempo-analise-estatistica {
    background: #fff3e0;
    border: 2px solid #ff9800;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.tempo-analise-estatistica h4 {
    color: #f57c00;
    margin-bottom: 1rem;
    text-align: center;
}

.tempo-estatistica-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tempo-estatistica-item {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    border: 2px solid #ff9800;
}

.tempo-estatistica-item h5 {
    color: #f57c00;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tempo-estatistica-valor {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e65100;
    margin-bottom: 0.3rem;
    font-family: 'Courier New', monospace;
}

.tempo-estatistica-descricao {
    font-size: 0.8rem;
    color: #5a6c7d;
}

/* ===================================
   MARCOS TEMPORAIS
   ================================== */
.tempo-marcos-temporais {
    background: #f3e5f5;
    border: 2px solid #9c27b0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    animation: fadeInUp 0.7s ease;
}

.tempo-marcos-temporais h4 {
    color: #7b1fa2;
    margin-bottom: 1rem;
    text-align: center;
}

.tempo-marco-item {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #9c27b0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tempo-marco-item:last-child {
    margin-bottom: 0;
}

.tempo-marco-icon {
    font-size: 2rem;
    min-width: 3rem;
    text-align: center;
}

.tempo-marco-content h5 {
    color: #7b1fa2;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.tempo-marco-content p {
    margin: 0;
    color: #5a6c7d;
    font-size: 0.9rem;
}

/* ===================================
   EXPLICAÇÃO DO CÁLCULO (cards dinâmicos JS)
   ================================== */
.tempo-explanation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border: 2px solid #5B9BD5; /* Cor primária utilitários */
    border-radius: 12px;
    animation: slideInUp 0.5s ease;
}

.tempo-explanation h3 {
    color: #4472C4; /* Cor secundária utilitários */
    margin-bottom: 1rem;
    text-align: center;
}

.tempo-solution-step {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #5B9BD5; /* Cor primária utilitários */
}

.tempo-solution-step h4 {
    color: #4472C4; /* Cor secundária utilitários */
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tempo-solution-step p {
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
    color: #444;
}

.tempo-formula-step {
    background: rgba(91, 155, 213, 0.1); /* Background baseado na cor primária */
    border: 2px solid #5B9BD5; /* Cor primária utilitários */
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    font-family: 'Courier New', monospace;
    text-align: center;
}

.tempo-solution-final {
    background: #4472C4; /* Cor secundária utilitários */
    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;
}

/* ===================================
   BOTÕES DE EXEMPLO
   ================================== */
.tempo-examples {
    background: #e8f5e8;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.tempo-examples p {
    margin-bottom: 1rem;
    color: #2e7d32;
    font-weight: 600;
}

.tempo-example-btn {
    background: #4caf50;
    color: white;
    border: none;
    padding: 0.7rem 1.2rem;
    margin: 0.3rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tempo-example-btn:hover {
    background: #388e3c;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.tempo-help {
    background: rgba(91, 155, 213, 0.1); /* Background baseado na cor primária */
    border: 2px solid #5B9BD5; /* Cor primária utilitários */
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.tempo-help p {
    margin: 0;
    color: #4472C4; /* Cor secundária utilitários */
}

/* ===================================
   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: #4472C4; /* Cor secundária utilitários */
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

/* ===================================
   CARDS CONTENT-BLOCK (FAQ, REFERÊNCIAS, 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;
    transition: all 0.3s ease;
}

.content-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.content-block h3 {
    color: #4472C4; /* Cor secundária utilitários */
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-block h4 {
    color: #2c3e50;
    margin: 1rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.content-block p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Fórmula do tempo */
.tempo-formula-display {
    background: rgba(91, 155, 213, 0.1); /* Background baseado na cor primária */
    border: 2px solid #5B9BD5; /* Cor primária utilitários */
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.tempo-formula-display h4 {
    color: #4472C4; /* Cor secundária utilitários */
    margin-bottom: 1rem;
    text-align: center;
}

.formula {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    text-align: center;
}

.formula p {
    margin: 0.5rem 0;
    color: #2c3e50;
}

.formula p:first-child {
    font-size: 1.2rem;
    font-weight: bold;
    color: #4472C4; /* Cor secundária utilitários */
}

/* Grid de usos do tempo */
.tempo-uso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tempo-uso-item {
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.tempo-uso-item.trabalho {
    background: rgba(91, 155, 213, 0.1); /* Background baseado na cor primária */
    border: 2px solid #5B9BD5; /* Cor primária utilitários */
}

.tempo-uso-item.juridico {
    background: #fff3e0;
    border: 2px solid #ff9800;
}

.tempo-uso-item.financeiro {
    background: #e8f5e8;
    border: 2px solid #4caf50;
}

.tempo-uso-item.pessoal {
    background: #fce4ec;
    border: 2px solid #e91e63;
}

.tempo-uso-item.educacao {
    background: #f3e5f5;
    border: 2px solid #9c27b0;
}

.tempo-uso-item.saude {
    background: #ffebee;
    border: 2px solid #f44336;
}

.tempo-uso-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tempo-uso-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tempo-uso-item h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tempo-uso-item.trabalho h4 {
    color: #4472C4; /* Cor secundária utilitários */
}

.tempo-uso-item.juridico h4 {
    color: #f57c00;
}

.tempo-uso-item.financeiro h4 {
    color: #2e7d32;
}

.tempo-uso-item.pessoal h4 {
    color: #c2185b;
}

.tempo-uso-item.educacao h4 {
    color: #7b1fa2;
}

.tempo-uso-item.saude h4 {
    color: #d32f2f;
}

/* Exemplo prático de cálculo */
.tempo-exemplo-calculo {
    margin-top: 1.5rem;
}

.tempo-passo {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #5B9BD5; /* Cor primária utilitários */
}

.tempo-passo h4 {
    color: #4472C4; /* Cor secundária utilitários */
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tempo-passo p {
    margin: 0;
    color: #5a6c7d;
}

/* Tipos de períodos */
.tempo-periodos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tempo-periodo-item {
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.tempo-periodo-item.curto {
    background: rgba(91, 155, 213, 0.1); /* Background baseado na cor primária */
    border: 2px solid #5B9BD5; /* Cor primária utilitários */
}

.tempo-periodo-item.medio {
    background: #e8f5e8;
    border: 2px solid #4caf50;
}

.tempo-periodo-item.longo {
    background: #fff3e0;
    border: 2px solid #ff9800;
}

.tempo-periodo-item.historico {
    background: #f3e5f5;
    border: 2px solid #9c27b0;
}

.tempo-periodo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tempo-periodo-item h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tempo-periodo-item.curto h4 {
    color: #4472C4; /* Cor secundária utilitários */
}

.tempo-periodo-item.medio h4 {
    color: #2e7d32;
}

.tempo-periodo-item.longo h4 {
    color: #f57c00;
}

.tempo-periodo-item.historico h4 {
    color: #7b1fa2;
}

/* Considerações especiais */
.tempo-consideracoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tempo-consideracao-item {
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tempo-consideracao-item.bissextos {
    background: #e8f5e8;
    border: 2px solid #4caf50;
}

.tempo-consideracao-item.meses {
    background: rgba(91, 155, 213, 0.1); /* Background baseado na cor primária */
    border: 2px solid #5B9BD5; /* Cor primária utilitários */
}

.tempo-consideracao-item.uteis {
    background: #fff3e0;
    border: 2px solid #ff9800;
}

.tempo-consideracao-item.fuso {
    background: #f3e5f5;
    border: 2px solid #9c27b0;
}

.tempo-consideracao-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tempo-consideracao-item h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tempo-consideracao-item.bissextos h4 {
    color: #2e7d32;
}

.tempo-consideracao-item.meses h4 {
    color: #4472C4; /* Cor secundária utilitários */
}

.tempo-consideracao-item.uteis h4 {
    color: #f57c00;
}

.tempo-consideracao-item.fuso h4 {
    color: #7b1fa2;
}

/* Aplicações profissionais */
.tempo-aplicacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tempo-aplicacao-item {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.tempo-aplicacao-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #5B9BD5; /* Cor primária utilitários */
}

.tempo-aplicacao-item h4 {
    color: #4472C4; /* Cor secundária utilitários */
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tempo-aplicacao-item p {
    margin: 0.3rem 0;
    color: #5a6c7d;
    font-size: 0.9rem;
}

/* FAQ */
.tempo-faq {
    margin-top: 1.5rem;
}

.tempo-faq-item {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.tempo-faq-item h4 {
    color: #495057;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.tempo-faq-item p {
    margin: 0;
    color: #5a6c7d;
    line-height: 1.6;
}

/* ===================================
   REFERÊNCIAS E FUNDAMENTAÇÃO
   ================================== */
.references-container {
    margin: 1.5rem 0;
}

.references-list {
    list-style: none;
    padding: 0;
}

.references-list li {
    background: rgba(91, 155, 213, 0.03); /* Background baseado na cor primária */
    border-left: 3px solid #5B9BD5; /* Cor primária utilitários */
    padding: 1rem;
    margin-bottom: 0.8rem;
    border-radius: 0 6px 6px 0;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.references-list li:hover {
    background: rgba(91, 155, 213, 0.08);
    transform: translateX(5px);
}

.references-list em {
    color: #4472C4; /* Cor secundária utilitários */
    font-weight: 600;
}

/* Calculadoras relacionadas */
.tempo-related-calculators {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.tempo-related-calculators h3 {
    color: #4472C4; /* Cor secundária utilitários */
    margin-bottom: 1.5rem;
}

.related-calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.related-calc-item {
    background: white;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    padding: 1rem;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-calc-item:hover {
    border-color: #5B9BD5; /* Cor primária utilitários */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #4472C4; /* Cor secundária utilitários */
}

.related-calc-icon {
    font-size: 1.5rem;
}

/* ===================================
   FUNDAMENTAÇÃO MATEMÁTICA DETALHADA (cards dinâmicos JS)
   ================================== */
.tempo-detailed-explanation {
    margin-top: 2rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border: 2px solid #5B9BD5; /* Cor primária utilitários */
    border-radius: 15px;
    animation: fadeInUp 0.8s ease;
}

.tempo-detailed-explanation h3 {
    color: #4472C4; /* Cor secundária utilitários */
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.tempo-legal-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tempo-legal-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #5B9BD5; /* Cor primária utilitários */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tempo-legal-section h4 {
    color: #4472C4; /* Cor secundária utilitários */
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tempo-legal-content p {
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.6;
}

.tempo-calculo-detalhe {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.tempo-calculo-detalhe p {
    margin: 0.5rem 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #495057;
}

.tempo-calculo-detalhe p:first-child {
    font-weight: bold;
    color: #4472C4; /* Cor secundária utilitários */
    margin-bottom: 0.8rem;
}

/* ===================================
   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 ENTRE DATAS
   ================================== */
@media (max-width: 1024px) {
    .tempo-input-row {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .tempo-header h1 {
        font-size: 2rem;
    }
    
    .tempo-container {
        padding: 1rem;
    }
    
    .tempo-data-inicial,
    .tempo-data-final,
    .tempo-opcoes-calculo {
        padding: 1rem;
    }
    
    .tempo-valor-principal {
        font-size: 2rem;
    }
    
    .tempo-detalhes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    
    .tempo-uso-grid,
    .tempo-periodos-grid,
    .tempo-consideracoes-grid,
    .tempo-aplicacoes-grid {
        grid-template-columns: 1fr;
    }
    
    .related-calc-grid {
        grid-template-columns: 1fr;
    }
    
    .tempo-estatistica-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .tempo-detalhes-grid,
    .tempo-estatistica-grid {
        grid-template-columns: 1fr;
    }
    
    .tempo-example-btn {
        display: block;
        width: 100%;
        margin: 0.3rem 0;
    }
    
    .tempo-marco-item {
        flex-direction: column;
        text-align: center;
    }
}