.elementor-24 .elementor-element.elementor-element-afee0ce{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-24 .elementor-element.elementor-element-ca30f51{margin:12px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;text-align:center;}.elementor-24 .elementor-element.elementor-element-ca30f51 .elementor-heading-title{font-family:"Road Rage", Sans-serif;font-size:65px;font-weight:400;}.elementor-24 .elementor-element.elementor-element-1da5102{text-align:center;}.elementor-24 .elementor-element.elementor-element-1da5102 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:24px;font-weight:600;-webkit-text-stroke-color:#000000;stroke:#000000;color:#00FF98;}.elementor-24 .elementor-element.elementor-element-07e08cc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-24 .elementor-element.elementor-element-02bfb82{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-button .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-24 .elementor-element.elementor-element-41f37c2 .elementor-button{background-color:#08FF2A;font-family:"Roboto", Sans-serif;font-size:32px;font-weight:500;text-shadow:0px 0px 9px rgba(0, 0, 0, 0.98);fill:#FFFFFF;color:#FFFFFF;}.elementor-24 .elementor-element.elementor-element-41f37c2{margin:13px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:65px 0px 0px 0px;}.elementor-24 .elementor-element.elementor-element-ff6d11f{--display:flex;}@media(max-width:1024px){.elementor-24 .elementor-element.elementor-element-ca30f51{text-align:center;}.elementor-24 .elementor-element.elementor-element-ca30f51 .elementor-heading-title{font-size:79px;}.elementor-24 .elementor-element.elementor-element-1da5102{text-align:center;}.elementor-24 .elementor-element.elementor-element-41f37c2 .elementor-button{font-size:28px;}}@media(max-width:767px){.elementor-24 .elementor-element.elementor-element-ca30f51{margin:49px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;text-align:center;}.elementor-24 .elementor-element.elementor-element-ca30f51 .elementor-heading-title{font-size:54px;}.elementor-24 .elementor-element.elementor-element-1da5102{margin:-14px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;text-align:center;}.elementor-24 .elementor-element.elementor-element-1da5102 .elementor-heading-title{font-size:27px;}.elementor-24 .elementor-element.elementor-element-07e08cc{--content-width:500px;--min-height:173px;}.elementor-24 .elementor-element.elementor-element-41f37c2{margin:2px 2px calc(var(--kit-widget-spacing, 0px) + 2px) 2px;}.elementor-24 .elementor-element.elementor-element-41f37c2 .elementor-button{font-size:21px;border-radius:22px 22px 22px 22px;}}/* Start custom CSS for button, class: .elementor-element-41f37c2 */.pulsing-button {
  animation: pulse 10s infinite;
  border-radius: 9999px; /* Garante que o brilho seja redondo */
}

/* A definição da animação "pulse" */
@keyframes pulse {
  0% {
    /* Estado inicial: sem escala e sem sombra */
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); /* Cor verde, similar ao seu exemplo */
  }
  70% {
    /* Ponto máximo da animação: um pouco maior e com uma sombra externa transparente */
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(22, 163, 74, 0);
  }
  100% {
    /* Estado final: volta ao estado inicial para criar o loop */
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}/* End custom CSS */