/* assets/css/tesouro-selic-ipca.css */
/* CSS ISOLADO - Apenas para Calculadora de Tesouro Direto */
/* 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.tesouro-calculator-section .tesouro-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 */
.tesouro-calculator-section {
    --primary: #27ae60; /* Verde dinheiro */
    --primary-financeiro: #27ae60;
}

/* ===================================
   SEÇÃO DA CALCULADORA TESOURO
   ================================== */
.tesouro-calculator-section {
    margin-bottom: 3rem;
}

.tesouro-header {
    text-align: center;
    margin-bottom: 2rem;
}

.tesouro-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.tesouro-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.tesouro-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;
}

.tesouro-inputs h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ===================================
   SISTEMA DE ABAS TESOURO - FINANCEIRO
   ================================== */
.tesouro-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e0e6ed;
    padding-bottom: 1rem;
}

.tesouro-tab-btn {
    background: #f8f9fa;
    border: 2px solid #e0e6ed;
    color: #5a6c7d;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 130px;
}

.tesouro-tab-btn:hover {
    background: #27ae60; /* Verde dinheiro */
    color: white;
    border-color: #27ae60;
    transform: translateY(-2px);
}

.tesouro-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 TESOURO
   ================================== */
.tesouro-tab-content {
    display: none;
}

.tesouro-tab-content.active {
    display: block;
    animation: fadeInTesouroTab 0.3s ease;
}

@keyframes fadeInTesouroTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   DADOS BÁSICOS TESOURO - FINANCEIRO
   ================================== */
.tesouro-dados-basicos {
    background: #e8f5e8; /* Verde claro financeiro */
    border: 2px solid #27ae60; /* Verde dinheiro */
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.tesouro-dados-basicos.ipca-style {
    background: #fff8e1; /* Fundo dourado suave */
    border-color: #f1c40f; /* Dourado riqueza */
}

.tesouro-dados-basicos.prefixado-style {
    background: #e8f5e8; /* Verde claro financeiro */
    border-color: #2ecc71; /* Verde crescimento */
}

.tesouro-titulo-tipo {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e6ed;
}

.tesouro-titulo-tipo h4 {
    color: #27ae60; /* Verde dinheiro */
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.ipca-style .tesouro-titulo-tipo h4 {
    color: #f39c12; /* Dourado escuro */
}

.prefixado-style .tesouro-titulo-tipo h4 {
    color: #2ecc71; /* Verde crescimento */
}

.tesouro-titulo-tipo p {
    color: #5a6c7d;
    margin: 0;
    font-size: 0.9rem;
}

.tesouro-input-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tesouro-input-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tesouro-input-group label {
    font-weight: 600;
    color: #27ae60; /* Verde dinheiro */
    font-size: 0.95rem;
}

.ipca-style .tesouro-input-group label {
    color: #f39c12; /* Dourado escuro */
}

.prefixado-style .tesouro-input-group label {
    color: #2ecc71; /* Verde crescimento */
}

.tesouro-input-group input,
.tesouro-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;
}

.ipca-style .tesouro-input-group input,
.ipca-style .tesouro-input-group select {
    border-color: #f1c40f; /* Dourado riqueza */
}

.prefixado-style .tesouro-input-group input,
.prefixado-style .tesouro-input-group select {
    border-color: #2ecc71; /* Verde crescimento */
}

.tesouro-input-group input:focus,
.tesouro-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);
}

.ipca-style .tesouro-input-group input:focus,
.ipca-style .tesouro-input-group select:focus {
    border-color: #f39c12; /* Dourado escuro */
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.2);
}

.prefixado-style .tesouro-input-group input:focus,
.prefixado-style .tesouro-input-group select:focus {
    border-color: #1e8449; /* Verde escuro */
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
}

.tesouro-money-input,
.tesouro-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;
}

.ipca-style .tesouro-money-input,
.ipca-style .tesouro-percent-input {
    border-color: #f1c40f; /* Dourado riqueza */
}

.prefixado-style .tesouro-money-input,
.prefixado-style .tesouro-percent-input {
    border-color: #2ecc71; /* Verde crescimento */
}

.tesouro-money-input:focus-within,
.tesouro-percent-input:focus-within {
    border-color: #2ecc71; /* Verde crescimento */
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.ipca-style .tesouro-money-input:focus-within,
.ipca-style .tesouro-percent-input:focus-within {
    border-color: #f39c12; /* Dourado escuro */
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.2);
}

.prefixado-style .tesouro-money-input:focus-within,
.prefixado-style .tesouro-percent-input:focus-within {
    border-color: #1e8449; /* Verde escuro */
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
}

.tesouro-money-input span,
.tesouro-percent-input span {
    background: #27ae60; /* Verde dinheiro */
    color: white;
    padding: 0.8rem 1rem;
    font-weight: bold;
    font-size: 1rem;
}

.ipca-style .tesouro-money-input span,
.ipca-style .tesouro-percent-input span {
    background: #f1c40f; /* Dourado riqueza */
}

.prefixado-style .tesouro-money-input span,
.prefixado-style .tesouro-percent-input span {
    background: #2ecc71; /* Verde crescimento */
}

.tesouro-percent-input span {
    order: 2;
}

.tesouro-money-input input,
.tesouro-percent-input input {
    border: none;
    padding: 0.8rem;
    flex: 1;
    font-size: 1rem;
    background: transparent;
}

.tesouro-money-input input:focus,
.tesouro-percent-input input:focus {
    outline: none;
    transform: none;
    box-shadow: none;
}

/* ===================================
   BOTÃO CALCULAR TESOURO - FINANCEIRO
   ================================== */
.tesouro-calculate-section {
    text-align: center;
    margin: 2rem 0;
}

.tesouro-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);
}

.tesouro-calculate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.tesouro-calculate-btn:active {
    transform: translateY(-1px);
}

/* ===================================
   RESULTADO TESOURO - FINANCEIRO
   ================================== */
.tesouro-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;
}

.tesouro-resultado h3 {
    color: #1e8449; /* Verde escuro financeiro */
    margin-bottom: 1.5rem;
    text-align: center;
}

.tesouro-resultado-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Cards de Resultado */
.tesouro-resultado-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e0e6ed;
    transition: all 0.3s ease;
}

.tesouro-resultado-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.15);
}

.tesouro-resultado-card.principal {
    background: #27ae60; /* Verde dinheiro */
    color: white;
    border-color: #2ecc71; /* Verde crescimento */
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.tesouro-resultado-card h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.tesouro-resultado-card.principal h4 {
    color: white;
    opacity: 1;
}

.tesouro-valor-principal,
.tesouro-valor-secundario {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
}

.tesouro-currency {
    font-size: 1.3rem;
    opacity: 0.8;
}

.tesouro-value {
    font-size: 1.8rem;
    font-weight: bold;
    font-family: 'Courier New', monospace;
}

.tesouro-valor-secundario .tesouro-value {
    font-size: 1.5rem;
}

.tesouro-tipo-info,
.tesouro-percent-info,
.tesouro-aliquota-info {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 600;
}

.tesouro-resultado-card.principal .tesouro-tipo-info {
    color: white;
    opacity: 1;
}

/* ===================================
   DETALHAMENTO TESOURO - FINANCEIRO
   ================================== */
.tesouro-detalhamento {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e0e6ed;
}

.tesouro-detalhamento h4 {
    color: #1e8449; /* Verde escuro financeiro */
    margin-bottom: 1rem;
    border-bottom: 2px solid #27ae60; /* Verde dinheiro */
    padding-bottom: 0.5rem;
}

.tesouro-item-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tesouro-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;
}

.tesouro-item:hover {
    transform: translateX(5px);
    background: #d5f4e6; /* Verde mais claro */
}

.tesouro-item.destaque {
    background: #27ae60; /* Verde dinheiro */
    color: white;
    border-left-color: #2ecc71; /* Verde crescimento */
    font-weight: bold;
}

.tesouro-item.destaque:hover {
    background: #2ecc71; /* Verde crescimento */
}

.tesouro-item-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.tesouro-item.destaque .tesouro-item-label {
    color: white;
}

.tesouro-item-value {
    font-weight: bold;
    color: #1e8449; /* Verde escuro financeiro */
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.tesouro-item.destaque .tesouro-item-value {
    color: white;
}

/* ===================================
   COMPARADOR TESOURO - FINANCEIRO
   ================================== */
.tesouro-comparador-container {
    background: #fff8e1; /* Fundo dourado suave */
    border: 2px solid #f1c40f; /* Dourado riqueza */
    border-radius: 12px;
    padding: 1.5rem;
}

.tesouro-comparador-container h4 {
    color: #f39c12; /* Dourado escuro */
    margin-bottom: 1rem;
    text-align: center;
}

.tesouro-comparador-inputs {
    margin: 1.5rem 0;
}

.tesouro-comparador-resultado {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e0e6ed;
}

.tesouro-comparador-resultado h4 {
    color: #f39c12; /* Dourado escuro */
    margin-bottom: 1rem;
    text-align: center;
}

/* ===================================
   TABELAS TESOURO - FINANCEIRO
   ================================== */
.tesouro-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tesouro-table th {
    background: #27ae60; /* Verde dinheiro */
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.tesouro-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #e0e6ed;
}

.tesouro-table tr:hover {
    background: #f5f5f5;
}

.tesouro-table .melhor {
    background: #e8f5e8; /* Verde claro financeiro */
    font-weight: bold;
    color: #1e8449; /* Verde escuro financeiro */
}

/* ===================================
   EXEMPLOS E AJUDA TESOURO - FINANCEIRO
   ================================== */
.tesouro-examples {
    text-align: center;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.tesouro-examples.hidden {
    display: none;
}

.tesouro-examples p {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.tesouro-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;
}

.tesouro-example-btn:hover {
    background: #27ae60; /* Verde dinheiro */
    color: white;
    transform: translateY(-2px);
}

.tesouro-help {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fff3cd;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    transition: all 0.3s ease;
}

.tesouro-help.hidden {
    display: none;
}

/* ===================================
   EXPLICAÇÃO TESOURO - PRESERVAR CARDS DINÂMICOS
   ================================== */
.tesouro-explanation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #e8f5e8; /* Verde claro financeiro */
    border: 2px solid #27ae60; /* Verde dinheiro */
    border-radius: 12px;
    animation: slideInUp 0.5s ease;
}

.tesouro-explanation h3 {
    color: #1e8449; /* Verde escuro financeiro */
    margin-bottom: 1rem;
    text-align: center;
}

.tesouro-step {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #27ae60; /* Verde dinheiro */
}

.tesouro-step h4 {
    color: #1e8449; /* Verde escuro financeiro */
    margin-bottom: 0.5rem;
}

.tesouro-step p {
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
    color: #444;
}

/* ===================================
   CONTEÚDO EDUCACIONAL TESOURO - FINANCEIRO
   ================================== */
.tesouro-educational-content {
    margin-top: 3rem;
}

.tesouro-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;
}

.tesouro-content-block h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 3px solid #27ae60; /* Verde dinheiro */
    padding-bottom: 0.5rem;
}

.tesouro-content-block h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    border-bottom: 3px solid #27ae60; /* Verde dinheiro */
    padding-bottom: 0.5rem;
}

.tesouro-content-block p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.tesouro-content-block strong {
    color: #27ae60; /* Verde dinheiro */
}

/* Formula Display Tesouro */
.tesouro-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;
}

.tesouro-formula-display h4 {
    color: #1e8449; /* Verde escuro financeiro */
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tesouro-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 Tesouro */
.tesouro-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tesouro-example-item {
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.tesouro-example-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tesouro-example-item.selic {
    background: #e8f5e8; /* Verde claro financeiro */
    border-color: #27ae60; /* Verde dinheiro */
}

.tesouro-example-item.selic:hover {
    border-color: #2ecc71; /* Verde crescimento */
}

.tesouro-example-item.ipca {
    background: #fff8e1; /* Fundo dourado suave */
    border-color: #f1c40f; /* Dourado riqueza */
}

.tesouro-example-item.ipca:hover {
    border-color: #f39c12; /* Dourado escuro */
}

.tesouro-example-item.prefixado {
    background: #e8f5e8; /* Verde claro financeiro */
    border-color: #2ecc71; /* Verde crescimento */
}

.tesouro-example-item.prefixado:hover {
    border-color: #27ae60; /* Verde dinheiro */
}

.tesouro-example-item.seguranca {
    background: #fff8e1; /* Fundo dourado suave */
    border-color: #f1c40f; /* Dourado riqueza */
}

.tesouro-example-item.seguranca:hover {
    border-color: #f39c12; /* Dourado escuro */
}

.tesouro-example-item.custos {
    background: #fce4ec;
    border-color: #c2185b;
}

.tesouro-example-item.custos:hover {
    border-color: #880e4f;
}

.tesouro-example-item.liquidez {
    background: #e0f2f1;
    border-color: #00796b;
}

.tesouro-example-item.liquidez:hover {
    border-color: #004d40;
}

.tesouro-example-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tesouro-example-item.selic .tesouro-example-icon {
    color: #27ae60; /* Verde dinheiro */
}

.tesouro-example-item.ipca .tesouro-example-icon {
    color: #f1c40f; /* Dourado riqueza */
}

.tesouro-example-item.prefixado .tesouro-example-icon {
    color: #2ecc71; /* Verde crescimento */
}

.tesouro-example-item.seguranca .tesouro-example-icon {
    color: #f39c12; /* Dourado escuro */
}

.tesouro-example-item.custos .tesouro-example-icon {
    color: #c2185b;
}

.tesouro-example-item.liquidez .tesouro-example-icon {
    color: #00796b;
}

.tesouro-example-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tesouro-example-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
}

.tesouro-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.tesouro-tip-item {
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.tesouro-tip-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tesouro-tip-item.passo {
    background: #e8f5e8; /* Verde claro financeiro */
    border: 1px solid #27ae60; /* Verde dinheiro */
}

.tesouro-tip-item.tributacao {
    background: #fff8e1; /* Fundo dourado suave */
    border: 1px solid #f1c40f; /* Dourado riqueza */
}

.tesouro-tip-item.custos {
    background: #fce4ec;
    border: 1px solid #c2185b;
}

.tesouro-tip-item.estrategia {
    background: #f3e5f5;
    border: 1px solid #9c27b0;
}

.tesouro-tip-item.comparacao {
    background: #e8f5e8; /* Verde claro financeiro */
    border: 1px solid #2ecc71; /* Verde crescimento */
}

.tesouro-tip-item.calculator {
    background: #e0f2f1;
    border: 1px solid #00796b;
}

.tesouro-tip-item h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tesouro-tip-item.passo h4 {
    color: #1e8449; /* Verde escuro financeiro */
}

.tesouro-tip-item.tributacao h4 {
    color: #f39c12; /* Dourado escuro */
}

.tesouro-tip-item.custos h4 {
    color: #880e4f;
}

.tesouro-tip-item.estrategia h4 {
    color: #4a148c;
}

.tesouro-tip-item.comparacao h4 {
    color: #2ecc71; /* Verde crescimento */
}

.tesouro-tip-item.calculator h4 {
    color: #004d40;
}

.tesouro-tip-item p {
    margin: 0;
    font-size: 0.95rem;
}

/* ===================================
   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);
}

/* Exemplo de Solução Tesouro */
.tesouro-example-solution {
    background: #e8f5e8; /* Verde claro financeiro */
    border: 2px solid #27ae60; /* Verde dinheiro */
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.tesouro-example-solution h4 {
    color: #1e8449; /* Verde escuro financeiro */
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.tesouro-solution-step {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #27ae60; /* Verde dinheiro */
}

.tesouro-solution-step.selic-bg {
    border-left-color: #27ae60; /* Verde dinheiro */
    background: #e8f5e8; /* Verde claro financeiro */
}

.tesouro-solution-step.ipca-bg {
    border-left-color: #f1c40f; /* Dourado riqueza */
    background: #fff8e1; /* Fundo dourado suave */
}

.tesouro-solution-step.prefixado-bg {
    border-left-color: #2ecc71; /* Verde crescimento */
    background: #e8f5e8; /* Verde claro financeiro */
}

.tesouro-solution-step h5 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.tesouro-solution-step.selic-bg h5 {
    color: #1e8449; /* Verde escuro financeiro */
}

.tesouro-solution-step.ipca-bg h5 {
    color: #f39c12; /* Dourado escuro */
}

.tesouro-solution-step.prefixado-bg h5 {
    color: #2ecc71; /* Verde crescimento */
}

.tesouro-solution-step p {
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
    color: #444;
}

.tesouro-solution-final {
    background: #27ae60; /* Verde dinheiro */
    color: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

.tesouro-solution-final h5 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.tesouro-solution-final p {
    margin: 0;
    font-family: inherit;
}

/* ===================================
   ANIMAÇÕES TESOURO
   ================================== */
@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 TESOURO
   ================================== */
@media (max-width: 1024px) {
    .tesouro-input-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tesouro-resultado-grid {
        grid-template-columns: 1fr;
    }
    
    .credibilidade-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .tesouro-header h1 {
        font-size: 2rem;
    }
    
    .tesouro-container {
        padding: 1rem;
    }
    
    .tesouro-dados-basicos,
    .tesouro-comparador-container {
        padding: 1rem;
    }
    
    .tesouro-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tesouro-tab-btn {
        width: 200px;
    }
    
    .tesouro-input-group {
        min-width: auto;
    }
    
    .tesouro-calculate-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .tesouro-value {
        font-size: 1.5rem;
    }
    
    .tesouro-valor-secundario .tesouro-value {
        font-size: 1.3rem;
    }
    
    .tesouro-examples-grid,
    .tesouro-tips-grid {
        grid-template-columns: 1fr;
    }
    
    .credibilidade-header {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .tesouro-header h1 {
        font-size: 1.8rem;
    }
    
    .tesouro-container {
        padding: 0.8rem;
    }
    
    .tesouro-tab-btn {
        width: 180px;
        font-size: 0.85rem;
    }
    
    .tesouro-calculate-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .tesouro-value {
        font-size: 1.3rem;
    }
    
    .tesouro-currency {
        font-size: 1.1rem;
    }
    
    .tesouro-example-icon {
        font-size: 2rem;
    }
    
    .credibilidade-container {
        padding: 1.5rem;
    }
    
    .credibilidade-title {
        font-size: 1.3rem;
    }
}

/* ===================================
   FUNDAMENTAÇÃO LEGAL - TESOURO DIRETO
   ================================== */

.tesouro-legal-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 1.5rem 0;
}

.tesouro-legal-section {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(25, 118, 210, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.tesouro-legal-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tesouro-legal-section h4 {
    color: #2ecc71;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 3px solid rgba(25, 118, 210, 0.1);
    padding-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.tesouro-legal-item {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.02) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
    border-left: 4px solid #2ecc71;
}

.tesouro-legal-artigo {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(25, 118, 210, 0.3);
}

.tesouro-legal-content {
    color: #2c3e50;
    line-height: 1.6;
}

.tesouro-legal-content > p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #34495e;
}

.tesouro-legal-content strong {
    color: #2ecc71;
    font-weight: 600;
}

.tesouro-calculo-detalhe {
    background: rgba(25, 118, 210, 0.05);
    border: 1px solid rgba(25, 118, 210, 0.1);
    border-radius: 8px;
    padding: 1.2rem;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.tesouro-calculo-detalhe p {
    margin: 0.5rem 0;
    color: #2c3e50;
    line-height: 1.5;
}

.tesouro-calculo-detalhe strong {
    color: #2ecc71;
    font-weight: 600;
}

.tesouro-legal-footer {
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    border: 2px solid rgba(25, 118, 210, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.tesouro-legal-footer p {
    margin: 0.8rem 0;
    color: #2ecc71;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tesouro-legal-footer strong {
    color: #2ecc71;
    font-weight: 600;
}

/* ===================================
   RESPONSIVO - TESOURO LEGAL
   ================================== */

@media (max-width: 768px) {
    .tesouro-legal-container {
        gap: 1.5rem;
        margin: 1rem 0;
    }
    
    .tesouro-legal-section {
        padding: 1.2rem;
    }
    
    .tesouro-legal-section h4 {
        font-size: 1.1rem;
    }
    
    .tesouro-legal-item {
        padding: 1.2rem;
    }
    
    .tesouro-legal-artigo {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .tesouro-calculo-detalhe {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .tesouro-legal-footer {
        padding: 1.2rem;
    }
    
    .tesouro-legal-footer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tesouro-legal-section {
        padding: 1rem;
    }
    
    .tesouro-legal-item {
        padding: 1rem;
    }
    
    .tesouro-calculo-detalhe {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}