/* ============================================
   ESTILOS DEL FOOTER
   ============================================ */

.footer {
  background: #011226;
  color: white;
  padding: 60px 0 20px;
}

.footer h5 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h5:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary);
}

.footer .contact-info p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer .contact-info i {
  color: var(--primary);
  margin-right: 10px;
  width: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
}