footer {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  font-size: 0.8rem;
  background-color: var(--menu-background-color);
  color: var(--menu-text-color);
  padding: 2% 10% 0% 10%;
  box-sizing: border-box;
}

.footer-about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2vh;
}

.footer-icon {
  margin-top: 2vh;
  width: 50%;
}

.contact-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact {
  margin: 0;
}

.contact-container ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 10px;
  width: 100%;
}

.contact-container li {
  list-style: none;
  font-size: 1rem;
}

.footer-divisor-content {
  border: 1px solid var(--secundary-color);
  width: 30%;
  border-radius: 5px;
}

.whatsapp-icon-container {
  background-color: var(--btn-bg-color);
  border: 1px solid var(--primary-color);
  position: fixed;
  z-index: 999;
  border-radius: 50%;
  bottom: 20px;
  right: 15px;
  padding: 0.7rem;
  transition: ease 0.3s;
  animation: wpp-logo-effect 1.2s infinite;
}

.whatsapp-icon-container:hover {
  transform: scale(1.1);
  transition: ease 0.3s;
}

.contact-phone {
  color: var(--secundary-color);
  border-color: var(--secundary-color);
}

.call-icon-container {
  background-color: rgba(0, 0, 0, 0.801);
  border: 1px solid var(--primary-color);
  position: fixed;
  z-index: 999;
  border-radius: 50%;
  bottom: 20px;
  left: 8px;
  padding: 1rem;
  transition: ease 0.3s;
  animation: call-logo-effect 1.2s infinite;
}

.call-icon-container:hover {
  transform: scale(1.1);
  transition: ease 0.3s;
}

@keyframes wpp-logo-effect {
  0% {
    box-shadow: 0 0 0 0 rgba(49, 160, 34, 0.8);
  }

  100% {
    box-shadow: 0 0 0 4vw rgba(0, 0, 0, 0);
  }
}

@keyframes call-logo-effect {
  0% {
    box-shadow: 0 0 0 0 rgba(238, 255, 0, 0.8);
  }

  100% {
    box-shadow: 0 0 0 4vw rgba(0, 0, 0, 0);
  }
}

@media (min-width: 400px) and (max-width: 950px) {
  .footer-icon {
    width: 20%;
  }
  .whatsapp-icon-container {
    bottom: 1.5vh;
    right: 1.5vw;
  }

  @keyframes wpp-logo-effect {
    0% {
      box-shadow: 0 0 0 0 rgba(49, 160, 34, 0.8);
    }

    100% {
      box-shadow: 0 0 0 2.5vw rgba(0, 0, 0, 0);
    }
  }

  @keyframes call-logo-effect {
    0% {
      box-shadow: 0 0 0 0 rgba(238, 255, 0, 0.8);
    }

    100% {
      box-shadow: 0 0 0 2.5vw rgba(0, 0, 0, 0);
    }
  }
}

@media (min-width: 950px) {
  footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 0.8rem;
    color: var(--menu-text-color);
    padding: 1vh 1.5vw;
    gap: 0 4vw;
  }
  .footer-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
    margin-top: 0%;
  }

  .footer-icon {
    width: 15%;
  }

  .contact-container {
    width: 40%;
  }

  .footer-divisor-content {
    border: 1px solid var(--secundary-color);
    width: 80%;
    border-radius: 5px;
  }

  .whatsapp-icon-container {
    bottom: 1.5vh;
    right: 1.5vw;
  }

  .call-icon-container {
    display: none;
  }

  @keyframes wpp-logo-effect {
    0% {
      box-shadow: 0 0 0 0 rgba(49, 160, 34, 0.8);
    }

    100% {
      box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
  }

  @keyframes call-logo-effect {
    0% {
      box-shadow: 0 0 0 0 rgba(238, 255, 0, 0.8);
    }

    100% {
      box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
    }
  }
}
