/* News Teaser (Padrão IRRF/Selic) */
.news-teaser {
    background: #fff;
    padding: 25px;
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow-card);
    margin-bottom: 30px;
}
.news-tag {
    background: #f59e0b;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}

/* Resultados Estilizados */
.results-container.single-result {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #dbeafe;
    text-align: center;
}
.res-value {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 10px;
}
.ir-badge {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Blocos de resultados secundários */
.sub-res-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    text-align: center;
}
.sub-res-box span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}
.sub-res-box strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Tabelas SEO */
.table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.data-table th, .data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-soft);
}
.data-table th {
    background: #f8fafc;
    font-weight: 700;
}

/* Rich Content */
.rich-content { margin-top: 40px; }
.rich-content h3 { margin-bottom: 20px; color: var(--text-dark); }
.rich-content p { margin-bottom: 15px; color: var(--text-muted); }