footer {
  background-color: var(--secondary-soft);
  color: white;
  padding: 40px;
  display: flex;
  justify-content: center;
  width: 100%;
}

footer .footer-1 {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1600px;
  width: 100%;
}

footer .links-container {
  display: flex;
  gap: 40px;
  max-width: 100%;
}

footer .links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer .links-divider {
  height: 100%;
  display: flex;
  align-items: center;
}

footer .divider {
  width: 1px;
  height: 40px;
  border-radius: 100px;
  background: #63788F;
}

footer .links .link-title {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 700;
  font-variant: all-small-caps;
  color: var(--main-soft)
}

footer .links a {
  font-family: "Noto Sans";
  font-size: 14px;
  font-weight: 400;
  display: flex;
  gap: 8px;
  color: white;
}

footer .links a.address {
  width: max-content;
}

footer .links a i {
  font-size: 20px;
}

footer .social-media-links {
  display: flex;
  gap: 16px;
}

footer .social-media-links a i {
  font-size: 32px;
}

footer a:hover {
  color: var(--primary);
}

footer a.link:hover, 
footer a.link:focus {
  color: var(--main-soft);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5b;
  cursor: pointer;
}

footer .about{
  display: flex;
  align-items: center;
}

footer .about img{
  height: 50px;
}

@media screen and (max-width: 1200px) {
  footer .links-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  footer .links-divider {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  footer .links-container {
    display: flex;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 800px) {
  footer .links-container {
    width: min-content;
  }
}

@media screen and (max-width: 650px) {
  footer .footer-1 {
    flex-wrap: wrap;
    justify-content: center;
  }

  .links {
    max-width: 100%;
  }
}

@media screen and (max-width: 400px) {
  footer {
    padding: 40px 20px;
  }

  a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
