.elementor-4990 .elementor-element.elementor-element-f1f456d{--display:grid;--e-con-grid-template-columns:repeat(2, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--grid-auto-flow:row;--background-transition:0.3s;}@media(max-width:1024px){.elementor-4990 .elementor-element.elementor-element-f1f456d{--grid-auto-flow:row;}}@media(max-width:767px){.elementor-4990 .elementor-element.elementor-element-f1f456d{--e-con-grid-template-columns:repeat(1, 1fr);--grid-auto-flow:row;}.elementor-4990 .elementor-element.elementor-element-ef2683f > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 20px 0px 20px;}}/* Start custom CSS *//* Estilos generales del acordeón */
.acordeon-automatico {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Estilo del título y colores */
.acordeon-titulo {
    display: flex;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    position: relative;
}

.acordeon-titulo h3 {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
    transition: color 0.3s ease-in-out;
}

.acordeon-seccion:not(.abierto) .acordeon-titulo h3 {
    color: #a0a0a0;
    padding: 10px 0;
}

.acordeon-seccion.abierto .acordeon-titulo h3 {
    color: #000;
}

/* Línea divisoria gris clara */
.linea-divisoria {
    position: relative;
    width: 100%;
    height: 3px; /* Grosor de la línea */
    background-color: #dcdcdc;
    overflow: hidden; /* Oculta la barra de carga cuando no está activa */
}

/* Línea de carga horizontal azul */
.barra-carga-horizontal {
    position: absolute;
    left: 0;
    top: 0;
    width: 0; /* Ancho inicial 0 */
    height: 100%;
    background-color: #007bff;
}

/* Animación de la barra de carga horizontal */
.acordeon-seccion.abierto .barra-carga-horizontal {
    animation: cargar-horizontal 10s linear forwards;
}

@keyframes cargar-horizontal {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Efecto de desvanecimiento y deslizamiento */
.acordeon-cuerpo {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-15px);
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, transform 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.acordeon-seccion.abierto .acordeon-cuerpo {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding: 5px 0;
}/* End custom CSS */