.elementor-139:not(.elementor-motion-effects-element-type-background), .elementor-139 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #050000 0%, #f2295b 100%);}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS */document.addEventListener("DOMContentLoaded", function() {
    let btn = document.getElementById("boton-subir");
    
    window.addEventListener("scroll", function() {
        if (window.scrollY > 100) {
            btn.classList.remove("hidden");
        } else {
            btn.classList.add("hidden");
        }
    });

    btn.addEventListener("click", function(event) {
        event.preventDefault();
        window.scrollTo({
            top: 0,
            behavior: "smooth"
        });
    });
});/* End custom CSS */