.elementor-37759 .elementor-element.elementor-element-684157e{--display:flex;--margin-top:-40px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(max-width:768px){.elementor-37759 .elementor-element.elementor-element-684157e{--margin-top:-14%;--margin-bottom:0%;--margin-left:0%;--margin-right:0%;}}/* Start custom CSS *//* Estilo global para todos os botões do Elementor (tamanho controlado no editor) */
.elementor-button {
  /* Fundo em degradê */
  background: linear-gradient(90deg, #4a86e8, #5ac8d9, #4ed5b2) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  font-weight: bold !important; /* Mantido para a fonte em negrito */
  cursor: pointer;
  
  /* Propriedades necessárias para a animação */
  position: relative;
  overflow: hidden;
  box-shadow: none !important;
  
  /* Transição */
  transition: all 0.3s ease !important;
}

/* Efeito Hover para todos os botões */
.elementor-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}

/* Efeito de clique (pressionar) para todos os botões */
.elementor-button:active {
  transform: scale(1);
  transition: all 0.1s ease-in !important;
}


/* --- Animação de luz (mantida do código original) --- */

.elementor-button:hover::before {
  -webkit-animation: sh02 0.7s 0s linear;
  -moz-animation: sh02 0.7s 0s linear;
  animation: sh02 0.7s 0s linear;
}

.elementor-button::before {
  content: '';
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff; /* Cor do efeito de luz */
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}/* End custom CSS */