footer {
  width: 100%;
  padding: 80px 0 50px 0;
  background: linear-gradient(
      0deg,
      rgba(0, 20, 42, 0.5) 0%,
      rgba(0, 20, 42, 0.5) 100%
    ),
    url("../images/footer-bg.webp") lightgray 50% / cover no-repeat;
}

footer .top-footer {
  display: flex;
  justify-content: space-between;
  padding-bottom: 48px;
}

footer .image-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer .image-text p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

footer .contact-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

footer .contact-container h3 {
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

footer .contact-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  text-decoration: none;
  width: 226px;
  background-color: #ee1610;
  color: #e6f2f5;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  border-radius: 12px;
  transition: all ease-in 0.3s;
}

footer .contact-container a:hover {
  background-color: #001d2b;
}

footer .line {
  width: 100%;
  height: 0.5px;
  background: #e5e5e5;
}

footer .footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 48px 0;
}

footer .column h3,
footer .column-list h3 {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

footer .column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer .column .paragraph {
  color: #b0c0d0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 222px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  list-style: none;
  max-width: 197px;
}

.footer-links a {
  color: #b0c0d0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  max-width: 153px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.andress-container {
  display: flex;
  width: 287px;
  height: 150px;
  padding: 16px 16px;
  align-items: flex-start;
  gap: 12px;
  border-radius: 4px;
  border: 0.5px solid #fff;
  background: #fff;
  backdrop-filter: blur(13.5px);
  text-decoration: none;
}

.andress-container .elipse,
footer .contato .elipse {
  display: flex;
  width: 46px;
  height: 46px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #003b94;
}

.andress-container a {
  text-decoration: none;
}

.andress-container p {
  color: #121212;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.andress-container .link-mapa {
  color: #005a8d;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 8px;
}

footer .contato {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 287px;
  height: 84px;
  padding: 16px 16px;
  border-radius: 4px;
  border: 0.5px solid #fff;
  background: #fff;
  backdrop-filter: blur(13.5px);
  text-decoration: none;
}

footer .contato p {
  color: #121212;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.bottom-footer {
  padding-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-footer .icons {
  display: flex;
  gap: 11px;
}

.bottom-footer .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  border-radius: 4px;
  border: 1px solid #b0c0d0;
}

.bottom-footer p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.icons-css-html {
  display: flex;
  gap: 11px;
}

.icons-css-html .icon {
  display: flex;
  width: 84px;
  height: 54px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid #fff;
}

.icon-google {
  display: flex;
  width: 84px;
  height: 54px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid #fff;
}

.icon-prime {
  display: flex;
  width: 84px;
  height: 54px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #fff;
}

.icons-bottom {
  display: flex;
  gap: 14px;
}

@media (max-width: 1440px) {
  footer .footer-columns {
    gap: 32px;
  }
}

@media (max-width: 1200px) {
  footer .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .bottom-footer {
    flex-direction: column;
    gap: 32px;
    align-items: start;
    padding-bottom: 50px;
  }
}

@media (max-width: 1024px) {
  footer .top-footer {
    flex-direction: column;
    gap: 32px;
  }

  footer .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .bottom-footer {
    flex-direction: column;
    gap: 32px;
    align-items: start;
    padding-bottom: 50px;
  }
}

@media (max-width: 900px) {
  footer .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .bottom-footer {
    align-items: center;
  }

  footer .footer-columns {
    grid-template-columns: 1fr;
  }

  .andress-container {
    width: 100%;
  }

  footer .column,
  footer .contato {
    width: 100%;
  }
}
