/*ESTILO DE BOTONES*/

.boton {
  align-items: center;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  /*font-size: 1rem;*/
  /*font-weight: 700;*/
  line-height: 1.5;
  text-decoration: none;
  text-transform: uppercase;
  outline: 0;
  border: 0;
  padding: 1rem;
}

.boton:before {
  background-color: #fff;
  content: "";
  display: inline-block;
  height: 1px;
  margin-right: 10px;
  transition: all .42s cubic-bezier(.25,.8,.25,1);
  width: 0;
}

.boton:hover:before {
  background-color: #fff;
  width: 3rem;
}

/*ESTILO 1 DE BOTONES*/

.boton1 {
  width: fit-content;
  height: fit-content;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #757575;
  cursor: pointer;
  background-color: #e9e9e9;
  transition: all 0.2s ease-in-out 0ms;
  user-select: none;
  font-family: 'Poppins', sans-serif;
}

.boton1:hover {
  background-color: #f1f1f1;
  box-shadow: 0px 0px 20px -18px;
}

.boton1:active {
  transform: scale(0.95);
}

/*ESTILO 2 DE BOTONES*/

.boton2 {
  width: fit-content;
  height: fit-content;
  padding: 8px;
  border-radius: 5px;
  border: 2.5px solid #E0E1E4;
  box-shadow: 0px 0px 20px -20px;
  cursor: pointer;
  background-color: white;
  transition: all 0.2s ease-in-out 0ms;
  user-select: none;
  font-family: 'Poppins', sans-serif;
}

.boton2:hover {
  background-color: #f1f1f1;
  box-shadow: 0px 0px 20px -18px;
}

.boton2:active {
  transform: scale(0.95);
}

/*ESTILO 3 DE BOTONES*/

.boton3 {
  width: 10em;
  position: relative;
  height: 3.5em;
  border: 3px ridge #149CEA;
  outline: none;
  background-color: transparent;
  color: white;
  transition: 1s;
  border-radius: 0.3em;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.boton3::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 3%;
  width: 95%;
  height: 40%;
  /*background-color: #212121;*/
  transition: 0.5s;
  transform-origin: center;
}

.boton3::before {
  content: "";
  transform-origin: center;
  position: absolute;
  top: 80%;
  left: 3%;
  width: 95%;
  height: 40%;
  /*background-color: #212121;*/
  transition: 0.5s;
}

.boton3:hover::before, button:hover::after {
  transform: scale(0)
}

.boton3:hover {
  box-shadow: inset 0px 0px 25px #1479EA;
}

/* ESTILO 4 DE BOTONES */

.boton4 {
 display: inline-block;
 border-radius: 4px;
 background-color: #efefef;
 border: none;
 text-align: center;
 transition: all 0.5s;
 cursor: pointer;
 margin: 5px;
 font-size: 15px;
 height: 30px;
}

.boton4 span {
 cursor: pointer;
 display: inline-block;
 position: relative;
 transition: 0.5s;
}

.boton4 span:after {
 content: '«';
 position: absolute;
 opacity: 0;
 top: 0;
 left: -15px;
 transition: 0.5s;
}

.boton4:hover span {
 padding-left: 15px;
}

.boton4:hover span:after {
 opacity: 1;
 left: 0;
}

/*BOTON CON SVG*/

.botonSvg {
 display: flex;
 height: 3em;
 width: 100px;
 align-items: center;
 justify-content: center;
 background-color: #eeeeee4b;
 border-radius: 5px;
 letter-spacing: 1px;
 transition: all 0.1s linear;
 cursor: pointer;
 border: none;
 background: #fff;
}

.botonSvg > svg {
 margin-right: 5px;
 font-size: 20px;
 transition: all 0.4s ease-in;
}

.botonSvg > i {
  margin-left: 5px;
  font-size: 20px;
  transition: all 0.4s ease-in;
}

.botonSvg:hover > svg {
 font-size: 1.2em;
 transform: translateX(5px);
}

.botonSvg:hover > i {
  transform: translateX(5px);
}

/*BOTON CON IMG*/

.botonIMG {
 display: flex;
 height: 3em;
 width: 100px;
 align-items: center;
 justify-content: center;
 background-color: #eeeeee4b;
 border-radius: 5px;
 letter-spacing: 1px;
 transition: all 0.1s linear;
 cursor: pointer;
 border: none;
 background: #fff;
}

.botonIMG > img {
 margin-right: 5px;
 font-size: 20px;
 transition: all 0.4s ease-in;
}

.botonIMG > i {
  margin-left: 5px;
  font-size: 20px;
  transition: all 0.4s ease-in;
}

.botonIMG:hover > img {
 font-size: 1.2em;
 transform: translateX(5px);
}

.botonIMG:hover > i {
  transform: translateX(5px);
}