.elementor-kit-110{--e-global-color-primary:#384DAD;--e-global-color-secondary:#BC96DD;--e-global-color-text:#778BA9;--e-global-color-accent:#C7E9F2;--e-global-color-888554c:#384DAD;--e-global-color-f60ee91:#C7E9F2;--e-global-color-7eabd3b:#FFFFFF;--e-global-color-bead9ff:#0B2A4C;--e-global-color-36ebc1a:#E9066C;--e-global-color-ab46fda:#066AE9;--e-global-color-e78b656:#F800E3;--e-global-color-a8b4af7:#00BF63;--e-global-color-4c4d089:#EDD5EB;--e-global-color-4c33725:#C7E9F2;--e-global-color-d3990cc:#DCE7FF;--e-global-color-6127640:#D10404;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Poppins";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Inter";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Inter";--e-global-typography-accent-font-weight:500;}.elementor-kit-110 e-page-transition{background-color:var( --e-global-color-4c4d089 );}.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 base */
.laser-efecto {
    position: relative;
    overflow: hidden;
}
/* Base para cualquier contenedor con efecto láser */
.laser-efecto,
.laser-efecto-activo {
    position: relative;
    overflow: hidden;
}
/* Scanline permanente en contenedor */
.laser-efecto-activo::after {
    content: "";
    position: absolute;
    top: -10%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(248, 0, 227, 0.7);
    box-shadow: 0 0 12px rgba(248, 0, 227, 0.6);
    pointer-events: none;
    animation: scanline 6s linear infinite;
}

/* Botón */
.laser-efecto .elementor-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Scanline */
.laser-efecto .elementor-button::after {
    content: "";
    position: absolute;
    top: -10%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    qubox-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    opacity: 0;
    pointer-events: none;
}



/* Activar scanline en hover */
.laser-efecto .elementor-button:hover::after {
    opacity: 1;
    animation: scanline 1.8s linear infinite;
}

/* Animación */
@keyframes scanline {
    0% {
        top: -10%;
    }
    100% {
        top: 110%;
    }
}/* End custom CSS */