body {
  background: linear-gradient(
    to bottom right,
    rgb(249 250 251),
    white,
    rgb(243 244 246)
  );
}

section {
  margin-top: 100px;
  height: 500px;
  width: 1100px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.9),
    rgba(249, 250, 251, 0.8)
  );
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
}

section div {
  height: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    to right,
    rgb(31 41 55),
    rgb(75 85 99),
    rgb(17 24 39)
  );
  border: 1px solid rgba(229, 231, 235, 0.5);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.03);
  padding: 2rem;
  transition: all 0.3s;
}

/* li {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.9), rgba(249, 250, 251, 0.8));
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  border: 1px solid rgba(229, 231, 235, 0.5);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05),
              0 10px 15px rgba(0, 0, 0, 0.03);
  padding: 2rem;
  transition: all 0.3s;
} */

section div h2 {
  color: rgba(255, 255, 255, 0.9);
}

section ul {
  height: 85%;
  background-color: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.9),
    rgba(249, 250, 251, 0.8)
  );
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  overflow: auto;
}

section li {
  margin: 12px;
  height: 300px;
  width: 175px;
  background-color: linear-gradient(to right, white, rgba(249, 250, 251, 0.5));
  border: 1px solid rgb(229 231 235);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 36px;
  border-radius: 8px;
}

section li:hover {
  transform: scale(104%);
  transition: 0.2s;
  cursor: pointer;
  box-shadow: 5px 5px 20px var(--color-black);
}

section li img {
  height: 126px;
}

section li p {
  height: 30px;
  width: 100px;
  text-align: center;
}

header div {
  display: flex;
  align-items: center;
  gap: 10px;
}

#user-avatar {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 50%;
  width: 50px; /* Ajuste o tamanho conforme necessário */
  height: 50px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

#user-avatar:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

header div p {
  font-size: 16px;
  color: var(--color-off-white); /* Cor do nome do usuário */
  margin: 0;
}

.logout-btn {
  background-color: var(--color-dark-blue-grey); /* Cor de fundo do botão */
  color: var(--color-ice-blue); /* Cor do texto */
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

header div:hover .logout-btn {
  opacity: 1; /* Exibe o botão ao passar o mouse */
}

.logout-btn:hover {
  background-color: var(--color-red); /* Cor de hover do botão */
}
