.elementor-kit-6{--e-global-color-primary:#00B4FF;--e-global-color-secondary:#989EA5;--e-global-color-text:#FFFFFF;--e-global-color-accent:#23C93A;--e-global-color-83463c7:#04040F;--e-global-color-4e574cb:#E2A212;--e-global-color-d8bbd47:#2D1830;--e-global-color-60f6365:#12002B;--e-global-color-546769b:#7A2CCF;--e-global-typography-primary-font-family:"Archivo Black";--e-global-typography-primary-font-size:36px;--e-global-typography-primary-font-weight:500;--e-global-typography-secondary-font-family:"Archivo";--e-global-typography-secondary-font-size:26px;--e-global-typography-secondary-font-weight:500;--e-global-typography-text-font-family:"Archivo";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Archivo";--e-global-typography-accent-font-weight:900;background-color:var( --e-global-color-83463c7 );}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-6{--e-global-typography-primary-font-size:32px;--e-global-typography-secondary-font-size:26px;--e-global-typography-text-font-size:18px;--e-global-typography-accent-font-size:26px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.azul {color:#00B4FF;}
.amarelo {color:#E2A212;}



.pulse-button {
  position: relative; /* Required for child element positioning */
  border-radius: 6px;
  z-index: -1;

}

.pulse-button::before { /* Target the first pseudo-element (shadow) */
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent; /* Button background shows through */
  border-radius: inherit;
  box-shadow: 0 0 0 10px rgba(248, 241, 233, 0.2); /* Initial shadow */
  animation: pulse-fade 1s infinite; /* Animation for pulsing */
-moz-animation: pulse-fade 1s infinite;
-webkit-animation: pulse-fade 1s infinite;
}

@keyframes pulse-fade {
    0% {
        box-shadow: 0 0 0 0 rgba(0,180,255, 1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0,180,255, 0);
    }
    100% {
        box-shadow: 0 0 0 50px rgba(0,180,255, 0);
    }
}


.pulseyellow {
  position: relative; /* Required for child element positioning */
  border-radius: 6px;
  z-index: -1;}

.pulseyellow:before { /* Target the first pseudo-element (shadow) */
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent; /* Button background shows through */
  border-radius: inherit;
  box-shadow: 0 0 0 10px rgba(226, 162, 18, 0.2); /* Initial shadow */
  animation: pulseyellow-fade 1s infinite; /* Animation for pulsing */
-moz-animation: pulseyellow-fade 1s infinite;
-webkit-animation: pulseyellow-fade 1s infinite;
}

@keyframes pulseyellow-fade {
    0% {
        box-shadow: 0 0 0 0 rgba(226, 162, 18, 1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(226, 162, 18, 0);
    }
    100% {
        box-shadow: 0 0 0 50px rgba(226, 162, 18, 0);
    }
}/* End custom CSS */