.ver-todas-btn {
  color: var(--ver-todas-btn);
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.14;
  text-transform: uppercase;
  text-align: center;
  height: 38px;
  margin-top: 32px;
  position: relative;
  cursor: pointer;
}
.ver-todas-btn:hover:before {
  padding: 19px;
}
.ver-todas-btn:hover span {
  position: relative;
  z-index: 1;
  color: #fff;
}
.ver-todas-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  padding: 2px;
  background: linear-gradient(0deg, #ff6d00, #b42bff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 0;
  transition: all .2s;
}
.ver-todas-btn--white {
  background: none;
  border-radius: 20px;
  border: solid 2px #fff;
  color: #fff;
}
.ver-todas-btn--white:hover {
  background-color: #fff;
  color: #0f0f0f;
  transition: all .2s;
}
.ver-todas-btn--white:hover span {
  color: #0f0f0f;
}
.ver-todas-btn--white:before {
  display: none;
}
.ver-todas-btn .wp-block-button__link {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}