.elementor-377 .elementor-element.elementor-element-e3e2341{--display:flex;}body.elementor-page-377:not(.elementor-motion-effects-element-type-background), body.elementor-page-377 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #000000 0%, #282828 100%);}/* Start custom CSS */.boton-parpadeo {
  animation: parpadeo 1.5s infinite ease-in-out;
  box-shadow: 0 0 10px #32FCB9;
  border: 2px solid #32FCB9;
  color: #000; /* cambia a #fff si el fondo es oscuro */
  background-color: transparent;
  border-radius: 6px;
  transition: all 0.3s ease;
}

@keyframes parpadeo {
  0%, 100% {
    box-shadow: 0 0 10px #32FCB9;
  }
  50% {
    box-shadow: 0 0 20px #32FCB9, 0 0 30px #32FCB9;
  }
}

.boton-ondas {
  position: relative;
  background-color: #32FCB9;
  color: #000; /* mejor contraste sobre fondo claro */
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  z-index: 1;
  overflow: hidden;
  animation: resplandor 2s infinite ease-in-out;
}

.boton-ondas::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(50,252,185,0.3) 0%, rgba(50,252,185,0) 80%);
  animation: onda 2s infinite ease-in-out;
  z-index: -1;
}

@keyframes onda {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  50% {
    transform: scale(1);
    opacity: 0.2;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.6;
  }
}

@keyframes resplandor {
  0%, 100% {
    box-shadow: 0 0 10px #32FCB9, 0 0 20px rgba(50,252,185,0.3);
  }
  50% {
    box-shadow: 0 0 20px #32FCB9, 0 0 40px rgba(50,252,185,0.5);
  }
}/* End custom CSS */