footer {
  width: 100%;
  padding: 80px 0 47px 0;
  background: #f4f4f4;
}

footer .footer-columns {
  display: flex;
  gap: 80px;
  padding-bottom: 32px;
}

footer .first-container {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

footer .first-container .paragraph {
  color: #545954;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  max-width: 322px;
}

footer .first-container .links {
  display: flex;
  gap: 11px;
}

footer .links .icon {
  display: flex;
  width: 54px;
  height: 54px;
  justify-content: center;
  align-items: center;
  border-radius: 90px;
  border: 1px solid #000;
  transition: 0.3s background-color ease;
}

footer .links .icon:hover {
  background-color: #022f40;
  border: none;
}

footer .links .icon:hover svg path {
  fill: #fff;
}

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

footer .column h3 {
  color: #022330;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

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

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

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

footer .link-endereco {
  color: #545954;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  max-width: 200px;
}

footer .link-endereco:hover {
  text-decoration: underline;
}

footer .link-contato {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 12px;
}

footer .link-contato-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

footer .link-contato {
  color: #545954;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
}

footer .icon-contato {
  display: flex;
  width: 38px;
  height: 38px;
  justify-content: center;
  align-items: center;
  border-radius: 42px;
  background: #022f40;
}

footer .line {
  width: 100%;
  height: 0.3px;
  background: #d8d8d8;
}

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

footer .copyright-text {
  color: #2c2c2c;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

footer .w3c-container {
  display: flex;
  gap: 14px;
}

footer .box-css-html {
  display: flex;
  gap: 13px;
  justify-content: center;
  align-items: center;
  width: 84px;
  height: 54px;
  border-radius: 4px;
  border: 2px solid #2c2c2c;
}

footer .icon-google {
  display: flex;
  width: 84px;
  height: 54px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
  border: 2px solid #2c2c2c;
}

footer .box {
  display: flex;
  width: 84px;
  height: 54px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 2px solid #2c2c2c;
}

footer .mapa-google {
  width: 351px;
  max-width: 100%;
  height: 351px;
}

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

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

@media (max-width: 1200px) {
  footer .footer-columns {
    display: flex;
    flex-wrap: wrap;
  }
}

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

  footer .mapa-google {
    height: auto;
  }

  footer .footer-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}


@media only screen and (max-width: 900px) {
  footer .bottom-container {
    padding-bottom: 36px;
  }
}

@media only screen and (max-width: 400px) {
  footer .container {
   width: 95%;
  }
}