/* Estilos compartilhados — atualize aqui e todos os clientes recebem */

* { box-sizing: border-box; }

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

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}

.dashboard-header h1 {
  font-size: 1.4rem;
  margin: 0;
}

main {
  padding: 1.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.kpis-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.painel {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.painel h2 {
  margin-top: 0;
  font-size: 1.05rem;
  color: #444;
}

.campanhas-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.campanhas-header span {
  background: #f0f0f0;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.produto-pill {
  background: #fff;
  border: 2px solid #ccc;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.9rem;
}

footer {
  text-align: center;
  padding: 1.5rem;
  color: #888;
  font-size: 0.8rem;
}
