

.faq-header .faq-title {
    margin-bottom: .5rem;
    color: var(--color-primary);
    font-weight: 800;
}

.faq-header .faq-sub {
    max-width: 760px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 2fr;
    align-items: start;
}

/* Tarjeta soporte */
.faq-support-card {
    background: linear-gradient(135deg, #e6e4ea 40%, #f7f6fa 100%);
    border-radius: 12px;
    padding: 0;
    position: relative;
}

.faq-support-inner {
    padding: 100px 34px;
    text-align: center;
}

.faq-avatars {
    display: flex;
    justify-content: center;
}


.support-title {
    font-weight: 600;
}

.support-text {
    font-size: .9rem;
    color: #333;
}

/* Acordeón */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e2e5ea;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .3s, background .3s;
}

.faq-item.active {
    background: #fde4e3;
    border-color: #f9b4b2;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    font-weight: 600;
    font-size: .95rem;
    text-align: left;
    cursor: pointer;
    color: #142334;
}

.faq-question:focus {
    outline: 2px solid #2e6ee6;
    outline-offset: 2px;
}

.faq-indicator {
    font-size: 1.4rem;
    line-height: 1;
    display: inline-block;
    width: 24px;
    text-align: center;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
    padding: 0 22px;
}

.faq-answer p {
    margin: 0;
    padding: 0 0 20px;
    font-size: .9rem;
    line-height: 1.5;
    color: #1d2b38;
}

/* La altura de .faq-answer en activo se gestiona vía JS asignando height calculado */

/* Scrollbar estilizado dentro de answer si creciera demasiado */
.faq-answer::-webkit-scrollbar {
    width: 8px;
}

.faq-answer::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-support-card {
        order: 2;
    }

    .faq-accordion {
        order: 1;
    }
}

@media (max-width: 576px) {
    .faq-support-inner {
        padding: 32px 26px;
    }

    .faq-question {
        padding: 16px 18px;
    }

    .faq-answer {
        padding: 0 18px;
    }
}