/* assets/custom.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700&display=swap');

* {
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
    background-color: #f4f7fc;
    margin: 0;
}

/* Cards estatísticos */
.stat-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    padding: 1.2rem 1rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.stat-card h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #5a6874;
    margin-bottom: 12px;
}
.stat-card .value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e466e;
    margin: 8px 0;
}
.stat-card .sub {
    font-size: 0.75rem;
    color: #8895a1;
}

/* Containers principais */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Mapa */
.map-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    margin: 20px 0;
    border: 1px solid #eef2f6;
}

/* Gráficos */
.chart-card {
    background: white;
    border-radius: 24px;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
    height: 100%;
}
.chart-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.chart-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 4px solid #e63946;
    color: #1e2a36;
}

/* Dropdown customizado */
.custom-dropdown .Select-control {
    border-radius: 40px !important;
    border: 1px solid #dce5ec !important;
    box-shadow: none !important;
}
.custom-dropdown .Select-control:hover {
    border-color: #e63946 !important;
}

/* Footer */
.custom-footer {
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #e2e8f0;
    color: #6c7a89;
    font-size: 0.85rem;
}
