/* ============================================================
   ARCHIGOS - FAQ Page Styles
   ============================================================ */

.faq-section { padding: 40px 0 80px; }

/* Accordion */
.faq-item {
    background: white;
    border: 1px solid #eef1f5;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: var(--accent); }
.faq-item.active { border-color: var(--accent); box-shadow: 0 4px 20px rgba(26,188,156,0.1); }
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    gap: 15px;
    transition: background 0.3s;
}
.faq-question:hover { background: var(--light); }
.faq-question h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    flex: 1;
}
.faq-item.active .faq-question h5 { color: var(--accent); }
.faq-question .faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: all 0.3s;
}
.faq-item.active .faq-toggle {
    background: var(--accent);
    color: white;
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
}
.faq-answer-inner {
    padding: 0 22px 20px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.75;
}

/* Category Tabs */
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.faq-tab {
    padding: 10px 22px;
    border: 2px solid #dce1e6;
    border-radius: 30px;
    background: white;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s;
}
.faq-tab:hover { border-color: var(--accent); color: var(--accent); }
.faq-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
}

/* Contact CTA Box */
.faq-cta {
    background: white;
    border-radius: 14px;
    padding: 40px;
    text-align: center;
    border: 1px solid #eef1f5;
    margin-top: 50px;
}
.faq-cta h4 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.faq-cta p {
    color: var(--gray);
    margin-bottom: 20px;
}
