/* BOTONES */
/* Adaptación para el nuevo estilo */
.vce-button-custom {
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 15px;
  background-color: var(--c-primario);
  color: var(--c-blanco);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  margin-inline: auto;
  font-family: inherit;
  font-weight: 300;
}

/* Animación de flecha */
.vce-button-custom .arrow {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  position: relative;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  margin-left: 6px;
}

/* Línea extra que aparece al hacer hover */
.vce-button-custom .arrow::before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 3px;
  height: 2px;
  background-color: currentColor;
  transform: rotate(45deg);
  transform-origin: bottom right;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Hover del botón */
.vce-button-custom:hover {
  background-color: var(--c-primario-dark);
  color: #fff;
}

/* Hover del triángulo */
.vce-button-custom:hover .arrow {
  transform: rotate(-45deg) translate(4px, 4px);
}

/* Hover del trazo extra */
.vce-button-custom:hover .arrow::before {
  opacity: 1;
  width: 8px;
  background-color: currentColor;
}


/* Estilo alternativo para hover cuando se añade .hover-invertido */
.vce-button-custom.hover-invertido:hover {
  background-color: var(--c-fondo);
  color: var(--c-primario);
}

/* Flecha y su animación siguen funcionando */
.vce-button-custom.hover-invertido:hover .arrow {
  transform: rotate(-45deg) translate(4px, 4px);
  border-color: currentColor;
}

.vce-button-custom.hover-invertido:hover .arrow::before {
  opacity: 1;
  width: 8px;
  background-color: currentColor;
}











