/* acordeon accesibilidad y seo t4 */
.faq-acordeon {
    border: 1px solid #c8d2e3;
    background: #fff;
}

.faq-item {
    border-bottom: 1px solid #c8d2e3;
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-summary {
    position: relative;
    display: block;
    padding: 22px 56px 22px 18px;
    /*font-size: 1.25rem;*/
    /*font-weight: 700;*/
    /*line-height: 1.25;*/
    color: var(--color-secundario-700);
    cursor: pointer;
    list-style: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::after {
    content: "";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.7rem;
    background-color: #111827;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='black' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    pointer-events: none;
    width: 20px;
    height: 20px;
}

.faq-item[open] .faq-summary {
    color: var(--color-principal-500);
    font-size: clamp(1.125rem, 1.0417rem + 0.1736vw, 1.25rem) !important;
    border-bottom: 1px solid #c6005a;
    background: var(--color-secundario-100);
}

.faq-item .faq-summary:hover {
    background: var(--color-secundario-200);
}

.faq-item .faq-summary:active {
    background: var(--color-secundario-100);
}

.faq-item[open] .faq-summary::after {
    content: "";
    transform: rotate(180deg);
    background-color: var(--color-principal-500);
    right: 22px;
    top: 40%;
}

.faq-content {
    padding: 28px 36px 30px;
    color: #1f2937;
}

.faq-content p {
    margin: 0;
    /*! font-size: 1.05rem; */
    /*! line-height: 1.65; */
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/*FIN acordeon*/