.elementor-910 .elementor-element.elementor-element-70cd132e{--display:flex;}.elementor-910 .elementor-element.elementor-element-673873f1 .e-contact-buttons__top-bar-title{font-size:20px;}.elementor-910 .elementor-element.elementor-element-673873f1 .e-contact-buttons__top-bar-subtitle{font-size:20px;}.elementor-910 .elementor-element.elementor-element-673873f1 .e-contact-buttons__message-bubble-name{font-size:15px;}.elementor-910 .elementor-element.elementor-element-673873f1 .e-contact-buttons__message-bubble-body{font-size:15px;}.elementor-910 .elementor-element.elementor-element-673873f1 .e-contact-buttons__message-bubble-time{font-size:13px;}.elementor-910 .elementor-element.elementor-element-673873f1 .e-contact-buttons{--e-contact-buttons-send-button-padding-block-end:5px;--e-contact-buttons-send-button-padding-block-start:5px;--e-contact-buttons-send-button-padding-inline-end:5px;--e-contact-buttons-send-button-padding-inline-start:5px;--e-contact-buttons-chat-box-width:353px;}/* Start custom CSS for contact-buttons, class: .elementor-element-673873f1 */.e-contact-buttons__chat-button {
  position: relative;
  z-index: 1;
}

/* Primeira onda */
.e-contact-buttons__chat-button::before,
.e-contact-buttons__chat-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  background-color: rgba(37, 211, 102, 0.5); /* Cor mais forte */
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: -1;
  animation: onda-whats 2.5s infinite ease-out;
}

/* Segunda onda com atraso */
.e-contact-buttons__chat-button::after {
  animation-delay: 1.25s;
}

@keyframes onda-whats {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.9;
  }
  70% {
    opacity: 0.2;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}/* End custom CSS */