/* assets/css/anuidade-vale-pena.css */
/* CSS ISOLADO - Apenas para Calculadora Anuidade Vale a Pena */
/* CORES BANCÁRIAS APLICADAS - MANTENDO TODAS AS CLASSES FUNCIONAIS */

/* ===== VARIÁVEIS BANCÁRIAS ===== */
:root {
    --primary: #1e40af;          /* Azul bancário confiança */
    --secondary: #1e3a8a;        /* Azul escuro institucional */
    --accent: #f59e0b;           /* Dourado prosperidade */
    --light: #eff6ff;            /* Fundo azul bem claro */
    --gradient: linear-gradient(135deg, #1e40af, #1e3a8a);
    
    /* Cores complementares */
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;
    --info: #0ea5e9;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --border: #d1d5db;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
}

/* ===================================
   SEÇÃO DA CALCULADORA ANUIDADE
   ================================== */
.anuidade-calculator-section {
    margin-bottom: 3rem;
}

.anuidade-header {
    text-align: center;
    margin-bottom: 2rem;
}

.anuidade-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.anuidade-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.anuidade-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;
}

.anuidade-inputs h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* ===================================
   DADOS DO CARTÃO ANUIDADE - CORES BANCÁRIAS
   ================================== */
.anuidade-dados-cartao {
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.anuidade-input-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.anuidade-input-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.anuidade-input-group label {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

.anuidade-input-group input,
.anuidade-input-group select {
    padding: 0.8rem;
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.anuidade-input-group input:focus,
.anuidade-input-group select:focus {
    outline: none;
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.anuidade-money-input {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.anuidade-money-input:focus-within {
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.2);
}

.anuidade-money-input span {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1rem;
    font-weight: bold;
    font-size: 1rem;
}

.anuidade-money-input input {
    border: none;
    padding: 0.8rem;
    flex: 1;
    font-size: 1rem;
    background: transparent;
}

.anuidade-money-input input:focus {
    outline: none;
    transform: none;
    box-shadow: none;
}

/* ===================================
   BOTÃO CALCULAR ANUIDADE - CORES BANCÁRIAS
   ================================== */
.anuidade-calculate-section {
    text-align: center;
    margin: 2rem 0;
}

.anuidade-calculate-btn {
    background: var(--gradient);
    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(30, 64, 175, 0.3);
}

.anuidade-calculate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
    background: linear-gradient(135deg, var(--secondary) 0%, #1e3a8a 100%);
}

.anuidade-calculate-btn:active {
    transform: translateY(-1px);
}

/* ===================================
   RESULTADO DA ANÁLISE ANUIDADE - CORES BANCÁRIAS
   ================================== */
.anuidade-resultado {
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    animation: slideInUp 0.5s ease;
}

.anuidade-resultado h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.anuidade-resultado-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Veredicto Principal - CORES BANCÁRIAS */
.anuidade-veredicto {
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
    position: relative;
    overflow: hidden;
}

.anuidade-veredicto.negativo {
    background: #f44336;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}

.anuidade-veredicto.neutro {
    background: #ff9800;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.anuidade-status-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.anuidade-veredicto h4 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.anuidade-economia {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.anuidade-confianca {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Análise Financeira */
.anuidade-analise-financeira {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e0e6ed;
}

.anuidade-analise-financeira h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.anuidade-financial-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.anuidade-financial-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.anuidade-financial-item.custo {
    background: #ffebee;
    border-left: 4px solid #f44336;
}

.anuidade-financial-item.beneficio {
    background: #e8f5e8;
    border-left: 4px solid var(--success);
}

.anuidade-financial-item.resultado {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    font-weight: bold;
}

.anuidade-financial-item:hover {
    transform: translateX(5px);
}

.anuidade-financial-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.anuidade-financial-value {
    font-weight: bold;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
}

.anuidade-financial-item.custo .anuidade-financial-value {
    color: #d32f2f;
}

.anuidade-financial-item.beneficio .anuidade-financial-value {
    color: var(--success);
}

.anuidade-financial-item.resultado .anuidade-financial-value {
    color: #1976d2;
    font-size: 1.1rem;
}

/* Detalhamento dos Benefícios */
.anuidade-detalhamento {
    background: #f3e5f5;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #ba68c8;
}

.anuidade-detalhamento h4 {
    color: #7b1fa2;
    margin-bottom: 1rem;
    border-bottom: 2px solid #9c27b0;
    padding-bottom: 0.5rem;
}

.anuidade-beneficios-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.anuidade-beneficio-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #9c27b0;
    transition: all 0.3s ease;
}

.anuidade-beneficio-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.anuidade-beneficio-nome {
    font-weight: 600;
    color: #7b1fa2;
    font-size: 0.95rem;
}

.anuidade-beneficio-valor {
    font-weight: bold;
    font-family: 'Courier New', monospace;
    color: var(--success);
    font-size: 1rem;
}

/* Recomendações */
.anuidade-recomendacoes {
    background: #fff3cd;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #ffc107;
}

.anuidade-recomendacoes h4 {
    color: #856404;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 0.5rem;
}

.anuidade-recomendacoes-content p {
    margin: 0.5rem 0;
    color: #856404;
    font-size: 0.95rem;
}

/* ===================================
   EXPLICAÇÃO DO CÁLCULO ANUIDADE - CORES BANCÁRIAS
   ================================== */
.anuidade-explanation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 12px;
    animation: slideInUp 0.5s ease;
}

.anuidade-explanation h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.anuidade-step {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary);
}

.anuidade-step h4 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.anuidade-step p {
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
    color: #444;
}

/* ===================================
   EXEMPLOS E AJUDA ANUIDADE - CORES BANCÁRIAS
   ================================== */
.anuidade-examples {
    text-align: center;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.anuidade-examples.hidden {
    display: none;
}

.anuidade-examples p {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.anuidade-example-btn {
    background: var(--light);
    border: 2px solid var(--primary);
    color: var(--secondary);
    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;
}

.anuidade-example-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.anuidade-help {
    text-align: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fff3cd;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    transition: all 0.3s ease;
}

.anuidade-help.hidden {
    display: none;
}

/* ===================================
   CONTEÚDO EDUCACIONAL ANUIDADE - CORES BANCÁRIAS
   ================================== */
.anuidade-educational-content {
    margin-top: 3rem;
}

.anuidade-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;
}

.anuidade-content-block h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 0.5rem;
}

.anuidade-content-block p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.anuidade-content-block strong {
    color: var(--primary);
}

/* Formula Display Anuidade - CORES BANCÁRIAS */
.anuidade-formula-display {
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.anuidade-formula-display h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.anuidade-formula-display .formula p {
    margin: 0.5rem 0;
    font-family: 'Courier New', monospace;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Grids Exemplos e Dicas Anuidade - CORES BANCÁRIAS */
.anuidade-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.anuidade-example-item {
    background: var(--light);
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.anuidade-example-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.anuidade-example-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.anuidade-example-item h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.anuidade-example-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
}

.anuidade-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.anuidade-tip-item {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.anuidade-tip-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.anuidade-tip-item h4 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.anuidade-tip-item p {
    color: var(--secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Exemplo de Solução Anuidade - CORES BANCÁRIAS */
.anuidade-example-solution {
    background: var(--light);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.anuidade-example-solution h4 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.3rem;
}

.anuidade-solution-step {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.anuidade-solution-step h5 {
    color: var(--secondary);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.anuidade-solution-step p {
    margin: 0.3rem 0;
    font-family: 'Courier New', monospace;
    color: #444;
}

.anuidade-solution-final {
    background: var(--primary);
    color: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

.anuidade-solution-final h5 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.anuidade-solution-final p {
    margin: 0;
    font-family: inherit;
}

/* ===================================
   FAQ, CREDIBILIDADE E REFERÊNCIAS - PADRÃO BASE.CSS
   ================================== */
.content-block {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light);
    transition: all 0.3s ease;
}

.content-block:hover {
    box-shadow: 0 10px 35px rgba(30, 64, 175, 0.1);
    transform: translateY(-2px);
}

.content-block h3 {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    border-bottom: 4px solid var(--primary);
    padding-bottom: 0.8rem;
    font-weight: 600;
}

/* FAQ Styles */
.faq-container {
    margin-top: 1rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.1);
}

.faq-question {
    background: var(--light);
    color: var(--secondary);
    padding: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.faq-question:hover {
    background: #dbeafe;
    color: var(--primary);
}

.faq-question::marker {
    display: none;
}

.faq-question::before {
    content: "❓";
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.faq-item[open] .faq-question {
    background: var(--primary);
    color: white;
    border-left-color: var(--accent);
}

.faq-item[open] .faq-question::before {
    content: "✅";
}

.faq-answer {
    padding: 1.5rem;
    background: var(--white);
}

.faq-answer p {
    margin: 0.8rem 0;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-answer p:first-child {
    margin-top: 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--primary);
    font-weight: 600;
}

/* Credibilidade Styles */
.credibilidade-container {
    background: linear-gradient(135deg, var(--light) 0%, #dbeafe 100%);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 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: var(--accent);
}

.credibilidade-title {
    color: var(--secondary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.credibilidade-content {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.credibilidade-logo {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.credibilidade-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.credibilidade-badge {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.2);
    transition: all 0.3s ease;
}

.credibilidade-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

/* Referências Styles */
.referencias-container {
    margin-top: 1rem;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
}

.referencias-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.referencia-item {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 6px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 6px rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
}

.referencia-item:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
}

.referencia-item:last-child {
    margin-bottom: 0;
}

.referencia-item em {
    color: var(--secondary);
    font-style: italic;
    font-weight: 500;
}

/* ===================================
   ANIMAÇÕES ANUIDADE
   ================================== */
@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);
    }
}

/* ===================================
   FUNDAMENTAÇÃO LEGAL ANUIDADE - CORES BANCÁRIAS
   ================================== */
.anuidade-detailed-explanation {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border: 2px solid #6c757d;
    border-radius: 12px;
    animation: slideInUp 0.5s ease;
}

.anuidade-detailed-explanation h3 {
    color: #495057;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.4rem;
}

.anuidade-legal-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.anuidade-legal-section {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.anuidade-legal-section h4 {
    background: #6c757d;
    color: white;
    margin: 0;
    padding: 1rem;
    font-size: 1.1rem;
}

.anuidade-legal-item {
    padding: 1.5rem;
}

.anuidade-legal-artigo {
    background: #e9ecef;
    color: #495057;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    font-weight: 600;
    border-left: 4px solid var(--primary);
}

.anuidade-legal-content p {
    margin-bottom: 0.8rem;
    color: #212529;
    line-height: 1.6;
}

.anuidade-calculo-detalhe {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.anuidade-calculo-detalhe p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
    color: #495057;
}

.anuidade-calculo-detalhe p strong {
    color: var(--primary);
}

.anuidade-legal-footer {
    background: #e9ecef;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    text-align: center;
}

.anuidade-legal-footer p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.anuidade-legal-footer strong {
    color: #495057;
}

/* ===================================
   RESPONSIVIDADE ANUIDADE
   ================================== */
@media (max-width: 1024px) {
    .anuidade-input-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .credibilidade-badges {
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .anuidade-header h1 {
        font-size: 2rem;
    }
    
    .anuidade-container {
        padding: 1rem;
    }
    
    .anuidade-dados-cartao {
        padding: 1rem;
    }
    
    .anuidade-input-group {
        min-width: auto;
    }
    
    .anuidade-calculate-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .anuidade-financial-grid {
        gap: 0.6rem;
    }
    
    .anuidade-financial-item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .anuidade-examples-grid,
    .anuidade-tips-grid {
        grid-template-columns: 1fr;
    }
    
    .content-block {
        padding: 1.5rem;
    }

    .credibilidade-header {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .anuidade-header h1 {
        font-size: 1.8rem;
    }
    
    .anuidade-container {
        padding: 0.8rem;
    }
    
    .anuidade-dados-cartao {
        padding: 0.8rem;
    }
    
    .anuidade-calculate-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .anuidade-status-icon {
        font-size: 2.5rem;
    }
    
    .anuidade-veredicto h4 {
        font-size: 1.2rem;
    }
    
    .anuidade-financial-item {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .anuidade-example-icon {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 1rem;
    }

    .credibilidade-container {
        padding: 1.5rem;
    }

    .credibilidade-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .credibilidade-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}