.elementor-1218 .elementor-element.elementor-element-3d395567{--display:flex;}/* Start custom CSS for contact-buttons-var-5, class: .elementor-element-273fcacd *//* --- ANIMACIÓN PULSANTE DEL BOTÓN DE WHATSAPP --- */
.e-contact-buttons__chat-button {
    animation: wa-pulse 2.2s ease-out infinite;
    position: relative;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(37,211,102,.35);
}

/* --- SEGUNDA SOMBRA ANIMADA (halo suave) --- */
.e-contact-buttons__chat-button:after {
    content:"";
    position:absolute; 
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    box-shadow: 0 6px 16px rgba(58,200,52,.35);
    animation: wa-pulse 4.2s ease-out infinite;
    transition: 500ms;
    pointer-events: none;
}

/* --- KEYFRAMES DEL PULSO --- */
@keyframes wa-pulse {
  0%{ 
    transform: scale(1); 
    box-shadow: 
      0 0 0 0 rgba(58,211,102,.5), 
      0 6px 16px rgba(58,211,102,.35); 
  }
  60%{ 
    transform: scale(1.06); 
    box-shadow: 
      0 0 0 16px rgba(58,211,102,0), 
      0 6px 16px rgba(58,211,102,.2); 
  }
  100%{ 
    transform: scale(1); 
    box-shadow: 
      0 0 0 0 rgba(58,211,102,0), 
      0 6px 16px rgba(37,211,102,.35); 
  }
}

/* --- HOVER --- */
.e-contact-buttons__chat-button:hover {
   box-shadow: 0 6px 16px rgba(58,200,52,.35);
   transform: scale(1.12);
}/* End custom CSS */