@charset "utf-8";

.head-pag {
    padding: 80px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin: auto;
    user-select: none;
}

.head-pag h1 {
    color: #415161;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 35px;
    letter-spacing: 0.03em;
    text-align: center;
}

.head-pag p {
    text-align: center;
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 1.5;
    color: #5f6b77;
}

.head-pag p a {
    font-weight: 600;
    color: #6ea8d2;
}

/**/
.line {
    float: left;
    height: 80px;
    width: 100%;
    background: url(../sistemapatio/images/line.png) repeat-x;
}

.perguntas-frequentes {
    float: left;
    width: 100%;
    margin-bottom: 90px;
}

.perguntas-frequentes .cont-itens {
    border: 1px solid #eaeaea;
    border-radius: 4px;
    margin-bottom: 10px;
}

.perguntas-frequentes a.a-item {
    display: block;
    width: 100%;
    height: 32px;
    line-height: 32px;
    padding: 0 15px;
    border-radius: 4px 4px 0 0;
    cursor: pointer;
    background-color: #ececec;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.flex-perguntas {
    display: flex;
    width: calc(100% - 40px);
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #eaeef1;
    margin: 20px auto;
    flex-wrap: wrap;
    display: none;
}

.flex-perguntas article {
    width: 100%;
    margin-bottom: 25px;
}

.flex-perguntas article .pergunta {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
}

.flex-perguntas article .pergunta .img {
    width: 34px;
}

.flex-perguntas article .pergunta .img img {
    width: 100%;
}

.flex-perguntas article .pergunta p {
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    border: 1px solid #eaeef1;
    width: 100%;
    padding: 15px;
    margin-left: 20px;
    font-size: 13px;
    letter-spacing: 0.03em;
    color: #415161;
    position: relative;
    line-height: 1.3;
    word-wrap: break-word;
}

.flex-perguntas article .pergunta p:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    position: absolute;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #eaeef1;
    left: -10px;
    top: 6px;
}

.flex-perguntas article .resposta {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.flex-perguntas article .resposta .img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
}

.flex-perguntas article .resposta .img img {
    width: 100%;
    height: 40px;
    object-fit: contain;
}

.flex-perguntas article .resposta p {
    border-radius: 4px;
    border: 1px solid #f2f4f8;
    width: calc(100% - 60px);
    padding: 15px;
    margin-right: 20px;
    background-color: #f2f4f8;
    font-size: 13px;
    letter-spacing: 0.03em;
    color: #788288;
    position: relative;
    line-height: 1.3;
    word-wrap: break-word;
}

.flex-perguntas article .pergunta p a,
.flex-perguntas article .resposta p a {
    color: #6f95b1;
    font-weight: 500;
}

.flex-perguntas article .resposta p span {
    display: block;
    margin: 8px 0 0 20px;
    position: relative;
    font-size: 12px;
}

.flex-perguntas article .resposta p span:before {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    background: #757575;
    position: absolute;
    left: -15px;
    top: 4px;
}

.flex-perguntas article .resposta p:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    position: absolute;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #f2f4f8;
    right: -10px;
    top: 6px;
}

/* Media Query */
@media screen and (max-width: 800px) {
    .head-pag {
        padding: 60px 20px;
    }

    .head-pag h1 {
        font-size: 26px;
    }

    .flex-perguntas {
        width: 100%;
    }

    .flex-perguntas article .resposta p {
        width: calc(100% - 50px);
    }
}

@media screen and (min-width: 801px) and (max-width: 1083px) {
}