footer {
  background: var(--dark-color);
  color: white;
  padding: 40px 0 20px;
}

footer h5 {
  font-weight: 600;
  margin-bottom: 16px; /* Reducido de 20px */
  
}

footer p {
  
  line-height: 1.5;
}

footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  
}

footer a:hover {
  color: white;
}

footer ul {
  margin-bottom: 0;
}

footer ul li {
  margin-bottom: 8px; /* Espaciado entre links */
}

footer .social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 10px;
  transition: all 0.3s ease;
  font-size: 1.25rem; /* Tamaño de iconos sociales */
}

footer .social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

footer .text-center p {
  font-size: 0.8125rem; /* 13px - copyright más pequeño */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  footer {
    padding: 30px 0 15px;
  }
  
  footer h5 {
    font-size: 0.9375rem; /* 15px en tablets */
    margin-bottom: 12px;
  }
  
  footer p,
  footer a {
    font-size: 0.8125rem; /* 13px en tablets */
  }
}

@media (max-width: 767px) {
  footer {
    padding: 25px 0 15px;
  }
  
  footer .col-md-6 {
    margin-bottom: 25px !important;
  }
  
  footer h5 {
    font-size: 0.875rem; /* 14px en móviles */
    margin-bottom: 10px;
  }
  
  footer p,
  footer a {
    font-size: 0.75rem; /* 12px en móviles */
  }
  
  footer ul li {
    margin-bottom: 6px; /* Menos espacio en móvil */
  }
  
  footer .social-links a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 1.125rem;
    margin-right: 8px;
  }
  
  footer hr {
    margin: 20px 0 !important;
  }
  
  footer .text-center p {
    font-size: 0.75rem; /* 12px copyright en móvil */
  }
}

@media (max-width: 575px) {
  footer {
    padding: 20px 0 15px;
  }
  
  footer .container {
    padding: 0 20px;
  }
  
  footer h5 {
    font-size: 0.8125rem; /* 13px en móviles pequeños */
  }
  
  footer p,
  footer a {
    font-size: 0.6875rem; /* 11px en móviles pequeños */
  }
}
