.taxas-honorarios-box {
    max-width: 520px;
    margin: 0 auto 45px;
    padding: 25px 30px;
    text-align: center;
    border-radius: 10px;
    background: linear-gradient(to right, #000529 1%, #002055 24%, #005db5 67%, #0074d9 100%);
    color: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.taxas-honorarios-box h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 24px;
}

.taxas-honorarios-box p {
    color: #fff;
    font-size: 18px;
}

.taxas-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
    text-align: left;
}

.taxa-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.taxa-card h3 {
    margin: 0;
    padding: 16px 20px;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    background: linear-gradient(to right, #000529 1%, #002055 24%, #005db5 67%, #0074d9 100%);
}

.taxa-card table {
    width: 100%;
    border-collapse: collapse;
}

.taxa-card table td {
    padding: 11px 15px;
    border-bottom: 1px solid #eee;
    color: #444;
    vertical-align: top;
}

.taxa-card table td:last-child {
    width: 130px;
    text-align: right;
    font-weight: 500;
    white-space: nowrap;
}

.taxa-card table tr:last-child td {
    border-bottom: none;
}

.taxa-card table tr.linha-total td {
    background: #f3f7fb;
    color: #000529;
    font-weight: 700;
}

@media (max-width: 991px) {
    .taxas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .taxas-honorarios-box {
        padding: 20px;
    }

    .taxa-card h3 {
        font-size: 16px;
    }

    .taxa-card table td {
        display: block;
        width: 100%;
        padding: 8px 12px;
    }

    .taxa-card table td:last-child {
        width: 100%;
        text-align: left;
        padding-top: 0;
    }
}