.footer{
  background:linear-gradient(135deg, var(--azulOscuro), #061b38);
  color:white;
  padding:70px 6% 25px;
}

.footer-container{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:45px;
  max-width:1200px;
  margin:0 auto;
}

.footer-brand img{
  width:150px;
  margin-bottom:22px;
}

.footer-brand p{
  max-width:360px;
  line-height:1.7;
  color:rgba(255,255,255,.82);
}

.footer-column h3{
  color:var(--dorado);
  font-size:18px;
  margin-bottom:20px;
}

.footer-column a,
.footer-column p{
  display:block;
  color:rgba(255,255,255,.82);
  margin-bottom:12px;
  font-size:15px;
}

.footer-column a:hover{
  color:var(--dorado);
}

.footer-bottom{
  max-width:1200px;
  margin:45px auto 0;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.12);
  text-align:center;
}

.footer-bottom p{
  color:rgba(255,255,255,.65);
  font-size:14px;
}

@media(max-width:800px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-brand img{
    margin-left:auto;
    margin-right:auto;
  }

  .footer-brand p{
    margin:0 auto;
  }
}