/* Archivo: assets/css/style.css */

.faqs-accordion {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-top:1rem;
    margin-bottom:1rem;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #f7f7f7;
    border: none;
    padding: 15px;
    font-size: 1.2rem;
    font-weight:500;
    cursor: pointer;
    outline: none;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e2e2e2;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .8s ease-out;
    /*padding: 0 15px;*/
    padding:0;
    font-size: 14px;
    background: #fff;
}

.faq-answer .content{
    padding:15px;
}

.faq-answer .content p{
    margin-top:0;
}


.faq-answer.open {
    max-height: 1000px; /* Suficiente para la mayoría de las respuestas */
    /*padding: 15px;*/
    padding:0;
    transition: max-height 1s ease-in;
}

.faq-symbol {
    float: right;
    font-size:18px;
    font-weight: normal;
    margin-left: 10px;
}

