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

.graduate-footer {
  width: 100%;

  padding: 18px 24px 0;
  
    position: relative;
}

.graduate-footer-container {
  width: 100%;
  max-width: 1440px;

  margin: 0 auto;

  padding: 22px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  
}

/* BRAND */

.graduate-footer-brand img {
  width: 100%;
  max-width: 420px;

  object-fit: contain;

  display: block;
}

/* BUTTON */

.graduate-footer-top-button {
  width: 48px;
  height: 48px;

  min-width: 48px;

  border: none;

  border-radius: 10px;

  background-color: #fff;
  
  color: #000B1A; !important

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s ease;
}

/* RESPONSIVO */

@media (max-width: 768px) {
  .graduate-footer-container {
    padding: 20px 0;
  }

  .graduate-footer-brand img {
    max-width: 260px;
  }

  .graduate-footer-top-button {
    width: 44px;
    height: 44px;

    min-width: 44px;
  }
}

@media (max-width: 480px) {
  .graduate-footer {
    padding: 14px 16px 0;
  }

  .graduate-footer-container {
    gap: 18px;
  }

  .graduate-footer-brand img {
    max-width: 210px;
  }

  .graduate-footer-top-button {
    width: 40px;
    height: 40px;

    min-width: 40px;

    border-radius: 8px;
  }
}