/* 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;
}

/* 🔥 Botão Descartar Rascunho */
.discard-draft-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #dc2626;
  color: white;
  font-weight: 600;
  font-size: 13px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(220, 38, 38, 0.3);
}

.discard-draft-btn:hover {
  background: #b91c1c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.discard-draft-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(220, 38, 38, 0.3);
}

@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;
  }
  
  .discard-draft-btn {
    font-size: 12px;
    padding: 5px 12px;
  }
}
