footer {
  margin-top: auto;
  position: relative;
  height: 100px;
  background-image: linear-gradient(#265852, #4da798);
}

.logo-footer {
  position: absolute;
  left: 50%;
  bottom: 15px;
  translate: -50% 0%;
}

.social-footer {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  right: 50px;
  top: 50%;
  translate: 0% -50%;
}

.social-footer-img {
  width: 2.5rem;
}

.social-footer-img:hover {
  filter: brightness(0) saturate(100%) opacity(1);
}

.footer-phone {
  position: relative;
  display: inline-block;
}

.footer-phone > .footer-phone-text {
  display: none;
  opacity: 0;
  width: max-content;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  border-radius: 4px;
  position: absolute;
  z-index: 10;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
  white-space: nowrap;
  font-size: 1.3rem;
  font-weight: bold;
  font-family: var(--font-primary);
}

.footer-phone:hover > .footer-phone-text {
  display: inline-block;
  opacity: 1;
}

@media (max-width: 1150px) {
  footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100px;
    background-color: var(--bold-primary);
  }

  .logo-footer {
    left: 100px;
  }

  .social-footer-img {
    width: 1.8rem;
  }
}
