/* Pack.Orbbt.CSS */
.botao-destaque-913627 {
font-size: 18px;
letter-spacing: 2px;
text-transform: uppercase;
display: inline-block;
text-align: center;
font-weight: bold;
padding: 0.7em 2em;
border: 3px solid #FF0072; /* Cor da borda */
border-radius: 2px; /* Bordas arredondadas */
position: relative;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1); /* Sombra */
color: #FF0072; /* Cor do texto */
text-decoration: none;
transition: 0.3s ease all; /* Transição suave */
z-index: 1;
}
.botao-destaque-913627:before {
transition: 0.5s all ease;
position: absolute;
top: 0;
left: 50%;
right: 50%;
bottom: 0;
opacity: 0;
content: '';
background-color: #FF0072; /* Fundo ao passar o mouse */
z-index: -1;
}
.botao-destaque-913627:hover,
.botao-destaque-913627:focus {
color: white; /* Texto muda para branco no hover/focus */
}
.botao-destaque-913627:hover:before,
.botao-destaque-913627:focus:before {
transition: 0.5s all ease;
left: 0;
right: 0;
opacity: 1; /* Fundo aparece no hover/focus */
}
.botao-destaque-913627:active {
transform: scale(0.9); /* Efeito de clique */
}