/* ==========================================================================
   LOCK CAR CRM - GESTÃO DE VENDEDORES & EQUIPE COMERCIAL
   ========================================================================== */

.sellers-full-container {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  overflow-y: auto;
}

.sellers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Sellers Team Grid */
.sellers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.seller-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}

.seller-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.seller-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.seller-avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.seller-info-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.seller-name {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.seller-role {
  font-size: 12px;
  color: var(--color-text-muted);
}

.seller-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  background: var(--color-bg-hover);
  border-radius: var(--radius-md);
  padding: 10px;
  text-align: center;
}

.seller-stat-item {
  display: flex;
  flex-direction: column;
}

.stat-lbl {
  font-size: 10.5px;
  color: var(--color-text-light);
  font-weight: 600;
  text-transform: uppercase;
}

.stat-val {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
}

/* Goal Progress Bar */
.seller-goal-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.goal-labels-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--color-text-muted);
}

.goal-progress-track {
  height: 8px;
  background: var(--color-gray-light);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.goal-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), #8B5CF6);
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

.seller-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--color-border-subtle);
  font-size: 12px;
}
