.empresa-logos-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.empresa-logos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #edf2f7;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.empresa-logos-header-left {
  min-width: 240px;
}

.empresa-logos-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.empresa-logos-subtitle {
  margin-top: 4px;
  font-size: 13px;
  color: #6b7280;
}

.empresa-logos-kpis {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
}

.empresa-logos-kpi-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 130px;
  padding: 10px 12px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}

.empresa-logos-kpi-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.empresa-logos-kpi-icon.primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.empresa-logos-kpi-icon.success {
  background: linear-gradient(135deg, #10b981, #059669);
}

.empresa-logos-kpi-icon.warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.empresa-logos-kpi-content {
  display: flex;
  flex-direction: column;
}

.empresa-logos-kpi-value {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  line-height: 1;
}

.empresa-logos-kpi-label {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
}

.empresa-logos-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 180px;
}

.empresa-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.empresa-logos-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #edf2f7;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  transition: all 0.2s ease;
}

.empresa-logos-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.empresa-logos-preview {
  position: relative;
  height: 200px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.empresa-logos-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.empresa-logos-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.empresa-logos-badge {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(10px);
}

.empresa-logos-badge.primary {
  background: rgba(37, 99, 235, 0.9);
}

.empresa-logos-badge.success {
  background: rgba(16, 185, 129, 0.9);
}

.empresa-logos-badge.danger {
  background: rgba(239, 68, 68, 0.9);
}

.empresa-logos-menu {
  position: absolute;
  top: 12px;
  right: 12px;
}

.empresa-logos-btn-menu {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
}

.empresa-logos-btn-menu:hover {
  background: #fff;
  transform: scale(1.04);
}

.empresa-logos-body {
  padding: 16px;
}

.empresa-logos-name {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.empresa-logos-type {
  margin-top: 6px;
  font-size: 13px;
  color: #6b7280;
}

.empresa-logos-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
}

.empresa-logos-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.empresa-logos-meta-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #9ca3af;
}

.empresa-logos-meta-value {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.empresa-logos-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 340px;
  background: #fff;
  border-radius: 20px;
  border: 2px dashed #d1d5db;
}

.empresa-logos-empty.hidden {
  display: none;
}

.empresa-logos-empty-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #9ca3af;
}

.empresa-logos-empty-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.empresa-logos-empty-subtitle {
  font-size: 14px;
  color: #6b7280;
  text-align: center;
}

@media (max-width: 1200px) {
  .empresa-logos-header {
    flex-wrap: wrap;
  }

  .empresa-logos-kpis {
    width: 100%;
    order: 3;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .empresa-logos-grid {
    grid-template-columns: 1fr;
  }

  .empresa-logos-header {
    padding: 16px;
  }

  .empresa-logos-kpis {
    flex-direction: column;
    align-items: stretch;
  }

  .empresa-logos-kpi-card {
    width: 100%;
  }

  .empresa-logos-actions {
    width: 100%;
  }

  .empresa-logos-actions button {
    width: 100%;
  }
}
