@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --var-FontStyledMain: "Poppins", sans-serif;

    --var-ColorBackground: #F9F6EF;
    --var-ColorDestaque: #FFC626;
    --var-ColorTextBase: #161616;
    --var-ColorNeutro: #8C8C8C;
}

*{
    border: 0px;
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

body{
    background-color: white;
}

/******ESTILZAÇÃO UNIVERSAL***************************************************/
.highlightTITLE{
    color: #FEB820;
}

/******ANIMAÇÕES******************************************/
@keyframes arrowSelectMove {
    0%{
       transform: translateX(0px);
    }
    50%{
        transform: translateX(-3px);
    }
    100%{
        transform: translateX(5px);
    }
}

/*------------------------------------------------------------------------------------------------*/
/*----------------------------------------HEADER MAIN---------------------------------------------*/
/*------------------------------------------------------------------------------------------------*/
.header-page{
    width: 96%;
    background-color: white;
    box-shadow: 0px 4px 40px 10px #0009721a;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 20px;
    right: 2%;
    padding: 15px 0px;
    z-index: 2;
    border-radius: 20px;
}
.container-header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    padding: 0px 20px;
}
.container-logo{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    order: 0;
    gap: 10px;
}
.container-logo a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.container-logo img{
    height: 30px;
    width: 30px;
}
.container-logo p{
    font-family: var(--var-FontStyledMain);
    font-weight: 600;
    font-size: 12px;
}
.navbar{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: max-content;
}
.nav-main{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.navigate{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    list-style: none;
}
#btnMenu{
    display: none;
    background: none;
    height: 40px;
    width: 40px;
}
#btnMenu img{
    height: 100%;
    width: 100%;
}
.navigate li{
    cursor: pointer;
    font-family: var(--var-FontStyledMain);
    font-size: 12pt;
    font-weight: 500;
    color: rgb(58, 57, 57);
}
.navigate a{
    text-decoration: none;
    color: rgb(58, 57, 57);
}
.contain-AUTHBUTTONS{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.contain-AUTHBUTTONS a{
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 10px;
}
.link-login{
    font-family: var(--var-FontStyledMain);
    font-size: 12pt;
    font-weight: 600;
    text-decoration: none;
    color: var(--var-ColorTextBase);
    border: 1px solid rgb(201, 201, 201);
}
.link-auth{
    font-family: var(--var-FontStyledMain);
    font-size: 12pt;
    font-weight: 600;
    text-decoration: none;
    color: var(--var-ColorTextBase);
    background-color: var(--var-ColorDestaque);
    border: 1px solid var(--var-ColorDestaque);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.link-auth:hover img{
    animation-name: arrowSelectMove;
    animation-duration: 0.5s;
    animation-direction: normal;
    animation-fill-mode: forwards;
}
.link-auth img{
    height: 15px;
    width: 15px;
}
@media (max-width: 1080px){
    .container-logo a{
        font-size: 13px;
    }
    .container-logo img{
        height: 25px;
        width: 25px;
    }
    .navigate li{
        font-size: 12px;
        font-weight: 500;
    }
    .contain-AUTHBUTTONS a{
        padding: 5px 15px;
    }
    .link-login{
        font-size: 12px;
    }
    .link-auth{
        font-size: 12px;
    }
    .link-auth img{
        height: 13px;
        width: 13px;
    }
}

@media (max-width: 800px) {
    .navbar{
        justify-content: end;
        flex-direction: row-reverse;
        gap: 30px;
        order: 3;
    }
    #btnMenu{
        display: flex;
    }
    .inactive-menu{
        display: flex;
    }
    .active-menu{
        display: flex;
        position: fixed;
        top: 10px;
        right: 10px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.048);
        height: calc(100dvh - 20px);
        width: calc(100% - 20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .navigate{
        flex-direction: column;
    }
    .inactive-link-menu{
        display: none;
    }
    .active-link-menu{
        display: flex;
    }
    .contain-AUTHBUTTONS{
        order: 2;
    }
}
@media (max-width: 580px) {
    .container-logo p{
        display: none;
    }
}
@media (max-width: 410px) {
    .contain-AUTHBUTTONS a{
        padding: 8px 10px;
    }
    .link-auth img{
        display: none;
    }
    #btnMenu{
        height: 30px;
        width: 30px;
    }
}

/*==MAIN SUPORTE========================================*/
.TelaArtigoSuporte{
    margin-top: 120px;
    padding: 2vw;
    width: 100%;
    height: calc(100vh - 120px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0px;
    position: relative;
}

@media (max-width: 800px) {
    .TelaArtigoSuporte{
        margin-top: 170px;
        height: calc(100vh - 170px);
        overflow: hidden;
    }
}


/*menu lateral do suporte*/
.sidebar-support{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    height: 100%;
    width: 280px;
    border-right: 1px solid rgba(128, 128, 128, 0.205);
    padding-right: 10px;
    overflow-y: auto;
    gap: 50px
}
.header-asideBar{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 5px;
    padding-left: 10px;
}
.header-asideBar h2{
    font-family: var(--var-FontStyledMain);
    font-weight: 600;
    color: var(--var-ColorTextBase);
    font-size: 15px;
}
.header-asideBar p{
    font-family: var(--var-FontStyledMain);
    font-weight: 500;
    color: var(--var-ColorTextBase);
    font-size: 12px;
}
.menu-support{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    width: 100%;
}
.menu-support h2{
    font-family: var(--var-FontStyledMain);
    font-size: 12px;
    font-weight: 700;
    color: var(--var-ColorTextBase);
    padding-left: 10px;
}
.contain-nav-btn{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
    width: 100%;
}
.itenMenuSupport{
    height: 40px;
    width: 100%;
    background-color: transparent;
    border-left: 3px solid transparent;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    padding: 5px 10px;
    font-family: var(--var-FontStyledMain);
    font-size: 12px;
    font-weight: 500;
    color: var(--var-ColorTextBase);
    cursor: pointer;
    border-radius: 5px;
}
.activedItemMenu{
    border-left: 3px solid var(--var-ColorDestaque);
    background-color: #ffc52628;
}
.activedSideBar{
    left: 0px;
}
.inactivedSideBar{
    left: 0px
}

@media (max-width: 800px) {
    .sidebar-support{
        padding-left: 10px;
        position: absolute;
        left: 0px;
        background-color: white;
        box-shadow: 10px 10px 40px 10px #0009721a;
    }
    .activedSideBar{
        left: 0px;
    }
    .inactivedSideBar{
        left: -340px
    }
}


/*tela de artigos*/
.containerArtigos{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    overflow-y: auto;
    width: calc(100% - 300px);
    height: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 80px;
}
.articleSupport{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}
.hidden{
    display: none;
}
.header-artigo{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 5px;
}
.header-artigo h1{
    font-family: var(--var-FontStyledMain);
    font-size: 18px;
    font-weight: 600;
    color: var(--var-ColorTextBase);
}
.header-artigo h2{
    font-family: var(--var-FontStyledMain);
    font-size: 15px;
    font-weight: 500;
    color: var(--var-ColorTextBase);
}

.partArtigo{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}
.partArtigo h3{
    font-family: var(--var-FontStyledMain);
    font-size: 15px;
    font-weight: 600;
    color: var(--var-ColorTextBase);
}
.container-paragrafo-artigo{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 30px;
    margin-top: 20px;
}
.container-paragrafo-artigo p{
    font-family: var(--var-FontStyledMain);
    font-size: 12px;
    font-weight: 500;
    color: var(--var-ColorTextBase);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}
.container-paragrafo-artigo p img{
    max-width: 80%;
    max-height: 250px;
}
@media (max-width: 800px) {
    .containerArtigos{
        width: 100%;
        height: 100%;
        padding: 0px;
        padding-bottom: 80px;
    }
}

/*BUTTON MENU SIDE BAR==*/
.btnMenuSideBar{
    display: none;
}
@media (max-width: 800px) {
    .btnMenuSideBar{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(128, 128, 128, 0.308);
        background-color: white;
        border-radius: 10px;
        padding-left: 15px;
        padding-right: 15px;
        height: 35px;
        cursor: pointer;
        position: absolute;
        top: 120px;
        left: 2vw;
        font-family: var(--var-FontStyledMain);
        font-size: 12px;
        font-weight: 500;
    }
}