/*==================================================
FOOTER
==================================================*/

.footer {
  position: relative;

  padding: 30px 0 30px;

  background: linear-gradient(180deg, #060b18 0%, #08111f 100%);

  border-top: 1px solid rgba(255, 255, 255, 0.06);

  overflow: hidden;
}

.footer::before {
  content: "";

  position: absolute;

  left: 50%;
  top: -320px;

  transform: translateX(-50%);

  width: 650px;
  height: 650px;

  background: radial-gradient(
    circle,
    rgba(47, 125, 255, 0.14),
    transparent 72%
  );

  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 2;
}

/*==================================================
LAYOUT
==================================================*/

.footer-content {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 80px;

  padding-bottom: 60px;
}

/*==================================================
LOGO
==================================================*/

.footer-brand {
  max-width: 520px;
}

.footer-logo {
  display: inline-flex;
font-weight: 900;
font-size: 20px;
  align-items: center;

  margin-bottom: 26px;
}

.footer-logo img {
  height: 72px;

  width: auto;

  object-fit: contain;
}

.footer-brand p {
  color: var(--text2);

  font-size: 16px;

  line-height: 1.9;

  margin-bottom: 35px;
}

/*==================================================
SOCIAL
==================================================*/

.footer-social {
  display: flex;

  gap: 14px;
}

.footer-social a {
  width: 48px;
  height: 48px;

  display: flex;

  justify-content: center;
  align-items: center;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.06);

  color: var(--text2);

  font-size: 20px;

  transition: 0.35s;
}

.footer-social a:hover {
  color: #fff;

  border-color: rgba(47, 125, 255, 0.4);

  background: rgba(47, 125, 255, 0.15);

  transform: translateY(-4px);
}

/*==================================================
CONTATO
==================================================*/

.footer-contact {
  display: flex;

  flex-direction: column;

  gap: 22px;

  min-width: 280px;
}

.footer-contact h3 {
  font-size: 20px;

  font-weight: 700;

  margin-bottom: 8px;
}

.footer-item {
  display: flex;

  align-items: center;

  gap: 14px;

  color: var(--text2);

  transition: 0.3s;
}

.footer-item i {
  font-size: 22px;

  color: var(--primary);
}

.footer-item span {
  font-size: 15px;
}

.footer-item:hover {
  color: #fff;

  transform: translateX(6px);
}

/*==================================================
BOTTOM
==================================================*/

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom span {
  color: #8f9bb2;

  font-size: 14px;
}

.footer-bottom strong {
  color: #fff;
}

/*==================================================
RESPONSIVO
==================================================*/

@media (max-width: 900px) {
  .footer {
    padding: 70px 0 30px;
  }

  .footer-content {
    flex-direction: column;

    align-items: center;

    text-align: center;

    gap: 50px;
  }

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

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact {
    align-items: center;
  }

  .footer-item:hover {
    transform: none;
  }

  .footer-bottom {
    flex-direction: column;

    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 60px 0 25px;
  }

  .footer-logo img {
    height: 58px;
  }

  .footer-brand p {
    font-size: 15px;

    line-height: 1.8;
  }

  .footer-contact h3 {
    font-size: 18px;
  }

  .footer-item span {
    font-size: 14px;
  }

  .footer-social a {
    width: 44px;
    height: 44px;

    font-size: 18px;
  }

  .footer-bottom {
    padding-top: 22px;
  }

  .footer-bottom p,
  .footer-bottom span {
    font-size: 13px;
  }
}
