/* ========================================= */
/* PÁGINA DE SAFRA (INTELLIGENCE CARDS)      */
/* ========================================= */

.aiba-safra {
    background-color: #F5F7FA; /* Fundo levemente tech/corporate */
}

/* --- Filtros --- */
.saf-filters {
    padding: 30px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    background: #fff;
}
.saf-filter-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-nota);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.saf-filterbar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}
/* Reutilizando estilo .pill do template anterior */
.saf-filterbar .pill {
    padding: 8px 16px;
    border-radius: 20px;
    background: #eee;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    transition: all 0.2s;
}
.saf-filterbar .pill.is-active {
    background: var(--color-principal); /* Verde AIBA */
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 123, 78, 0.2);
}

/* --- Grid Layout --- */
.saf-grid-section {
    padding: 60px 0 100px;
}
.saf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Grid Responsivo Inteligente */
    gap: 24px;
}

/* --- Card Design --- */
.saf-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}
.saf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: rgba(0, 123, 78, 0.2);
}

/* Header do Card */
.saf-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.saf-badge-ciclo {
    background: #E8F5E9;
    color: var(--color-principal);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
}
.saf-date-ref {
    font-size: 12px;
    color: var(--color-nota);
    font-weight: 600;
    text-transform: uppercase;
}

/* Corpo (Big Numbers) */
.saf-card-body {
    flex-grow: 1;
    margin-bottom: 24px;
}
.saf-big-number {
    font-size: 32px;
    font-weight: 800;
    color: #1d1d1f; /* Quase preto */
    line-height: 1.1;
    letter-spacing: -0.5px;
}
.saf-big-label {
    font-size: 14px;
    color: var(--color-nota);
    margin-top: 4px;
    font-weight: 500;
}
.saf-title {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

/* Footer (Ação) */
.saf-card-footer {
    margin-top: auto;
}
.saf-btn-download {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 16px;
    background: var(--color-principal);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}
.saf-btn-download:hover {
    background: #00603d; /* Verde mais escuro */
}
.saf-meta-file {
    text-align: center;
    font-size: 11px;
    color: var(--color-nota);
    margin-top: 8px;
}