.footer {
  background-color: var(--azul-escuro);
  color: white;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  height: 40px;

  & .footer-links {
    display: flex;
    flex-wrap: wrap;

    & a {
      color: white;
      text-decoration: none;
      margin-right: 15px;

      & i {
        font-size: 18px;
      }

      &:hover {
        cursor: pointer;
      }
    }
  }

  & .footer-right {
    white-space: nowrap;
    padding-right: 10px;
  }
}

.dropup-btn {
  display: none;
  background-color: var(--azul-escuro);
  border: none;
  color: white;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  bottom: 0;
  right: 20px;
  z-index: 1;
}

.footer-sge {
  display: none;
  position: absolute;
  bottom: 100%;
  right: 0;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  z-index: 1;
  padding: 10px;
  width: 100%;

  & a {
    display: block;
    margin: 5px 0;
    position: relative;
    padding: 8px;
    font-size: 18px;

    & i {
      color: var(--azul-claro);
      position: absolute;
      left: 2%;
    }
    & span {
      width: 80%;
      display: flex;
      position: relative;
      margin: auto;
      justify-content: center;
    }
  }
}