/* ajuda.css
   FAQ accordion styles used on the help page. Includes question headers,
   answer panels, and expanded state behavior for interactive entries.
*/
.faq-item {
            margin-bottom: 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
        }
        /* Clickable question heading that toggles each FAQ answer */
        .faq-question {
            background-color: #f8f9fa;
            padding: 15px 20px;
            cursor: pointer;
            font-weight: 600;
            color: var(--primary-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.2s;
        }
        .faq-question:hover {
            background-color: #eef2f5;
        }
                /* Hidden FAQ answer area that expands when the question is opened */
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            color: var(--text-muted);
        }
        .faq-answer.open {
            padding: 15px 20px;
            max-height: 500px;
        }
        .faq-question i {
            transition: transform 0.3s;
        }
        .faq-question.open i {
            transform: rotate(180deg);
        }
