/* =========================
Design System – zap2CRM (APP)
========================= */

:root {
--bg: #f8fafc;
--card: #ffffff;
--border: #e5e7eb;
--text: #0f172a;
--muted: #64748b;

--primary: #0d6efd;
--success: #16a34a;
--warning: #f59e0b;
--danger: #dc2626;
}

* {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  }

body {
background: var(--bg);
color: var(--text);
}

html, body {
  height: 100%;
}

.app-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =========================
NAVBAR
========================= */
.navbar {
background: #ffffff !important;
border-bottom: 1px solid var(--border);
}

.navbar-brand {
font-weight: 600;
letter-spacing: .3px;
color: var(--text) !important;
}

/* =========================
CARDS
========================= */
.card {
background: var(--card);
border: 1px solid var(--border);
border-radius: 12px;
box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

/* =========================
TÍTULOS
========================= */
h3, h4, h5 {
font-weight: 600;
}

/* =========================
BOTÕES
========================= */
.btn {
border-radius: 10px;
font-weight: 500;
}

.btn-primary {
background: var(--primary);
border-color: var(--primary);
}

.btn-outline-secondary {
border-color: var(--border);
color: var(--text);
}

.btn-outline-secondary:hover {
background: #f1f5f9;
}

/* =========================
BADGES
========================= */
.badge {
font-weight: 500;
padding: .35em .6em;
}

/* =========================
TABELAS
========================= */
.table {
border-color: var(--border);
}

.table thead th {
background: #f8fafc;
font-weight: 600;
color: var(--muted);
text-transform: uppercase;
font-size: .75rem;
}

/* =========================
FORMULÁRIOS
========================= */
.form-control,
.form-select {
border-radius: 10px;
border-color: var(--border);
}

.form-control:focus,
.form-select:focus {
box-shadow: none;
border-color: var(--primary);
}

/* =========================
ALERTAS
========================= */
.alert {
border-radius: 10px;
}

/* =========================
LINKS
========================= */
a {
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

/* =========================
UTILITÁRIOS
========================= */
.text-muted {
color: var(--muted) !important;
}
