/* 
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 */

/* Contenedor principal */
.elementor-accordion {
    border-radius: 6px;
    overflow: hidden;
}


.elementor-tab-title {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0px;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
}

.accordion-title-area{
    display: flex;
    justify-content:flex-start ;
    align-items: center;
    gap: 20px;
}


.elementor-tab-content {
    display: none;
    padding: 20px 0px;
    line-height: 1.6;
}

.elementor-accordion-item.active .elementor-tab-content {
    display: block;
}


.elementor-accordion-svg-icon img {
    max-height: 40px;
    vertical-align: middle;
}


.elementor-accordion-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 20px;
    transition: transform 0.3s ease;
}


.elementor-accordion-icon-closed {
    display: inline-block;
}


.elementor-accordion-icon-opened {
    display: none;
}

.elementor-accordion-item.active .elementor-accordion-icon-closed {
    display: none;
}
.elementor-accordion-item.active .elementor-accordion-icon-opened {
    display: inline-block;
}

.elementor-tab-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px; /* evita saltos al colapsar */
}

.elementor-accordion-item.active .elementor-tab-content {
    max-height: 1000px; /* suficiente para todo el contenido */
    padding: 15px;
}
