/* BOTONES */

.btn .vce-button, .btn-normal {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 57px;
  padding: 15px 60px 15px 43px !important;
  border: 1px solid var(--c-borde);
  color: var(--c-blanco);
  background-color: transparent !important;
  transition: border-color 0.2s;
  text-decoration: none;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 600;
}

.btn .vce-button:hover, .btn-normal:hover {
  border-color: var(--c-fondo) !important;
}

.btn .vce-button::after {
  content: '';
  position: absolute;
  right: 12%;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url('/wp-content/uploads/2025/12/arrow-right.webp');
  background-size: cover;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn .vce-button:hover::after {
  transform: translateY(-50%) translateX(5px); 
}


.btn-normal {
  padding: 15px 43px !important;
}

.btn.abajo .vce-button::after, .btn.abajo .vce-button:hover::after {
  transform: translateY(-50%) rotate(90deg);
}

/* oscuro */

button.vce-button {
    position: relative;
}
.btn-dark .vce-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 57px;
  padding: 15px 60px 15px 43px !important;
  border: 1px solid var(--c-primario);
  color: var(--c-negro) !important;
  background-color: transparent !important;
  transition: border-color 0.2s;
  text-decoration: none;
  font-family: var(--f-sans);
  font-size: 14px;
  font-weight: 600;
}

.btn-dark .vce-button:hover {
  border-color: var(--c-secundario) !important;
  color: var(--c-secundario) !important;
}

.btn-dark .vce-button::after {
  content: '';
  position: absolute;
  right: 12%;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url('/wp-content/uploads/2025/12/arrow-right.webp');
  background-size: cover;
  filter: brightness(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn-dark .vce-button:hover::after {
  transform: translateY(-50%) translateX(5px); 
}

.btn-dark.abajo .vce-button::after, .btn-dark.abajo .vce-button:hover::after {
  transform: translateY(-50%) rotate(90deg);
}

button[type="submit"] {
  position: relative;

  &::after {
    
    right: 20% !important;
  }
}

/* BOTÓN ENVÍO FORMULARIO */
