/* @2026 Mario Machado. */
.site-footer {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 22%, rgba(36, 134, 226, 0.26), transparent 30%),
    linear-gradient(135deg, #052c50 0%, #001f3f 52%, #00162d 100%);
  overflow: hidden;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 77%, rgba(142, 199, 255, 0.08) 77% 77.2%, transparent 77.2%),
    linear-gradient(180deg, transparent 0 65%, rgba(142, 199, 255, 0.08) 65% 65.2%, transparent 65.2%);
  content: "";
  opacity: 0.72;
}

.site-footer-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(210px, 0.9fr) minmax(190px, 0.8fr) minmax(240px, 1fr);
  gap: 58px;
  max-width: 1536px;
  margin: 0 auto;
  padding: 38px 84px 34px;
}

.site-footer-bottom {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 52px;
  border-top: 1px solid rgba(203, 220, 237, 0.15);
}

.site-footer-logo {
  display: inline-flex;
  width: 168px;
  margin-bottom: 18px;
}

.site-footer-logo img {
  width: 100%;
  height: auto;
}

.site-footer p {
  max-width: 270px;
  margin: 0;
  color: #bdd8ef;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer address {
  font-style: normal;
}

.site-footer strong {
  display: block;
  margin: 0 0 16px;
  color: var(--white);
  font-size: 15px;
  line-height: 1.1;
  font-weight: 800;
}

.site-footer li,
.site-footer nav a,
.site-footer address a {
  display: block;
  margin-bottom: 9px;
  color: #d5e7f7;
  font-size: 13.5px;
  font-style: normal;
  font-weight: 600;
}

.site-footer nav a:hover,
.site-footer address a:hover {
  color: var(--white);
}

.site-footer address a {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 13px;
}

.site-footer address span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #9cd1ff;
}

.site-footer address svg {
  width: 17px;
  height: 17px;
}

.site-footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.site-footer-socials a {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0;
  border-radius: 50%;
  color: #05284b;
  background: #a9dcff;
  font-size: 15px;
  font-weight: 800;
}

.site-footer small {
  color: #9fb9d3;
  font-size: 12px;
  font-weight: 600;
}

.office-footer-slot {
  margin: 20px -54px 0;
}

@media (max-width: 1180px) {
  .site-footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 34px;
  }

  .office-footer-slot {
    margin-inline: -24px;
  }
}

@media (max-width: 860px) {
  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px 24px;
  }

  .office-footer-slot {
    margin-inline: -16px;
  }

  .site-footer-bottom {
    padding: 0 24px;
    text-align: center;
  }
}
