/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.0.2.1718105822
Updated: 2024-06-11 11:37:02

*/
/*CURSOR*/
/*
* {
    cursor: none !important; 
}


.custom-cursor {
    width: .7rem;
    height: .7rem;
    border-radius: 50%;
    position: fixed; 
    pointer-events: none; 
    z-index: 10000;
    transition: background-color 0.2s ease, transform 0.1s ease;
    background-color: black;
}
*/
/*AQUI TERMINA CURSOR*/


/*BOTON ANIMADO AFTER*/
.Boton-hover .elementor-button {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent; /* Borde transparente inicialmente */
    transition: border-color 0.65s ease; /* Transición para el borde */
}

.Boton-hover .elementor-button:hover {
    border-color: black; /* Cambia a borde negro al hacer hover */
}

.Boton-hover .elementor-button::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black; /* Cambia a tu color deseado */
    transform: scaleY(0); /* Cambia a scaleY para animar de arriba a abajo */
    transform-origin: center !important; /* Establece el origen de la transformación en la parte central */
    transition: transform 0.65s ease;
    z-index: 0;
}

.Boton-hover .elementor-button:hover::after {
    transform: scaleY(1); /* Expande de arriba hacia abajo */
}

.Boton-hover .elementor-button .elementor-button-content-wrapper {
    position: relative;
    z-index: 1;
}


/*aqui acaba boton animado*/