﻿/* FAQ - Asegurar que estilos no interfieran */
.faq-item {
    overflow: hidden;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    /* max-height se controla vía JS */
}

.faq-question {
    cursor: pointer;
    user-select: none;
}

    .faq-question:focus {
        outline: 2px solid var(--primary);
        outline-offset: -2px;
    }
