.faq {
    padding: 40px 24px 100px;
    background-color: #ffffff;
}

.faq__header {
    max-width: 860px;
    margin: 0 auto 56px;
    text-align: center;
}

.faq__label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #2563eb;
    margin-bottom: 12px;
}

.faq__title {
    font-size: 50px;
    font-weight: 800;
    color: #0f1b3d;
    margin: 0 0 8px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.faq__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 4px;
    background-color: #f5b400;
    border-radius: 2px;
}

.faq__subtitle {
    font-size: 24px;
    line-height: 1.6;
    color: #4b5563;
    margin-top: 16px;
}

.faq__link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.faq__link:hover {
    text-decoration: underline;
}

.faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq__item {
    background-color: #f7f9fc;
    border-radius: 16px;
    overflow: hidden;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq__icon img {
    width: 100%;
    height: 100%;
}

.faq__icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.faq__question-text {
    flex: 1;
    font-size: 24px;
    font-weight: 700;
    color: #0f1b3d;
    padding-top: 12px;
}

.faq__chevron {
    flex-shrink: 0;
    color: #0f1b3d;
    margin-top: 16px;
    transition: transform 0.2s ease;
}

.faq__item.is-open .faq__chevron {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    padding: 0 24px 0 92px;
}

.faq__item.is-open .faq__answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq__answer p {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

.faq__answer strong {
    color: #2563eb;
}

.faq__cta {
    max-width: 1100px;
    margin: 40px auto 0;
    background-color: #f7f9fc;
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.faq__cta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq__cta-item p {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 2px;
}

.faq__cta-item a {
    color: #0f1b3d;
    text-decoration: none;
    font-size: 15px;
}

.faq__cta-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e8edfa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq__cta-icon img {
    width: 100%;
    height: 100%;
}

.faq__cta-icon--dark {
    width: 48px;
    height: 48px;
    background-color: #0f1b3d;
}

.faq__cta-icon--whatsapp {
    background-color: #d9f5e3;
}

.faq__cta-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f5b400;
    color: #0f1b3d;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
}

.faq__cta-button:hover {
    background-color: #e0a600;
}

@media (max-width: 768px) {

    .faq {
        padding: 40px 28px 60px;
    }

    .faq__header {
        margin-bottom: 32px;
    }

    .faq__title {
        font-size: 1.9rem;
    }

    .faq__subtitle {
        font-size: 1.05rem;
    }

    .faq__grid {
        grid-template-columns: 1fr;
    }

    .faq__question {
        padding: 18px;
        gap: 12px;
    }

    .faq__icon {
        width: 48px;
        height: 48px;
    }

    .faq__question-text {
        font-size: 1.05rem;
        padding-top: 4px;
    }

    .faq__chevron {
        margin-top: 6px;
    }

    .faq__answer {
        padding: 0 18px 0 60px;
    }

    .faq__cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
    }

    .faq__cta-icon {
        width: 40px;
        height: 40px;
    }

    .faq__cta-icon--dark {
        width: 44px;
        height: 44px;
    }

    .faq__cta-button {
        width: 100%;
        justify-content: center;
    }

}