footer {
  padding: 5rem 0 2.5rem;
  background: #001918;
}

.footer-top {
  margin-bottom: 80px;
}

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

.footer-top ul {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style-type: none;
}

.footer-top .footer-info__socials {
  width: 44px;
  height: 44px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: #003432;
  transition: transform 0.2s ease;
}

.footer-top .footer-info__socials:hover {
  transform: translateY(-2px);
}

.footer-info {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  margin-bottom: 80px;
}

footer .footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
  gap: 4rem;
}

footer .footer-content__col {
  max-width: 100%;
}

footer .footer-content__col h2 {
  color: #fff;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

footer .footer-links + h2,
footer .footer-contato__links + h2 {
  margin-top: 32px;
}

.footer-content__col h2 + p {
  max-width: 310px;
  color: #bcbcbc;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 143%;
  margin-bottom: 32px;
}

footer .footer-content__col .footer-links,
footer .footer-content__col .footer-contato__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style-type: none;
}

footer .footer-content__col .footer-contato__links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer .footer-content__col .footer-contato__links {
  gap: 24px;
}

footer .footer-content__col .footer-contato__links li {
  display: flex;
  align-items: center;
  gap: 16px;
}

footer .footer-content__col .footer-links a {
  color: #bcbcbc;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 143%;
  letter-spacing: -0.56px;
  text-decoration: none;
}

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

.footer-contato__links-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer .footer-content__col .footer-contato__links span {
  color: #fff;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 143%;
  letter-spacing: -0.24px;
}

footer .footer-content__col .footer-contato__links a,
footer .footer-content__col .footer-contato__links p {
  color: #bcbcbc;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.56px;
  text-decoration: none;
  margin-top: 4px;
}

.footer-links__link {
  border-radius: 10px;
  border: 1px solid #00fff5;
  padding: 16px;

  display: flex;
  align-items: center;
  gap: 12px;

  text-decoration: none;

  flex: 1;
}

.footer-links__link span {
  color: #fff;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  /* line-height: 112%; */
  letter-spacing: -0.48px;
  margin-bottom: 8px;
  display: block;
  word-break: break-all;
}

.footer-links__link strong {
  display: block;
  color: #bdbdbd;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  /* line-height: 112%; */
  letter-spacing: -0.48px;
}

.footer-links__link-icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 50px;
  background-color: #003432;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-copy p {
  color: #9c9c9c;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 143%;
  letter-spacing: -0.32px;
}

.footer-copy p strong {
  color: #fff;
  font-weight: 500;
}

.footer-seals {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.selo-google {
  filter: brightness(0) invert(1);
}

.selo-google:hover {
  filter: none;
}

footer .footer-contato__links .primary-btn:hover {
  text-decoration: none;
  background-color: #fff;
  color: var(--primary-highlight-foreground);
}

@media screen and (max-width: 1024px) {
  footer .footer-content {
    gap: 3rem;
  }

  .footer-info {
    flex-direction: column;
    gap: 2.5rem;
  }

  footer .footer-copy {
    flex-direction: column;
  }
}

@media screen and (max-width: 992px) {
  footer {
    padding: 5rem 0;
  }
  footer .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    gap: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .footer-top .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (max-width: 650px) {
  .footer-info {
    align-items: flex-start;
  }
  footer .footer-content {
    grid-template-columns: 1fr;
  }
}
