
/* Estilos mejorados para el footer */
.footer {
  padding: 30px 0 15px 0;
  font-size: 14px;
  background: #f6f9ff;
  border-top: 1px solid #e6e9f0;
  margin-top: 40px;
  position: relative;
  left: 0;
  right: 0;
  width: 100%;
}

/* Ajustar el contenedor del footer para que respete el sidebar */
.footer .footer-content {
  padding: 0 30px;
  max-width: 100%;
}

.footer .footer-info h6 {
  color: #012970;
  margin-bottom: 15px;
}

.footer .footer-links li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links a {
  color: #6c757d;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
}

.footer .footer-links a:hover {
  color: #4154f1;
  padding-left: 5px;
}

.footer .footer-links a i {
  font-size: 10px;
  margin-right: 5px;
}

.footer .copyright,
.footer .credits {
  color: #6c757d;
  font-size: 13px;
}

.footer .credits strong {
  color: #012970;
}

.footer hr {
  border-top: 1px solid #e6e9f0;
  opacity: 0.5;
}

.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #4154f1 !important;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  
  .footer .footer-links {
    margin-bottom: 20px;
  }
  
  .footer .row > div {
    margin-bottom: 15px;
  }
}

/* Badge de versión */
.footer .badge {
  font-weight: 500;
  font-size: 11px;
  padding: 5px 10px;
}

/* Animación sutil */
.footer .footer-links a,
.footer .badge {
  transition: all 0.3s ease;
}

.footer .badge:hover {
  transform: scale(1.05);
}
