/* ===== Base ===== */
:root {
    --c-text: #0f1a22;
    --c-text-soft: #3d5566;
    --c-border: #e3e7ea;
    --c-primary: #0a88e6;
}

/* ===== FAQ Block ===== */
.faq {
    padding: 2rem 16px;
}

.faq__container {
    max-width: 1080px;
    margin-inline: auto;
}

.faq__heading {
    font-size: 20px;
    margin-bottom: 14px;
}

/* ===== FAQ Item ===== */
.faq__item {
    border-bottom: 1px solid var(--c-border);
}

.faq__question {
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr 30px;
    align-items: center;
}

.faq__question h2{
    text-align: left;
    font-size: 18px;
    font-family: var(--f3);
    color: var(--c-text);

}

.faq__icon {
    justify-self: flex-end;
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--c-primary);
    border-bottom: 2px solid var(--c-primary);
    transform: rotate(45deg);
    transition: transform .25s ease;
}

/* Estado expandido */
.faq__question[aria-expanded="true"] .faq__icon {
    transform: rotate(-135deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    color: var(--gray);
    font-size: 1rem;
    line-height: normal;
    padding: 0 18px;
}

.faq__answer p {
    line-height: normal;
    margin: 0 0 16px;
}

/* ===== Terms Section ===== */
.faq__terms {
    margin-top: 30px;
}

.faq__terms-title {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 6px;
}

.faq__terms-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1rem;
    color: var(--blue);
    text-decoration: none;
}

.faq__terms-link i {
    font-size: 80%;
}