/* AVANTHY GLOBAL FOOTER — INÍCIO */

.home-footer,
.home-footer * {
  box-sizing: border-box;
}

.home-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 70px 0 0;
  color: #d3dfeb;
  background: linear-gradient(150deg, #001226 0%, #002443 100%);
  overflow: hidden;
}

.home-footer::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -140px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 101, 163, 0.18),
    transparent 68%
  );
  pointer-events: none;
}

.home-footer .home-container {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.home-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 55px;
  padding-bottom: 50px;
}

.home-footer .footer-brand picture {
  display: block;
}

.home-footer .footer-brand img {
  display: block;
  width: 210px;
  max-width: 100%;
  height: auto;
}

.home-footer .footer-brand p {
  max-width: 310px;
  margin: 22px 0 0;
  color: #9fb3c6;
  font-size: 12px;
  line-height: 1.75;
}

.home-footer .footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
}

.home-footer .footer-column strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.home-footer .footer-column a,
.home-footer .footer-column span {
  color: #9fb3c6;
  font-family: inherit;
  font-size: 11px;
  line-height: 1.55;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.home-footer .footer-column a:hover,
.home-footer .footer-column a:focus-visible {
  color: #fff;
  transform: translateX(3px);
}

.home-footer .footer-bottom {
  display: flex;
  min-height: 75px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.home-footer .footer-bottom p {
  margin: 0;
  color: #8299ad;
  font-size: 10px;
  line-height: 1.6;
}

.home-footer .footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.home-footer .footer-bottom a,
.home-footer .footer-bottom .cc-preferences-link {
  appearance: none;
  margin: 0;
  padding: 0;
  color: #8299ad;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 10px;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease;
}

.home-footer .footer-bottom a:hover,
.home-footer .footer-bottom a:focus-visible,
.home-footer .footer-bottom .cc-preferences-link:hover,
.home-footer .footer-bottom .cc-preferences-link:focus-visible {
  color: #fff;
}

@media (max-width: 860px) {
  .home-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }
}

@media (max-width: 600px) {
  .home-footer {
    padding-top: 55px;
  }

  .home-footer .home-container {
    width: min(100% - 30px, 1180px);
  }

  .home-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 38px;
  }

  .home-footer .footer-brand img {
    width: 190px;
  }

  .home-footer .footer-bottom {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 24px 0 28px;
  }

  .home-footer .footer-bottom nav {
    gap: 12px 17px;
  }
}

/* AVANTHY GLOBAL FOOTER — FIM */
