/*
Theme Name:     Hello Elementor Child
Theme URI:      https://elementor.com/
Description:    Tema hijo de Hello Elementor
Author:         Luis Mercado
Author URI:     https://portafolio-two-xi-17.vercel.app/
Template:       hello-elementor
Version:        1.0
Text Domain:    hello-elementor-child
*/

/*
css de FAQ acordeon
*/
.faq-acordeon {
    margin: 0 auto;
}

.faq-pregunta {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Bold */
    font-style: normal;
    font-size: 18px;
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000; /* texto negro */
    background: #fff;
    transition: background 0.3s ease;
}

.faq-icon {
    width: 18px;
    height: 18px;
    margin-left: 10px;
    transition: transform 0.3s ease;
    display: inline-flex;
}

.faq-pregunta.active .faq-icon {
    transform: rotate(180deg);
}

.faq-respuesta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fff;
}

.faq-respuesta p {
    margin: 12px 0 18px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500; /* Medium */
    font-style: normal;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}
