/* BOTONES */

/* .btn-simple a {
  color: var(--c-negro) !important;
  background-color: var(--c-blanco) !important;
  text-transform: uppercase !important;
  font-weight: 400;
  font-size: 20px;
  padding: 20px 30px;
  border-radius: 0;
}

.btn-simple:hover a {
  color: var(--c-negro) !important;
  background-color: var(--c-amarillo) !important;
} */

.btn-simple a {
  position: relative;
  display: inline-block;
  color: var(--c-negro) !important;
  background-color: var(--c-blanco) !important;
  text-transform: uppercase !important;
  font-weight: 400;
  font-size: 20px;
  padding: 20px 30px;
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1;
}

/* Fondo y texto al hacer hover */
.btn-simple:hover a {
  background-color: var(--c-oscuro) !important;
  color: var(--c-amarillo) !important;
}

/* Bordes animados */
.btn-simple a::before,
.btn-simple a::after {
  content: "";
  position: absolute;
  background-color: var(--c-amarillo);
  transition: all 0.4s ease;
  z-index: 2;
}

/* Línea superior e inferior */
.btn-simple a::before {
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  box-shadow: 0 calc(100% - 2px) var(--c-amarillo);
}

/* Línea izquierda y derecha */
.btn-simple a::after {
  top: 0;
  left: 0;
  width: 2px;
  height: 0%;
  box-shadow: calc(100% - 2px) 0 var(--c-amarillo); /* right border via shadow */
}

/* Animación al hover */
.btn-simple:hover a::before {
  width: 100%;
}

.btn-simple:hover a::after {
  height: 100%;
}

/* FORMULARIO */
.btn-enviar {
  max-width: 100%;
}

.btn-enviar input[type="submit"] {
  color: var(--c-negro) !important;
  background-color: var(--c-blanco) !important;
  text-transform: uppercase !important;
  font-weight: 400;
  width: 250px;
}

.btn-enviar input[type="submit"]:hover {
  color: var(--c-negro) !important;
  background-color: var(--c-amarillo) !important;
  font-weight: 600;
}



  .btn .vce-button::after {

    content: "";

    background: var(--c-negro);

    position: absolute;

    z-index: -1;

    padding: 16px 20px;

    display: block;

    top: 0;

    bottom: 0;

    left: -100%;

    right: 100%;

    -webkit-transition: all 0.35s;

    transition: all 0.35s;

  }



  .btn .vce-button:hover::after {

    left: 0;

    right: 0;

    top: 0;

    bottom: 0;

    -webkit-transition: all 0.35s;

    transition: all 0.35s;

  }





  .btn-white .vce-button {

    color: var(--c-negro) !important;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);

    padding: 3px;

    margin: 0px;

    position: relative;

    border-left: 7px solid var(--c-negro) !important;

    border-right: 7px solid var(--c-negro) !important;

    background-color: var(--c-blanco) !important;

    text-transform: uppercase;

    font-size: 1rem
      /*16px*/
      !important;

    font-weight: 600;

    letter-spacing: 0.05rem;

    overflow: hidden;

    display: inline-block;

    z-index: 1;

  }



  .btn-white .vce-button:hover {

    color: var(--c-blanco) !important;

  }



  .btn-white .vce-button::after {

    content: "";

    background: var(--c-negro);

    position: absolute;

    z-index: -1;

    padding: 16px 20px;

    display: block;

    top: 0;

    bottom: 0;

    left: -100%;

    right: 100%;

    -webkit-transition: all 0.35s;

    transition: all 0.35s;

  }



  .btn-white .vce-button:hover::after {

    left: 0;

    right: 0;

    top: 0;

    bottom: 0;

    -webkit-transition: all 0.35s;

    transition: all 0.35s;

  }





 