@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url(./components/var.css);
@import url(./components/navbar.css);
@import url(./components/content.css);
@import url(./components/icons.css);
@import url(./components/tableCard.css);
@import url(./components/buttons.css);
@import url(./pages/home.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
  color: var(--text-light);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  min-height: 100vh;
}

a {
  text-decoration: none;
}

.title {
  font-family: 'Inter', sans-serif;
  color: #2c3e50;
  font-weight: 600;
}

/* Animações sutis */
.fade-in {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-popover {
  --bs-popover-max-width: 200px;
  --bs-popover-border-color: blue;
  --bs-popover-header-bg: blue;
  --bs-popover-header-color: var(--bs-white);
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: .5rem;
}