/* Estilo automático para a página: faq */

.accordion-button {
    &:not(.collapsed) {
        background-color: transparent !important;
        box-shadow: none !important;
        font-family: Inter;
        font-weight: 600;
        font-style: Semi Bold;
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0px;
        vertical-align: middle;
        color: #002B2C;

        &::after {
            background: none !important;
            content: '_';
            color: #CC3A5C;
            margin-top: 10px;
            margin-right: 5px;
        }
    }
    
    background-color: transparent !important;
    box-shadow: none !important;
    font-family: Inter;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #002B2C;

    &:focus {
        box-shadow: none !important;
    }

    &.collapsed::after {
        background: none !important;
        content: '+';
        color: #CC3A5C;
    }

    &::after {
        width: initial !important;
        height: initial !important;
        transition: none !important;
    }
}

.accordion-body {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    vertical-align: middle;
    color: #5D5D5D;
}

body .accordion-button {
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    color: #002B2C;
    vertical-align: middle;
}

section.faq-guia {
    background: #F9F8F2;
    padding: 70px 0;
}

.guia-links-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;

    a {
        transition: 300ms all ease-in-out;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-radius: 16px;
        border: 1px solid #E8E8E8;
        background: #FFF;
        box-shadow: 0 10px 20px 0 rgba(78, 78, 78, 0.12);
        padding: 24px;
        width: 100%;
        color: #002B2C;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 28px;

        &:hover {
            padding-left: 30px;
        }

        &:after {
            background-image: url(../img/download-icon.svg);
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
            width: 24px;
            height: 24px;
            content: ' ';
        }
    }
}

section.ctt-info {
    padding: 80px 0;
}

a.bl-guia {
    transition: 300ms all ease-in-out;
    border-radius: 20px;
    border: 1px solid #E8E8E8;
    background: #FFF;
    box-shadow: 0 10px 20px 0 rgba(78, 78, 78, 0.12);
    padding: 32px 24px;
    height: 100%;
    display: block;

    &:hover {
        box-shadow: none;

        .guia-readmore svg {
            margin-left: 5px;
        }
    }

    .guia-readmore {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-top: 10px;
        color: #CC3A5C;
        font-family: Inter;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;

        svg {
            transition: 300ms all ease-in-out;
        }
    }
}

.guia-title {
    font-family: Inter;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #002B2C;;
    margin-top: 15px;
}

.guia-desc {
    margin-top: 5px;
    color: #5D5D5D;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.accordion-item {
    background-color: #F3F5F7 !important;
    margin-bottom: 16px;
    border: none !important;
    border-radius: 16px !important;

    &:first-of-type > .accordion-header .accordion-button {
        border: none !important;
    }
}