/* DraftBadge - Badge de status no header */

.draft-badge-container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #f59e0b;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
  animation: draftPulse 2s ease-in-out infinite;
}

@keyframes draftPulse {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
  }
  50% {
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
  }
}

.draft-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #f59e0b;
  color: white;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  border-radius: 6px;
  text-transform: uppercase;
}

.draft-badge-icon {
  font-size: 14px;
}

.draft-badge-text {
  line-height: 1;
}

.draft-badge-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #78350f;
}

.draft-info-status {
  font-weight: 600;
}

.draft-info-separator {
  opacity: 0.5;
}

.draft-info-sections {
  font-weight: 500;
  opacity: 0.8;
}

/* Responsivo */
@media (max-width: 768px) {
  .draft-badge-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 6px 12px;
  }

  .draft-badge-info {
    font-size: 11px;
  }
}
