/* ContatoPlexo — Global Styles */

/* Smooth page transitions */
.page-enter {
  opacity: 0;
  transform: translateY(10px);
}
.page-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Wizard step indicators */
.wizard-step {
  transition: all 0.3s ease;
}
.wizard-step.active {
  color: #6366f1;
  border-color: #6366f1;
}
.wizard-step.completed {
  color: #10b981;
  border-color: #10b981;
  background-color: #10b981;
}

/* Status pipeline */
.status-pipeline {
  display: flex;
  align-items: center;
  gap: 0;
}
.status-pill {
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.status-pill:first-child {
  border-radius: 9999px 0 0 9999px;
}
.status-pill:last-child {
  border-radius: 0 9999px 9999px 0;
}
.status-pill.active {
  background: #6366f1;
  color: white;
  border-color: #6366f1;
}
.status-pill.completed {
  background: #4f46e5;
  color: white;
  border-color: #4f46e5;
}

/* Card hover effect */
.card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

/* Indicator card colors */
.indicator-card {
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}
.indicator-card:hover {
  transform: scale(1.02);
}

/* Toast notifications */
.toast {
  animation: slide-in-right 0.3s ease-out;
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Print styles */
@media print {
  .no-print { display: none !important; }
  .print-only { display: block !important; }
}

/* ─── Animations ─────────────────────────────── */
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fade-in {
  animation: fade-in 0.5s ease-out both;
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-slide-up {
  animation: slide-up 0.7s ease-out both;
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.animate-scale-in {
  animation: scale-in 0.4s ease-out both;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.animate-float {
  animation: float 5s ease-in-out infinite;
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Scrollbar */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

