/* ==========================================================================
   Componente: FAQ Acordeón (Premium & Reutilizable)
   ========================================================================== */

.faq-accordion {
    width: 100%;
    margin-top: 1.5rem;
}

.faq-item {
    background: rgba(20, 20, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(101, 31, 255, 0.3);
    box-shadow: 0 4px 20px rgba(101, 31, 255, 0.05);
}

.faq-item.active {
    border-color: rgba(101, 31, 255, 0.5);
    background: rgba(25, 20, 35, 0.8);
    box-shadow: 0 8px 30px rgba(101, 31, 255, 0.08);
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 24px;
    text-align: left;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    outline: none;
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    font-family: var(--font-primary), sans-serif;
    color: #ffffff;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: #9d7cff;
}

.faq-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon-wrapper {
    transform: rotate(180deg);
    background: rgba(101, 31, 255, 0.15);
    color: #9d7cff;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    padding: 0 24px 24px 24px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.faq-answer strong {
    color: #ffffff;
}
