.footer{
  margin-top:120px;

  border-top:1px solid var(--border);

  background:#ffffff05;

  backdrop-filter:blur(10px);
}

.footer-container{
  max-width:1200px;

  margin:auto;
  padding:70px 20px 50px;

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

  gap:50px;
}

.footer h2{
  font-size:1.8rem;
  margin-bottom:20px;
}

.footer h3{
  margin-bottom:20px;
  color:var(--blue);
}

.footer p{
  color:var(--gray);
  line-height:1.8;
}

.footer-links,
.footer-contact{
  display:flex;
  flex-direction:column;
}

.footer-links a,
.footer-contact a{
  color:var(--gray);

  text-decoration:none;

  margin-bottom:14px;

  transition:.3s;
}

.footer-links a:hover,
.footer-contact a:hover{
  color:#ffffff;
  transform:translateX(6px);
}

/* BOTTOM */

.footer-bottom{
  border-top:1px solid #ffffff0f;

  padding:25px 20px;

  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;

  gap:15px;

  max-width:1200px;
  margin:auto;
}

.footer-bottom p{
  color:#8b93a7;
  font-size:.92rem;
}

/* RESPONSIVO */

@media(max-width:768px){

  .footer-container{
    gap:35px;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

}