/* === Dashboard Sucesso do Cliente — Sigma === */

/* Reset e base */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background-color: #F5F5F5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
}

/* Header */
.dashboard-header {
    background: linear-gradient(135deg, #8B1A1A 0%, #A52A2A 100%);
    color: white;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dashboard-header .header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dashboard-header .header-brand h1 {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.dashboard-header .header-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Cards container */
.dashboard-grid {
    max-width: 1200px;
    margin: 8px auto;
    padding: 0 16px;
}

/* Seções */
.section-card {
    background: white;
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.section-title {
    font-size: 17px;
    font-weight: 600;
    color: #8B1A1A;
    margin-bottom: 8px;
    text-align: center;
}

/* Filtro */
.filter-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Animação nos cards */
.section-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Responsivo */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .dashboard-grid {
        padding: 0 12px;
    }
}
