/* ========== LC REPRESENTAÇÕES - DESIGN SYSTEM ========== */
:root {
  --lc-azul: #0065B3;
  --lc-verde: #4CAB3F;
  --lc-cinza: #2F2F2F;
  --primary-color: #0065B3;
  --primary-dark: #00508a;
  --secondary-color: #4CAB3F;
  --text-primary: #2F2F2F;
  --text-muted: #666666;
  --border: #e0e0e0;
  --border-focus: #0065B3;
  --shadow-primary: 0 0 0 4px rgba(0, 101, 179, 0.2);
  --gradient-primary: linear-gradient(135deg, #0065B3 0%, #4CAB3F 100%);
  --gradient-bg: linear-gradient(135deg, #0065B3 0%, #4CAB3F 100%);
  --white: #ffffff;
  --danger: #dc3545;
  --success: #28a745;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f5f7fa;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.5;
}

/* Buttons */
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 101, 179, 0.3);
}

.btn-secondary {
  background: var(--lc-cinza);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 47, 47, 0.3);
}

/* Cards */
.card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Inputs */
input, select, textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: var(--shadow-primary);
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--primary-dark); }

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
th {
  background: rgba(0, 101, 179, 0.08);
  color: var(--lc-cinza);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
