/*
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.4.6.1773851856
Updated: 2026-03-18 16:37:36

*/

/* Contenedor Principal */
.h4g-custom-accordion {
    width: 100%;
    background: transparent;
}

/* Ocultar el checkbox que hace la magia */
.h4g-accordion-input {
    display: none;
}

/* Encabezado del Acordeón */
.h4g-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #1a1a1a;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px solid #333;
    transition: background 0.3s;
}

.h4g-accordion-header:hover {
    background: #252525;
}

/* Icono + / - */
.h4g-accordion-icon::after {
    content: '+';
    font-size: 20px;
    color: #a855f7; /* Color púrpura */
}

.h4g-accordion-input:checked + .h4g-accordion-header .h4g-accordion-icon::after {
    content: '-';
}

/* Contenido del Acordeón */
.h4g-accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #111;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.h4g-accordion-content p {
    padding: 20px;
    margin: 0;
    color: #ccc;
    line-height: 1.6;
}

/* Resaltar el primer acordeón (Activation Details) */
.h4g-accordion-item:first-child .h4g-accordion-header {
    border-left: 3px solid #a855f7; /* Borde púrpura a la izquierda */
    background: #222;
}

.h4g-accordion-item:first-child .h4g-accordion-content {
    background: #0f0f0f;
}

/* Abrir al hacer click */
.h4g-accordion-input:checked ~ .h4g-accordion-content {
    max-height: 1000px; /* Suficiente para contenido largo como Activation Details */
    border-bottom: 1px solid #a855f7;
}