/* Estilo automático para a página: duvidas */
main {
    margin-top: 190px;
}
section.filter {
    margin-bottom: 40px;

    .tabs {
        padding: 40px 0;
        width: 100%;
        border-bottom: 1px solid #E3E3E3;
        gap: 50px;

        @media(max-width:992px){
            gap: 15px;
        }

        .filter-btn {
            padding: 12px 20px;
            display: inline-flex;
            text-wrap-mode: nowrap;
            gap: 8px;
            border: 1px solid #E3E3E3;
            border-radius: 10px;
            box-shadow: 5px 5px 8px 0 #2C2C2C26;
            color: #5A5A5A;
            background-color: #FFFFFF;
            font-weight: 500;
            font-size: 18px;

            svg {
                color: #E54344;

                path {
                    stroke: #E54344;
                }
            }

            &.active {
                background-color: #E54344;
                color: #FFFFFF;

                svg {
                    color: #fff;

                    path {
                        stroke: #fff;
                    }
                }
            }
        }
    }
}

section.duvidas {
    .title {
        margin-bottom: 40px;

        h2 {
            font-size: 24px;
            color: #5A5A5A;
        }
    }

    .duvida {
        border: 1px solid #E3E3E3;
        border-radius: 10px;
        margin-bottom: 30px;

        .duvida-title {
            padding: 36px 32px;
            border-bottom: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            cursor: pointer;

            h3 {
                font-weight: 500;
                font-size: 18px;
                line-height: 100%;
                color: #5A5A5A;
                margin: 0;
            }

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

        .duvida-body {
            display: flex;
            align-items: flex-start;
            gap: 40px;
            opacity: 0;
            height: 0;
            transition: 300ms all ease-in-out;

            .duvida-conteudo {
                column-count: 2;
                column-gap: 60px;
                column-fill: auto;
                height: 680px;
                overflow: hidden;
                padding: 32px;
                opacity: 0;
                height: 0;
                transition: 300ms all ease-in-out;

                .item {
                    break-inside: avoid;
                    margin-bottom: 20px;
                }

                h4 {
                    margin: 0 0 4px;
                    font-size: 16px;
                    font-weight: 500;
                    color: #5A5A5A;
                }

                strong {
                    display: block;
                    margin-bottom: 4px;
                    font-size: 14px;
                    color: #555;
                }

                p {
                    margin: 0;
                    font-size: 16px;
                    line-height: 1.5;
                    color: #5A5A5A;
                    font-weight: 400;
                }
            }
        }

        &.open {
            .duvida-title {
                border-bottom: 1px solid #E3E3E3;

                .seta {
                    svg {
                        transform: rotate(180deg);
                    }
                }
            }

            .duvida-body {
                height: 100%;
                opacity: 1;

                .duvida-conteudo {
                    height: 100%;
                    opacity: 1;
                    display: flex;
                    flex-direction: column;
                }
            }
        }
    }
}

section.sobre {
    font-weight: 400;
    line-height: 100%;
    color: #5A5A5A;

    h2 {
        margin: 0;
        padding-left: 15px;
        border-left: 5px solid #E54344;
        font-size: 32px;
    }

    h3 {
        font-size: 20px;
    }

    p {
        font-size: 16px;
        line-height: 160%;
    }
}