/* assets/css/dividendos-acoes.css */
/* CSS ISOLADO - Apenas para Calculadora de Dividendos e Ações */
/* CORES FINANCEIRO: Verde dinheiro + dourado riqueza */

/* ===================================
   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.dividendos-calculator-section .dividendos-header h1 {
    color: #27ae60 !important; /* Verde dinheiro */
    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 */
.dividendos-calculator-section {
    --primary: #27ae60; /* Verde dinheiro */
    --primary-financeiro: #27ae60;
}

/* ===================================
   SEÇÃO DA CALCULADORA DIVIDENDOS
   ================================== */
.dividendos-calculator-section {
    margin-bottom: 3rem;
}

.dividendos-header {
    text-align: center;
    margin-bottom: 2rem;
}

.dividendos-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.dividendos-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.dividendos-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;
}

.dividendos-inputs h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ===================================
   SISTEMA DE ABAS DIVIDENDOS - FINANCEIRO
   ================================== */
.dividendos-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e0e6ed;
    padding-bottom: 1rem;
}

.dividendos-tab-btn {
    background: #f8f9fa;
    border: 2px solid #e0e6ed;
    color: #5a6c7d;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 120px;
}

.dividendos-tab-btn:hover {
    background: #27ae60; /* Verde dinheiro */
    color: white;
    border-color: #27ae60;
    transform: translateY(-2px);
}

.dividendos-tab-btn.active {
    background: #27ae60; /* Verde dinheiro */
    color: white;
    border-color: #2ecc71; /* Verde crescimento */
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.3);
}

/* ===================================
   CONTEÚDO DAS ABAS DIVIDENDOS
   ================================== */
.dividendos-tab-content {
    display: none;
}

.dividendos-tab-content.active {
    display: block;
    animation: fadeInDividendosTab 0.3s ease;
}

@keyframes fadeInDividendosTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   DADOS DE INVESTIMENTO DIVIDENDOS - FINANCEIRO
   ================================== */
.dividendos-dados-investimento {
    background: #e8f5e8; /* Verde claro financeiro */
    border: 2px solid #27ae60; /* Verde dinheiro */
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.dividendos-input-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.dividendos-input-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dividendos-input-group label {
    font-weight: 600;
    color: #27ae60; /* Verde dinheiro */
    font-size: 0.95rem;
}

.dividendos-input-group input,
.dividendos-input-group select {
    padding: 0.8rem;
    border: 2px solid #27ae60; /* Verde dinheiro */
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.dividendos-input-group input:focus,
.dividendos-input-group select:focus {
    outline: none;
    border-color: #2ecc71; /* Verde crescimento */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.dividendos-money-input {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #27ae60; /* Verde dinheiro */
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dividendos-money-input:focus-within {
    border-color: #2ecc71; /* Verde crescimento */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.dividendos-money-input span {
    background: #27ae60; /* Verde dinheiro */
    color: white;
    padding: 0.8rem 1rem;
    font-weight: bold;
    font-size: 1rem;
}

.dividendos-money-input input {
    border: none;
    padding: 0.8rem;
    flex: 1;
    font-size: 1rem;
    background: transparent;
}

.dividendos-money-input input:focus {
    outline: none;
    transform: none;
    box-shadow: none;
}

.dividendos-percent-input {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #27ae60; /* Verde dinheiro */
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dividendos-percent-input:focus-within {
    border-color: #2ecc71; /* Verde crescimento */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.dividendos-percent-input input {
    border: none;
    padding: 0.8rem;
    flex: 1;
    font-size: 1rem;
    background: transparent;
}

.dividendos-percent-input span {
    background: #27ae60; /* Verde dinheiro */
    color: white;
    padding: 0.8rem 1rem;
    font-weight: bold;
    font-size: 1rem;
}

/* ===================================
   BOTÃO CALCULAR DIVIDENDOS - FINANCEIRO
   ================================== */
.dividendos-calculate-section {
    text-align: center;
    margin: 2rem 0;
}

.dividendos-calculate-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71); /* Gradiente verde 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);
}

.dividendos-calculate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.dividendos-calculate-btn:active {
    transform: translateY(-1px);
}

/* ===================================
   RESULTADO DOS DIVIDENDOS - FINANCEIRO
   ================================== */
.dividendos-resultado {
    background: linear-gradient(135deg, #e8f5e8, #d5f4e6); /* Gradiente verde claro */
    border: 2px solid #27ae60; /* Verde dinheiro */
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    animation: slideInUp 0.5s ease;
}

.dividendos-resultado h3 {
    color: #1e8449; /* Verde escuro financeiro */
    margin-bottom: 1.5rem;
    text-align: center;
}

.dividendos-resultado-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Resultado Principal */
.dividendos-resultado-principal {
    background: #27ae60; /* Verde dinheiro */
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.dividendos-resultado-principal h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.dividendos-valor-principal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dividendos-currency {
    font-size: 1.3rem;
    opacity: 0.8;
}

.dividendos-value {
    font-size: 2.2rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.dividendos-yield {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.dividendos-percent {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.dividendos-unit {
    opacity: 0.8;
    font-size: 0.9rem;
}

.dividendos-tipo {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Detalhamento */
.dividendos-detalhamento {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e0e6ed;
}

.dividendos-detalhamento h4 {
    color: #1e8449; /* Verde escuro financeiro */
    margin-bottom: 1rem;
    border-bottom: 2px solid #27ae60; /* Verde dinheiro */
    padding-bottom: 0.5rem;
}

.dividendos-item-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.dividendos-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: #e8f5e8; /* Verde claro financeiro */
    border-radius: 8px;
    border-left: 4px solid #27ae60; /* Verde dinheiro */
    transition: all 0.3s ease;
}

.dividendos-item:hover {
    transform: translateX(5px);
    background: #d5f4e6;
}

.dividendos-item.destaque {
    background: #27ae60; /* Verde dinheiro */
    color: white;
    border-left-color: #2ecc71; /* Verde crescimento */
    font-weight: bold;
}

.dividendos-item.destaque:hover {
    background: #2ecc71; /* Verde crescimento */
}

.dividendos-item-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.dividendos-item.destaque .dividendos-item-label {
    color: white;
}

.dividendos-item-value {
    font-weight: bold;
    color: #1e8449; /* Verde escuro financeiro */
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.dividendos-item.destaque .dividendos-item-value {
    color: white;
}

/* Estratégias */
.dividendos-estrategias {
    background: #fff8e1; /* Fundo dourado suave */
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #f1c40f; /* Dourado riqueza */
}

.dividendos-estrategias h4 {
    color: #f39c12; /* Dourado escuro */
    margin-bottom: 1rem;
    border-bottom: 2px solid #f1c40f; /* Dourado riqueza */
    padding-bottom: 0.5rem;
}

.dividendos-estrategia-content p {
    margin: 0.5rem 0;
    color: #f39c12; /* Dourado escuro */
    font-size: 0.95rem;
}

.dividendos-estrategia-content strong {
    color: #e67e22; /* Dourado mais escuro */
}

/* ===================================
   EXPLICAÇÃO DO CÁLCULO DIVIDENDOS - FINANCEIRO
   ================================== */
.dividendos-explanation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e8f5e8, #d5f4e6); /* Verde claro financeiro */
    border: 2px solid #27ae60; /* Verde dinheiro */
    border-radius: 12px;
    animation: slideInUp 0.5s ease;
}

.dividendos-explanation h3 {
    color: #1e8449; /* Verde escuro financeiro */
    margin-bottom: 1rem;
    text-align: center;
}

.dividendos-step {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #27ae60; /* Verde dinheiro */
}

.dividendos-step h4 {
    color: #1e8449; /* Verde escuro financeiro */
    margin-bottom: 0.5rem;
}

.dividendos-step p {
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
    color: #444;
}

/* ===================================
   EXPLICAÇÃO DETALHADA COM BASE LEGAL DIVIDENDOS - FINANCEIRO
   ================================== */
.dividendos-detailed-explanation {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #e8f5e8, #f1f8e9); /* Verde claro financeiro */
    border: 2px solid #27ae60; /* Verde dinheiro */
    border-radius: 15px;
    animation: slideInUp 0.5s ease;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.1);
}

.dividendos-detailed-explanation h3 {
    color: #27ae60; /* Verde dinheiro */
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
    border-bottom: 3px solid #27ae60; /* Verde dinheiro */
    padding-bottom: 0.8rem;
}

.dividendos-legal-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dividendos-legal-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e6ed;
    transition: all 0.3s ease;
}

.dividendos-legal-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.15);
    border-color: #27ae60; /* Verde dinheiro */
}

.dividendos-legal-section h4 {
    color: #27ae60; /* Verde dinheiro */
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid #e8f5e8; /* Verde claro financeiro */
    padding-bottom: 0.8rem;
    padding-top: 0.3rem;
}

.dividendos-legal-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: #e8f5e8; /* Verde claro financeiro */
    border-radius: 10px;
    border-left: 4px solid #27ae60; /* Verde dinheiro */
    transition: all 0.3s ease;
}

.dividendos-legal-item:hover {
    background: #d5f4e6;
    transform: translateY(-2px);
}

.dividendos-legal-artigo {
    background: #27ae60; /* Verde dinheiro */
    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;
}

.dividendos-legal-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.dividendos-legal-content p {
    margin: 0;
    color: #2c3e50;
    line-height: 1.6;
    font-size: 0.95rem;
}

.dividendos-legal-content strong {
    color: #27ae60; /* Verde dinheiro */
    font-weight: 600;
}

/* Detalhes dos Cálculos - Dividendos */
.dividendos-calculo-detalhe {
    background: #fff8e1; /* Fundo dourado suave */
    border: 1px solid #f1c40f; /* Dourado riqueza */
    border-radius: 10px;
    padding: 1.2rem;
    margin-top: 0.5rem;
    width: 100%;
}

.dividendos-calculo-detalhe p {
    font-family: 'Courier New', monospace;
    color: #f39c12; /* Dourado escuro */
    font-size: 0.9rem;
    margin: 0.4rem 0;
    line-height: 1.5;
}

.dividendos-calculo-detalhe p:first-child {
    font-weight: bold;
    color: #e67e22; /* Dourado mais escuro */
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-family: inherit;
}

.dividendos-calculo-detalhe p strong {
    color: #e67e22; /* Dourado mais escuro */
    font-weight: bold;
}

.dividendos-calculo-detalhe small {
    color: #f39c12; /* Dourado escuro */
    font-style: italic;
    font-size: 0.8rem;
}

/* Footer da Explicação Legal - Dividendos */
.dividendos-legal-footer {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.dividendos-legal-footer p {
    margin: 0.5rem 0;
    color: #856404;
    font-size: 0.9rem;
    line-height: 1.5;
}

.dividendos-legal-footer p:first-child {
    font-weight: 600;
    color: #854d0e;
}

.dividendos-legal-footer strong {
    color: #854d0e;
}

/* ===================================
   EXEMPLOS E AJUDA DIVIDENDOS - FINANCEIRO
   ================================== */
.dividendos-examples {
    text-align: center;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.dividendos-examples.hidden {
    display: none;
}

.dividendos-examples p {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.dividendos-example-btn {
    background: #e8f5e8; /* Verde claro financeiro */
    border: 2px solid #27ae60; /* Verde dinheiro */
    color: #1e8449; /* Verde escuro */
    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;
}

.dividendos-example-btn:hover {
    background: #27ae60; /* Verde dinheiro */
    color: white;
    transform: translateY(-2px);
}

.dividendos-help {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fff3cd;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    transition: all 0.3s ease;
}

.dividendos-help.hidden {
    display: none;
}

/* ===================================
   CONTEÚDO EDUCACIONAL DIVIDENDOS - FINANCEIRO
   ================================== */
.dividendos-educational-content {
    margin-top: 3rem;
}

.dividendos-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;
}

.dividendos-content-block h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 3px solid #27ae60; /* Verde dinheiro */
    padding-bottom: 0.5rem;
}

.dividendos-content-block h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    border-bottom: 3px solid #27ae60; /* Verde dinheiro */
    padding-bottom: 0.5rem;
}

.dividendos-content-block p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.dividendos-content-block strong {
    color: #27ae60; /* Verde dinheiro */
}

/* Formula Display Dividendos */
.dividendos-formula-display {
    background: #e8f5e8; /* Verde claro financeiro */
    border: 2px solid #27ae60; /* Verde dinheiro */
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.dividendos-formula-display h4 {
    color: #1e8449; /* Verde escuro financeiro */
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.dividendos-formula-display .formula p {
    margin: 0.5rem 0;
    font-family: 'Courier New', monospace;
    color: #1e8449; /* Verde escuro financeiro */
    font-weight: 600;
    font-size: 0.95rem;
}

/* Grids Exemplos e Dicas Dividendos */
.dividendos-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.dividendos-example-item {
    background: #e8f5e8; /* Verde claro 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;
}

.dividendos-example-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #27ae60; /* Verde dinheiro */
}

.dividendos-example-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #27ae60; /* Verde dinheiro */
}

.dividendos-example-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.dividendos-example-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
}

.dividendos-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.dividendos-tip-item {
    background: #f1f8e9;
    border: 1px solid #81c784;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.dividendos-tip-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #27ae60; /* Verde dinheiro */
}

.dividendos-tip-item h4 {
    color: #1e8449; /* Verde escuro financeiro */
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.dividendos-tip-item p {
    color: #1e8449; /* Verde escuro financeiro */
    margin: 0;
    font-size: 0.95rem;
}

/* Exemplo de Solução Dividendos */
.dividendos-example-solution {
    background: #e8f5e8; /* Verde claro financeiro */
    border: 2px solid #27ae60; /* Verde dinheiro */
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.dividendos-example-solution h4 {
    color: #1e8449; /* Verde escuro financeiro */
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.dividendos-solution-step {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #27ae60; /* Verde dinheiro */
}

.dividendos-solution-step h5 {
    color: #1e8449; /* Verde escuro financeiro */
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.dividendos-solution-step p {
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
    color: #444;
}

.dividendos-solution-final {
    background: #27ae60; /* Verde dinheiro */
    color: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

.dividendos-solution-final h5 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.dividendos-solution-final p {
    margin: 0;
    font-family: inherit;
}

/* ===================================
   FAQ - FINANCEIRO
   ================================== */
.faq-container {
    margin-top: 1.5rem;
}

.faq-item {
    background: white;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #27ae60; /* Verde dinheiro */
    box-shadow: 0 2px 10px rgba(39, 174, 96, 0.1);
}

.faq-question {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e0e6ed;
}

.faq-question:hover {
    background: #e8f5e8; /* Verde claro financeiro */
    color: #1e8449; /* Verde escuro */
}

.faq-answer {
    padding: 1.5rem;
    background: white;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: #444;
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ===================================
   REFERÊNCIAS - FINANCEIRO
   ================================== */
.referencias-container {
    margin-top: 1.5rem;
}

.referencias-lista {
    list-style: none;
    padding: 0;
}

.referencia-item {
    background: #f8f9fa;
    padding: 1rem;
    margin-bottom: 0.8rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60; /* Verde dinheiro */
    transition: all 0.3s ease;
}

.referencia-item:hover {
    background: #e8f5e8; /* Verde claro financeiro */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.1);
}

/* ===================================
   CREDIBILIDADE - FINANCEIRO
   ================================== */
.credibilidade-container {
    background: linear-gradient(135deg, #e8f5e8, #d5f4e6); /* Verde claro financeiro */
    border: 2px solid #27ae60; /* Verde dinheiro */
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.1);
}

.credibilidade-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.credibilidade-icon {
    font-size: 2.5rem;
    color: #f1c40f; /* Dourado riqueza */
}

.credibilidade-title {
    color: #1e8449; /* Verde escuro financeiro */
    font-size: 1.5rem;
    margin: 0;
    font-weight: 700;
}

.credibilidade-content {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.credibilidade-logo {
    color: #27ae60; /* Verde dinheiro */
    font-weight: 700;
    text-decoration: underline;
}

.credibilidade-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.credibilidade-badge {
    background: white;
    color: #1e8449; /* Verde escuro financeiro */
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 2px solid #27ae60; /* Verde dinheiro */
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.credibilidade-badge:hover {
    background: #27ae60; /* Verde dinheiro */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.2);
}

/* ===================================
   ANIMAÇÕES DIVIDENDOS
   ================================== */
@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 DIVIDENDOS
   ================================== */
@media (max-width: 1024px) {
    .dividendos-input-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .credibilidade-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .dividendos-header h1 {
        font-size: 2rem;
    }
    
    .dividendos-container {
        padding: 1rem;
    }
    
    .dividendos-dados-investimento {
        padding: 1rem;
    }
    
    .dividendos-input-group {
        min-width: auto;
    }
    
    .dividendos-calculate-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .dividendos-value {
        font-size: 1.8rem;
    }
    
    .dividendos-percent {
        font-size: 1.3rem;
    }
    
    .dividendos-examples-grid,
    .dividendos-tips-grid {
        grid-template-columns: 1fr;
    }
    
    .dividendos-detailed-explanation {
        padding: 1.5rem;
    }
    
    .dividendos-detailed-explanation h3 {
        font-size: 1.3rem;
    }
    
    .dividendos-legal-container {
        gap: 1.5rem;
    }
    
    .dividendos-legal-section {
        padding: 1rem;
    }
    
    .dividendos-legal-item {
        gap: 0.8rem;
        padding: 0.8rem;
    }
    
    .dividendos-legal-artigo {
        min-width: 180px;
        font-size: 0.85rem;
        padding: 0.7rem 0.9rem;
    }
    
    .dividendos-calculo-detalhe {
        padding: 1rem;
    }
    
    .dividendos-calculo-detalhe p {
        font-size: 0.85rem;
    }
    
    .credibilidade-header {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .dividendos-header h1 {
        font-size: 1.8rem;
    }
    
    .dividendos-container {
        padding: 0.8rem;
    }
    
    .dividendos-dados-investimento {
        padding: 0.8rem;
    }
    
    .dividendos-calculate-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .dividendos-value {
        font-size: 1.6rem;
    }
    
    .dividendos-percent {
        font-size: 1.2rem;
    }
    
    .dividendos-currency {
        font-size: 1.1rem;
    }
    
    .dividendos-item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .dividendos-example-icon {
        font-size: 2rem;
    }
    
    .dividendos-detailed-explanation {
        padding: 1rem;
    }
    
    .dividendos-detailed-explanation h3 {
        font-size: 1.2rem;
    }
    
    .dividendos-legal-section {
        padding: 0.8rem;
    }
    
    .dividendos-legal-section h4 {
        font-size: 1.1rem;
    }
    
    .dividendos-legal-artigo {
        min-width: 160px;
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
        align-self: center;
    }
    
    .dividendos-legal-content p {
        font-size: 0.9rem;
    }
    
    .dividendos-calculo-detalhe p {
        font-size: 0.8rem;
    }
    
    .dividendos-legal-footer {
        padding: 1rem;
    }
    
    .dividendos-legal-footer p {
        font-size: 0.85rem;
    }
    
    .credibilidade-container {
        padding: 1.5rem;
    }
    
    .credibilidade-title {
        font-size: 1.3rem;
    }
}