/* ============================================================
   faq.css — Urban Climbing
   Acordeón de FAQs integrado en el diseño Urban.
   Los tokens (--uc-orange, --uc-dark…) los define urban.css.
   ============================================================ */

.uc-faq {
    max-width: 860px;
    margin: 0 auto;
}

/* ── SECCIÓN NUMERADA ────────────────────────────────────── */
.uc-faq-section {
    margin-bottom: 3rem;
}

.uc-faq-section:last-child {
    margin-bottom: 0;
}

.uc-faq-section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e6e6e6;
    margin-bottom: 2px;
}

.uc-faq-num {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--uc-orange);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.uc-faq-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--uc-dark);
    margin: 0;
    letter-spacing: -0.2px;
}

/* ── ACORDEÓN ────────────────────────────────────────────── */
.uc-faq-item {
    border-bottom: 1px solid #ededed;
}

.uc-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 4px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    transition: color 0.15s;
}

.uc-faq-q:hover { color: var(--uc-orange); }
.uc-faq-item.open .uc-faq-q { color: var(--uc-orange); }

.uc-faq-icon {
    flex: 0 0 auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.25s ease, background 0.2s, color 0.2s;
}

.uc-faq-item.open .uc-faq-icon {
    background: var(--uc-orange);
    color: #fff;
    transform: rotate(180deg);
}

.uc-faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}

.uc-faq-item.open .uc-faq-a {
    max-height: 1200px;
}

.uc-faq-a p {
    margin: 0;
    padding: 0 4px 20px;
    font-size: 13.5px;
    color: #666;
    line-height: 1.75;
}

.uc-faq-a a {
    color: var(--uc-orange);
    text-decoration: underline;
}

.uc-faq-a ul {
    margin: 0;
    padding: 0 4px 20px 22px;
}

.uc-faq-a li {
    font-size: 13.5px;
    color: #666;
    line-height: 1.75;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 700px) {
    .uc-faq-section-title { font-size: 18px; }
    .uc-faq-q { font-size: 13.5px; }
}
