/* === FAQ v2.0 (NUEVO) === */

.tc-faq {
    background: var(--tc-bg-alt);
    padding: var(--tc-section-py) 0;
}

.tc-faq-list {
    margin: 0 auto;
}

.tc-faq-item {
    border-bottom: 1px solid var(--tc-border);
}

.tc-faq-question {
    align-items: center;
    background: none;
    border: none;
    color: var(--tc-ink);
    cursor: pointer;
    display: flex;
    font-family: var(--tc-font-body);
    font-size: var(--tc-text-lg);
    font-weight: 700;
    gap: var(--tc-space-md);
    justify-content: space-between;
    padding: var(--tc-space-xl) 0;
    text-align: left;
    transition: color 0.3s ease;
    width: 100%;
}

.tc-faq-question:hover {
    color: var(--tc-gold);
}

.tc-faq-icon {
    flex-shrink: 0;
    stroke: currentColor;
    transition: transform 0.3s ease, color 0.3s ease;
}

.tc-faq-item.is-open .tc-faq-icon {
    color: var(--tc-gold);
    transform: rotate(45deg);
}

.tc-faq-item.is-open .tc-faq-question {
    color: var(--tc-gold);
}

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

.tc-faq-answer p {
    color: var(--tc-ink-soft);
    line-height: 1.7;
    max-width: 680px;
    padding: 0 0 var(--tc-space-xl);
}

@media (max-width: 640px) {
    .tc-faq-question {
        font-size: var(--tc-text-base);
    }
}
