footer .top {
  background: var(--color-primary);
  padding: 32px 0;
}

footer .top .text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .top .text strong {
  color: var(--bg-primary);
  font-size: 22px;
  font-weight: 600;
}

footer .top .text a {
  background: var(--bg-primary);
  color: var(--color-primary);
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 32px;
  transition: all 0.2s;
}

footer .top .text a:hover {
  opacity: 0.9;
  transition: all 0.2s;
}

footer .down {
  background: var(--bg-primary);
  position: relative;
}

footer .down .content {
  display: flex;
  gap: 52px;
  padding-top: 81px;
  padding-bottom: 96px;
  justify-content: space-between;
}

footer .down .content .infos {
  display: flex;
  flex-direction: column;
  gap: 46px;
  max-width: 620px;
}

footer .down .content .infos .logo {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

footer .down .content .infos .logo img {
  width: 240px;
}

footer .down .content .infos .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 46px;
}

footer .down .content .infos .text p {
  color: var(--color-secondary);
  line-height: 36px;
  font-size: 16px;
}

footer .down .content .infos .text .socials {
  display: flex;
  gap: 26px;
}

footer .down .content .infos .text .socials a {
  color: var(--color-primary);
  font-size: 32px;
  text-decoration: none;
  transition: all 0.3s;
}

footer .down .content .infos .text .socials a:hover {
  transform: translateY(-6px);
  transition: all 0.3s;
}

footer .down .content .links {
  display: flex;
  gap: 96px;
}

footer .down .content .links .link {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

footer .down .content .links .link span {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
}

footer .down .content .links .link ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer .down .content .links .link ul li a {
  text-decoration: none;
  color: var(--color-secondary);
  font-size: 16px;
  position: relative;
  transition: all 0.2s;
  word-break: break-all;
}

footer .down .content .links .link ul li a:hover {
  color: var(--color-primary);
  transition: all 0.2s;
}

footer .copyright {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border-primary);
  gap: 18px;
}

footer .copyright span {
  display: flex;
  flex-direction: column;
  color: var(--color-secondary);
  gap: 6px;
  align-items: center;
  font-size: 12px;
}

footer .copyright span a {
  display: flex;
}

footer .copyright span a img {
  width: 230px;
}

#whatsapp-float {
  text-decoration: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

#whatsapp-float i {
  font-size: 46px;
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(34, 34, 34, 0.95);
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
  z-index: 9998;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

#cookie-banner p {
  margin: 0;
  font-size: 14px;
}

#cookie-banner a {
  color: #00bfff;
  text-decoration: underline;
  margin-left: 10px;
}

#cookie-banner button {
  background-color: #007bff;
  border: none;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
  font-size: 14px;
}

@media (max-width:576px) {
  #cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  #cookie-banner button,
  #cookie-banner a {
    margin-left: 0;
  }
}

@media (max-width: 728px) {
  footer .top .text strong {
    text-align: center;
  }

  footer .top .text {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  footer .down .content {
    flex-direction: column;
    gap: 56px;
  }

  footer .down .content .infos {
    grid-template-columns: repeat(1, 2fr);
    gap: 32px;
  }

  footer .down .content .infos .text {
    max-width: unset;
  }

  footer .down .content .links {
    flex-direction: column;
    gap: 46px;
  }

  footer .copyright {
    flex-direction: column;
  }

  footer .copyright span {
    align-items: center;
    gap: 8px;
  }
}