.faqs-widget-container {
    max-width: 100%;
}

.faq-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Select dropdown móvil */
.faq-filtro-select-wrapper {
    display: none;
    margin-bottom: 20px;
    position: relative;
}
.faq-filtro-select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    font-size: 11px;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: inherit;
}
.faq-filtro-select {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 25px;
    padding: 8px 36px 8px 20px;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
    outline: none;
}

@media (max-width: 991px) {
    .faq-filters {
        display: none;
    }
    .faq-filtro-select-wrapper {
        display: inline-block;
    }
}

.faq-filter-button {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    user-select: none;
    border-top: 1px solid #111111;
    border-bottom: 1px solid #111111;
    border-bottom: none;    
}
.faq-items-container:last-child {
    border-bottom: 1px solid #111111;
}

.faq-question {
    margin: 0;
    flex: 1;
    max-width: fit-content;
    padding: 20px 0 22px;
}

.faq-toggle {
    font-size: 24px;
    font-weight: bold;
    margin-left: 15px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    margin-top: 15px;
    line-height: 1.6;
    overflow: hidden;
}

.faq-item.hidden {
    display: none;
}
