.elementor-kit-5{--e-global-color-primary:#2F2E7D;--e-global-color-secondary:#00A8B0;--e-global-color-text:#2D2D2D;--e-global-color-accent:#275CAB;--e-global-color-0e5c9b9:#FFFFFF;--e-global-color-bf1731b:#EDF3F3;--e-global-typography-primary-font-family:"Montserrat";--e-global-typography-primary-font-weight:700;--e-global-typography-secondary-font-family:"Montserrat";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--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 *//* Contenedor del Botón: Prepara el terreno */
.boton-destello .elementor-button {
    position: relative;
    overflow: hidden; /* Esto evita que el brillo se vea fuera del botón */
    z-index: 1;
}

/* El "Fantasma" del brillo (Pseudo-elemento) */
.boton-destello .elementor-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Empieza escondido a la izquierda */
    width: 100%; /* El ancho del haz de luz */
    height: 100%;
    
    /* El degradado diagonal (Transparente -> Blanco -> Transparente) */
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent
    );
    
    /* La Animación */
    /* 1.2s es el ciclo total (0.6s pasa + 0.6s espera) */
    animation: shine-effect 1.2s infinite; 
}

/* La Coreografía del movimiento */
@keyframes shine-effect {
    0% {
        left: -100%; /* Inicio fuera a la izquierda */
    }
    40% {
        left: 200%; /* Cruza hasta la derecha rápido (en menos de 0.6s) */
    }
    100% {
        left: 200%; /* Se queda ahí esperando hasta que termine el ciclo de 1.2s */
    }
}/* End custom CSS */