/* CONTENEDOR GENERAL */

.category-faq-section {
    max-width: 800px;
    width: 100%;
    margin: 40px auto;
    padding: 20px;
    border-radius: 6px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    font-family: "Open Sans", Arial, sans-serif;
}

/* TÍTULO H2 */
.category-faq-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid black;
    padding-bottom: 10px;
}

/* FAQ ITEM */
.faq-accordion .faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 8px;
    border-radius: 4px;
    overflow: hidden;
}

/* PREGUNTA H3 */
.faq-question {
    cursor: pointer;
    position: relative;
    padding: 12px 16px;
    font-size: 1.1rem;
    font-weight: 500;
    background-color: #ffffff;
    transition: background 0.3s;
    font-weight: 700;
	
}

/* ICONO + / - */
.faq-question:after {
    content: "+";
    position: absolute;
    right: 16px
    font-size: 1.2rem;
    color: black;
    transition: transform 0.3s;
}

.faq-item.active .faq-question:after {
    content: "-";
    /*transform: translateY(-50%) rotate(180deg);*/
}

/* RESPUESTA */
.faq-answer {
    display: none;
    padding: 12px 16px;
    background-color: #f5f7f8;
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
    transition: max-height 0.3s ease;
}

/* ITEM ACTIVO */
.faq-item.active .faq-answer {
    display: block;
}

/* HOVER */
.faq-question:hover {
    background-color: #FFD46E;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .category-faq-section {
        padding: 15px;
    }
    .faq-question {
        font-size: 1rem;
        padding: 10px 14px;
    }
    .faq-answer {
        font-size: 0.95rem;
        padding: 10px 14px;
    }
}

.faq-question::after {
	right: 16px !important;
	top: 11px !important;
}