.kpi-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .kpi-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    width: 240px; /* mantém largura padrão */
    height: 140px; /* aumenta altura de forma equilibrada */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .kpi-card:hover {
    transform: translateY(-4px);
  }
  
  .kpi-icon {
    font-size: 28px;
    color: #3b82f6;
    margin-bottom: 8px;
  }
  
  .kpi-title {
    font-size: 14px;
    color: #4b5563;
    font-weight: 600;
    margin-bottom: 4px;
    text-align: center;
  }
  
  .kpi-value {
    font-size: 20px;
    color: #111827;
    font-weight: bold;
  }
  