@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --sidebar-color: #000611;
  --dark-color: #001224;
  --light-blue-color: #0d72ff;
  --light-blue-color-2: #4070f4;
  --light-blue-color-3: #0066d3;
  --light-blue-color-1: #264FAB;
  --dark-blue-color-2: #13326E;
  --dark-blue-color: #0D274F;
  --dark-blue-4: #0051a8;
  --dark-blue-3: #00438b;
  --dark-blue-5: #00356d;
  --white: #ffffff;
  --box-shadow-blue: rgba(0, 102, 211, 0.7);
  --card-height: 300px;
  --card-width: calc(var(--card-height) / 1.5);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #001224;
}

::-webkit-scrollbar-thumb {
  background: #4070f4;
  border-radius: 10px;
}

:root {
  --card-height: 300px;
  --card-width: calc(var(--card-height) / 1.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins';
  scroll-behavior: smooth;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 85px;
  background: #000611;
  color: white;
  padding: 18px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: 999;
}

.sidebar:hover {
  width: 250px;
}

.sidebar:hover .logo_closed {
  display: none;
}

.sidebar:hover .logo_open {
  display: flex;
  opacity: 1;
  transition: 0.4s ease-in-out;
}

.logo_items {
  gap: 8px;
  transition: 1s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav_image {
  display: flex;
  width: 50px;
  justify-content: center;
  transition: 0.4s ease-in-out;
}

.logo_closed {
  width: 50px;
  transition: 0.4s ease-in-out;
}

.logo_open {
  opacity: 0;
  display: none;
  width: 150px;
  transition: 0.4s ease-in-out;
}

.menu_container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 30px;
  overflow-y: auto;
  transition: 1s ease-in-out;
}

.menu_container::-webkit-scrollbar {
  display: none;
}

.flex {
  display: flex;
  align-items: center;
}

.item {
  list-style: none;
}

.link {
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 7.5px;
  color: white;
}

.link:hover {
  color: #fff;
  background: linear-gradient(180deg, #13326E, #264FAB, #4077FF);
  animation: animacao_link 0.1s ease-in-out;
}

@keyframes animacao_link {
  0% {
    background: linear-gradient(180deg, #13316e7a, #264eab73, #4076ff6e);
  }

  100% {
    background: linear-gradient(180deg, #13326E, #264FAB, #4077FF);
  }

}

.link span {
  white-space: nowrap;

}

.link i {
  height: 60px;
  min-width: 50px;
  display: flex;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}