/* ==========================================================================
   Estilos para la Página de Preguntas Frecuentes (FAQ)
   ========================================================================== */
.faq-page-container {
    max-width: 800px;
    margin: 64px auto;
    padding: 0 24px;
    min-height: 60vh;
}
.faq-page-container h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-main);
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}
.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}
.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    user-select: none;
}
.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
    line-height: 1.6;
}
.faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
    max-height: 300px;
}
