#linkCmsList {
  padding: 35px auto 15px;
  border-top: 1px solid #e0e0e0; /* Línea superior */
}
#linkCmsList div.row {
  justify-content: space-between;
}
.nav-footer-item {
  margin: 0 10px; /* Espaciado lateral entre elementos */
}
.nav-footer-item .link {
  font-size: 0.7rem;
  font-family: Roboto;
  color: #fff; /* Color del enlace */
  text-decoration: none; /* Sin subrayado */
  font-weight: 400; /* Negrita */
  transition: color 0.3s ease; /* Transición suave para el color */
}

.nav-footer-item .link:hover {
  color: #0056b3; /* Color del enlace al pasar el mouse */
  text-decoration: underline; /* Subrayado al pasar el mouse */
}

#linkCmsList p {
  font-size: 0.7rem;
  color: #383838;
  margin: 0.5rem 0;
}

@media (max-width: 575px) {
  #linkCmsList div.row {
    justify-content: center;
  }
  .nav-footer-item {
    padding: 2px 10px;
    text-align: center;
    margin: 0 0 10px;
  }
  .nav-footer-item:not(:last-child) {
    border-right: 1px solid #fff;
  }
}
