.footer {
  background: #0b1f44;
  color: white;
  padding: 60px 40px 30px;
}

/* TOP */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* LOGO */
.footer-logo img {
  width: 120px;
}

/* TEXTOS */
.footer h3 {
  font-weight: 500;
}

/* REDES */
.social-icons {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.social-icons img {
  width: 50px;
  transition: 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* LINKS INFERIORES */
.footer-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.9;
}

.footer-bottom a:hover {
  opacity: .7;
}
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {

   .footer {
    padding: 60px 20px;
  }
  
  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

}