@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  font-family: 'Inter', sans-serif;
}

header {
  padding: 1rem;
  box-sizing: border-box;
  height: 80px;
}

.logo-empresa {
  height: 100%;
  width: auto;
}

.fa-bell {
  color: white;
  font-size: 24px;
}

.div_icone_notificacao {
  position: relative;
}

.sinal_notificacao{
  width: 12px;
  height: 12px;
  display: block;
  background-color: red;
  position: absolute;
  top: -2px;
  right: -2px;
  border-radius: 50%;
}

.div_icones_header {
  display: flex;
  gap: 1.5rem;
}

footer {
  background-color: #262626;
  padding: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.icone-botao-footer {
  height: 90px;
  width: 90px;
}

.fa-ellipsis-vertical {
  color: white;
  font-size: 24px;
}

.div_icones_header {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.div_icones_header i {
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.menu_modal {
  position: absolute;
  top: 64px;
  right: 10px;
  background: #2b2b2b;
  color: white;
  border-radius: 10px;
  width: 210px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  animation: fadeDown 0.25s ease;
  z-index: 99;
}

.menu_modal.active {
  display: flex;
}

.menu_modal span {
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.2s;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}