.site-footer {
  background: #0f172a;

  color: #fff;

  padding: 80px 0 30px;
}

.footer-top {
  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 50px;
}

.footer-brand {
  display: flex;

  gap: 20px;

  align-items: flex-start;
}

.footer-logo {
  width: 70px;

  height: 70px;

  border-radius: 18px;

  background: var(--primary);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px;

  font-weight: 800;

  font-family: var(--font-title);

  flex-shrink: 0;
}

.footer-brand h3 {
  margin-bottom: 12px;

  font-size: 24px;
}

.footer-brand p {
  color: #cbd5e1;
}

.footer-column h4 {
  margin-bottom: 20px;

  font-size: 18px;
}

.footer-column {
  display: flex;

  flex-direction: column;

  gap: 12px;
}

.footer-column a {
  color: #cbd5e1;

  transition: 0.3s;
}

.footer-column a:hover {
  color: #fff;

  padding-left: 5px;
}

.footer-column p {
  color: #cbd5e1;
}

.footer-bottom {
  margin-top: 60px;

  padding-top: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;

  justify-content: space-between;

  align-items: center;

  flex-wrap: wrap;

  gap: 15px;
}

.footer-bottom strong {
  color: var(--secondary);
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;

    text-align: center;
  }
}
/* ===============================
   FOOTER
================================== */

.site-footer {
  position: relative;
  padding: 95px 0 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 183, 3, 0.1),
      transparent 24%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(64, 113, 215, 0.18),
      transparent 30%
    ),
    linear-gradient(145deg, #071c48, #0d2e70 55%, #123d8c);
  color: #fff;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

/* ===============================
   DECORAÇÕES
================================== */

.footer-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.footer-decoration-one {
  top: -230px;
  right: -130px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-decoration-two {
  bottom: -260px;
  left: -170px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===============================
   CONTEÚDO PRINCIPAL
================================== */

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 1fr 0.9fr;
  gap: 65px;
  padding-bottom: 70px;
}

/* ===============================
   MARCA
================================== */

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 25px;
  color: #fff;
}

.footer-logo-symbol {
  display: flex;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: var(--secondary);
  color: #10224a;
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  box-shadow: 0 15px 35px rgba(255, 183, 3, 0.2);
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-text strong {
  font-family: var(--font-title);
  font-size: 20px;
  line-height: 1.15;
}

.footer-logo-text span {
  margin-top: 4px;
  color: var(--secondary);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.footer-brand > p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.85;
}

/* ===============================
   REDES SOCIAIS
================================== */

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: flex;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 20px;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.footer-social a:hover {
  border-color: var(--secondary);
  background: var(--secondary);
  color: #10224a;
  transform: translateY(-5px);
}

/* ===============================
   COLUNAS
================================== */

.footer-column h3 {
  position: relative;
  margin-bottom: 27px;
  padding-bottom: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 34px;
  height: 3px;
  border-radius: 20px;
  background: var(--secondary);
}

.footer-links {
  display: grid;
  gap: 13px;
}

.footer-links a {
  display: flex;
  gap: 7px;
  align-items: center;
  width: fit-content;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-links a i {
  color: var(--secondary);
  font-size: 18px;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}

/* ===============================
   CONTATOS
================================== */

.footer-contact-list {
  display: grid;
  gap: 19px;
}

.footer-contact-item {
  display: flex;
  gap: 13px;
  align-items: center;
  color: #fff;
}

.footer-contact-icon {
  display: flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--secondary);
  font-size: 20px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  background: rgba(255, 183, 3, 0.16);
  transform: translateY(-3px);
}

.footer-contact-item span,
.footer-contact-item strong {
  display: block;
}

.footer-contact-item span {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.footer-contact-item strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

/* ===============================
   ENDEREÇO
================================== */

.footer-address {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-address-icon {
  display: flex;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 183, 3, 0.14);
  color: var(--secondary);
  font-size: 21px;
}

.footer-address strong {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  font-size: 14px;
}

.footer-address p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.8;
}

.footer-route {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
}

.footer-route i {
  font-size: 19px;
  transition: transform 0.3s ease;
}

.footer-route:hover i {
  transform: translateX(5px);
}

/* ===============================
   PARTE INFERIOR
================================== */

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  display: flex;
  min-height: 82px;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.footer-developed {
  display: flex;
  gap: 5px;
  align-items: center;
}

.footer-developed a {
  color: var(--secondary);
  font-weight: 900;
  transition: color 0.3s ease;
}

.footer-developed a:hover {
  color: #fff;
}

/* ===============================
   RESPONSIVIDADE
================================== */

@media (max-width: 1150px) {
  .footer-main {
    grid-template-columns: 1.2fr 0.8fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 1 / 4;
  }

  .footer-column:last-child .footer-address {
    max-width: 360px;
  }
}

@media (max-width: 850px) {
  .site-footer {
    padding-top: 75px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 35px;
  }

  .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-top: 65px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-bottom: 55px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    padding: 25px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .footer-logo-text strong {
    font-size: 18px;
  }
}
