:root {
    --c-secondary: #F37053;
    --c-white: #FFFFFF;
    --c-pink-light: #F0587D1A;
    --c-pink: #F0587D;
    --c-gray-500: #969696;
    --c-gray-700: #5A5A5A;
    --c-gray-900: #1B1B1B;
    --c-gray-200: #F2F2F2;
    --c-purple: #554a9b;
}

body {
    font-size: 14px;
    line-height: 150%;
    color: var(--c-gray-700);
    font-family: allerregular;
    font-weight: 400;
}

.site-wrap {
}

header::after {
    display: none;
}

p {
    margin: 16px 0 !important;
}

.hidden-xs {
    display: none;
}

@media(min-width:960px) {
    .hidden-xs {
        display: block;
    }
}

/* = breadcrumbs */

.breadcrumbs {
    padding: 4px 0;
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
}

    .breadcrumbs li a {
        font-size: 12px;
        color: var(--c-gray-500);
    }

        .breadcrumbs li a.selected {
            color: var(--c-secondary);
            font-weight: 700;
            letter-spacing: -0.12px;
        }

    .breadcrumbs li img {
        display: initial;
    }

@media(min-width:960px) {
    .breadcrumbs {
        margin: 0 0 16px;
    }
}

/* = banner */
.banner {
    margin-bottom: 24px;
}

    .banner img {
        width: 100%;
    }

    .banner.desktop {
        display: none;
    }

@media(min-width:960px) {
    .banner.desktop {
        display: block;
    }

    .banner.mobile {
        display: none;
    }
}

/* = artigo */
.artigo {
    padding: 16px 0 40px;
}

    .artigo .categoria {
        font-size: 10px;
        line-height: 16px;
        color: var(--c-pink);
        background-color: var(--c-pink-light);
        display: inline-block;
        margin-bottom: 8px;
        padding: 4px;
        border-radius: 4px;
        font-weight: 700;
        text-transform: uppercase;
    }

/* = detalhe */
.detalhe h1 {
    font-size: 20px;
    line-height: 150%;
    color: var(--c-gray-900);
    font-weight: 700;
    margin: 0 0 24px;
}

.detalhe h2 {
    font-size: 18px;
    margin: 24px 0;
    line-height: 130%;
    color:#333;
}

.detalhe h3 {
    font-size: 16px;
    margin: 0 0 24px;
    line-height: 130%;
    color:#333;
}

.detalhe h4,
.detalhe h5,
.detalhe h6 {
    font-size: 14px;
    margin: 0 0 18px;
    line-height: 130%;
    color:#333;
}
.detalhe ul {
    list-style: disc;
    padding-left:16px;
    margin:16px 0;
}
.detalhe ul li {
    color: var(--c-gray-500);
    line-height: 150%;
    font-size:16px;
    list-style-type:disc;
}

.detalhe ol {
    list-style: disc;
    padding-left:16px;
    margin:16px 0;
}
.detalhe ol li {
    color: var(--c-gray-500);
    line-height: 150%;
    font-size:16px;
    list-style-type:decimal;
}

.detalhe .status {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
}

    .detalhe .status li {
        display: flex;
        justify-content: start;
        align-items: center;
        font-size: 12px;
        line-height: 150%;
        gap: 4px;
        color: var(--c-gray-500);
    }

        .detalhe .status li img {
            width: 16px;
        }

            .detalhe .status li img.dot {
                width: 6px;
            }

.detalhe p,
table tr td  {
    color: var(--c-gray-500);
    line-height: 150%;
    margin: 0 0 16px !important;
}

table tr td {
    font-size:16px;
}


@media(min-width:960px) {
    .detalhe p {
        font-size: 16px;
    }

    .detalhe h1 {
        font-size: 32px;
    }


    .detalhe h2 {
        font-size: 24px;
    }

    .detalhe h3 {
        font-size: 18px;
        margin: 0 0 24px;
    }

    .detalhe h4,
    .detalhe h5,
    .detalhe h6 {
        font-size: 16px;
        margin: 0 0 18px;
    }
}

/* = tags */
.tags {
    display: block;
}

    .tags header {
        font-size: 14px;
        color: var(--c-gray-500);
        width: 100%;
        margin-bottom: 8px;
    }

    .tags ul {
        padding: 0;
        margin: 0;
        font-size: 100%;
        display: flex;
        gap: 8px;
        list-style: none;
    }

/* = relacionados */
.relacionados {
    padding: 40px 0 0;
    float: none;
}

    .relacionados article {
        border-bottom: 1px solid var(--c-gray-200);
        padding-bottom: 16px;
    }

        .relacionados article img {
            width: 100%;
            margin-bottom: 16px;
            border-radius: 4px;
        }

        .relacionados article header {
            display: flex;
            flex-direction: column;
        }

            .relacionados article header a {
                font-size: 12px;
                font-weight: 700;
                line-height: 16px;
                color: var(--c-gray-900);
            }

            .relacionados article header span.categoria {
                display: inline-block;
            }

@media(min-width:960px) {
    .relacionados {
        padding: 0;
    }

        .relacionados article {
            display: flex;
            gap: 16px;
        }

            .relacionados article img {
                max-width: 30%;
            }

            .relacionados article header {
                max-width: 100%;
            }
}

/* = Compartilhe */
.compartilhe {
    padding: 0;
    margin: 16px 0;
    list-style: none;
    display: flex;
    gap: 8px;
    justify-content: start;
    align-items: center;
}

    .compartilhe li {
        display: inline-block;
    }

        .compartilhe li:first-child {
            color: var(--c-gray-500);
            font-size: 12px;
        }

        .compartilhe li a {
            display: flex;
            padding: 6px;
            background-color: var(--c-gray-200);
            border-radius: 5px;
            width: 24px;
            height: 24px;
            font-size: 12px;
            line-height: 24px;
            justify-content: center;
            align-items: center;
            color: var(--c-secondary);
        }

            .compartilhe li a:hover {
                background-color: var(--c-purple);
                color: var(--c-white);
            }

/* = agendarConsulta */
.agendarConsulta {
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    padding: 16px 0;
    color: var(--c-white);
    background-color: var(--c-secondary);
    border-radius: 50px;
    margin: 24px 0;
    display: block;
    text-align: center;
    transition: linear 300ms;
}

    .agendarConsulta:hover {
        background-color: var(--c-purple);
        color: var(--c-white);
    }


/* = vejaTambem */
.vejaTambem {
    background: #F9F9F9;
    padding: 40px 0;
    margin-top: 40px;
}

    .vejaTambem header {
        text-align: center;
        background-color: transparent;
        margin-bottom: 40px;
    }

        .vejaTambem header h2 {
            font-size: 24px;
            color: #1B1B1B;
            margin-bottom: 16px;
            line-height: 130%;
        }

        .vejaTambem header p {
            font-size: 14px;
            line-height: 130%;
            color: #6E6E6E;
        }

@media(min-width:960px) {
    .vejaTambem {
        padding: 80px 0;
        margin-top: 80px;
    }

        .vejaTambem header h2 {
            font-size: 36px;
            margin-bottom: 18px;
        }

        .vejaTambem header p {
            font-size: 16px;
            line-height: 150%;
        }
}


.botaoVerArtigos {
    background-color: #554a9b;
    padding: 16px 32px;
    border-radius: 256px;
    display: block;
    margin: auto;
    text-align: center;
    color: #FFF;
    max-width: 324px;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
}

    .botaoVerArtigos:hover {
        background-color: #F37053;
        color: #FFF;
    }
/* = Posts*/
.artigo__slidePosts {
    margin-bottom: 40px;
}

.artigo__posts {
    padding: 40px 0;
}

    .artigo__posts header {
        margin-bottom: 32px;
    }

        .artigo__posts header strong {
            font-size: 12px;
            color: #F37053;
            font-weight: bold;
            line-height: 16px;
            display: block;
            margin-bottom: 8px;
        }

        .artigo__posts header h2 {
            color: #1B1B1B;
            font-size: 24px;
            font-weight: 700;
            line-height: 140%;
            margin: 0 0 8px;
        }

        .artigo__posts header p {
            margin-bottom: 40px;
        }

        .artigo__posts header a {
            color: #F37053;
            font-size: 14px;
            display: flex;
            gap: 8px;
            justify-content: start;
            font-weight: 700;
            line-height: 150%;
            align-items: center;
        }

.artigo__itemPosts img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
}

.artigo__itemPosts {
    width: 300px;
}

    .artigo__itemPosts header {
        margin: 0 0 8px;
        text-align: left;
    }

        .artigo__itemPosts header strong {
            background-color: #F0587D1A;
            font-size: 10px;
            border-radius: 4px;
            padding: 4px;
            display: inline-block;
            line-height: 16px;
            margin-bottom: 8px;
            color: #F0587D;
        }

        .artigo__itemPosts header h3 {
            margin: 0 0 8px;
            color: #55489D;
            font-size: 18px;
            font-weight: 700;
            line-height: 140%;
        }

    .artigo__itemPosts p {
        font-size: 14px;
        line-height: 150%;
        color: #6E6E6E;
        margin: 0 0 8px;
    }

.artigo__slidePosts .glide__arrows {
    display: none;
}

.artigo__slidePosts .glide__arrow {
    box-shadow: none;
    border: none;
}

.artigo__slidePosts .glide__bullets {
    position: static;
    display: flex;
    justify-content: center;
    width: 100%;
    transform: none;
    margin-top: 40px;
}

    .artigo__slidePosts .glide__bullets .glide__bullet {
        background-color: #DADADA;
    }

        .artigo__slidePosts .glide__bullets .glide__bullet.glide__bullet--active {
            background-color: #55489D;
        }

.artigo__slidePosts .glide__track {
    width: 90%;
    display: block;
    margin: auto;
}

.artigo__slidePosts .glide__slide {
    display: flex;
    justify-content: center;
}

@media(min-width:960px) {
    .artigo__slidePosts .glide__arrows {
        display: block;
    }
}
