﻿:root {
    --c-purple: #55489D;
    --c-secondary: #F37053;
    --c-orange-light: #F9CBC033;
    --c-gray-600: #6E6E6E;
    --c-gray-800: #3C3C3C;
    --c-gray-500: #969696;
    --c-gray-100: #F9F9F9;
    --c-white: #FFF;
    --c-black: #000;
    --c-cyan: cyan;
    --c-purple-light: #55489D0A;
    --c-pink-light: #F0587D1A;
    --c-pink: #F0587D;
}

body {
    font-family: 'alleregular',sans-serif;
    font-size: 16px;
    line-height: 150%;
    color: var(--c-gray-600);
}

section p {
    color: var(--c-gray-600);
    font-size: 1rem;
    line-height: 150%;
    padding: 0;
    margin-bottom: 16px;
}

section h2 {
    color: var(--c-gray-800);
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
}

.site-wrap {
    padding-top: 92px;
}

.container--xs-full {
    width: 100%;
}

.central {
    padding: 0 15px;
}

.mobile {
    display: block;
}

.desktop {
    display: none;
}

@media(min-width:960px) {
    .site-wrap {
        padding-top: 0;
    }

    section h2 {
        font-size: 24px;
    }

    .mobile {
        display: none;
    }

    .desktop {
        display: block;
    }
}





/*
    = Breadcrumbs
*/

.breadcrumbs {
    background: var(--c-white);
    padding: 10px 0 16px;
}

    .breadcrumbs ul {
        list-style: none;
        height: 24px;
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 8px;
    }

        .breadcrumbs ul li,
        .breadcrumbs ul li a {
            font-size: 12px;
            line-height: 16px;
            font-weight: 400;
            color:rgb(85, 26, 139);
        }

            .breadcrumbs ul li.atual {
                color: var(--c-secondary);
            }


.depoimentos__lista {
    margin-top: 64px
}

/*
    = Categorias
*/

.categorias {
    background: var(--c-white);
    padding-top: 16px;
    padding-bottom: 16px;
}

    .categorias ul.container {
        display: flex;
        gap: 8px;
        overflow: hidden;
        flex-wrap: nowrap;
    }

    .categorias a {
        display: flex;
        padding: 8px 16px 8px 8px;
        background: #55489D0A;
        border-radius: 16px;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        line-height: 150%;
        font-weight: 700;
        height: 48px;
        color:#55489D;
    }

        .categorias a.sem-icone {
            padding: 13px 16px;
        }

        .categorias a .icone {
            display: block;
            width: 32px;
            height: 32px;
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            margin-right: 8px;
            border-radius: 8px;
        }

        .categorias a:hover,
        .categorias a.selecionado {
            background-color: var(--c-purple);
            color: #FFF;
        }

            .categorias a:hover .icone,
            .categorias a.selecionado .icone {
                background-color: rgba(255,255,255,0.06);
            }

                .categorias a:hover .icone img,
                .categorias a.selecionado .icone img {
                    filter: grayscale(100%) brightness(0) invert(100%);
                }

@media(min-width:960px) {
    .categorias a {
        font-size: 16px;
    }
}

.depoimentos__banner img {
    width: 100%;
}
/*
    = Item Depoimento
*/
.listaDepoimentos {
    display: flex;
    width: 100%;
}

.itemDepoimento {
    display: block;
    width: 100%;
    border: 1px solid #EEE;
    border-radius: 8px;
    padding: 24px;
    background:#FFF;
}

    .itemDepoimento p {
        font-size: 14px;
        text-align: left;
    }

    .itemDepoimento .aspas {
        margin-bottom: 16px;
    }

    .itemDepoimento .titulo {
        color: #1B1B1B;
        font-weight: 700;
    }

.itemDepoimento__rodape {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .itemDepoimento__rodape .autor {
        display: flex;
        width: calc(100% - 102px);
        gap: 8px;
        justify-content: start;
        align-items: center;
    }

        .itemDepoimento__rodape .autor .foto {
            display: block;
            width: 48px;
            height: 48px;
            position: relative;
            border-radius: 49px;
            overflow: hidden;
        }

            .itemDepoimento__rodape .autor .foto img {
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                width: auto;
            }

        .itemDepoimento__rodape .autor .nome {
            color: #1B1B1B;
            font-size: 12px;
            line-height: 16px;
            font-weight: bold;
            padding: 0;
            margin-bottom: 4px;
        }

        .itemDepoimento__rodape .autor .notas {
            display: flex;
            gap: 2px;
            padding: 0;
        }

    .itemDepoimento__rodape .botao {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 104px;
        height: 32px;
        border: 1px solid #55489D;
        border-radius: 256px;
        padding: 8px 16px;
        font-size: 12px;
        transition: linear 0.3ms;
        color:#55489D;
    }

        .itemDepoimento__rodape .botao:hover {
            background-color: #55489D;
            color: #FFF;
        }

            .itemDepoimento__rodape .botao:hover svg {
                stroke: #FFF;
            }


.botao_sec {
    text-align: center;
    width: 100%;
    margin: 32px 0;
    display: flex;
    justify-content: center;
}

    .botao_sec a {
        display: flex;
        font-weight: 700;
        gap: 8px;
        color:#55489D;
    }

.depoimento__medicos {
    background: #F9F9F9;
    padding: 64px 0;
}

    .depoimento__medicos header {
        text-align: center;
    }

        .depoimento__medicos header h2 {
            color: #55489D;
            font-size: 32px;
            line-height: 130%;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .depoimento__medicos header p {
            font-size: 16px;
            line-height: 150%;
        }

    .depoimento__medicos .listaDepoimentos {
        max-width: 906px;
        margin: 24px auto;
        display: block;
    }

    .depoimento__medicos .itemDepoimento {
        max-width: 100%;
        background: #FFF;
        padding: 40px;
    }

        .depoimento__medicos .itemDepoimento .depoimento {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column-reverse;
        }


            .depoimento__medicos .itemDepoimento .depoimento .foto {
                margin-bottom: 24px;
                width: 200px;
                height: 200px;
                border-radius: 100%;
                display: block;
                background-repeat: no-repeat;
                background-size: cover;
                background-position: center center;
            }

        .depoimento__medicos .itemDepoimento cite {
            color: #757385;
            font-size: 16px;
            line-height: 150%;
            margin-bottom: 16px;
            display: block;
        }

        .depoimento__medicos .itemDepoimento .medico strong {
            color: #757385;
            font-weight: 700;
        }

    .depoimento__medicos .glide__bullets {
        margin-top: 32px;
    }

        .depoimento__medicos .glide__bullets .glide__bullet {
            background-color: #DADADA;
        }

            .depoimento__medicos .glide__bullets .glide__bullet.glide__bullet--active {
                background-color: #F37053;
            }




@media(min-width:960px) {
    .itemDepoimento {
        max-width: calc(100% / 3);
    }

    .depoimento__medicos .itemDepoimento .depoimento {
        flex-direction: row;
    }

        .depoimento__medicos .itemDepoimento .depoimento .desc {
            width: calc(100% - 200px)
        }
}

.depoimento__detalhe .row .col-md-7{
    padding-left: 0;
}
.depoimento__detalhe .tag{
    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;
}

.depoimento__detalhe h2{
    font-size:32px;
    line-height:150%;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: allerregular,sans-serif;
}

.depoimento__detalhe p{
    font-size:16px;
    line-height:150%;
    font-weight: 400;
    margin-bottom: 24px;
    font-family: allerregular,sans-serif;
    letter-spacing: 0;
}

.depoimento__detalhe cite{
    background:#F9F9F9;
    border-radius: 16px;
    padding:32px;
    display: block;
}

.depoimento__detalhe cite::before{
    content:"";
    background-image:url(/Content/depoimentos/images/aspas.svg);
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    width:26px;
    height:24px;
    margin-bottom: 16px;
}

.depoimento__detalhe cite strong{
    color:#3C3C3C
}

.depoimento__historias{
    background-color: #F9F9F9;
     padding:40px 0;
}
.depoimento__historias header{
    margin-bottom: 24px;
}
.depoimento__historias header h2{
    color:#55489D;
    font-size:32px;
    line-height: 130%;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.depoimento__historias header p{
    color:#6E6E6E;
    font-size:16px;
    line-height: 150%;
    font-weight: 400;
    text-align: center;
}

.depoimentos__categoria .depoimentos__lista{
    margin-top:0;
    margin-bottom:64px;
}

.depoimentos__categoria .depoimentos__lista header{
    margin: 24px 0 40px;
}

.depoimentos__categoria .depoimentos__lista p.contador{
    margin-bottom:32px;
}