/* FAQ da página inicial — visual alinhado ao padrão das seções da home */

.gs-faq-home {
    padding: 72px 0 80px;
    background: #fff;
}

/* ── Cabeçalho ─────────────────────────────────────────────── */

.gs-faq-home__col-header {
    margin-bottom: 36px;
}

.gs-faq-home__label {
    font-family: 'STIX Two Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: var(--primary-color);
    border-bottom: 1px solid #f6f2e6;
    padding-bottom: 5px;
    margin-bottom: 14px;
    display: block;
}

.gs-faq-home__title {
    font-family: 'STIX Two Text', sans-serif;
    font-weight: 400;
    font-size: 38px;
    line-height: 46px;
    color: #1f232e;
    margin: 0;
    padding: 0;
}

/* ── Itens do acordeão ─────────────────────────────────────── */

.gs-faq-home__heading {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.gs-faq-home__grid {
    row-gap: 0;
}

.gs-faq-home__col-item {
    padding-left: 0;
    padding-right: 0;
}

.gs-faq-home__col-item:nth-child(odd) {
    padding-right: 32px;
}

.gs-faq-home__col-item:nth-child(even) {
    padding-left: 32px;
    border-left: 1px solid #ede8df;
}

.gs-faq-home__item {
    border-bottom: 1px solid #ede8df;
    border-top: 1px solid #ede8df;
    margin-top: -1px;
}

.gs-faq-home__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
    border: none;
    padding: 18px 0;
    text-align: left;
    cursor: pointer;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    color: #1f232e;
    transition: color 0.2s ease;
}

.gs-faq-home__trigger:hover,
.gs-faq-home__trigger:focus {
    color: var(--primary-color);
    outline: none;
}

.gs-faq-home__question-text {
    flex: 1;
}

/* ícone + / × */
.gs-faq-home__icon {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    position: relative;
    border-radius: 50%;
    border: 1.5px solid var(--primary-color);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.gs-faq-home__icon::before,
.gs-faq-home__icon::after {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    background: var(--primary-color);
    border-radius: 999px;
    transition: transform 0.25s ease, background 0.2s ease;
}

.gs-faq-home__icon::before {
    width: 10px;
    height: 1.5px;
}

.gs-faq-home__icon::after {
    width: 1.5px;
    height: 10px;
}

.gs-faq-home__trigger[aria-expanded="true"] .gs-faq-home__icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.gs-faq-home__trigger[aria-expanded="true"] .gs-faq-home__icon::before,
.gs-faq-home__trigger[aria-expanded="true"] .gs-faq-home__icon::after {
    background: #fff;
}

.gs-faq-home__trigger[aria-expanded="true"] .gs-faq-home__icon::after {
    transform: rotate(90deg) scaleY(0);
}

/* painel de resposta */
.gs-faq-home__answer {
    padding: 0 24px 18px 0;
}

.gs-faq-home__answer p {
    font-family: 'Mulish', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #595758;
    margin: 0;
}

/* ── Responsivo ────────────────────────────────────────────── */

@media (max-width: 991px) {
    .gs-faq-home__col-header {
        text-align: center;
        margin-bottom: 28px;
    }

    .gs-faq-home__label {
        display: inline-block;
        border-bottom: 1px solid var(--primary-color);
    }

    .gs-faq-home__title {
        font-size: 32px;
        line-height: 40px;
    }

    .gs-faq-home__col-item:nth-child(odd),
    .gs-faq-home__col-item:nth-child(even) {
        padding-left: 0;
        padding-right: 0;
        border-left: none;
    }
}

@media (max-width: 575px) {
    .gs-faq-home {
        padding: 48px 0 56px;
    }

    .gs-faq-home__trigger {
        font-size: 14px;
    }
}
