

.mggdownload {
  overflow: hidden;
  border-radius: 5px;
  background: rgba(11, 0, 107, 0.329);
  border: 2px solid rgb(31, 0, 82);
  padding: 34px 0 34px 38px;
  min-width: 220px;
  width: 220px;
  display: inline-block;
  position: relative;
  transition: all 300ms ease;
  margin-right: 20px;
  text-decoration: none;
  box-sizing: content-box;
}

.mggdownload span {
  display: block;
  position: relative;
  z-index: 1;
  color: white;
}

.mggdownload svg {
  z-index: 0;
  fill: rgba(255,255,255,1);
  position: absolute;
  left: 60%;
  top: 50%;
  width: 22%;
  height: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: all 350ms ease-out;
}

.mggdownload:hover {
  padding: 34px 0;
  color: rgba(0,124,205,1);
}

.mggdownload:hover svg {
  left: 60%; 
  transform: translate(-50%, -50%) rotate(60deg) scale(1.5);
}

.mggcentralizar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}




