
/* 
A classe abaixo é está presente na página de um produto no martins. 
foi permitido colocar a propriedade abaixo para "consertar" um erro onde
os conteúdos estavam exprimidos e não continham a width maxima.
*/ 
.MuiAccordionDetails-root {
    flex-direction: column;
}


/*inicio-area-de-faq*/

#faq-section,
#faq-section * {
    box-sizing: border-box;
}

#faq-section {
    width: 100%;
    margin: 0 auto 25px;
}

#faq-section__header {
    margin: 0 0 12px;
}

#faq-section__title {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 40px;
    margin: 0;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: rgb(0, 157, 255);
    color: rgb(255, 255, 255);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;

    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.15px;
    font-weight: 400;
    text-decoration: none;
}

#faq-section__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#faq-section__item {
    margin: 0;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background-color: #ffffff;
}

#faq-section__details {
    width: 100%;
}

#faq-section__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 16px 20px;
    cursor: pointer;
    list-style: none;
    transition: background-color 0.15s ease;
}

#faq-section__summary::-webkit-details-marker {
    display: none;
}

#faq-section__summary::marker {
    content: "";
}

#faq-section__summary:hover {
    background-color: #f9f9f9;
}

#faq-section__summary:focus-visible {
    border-radius: 11px;
    outline: 2px solid #ea5b0c;
    outline-offset: -2px;
}

#faq-section__q-text {
    flex: 1;
    margin: 0;
    color: #4e4e4e;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

#faq-section__icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

#faq-section__icon::before,
#faq-section__icon::after {
    position: absolute;
    border-radius: 2px;
    background-color: rgb(46, 53, 56);
    content: "";
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

#faq-section__icon::before {
    top: 9px;
    left: 4px;
    width: 12px;
    height: 1.5px;
}

#faq-section__icon::after {
    top: 4px;
    left: 9px;
    width: 1.5px;
    height: 12px;
}

#faq-section__details[open] #faq-section__icon::after {
    opacity: 0;
    transform: rotate(90deg);
}

#faq-section__details[open] #faq-section__summary {
    background-color: #f9f9f9;
}

#faq-section__a-inner {
    padding: 14px 20px 16px;
    border-top: 1px solid #e5e5e5;
}

#faq-section__a-text {
    margin: 0;
    color: rgb(46, 53, 56);
    font-size: 12px;
    line-height: 1.6;
}

@media (max-width: 480px) {

    #faq-section__summary {
        padding: 14px 16px;
    }

    #faq-section__q-text {
        font-size: 14px;
    }

    #faq-section__a-inner {
        padding: 12px 16px 14px;
    }
}

/*final-area-de-faq*/