/* Custom CSS for SeuNovoApê SaaS */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --brand-dark: #070e1b;
  --brand-card: #0c1626;
  --brand-border: #1a2a40;
  --brand-emerald: #059669;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--brand-dark);
  color: #f1f5f9;
}

.font-title {
  font-family: 'Outfit', sans-serif;
}

/* Glassmorphism Panel */
.glass-panel {
  background: rgba(12, 22, 38, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--brand-border);
  border-radius: 1rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
}

/* Emerald Glow Effect */
.emerald-glow-effect {
  box-shadow: 0 0 20px rgba(5, 150, 105, 0.15), inset 0 0 10px rgba(5, 150, 105, 0.05);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

/* Primary Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px 0 rgba(5, 150, 105, 0.39);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
}

.btn-primary:active {
  transform: translateY(1px);
}

/* Form Inputs */
.form-input {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--brand-border);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--brand-emerald);
  box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.2);
  background: rgba(15, 23, 42, 0.8);
}

.form-input::placeholder {
  color: #64748b;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

/* Sidebar Minimizer */
.sidebar-mini {
  width: 5rem !important;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.5);
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Kanban Horizontal Scroll */
.custom-kanban-scroll::-webkit-scrollbar {
  height: 8px;
}

.custom-kanban-scroll::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.5);
  border-radius: 4px;
}

.custom-kanban-scroll::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}

.custom-kanban-scroll::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Tab Content Visibility */
.tab-content {
  display: none;
}

.tab-content:not(.hidden) {
  display: block;
}

.nav-item.active-tab-mobile {
  color: var(--brand-emerald);
}
