/* Custom Styles for AutoGestão Pro */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Rajdhani:wght@600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  background-color: #0f172a;
  color: #f8fafc;
}

.font-tech {
  font-family: 'Rajdhani', sans-serif;
}

/* Placa Estilo Mercosul */
.mercosul-plate {
  background: #ffffff;
  border: 2px solid #0284c7;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  user-select: none;
}

.mercosul-header {
  background-color: #0284c7;
  color: #ffffff;
  width: 100%;
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 1px;
  padding: 1px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mercosul-number {
  color: #0f172a;
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 2px 8px;
  text-transform: uppercase;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Drag & Drop Visual Effects */
.kanban-column {
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.kanban-column.drag-over {
  background-color: rgba(59, 130, 246, 0.1) !important;
  border: 2px dashed #3b82f6 !important;
}

.kanban-card {
  cursor: grab;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.kanban-card:active {
  cursor: grabbing;
}

.kanban-card.dragging {
  opacity: 0.4;
  transform: scale(0.98);
}

/* Timeline Pulse Animation */
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

.pulse-active {
  animation: pulse-ring 2s infinite;
}

/* Skeleton Loading Animation */
.skeleton {
  background: linear-gradient(90deg, #1e293b 25%, #334155 50%, #1e293b 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Modal Backdrop Blur */
.modal-backdrop {
  backdrop-filter: blur(8px);
}
