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

footer hr {
  border-color: #fff;
  margin: 40px auto;
}

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

.footer-top__socials h2 {
  color: #1e1e1e;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 20px;
}

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

.footer-top__socials a {
  color: #828080;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-decoration: none;
}

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

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

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

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

footer .footer-content__col h2 {
  color: #000;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 24px;
}

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

.footer-content__col h2 + p {
  color: #828080;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

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 {
  gap: 16px;
}

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

footer .footer-content__col .footer-links a {
  color: #303030;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-decoration: none;
}

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

footer .footer-content__col .footer-contato__links strong {
  color: #303030;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  display: block;
  margin-top: 4px;
}

footer .footer-content__col .footer-contato__links a,
footer .footer-content__col .footer-contato__links p {
  color: #303030;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-decoration: none;
}

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

.footer-social-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-links a {
  width: 52px;
  height: 52px;
  padding: 16px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-links a:hover {
  background-color: #284c85;
}

.footer-social-links a:hover svg path {
  fill: #fff;
}

.footer-copy__content {
  grid-column: span 3;
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-copy p {
  color: #424242;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.footer-copy p span {
  font-size: 0.875rem;
}

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

.footer-top .footer-social-links {
  display: none;
}

@media screen and (max-width: 1280px) {
  footer .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .footer-info {
    flex-direction: column;
    gap: 2.5rem;
  }
  footer {
    padding: 5rem 0;
  }
  .footer-copy {
    grid-template-columns: 1fr 1fr;
  }
  .footer-copy__content {
    grid-column: span 2;
    order: 2;
  }
}

@media screen and (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    gap: 2.5rem;
  }
  .footer-copy {
    flex-direction: column;
  }
  .footer-copy .footer-social-links {
    display: none;
  }
  .footer-top .footer-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-top {
    flex-direction: column;
    gap: 32px;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

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

@media screen and (max-width: 425px) {
  .footer-copy__content {
    flex-direction: column;
  }
}
