<!-- start Simple Custom CSS and JS -->
<style type="text/css">
.reveal-button2 img {
	height: 26px;
}

.reveal-button2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none
}

.reveal-button2 img,
.reveal-button2 span {
  transition: all 0.8s ease;
}

/* Esconder o span por padrão */
.reveal-button2 .button-span {
    display: none;
    background-color: #FFFFFF;
    color: #2EDFF1;
    padding: 0px 20px;
    border-radius: 36px;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    cursor: pointer;
    border: solid 2px #fff;
    text-align: center;
}

.reveal-button2 .button-span-2 {
    display: none;
    background-color: #FFFFFF;
    color: #000000;
    padding: 0px 20px;
    border-radius: 36px;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    cursor: pointer;
    border: solid 2px #fff;
    text-align: center;
}

/* Efeito hover */
.reveal-button2:hover img {
  display: none;
}

.reveal-button2:hover .button-span {
  display: inline-block;
}

.reveal-button2:hover .button-span-2 {
  display: inline-block;
}</style>
<!-- end Simple Custom CSS and JS -->
