:root {
    --primary-color: #000000;
    --secondary-color: #fdeb95;
    --accent-color: #ff6a2f;
    --dark-bg: #3b3b3b;
    --light-bg: #e8e8e8;
    --text-light: #ffffff;
    --text-dark: #000000;
}

.active {
    color:  var(--secondary-color) !important;
}
/* Hero Compre Agora */
.hero-taxas {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    color: rgb(0, 0, 0);
    
}

.hero-taxas h1 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0.5rem;
}

.hero-taxas .lead {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Simulador */
.simulador-taxas .card {
    border-radius: 15px;
}

.simulador-taxas .form-control, 
.simulador-taxas .form-select {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.simulador-taxas .form-control:focus, 
.simulador-taxas .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(253, 235, 149, 0.25);
}

.simulador-taxas .btn-group .btn {
    padding: 0.75rem;
}

.result-card {
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Comparativo */
.comparativo-taxas table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.comparativo-taxas th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparativo-taxas td, .comparativo-taxas th {
    padding: 1rem;
    text-align: center;
    vertical-align: middle;
}

.comparativo-taxas tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Depoimentos */
.depoimentos-taxas .depoimento-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.depoimentos-taxas .depoimento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* CTA */
.cta-taxas {
    background: linear-gradient(135deg, #3b3b3b 0%, #000000 100%);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-taxas h1 {
        font-size: 2.2rem;
    }
    
    .hero-taxas .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-taxas {
        text-align: center;
        padding: 2rem 0;
    }
    
   
    
    .simulador-taxas .card {
        margin-bottom: 1.5rem;
    }
    
    .comparativo-taxas table {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-taxas h1 {
        font-size: 1.8rem;
    }
    
    .comparativo-taxas table {
        font-size: 0.8rem;
    }
}