/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

/* Estilos para el widget de Categorías de Generador */
.elementor-categorias-generador {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 20px; /* Ajusta el espacio entre elementos según necesites */
}

.categoria-generador-item {
    border: 1px solid #ddd; /* Bordes sutiles para cada ítem */
    padding: 10px; /* Espaciado interno */
    border-radius: 5px; /* Bordes redondeados */
    transition: all 0.3s ease; /* Transición suave para efectos de hover */
}

.categoria-generador-item a {
    text-decoration: none; /* Remueve el subrayado de los enlaces */
    color: #333; /* Color del texto */
    font-weight: bold; /* Fuente en negrita */
}

.categoria-generador-item:hover {
    border-color: #007cba; /* Cambia el color del borde al hacer hover */
    background-color: #f0f0f0; /* Cambia el color de fondo al hacer hover */
}
