.elementor-kit-5{--e-global-color-primary:#BE33A3;--e-global-color-secondary:#6689D9;--e-global-color-text:#F8FAFC;--e-global-color-accent:#264D7E;--e-global-color-131f997:#6689D9;--e-global-typography-primary-font-family:"Inter";--e-global-typography-primary-font-size:56px;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Inter";--e-global-typography-secondary-font-size:20px;--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Inter";--e-global-typography-accent-font-size:16px;--e-global-typography-accent-font-weight:500;}.elementor-kit-5 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){--kit-widget-spacing: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-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* Brilho Lento com Intervalo Curto entre Passadas */
.elementor-kit-5 .elementor-button, 
.elementor-kit-5 .elementor-button[type="submit"] {
    position: relative;
    overflow: hidden;
}

.elementor-kit-5 .elementor-button::before,
.elementor-kit-5 .elementor-button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%; /* Começa bem fora da visão */
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    /* O tempo total da animação (passada + espera) */
    animation: shine-slow 4s infinite linear; 
}

@keyframes shine-slow {
    /* 0% a 80%: A passada acontece devagar */
    0% {
        left: -150%;
    }
    80% {
        left: 150%;
    }
    /* 80% a 100%: O tempo de espera (curto) antes de reiniciar */
    100% {
        left: 150%;
    }
}
/* Brilho Lento para Botões Gutenberg - Versão Reforçada */
.wp-block-button a.wp-block-button__link {
    position: relative !important;
    overflow: hidden !important;
    display: inline-flex !important; /* Melhora o alinhamento do brilho */
    align-items: center;
    justify-content: center;
}

.wp-block-button a.wp-block-button__link::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -150% !important;
    width: 100% !important; /* Aumentado para cobrir todo o botão */
    height: 100% !important;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(255, 255, 255, 0) 100%
    ) !important;
    transform: skewX(-25deg) !important;
    animation: shine-slow 4s infinite linear !important;
    z-index: 1; /* Garante que o brilho fique acima da cor do botão */
}

@keyframes shine-slow {
    0% { left: -150%; }
    80% { left: 150%; }
    100% { left: 150%; }
}/* End custom CSS */