
:root{
    --fundo: #eee;
    --luxlife-primary: #f00;
    --luxlife-primary-transparente: rgba(255, 0, 0, 0.897);
    --vivalux-primary: #4d89d0;
    --vivalux-primary-transparente: rgba(52, 125, 214, 0.932);
    --color-secondary: #fff;
    --color-black: #000;
    --color-grey-01: #f7f7f7;
    --color-grey-01-transparente: #cccccc9e;
    --color-grey-02: #bbb;
    --color-grey-03: #aaa;
    --sofisticatto-roxo: #510863;
    --color-shadow-01:rgba(0,0,0,0.75);
    --text-color:rgb(32, 32, 32);
    --text-secondary:rgb(65, 65, 65);
    --luxlife-color:red;
    --nav-color:white;
    --base-color:rgb(228, 228, 228);
    --bord-color:#d1d1d1;
    --input-color:#d1d1d1;
    --text-color-02:rgb(22, 22, 22);
    --fundo-gradient-02:linear-gradient(145deg, #808080bb, #cacacab0);
    --filtro-logo2:brightness(0) saturate(100%) invert(13%) sepia(3%) saturate(0%) hue-rotate(255deg) brightness(106%) contrast(91%);
    --filtro-logo: brightness(0) saturate(100%) invert(26%) sepia(75%) saturate(6708%) hue-rotate(1deg) brightness(91%) contrast(136%);
    --fundo-gradient:linear-gradient(142deg, rgba(255,255,255,0.87718837535014) 0%, rgba(242,242,242,0.7343312324929971) 29%, rgba(218,218,218,0) 100%);
}

.darkmode{
    --fundo-gradient-02:linear-gradient(144deg, rgba(0, 0, 0, 0.836) 17%, rgba(19, 19, 19, 0.753) 50%);
    --fundo-gradient:linear-gradient(90deg, rgba(9,9,9,1) 14%, rgba(19, 19, 19, 0.774) 45%, rgba(0, 0, 0, 0.062) 100%);
    --text-color:#f7f7f7;
    --text-secondary:#ffffff;
    --color-grey-01:rgb(32, 32, 32);
    --fundo:rgb(37, 37, 37);
    --color-secondary: #353535;
    --bord-color:rgb(88, 88, 88);
    --input-color:#161616;
    --text-color-02:rgb(88, 88, 88);
    --filtro-logo: brightness(0) saturate(100%) invert(100%) sepia(100%);
    --filtro-logo2:brightness(0) saturate(100%) invert(100%) sepia(99%) saturate(6%) hue-rotate(340deg) brightness(103%) contrast(96%);
}

#modal-loading{
    padding-top: 20px;
    margin: 200px auto;
    width: 200px;
    height: fit-content;
    background-color:var(--fundo);
    border: none;
    outline: none;
    border-radius: 4px;
}

#modal-loading::backdrop{
    backdrop-filter: blur(10px);
}

#modal-loading #div-animate{
    display: flex;
    align-items: center;
    justify-content: center;
}

#modal-loading #div-animate h2{
    width: fit-content;
    margin: 0px auto;
    color: var(--text-color);
    position: relative;
    font-size: 20px;
}

#modal-loading #div-animate h2 span{
    color: var(--text-color);
    font-size: 19px;
    margin: 0px;
    
}

.ponto-animate{
    animation: ponto 0.3s step-end infinite alternate;
    position: absolute;
}

.ponto-animate:nth-child(1){
    right: -9px;
    animation-delay: 0.4s;
    margin-left: 10px;
}
.ponto-animate:nth-child(2){
    right: -17px;
    animation-delay: 0.3s;
}
.ponto-animate:nth-child(3){
    right: -25px;
    animation-delay: 0.2s;
}

@keyframes ponto {
    0%  {bottom: 0px;}
  25%  {bottom: 1px;}
  50%  {bottom: 2px;}
  75%  {bottom: 3px;}
  100% {bottom: 4px;}

}

#modal-loading #container-loading{
    width: 200px;
    height: 200px;
    align-items: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
#modal-loading #container-loading #alinhamento-vertical{
    height: 200px;
    width: 150px;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-sizing: border-box;
    justify-content: center;
}


#modal-loading #container-loading #alinhamento-vertical #loading{
    width: 98px;
    height: 98px;
    background: linear-gradient(90deg, rgba(180,58,58,1) 0%, rgba(253,29,29,1) 34%, rgba(252,176,69,1) 75%, rgb(255, 251, 35) 100%);
    border-inline-end-width: 1px;
    border-radius: 50%;
    position: relative;
    padding: 2px;
    
    /* background-image: linear-gradient(white, white), radial-gradient(circle at top left, red, rgb(255, 255, 255));
    background-origin: border-box;
    background-clip: content-box, border-box; */
    
}

#sub-loading{
    width: 98px;
    height: 98px;
    background-color:var(--input-color);
    border-radius: 50%;
    
}

#modal-loading #container-loading #alinhamento-vertical #logo-loading{
    width: 85px;
    height: 30px;
    position: absolute;
    z-index: 20;
    margin: 0px auto;
    filter: var(--filtro-logo);
}

.logo-animate{
    animation: pulsar 0.4s ease-in-out infinite;
}

@keyframes pulsar {
    0%  {scale: 1;}
  25%  {scale: 1.01;}
  50%  {scale: 1.03;}
  75%  {scale: 1.01;}
  100% {scale: 1}

}

#modal-loading #container-loading #alinhamento-vertical #loading.sofisticatto{
    margin: 0px auto;
    width: 100px;
    height: 100px;
    border: solid 3px purple;
    border-top-color: white;
    border-inline-end-width: 1px;
    border-radius: 50%;

    /* background-image: linear-gradient(white, white), radial-gradient(circle at top left, red, rgb(255, 255, 255));
    background-origin: border-box;
    background-clip: content-box, border-box; */
    
}
.cyrcle-animate{
    animation: spin 0.4s linear infinite;

}

@keyframes spin {
    to{
        transform: rotate(360deg);
    }   
}


*{
    padding: 0px;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    padding: 0px;
    box-sizing: border-box;
    background-color: var(--fundo);
    font-family: Arial, Helvetica, sans-serif;
    transition: .2s;
}

 #theme-switch{
    width: 45px !important;
    height: 45px !important;
    box-sizing: border-box;
    padding: 0;
    border-radius: 50%;
    background-color: var(--color-grey-01);
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}

#theme-switch svg{
    fill: var(--text-color);
}

#theme-switch svg:last-child{
    display: none;
}

.darkmode #theme-switch svg:first-child{
    display: none;
}

.darkmode #theme-switch svg:last-child{
    display: block;
}

body::-webkit-scrollbar {
    width: 12px;               /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: var(--color-grey-01);        /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: var(--color-grey-02);    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid var(--color-grey-01);  /* creates padding around scroll thumb */
}
body::-webkit-scrollbar-thumb:hover{
    background-color: var(--luxlife-primary);    /* color of the scroll thumb */

}

.messages-container{
    width: 100%;
    min-height: 100px;
    padding-top: 90px;
    box-sizing: border-box;
    grid-area: m;

}
/* classes padrão de mensagens */
.messages-container #message{
    padding: 6px;
    font-weight: bold;
    width: 80%;
    margin-left: 10%;
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
    border-radius: 4px;
    box-sizing: border-box;
}

.messages-container .msg-error{
    color: rgba(255, 0, 0, 0.548);
    border: 1px solid rgba(255, 0, 0, 0.548);
}

.messages-container .msg-success{
    color: rgba(28, 207, 0, 0.548);
    border: 1px solid rgba(28, 207, 0, 0.548);
}

nav#nav-desk{
    width: 100%;
    height: 80px;
    -webkit-box-shadow: 2px 6px 20px -14px var(--color-shadow-01);
    -moz-box-shadow: 2px 6px 20px -14px var(--color-shadow-01);
    box-shadow: 2px 6px 20px -14px var(--color-shadow-01);
    padding: 10px;
    box-sizing: border-box;
    position: absolute;
    background-color: var(--color-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    top: 0px;
}

.sofisticatto-style{
    border-top: 5px solid var(--sofisticatto-roxo);
}

.border{
    position: absolute;
    width: 100%;
    height: 5px;
    z-index: 3;
}

.gradiente-dourado {
  background: linear-gradient(
    135deg,
    #ff0000 0%,
    #4b0000 50%,
    #ff0000 100%
  );
  background-size: 200% 200%;
  animation: reflexo 5s ease infinite;
  box-shadow: 0 0 5px rgba(255, 23, 23, 0.678);
}

@keyframes reflexo {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.vivalux-style{
    border-top: 5px solid var(--vivalux-primary);
}

nav#nav-desk div.perfil{
    display: flex;
    align-items: center;
    height: 60px;
    min-width:100px; 
}

nav#nav-desk div.perfil #modo-de-manutencao{
    background-color: yellow;
    padding: 10px;
    height: 70px;
    box-sizing: border-box;
    z-index: 1;
    display: flex;
    align-items: center;
    border: 1px solid black;
}

nav#nav-desk div.perfil #situacao-usuario {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
    border-right: 1px solid #bbb;
    padding: 0px 10px;
}

nav#nav-desk div.perfil #situacao-usuario h2{
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    color: #bbb;
}

nav#nav-desk div.perfil #situacao-usuario div.usuario-status{
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

nav#nav-desk div.perfil #situacao-usuario div.usuario-status.u-ativo{
    background-color: #0a0;
}

nav#nav-desk div.perfil #situacao-usuario div.usuario-status.u-inativo{
    background-color: red;
}

nav#nav-desk div.perfil img{
    border-radius: 50%;

}

nav#nav-desk #logo-options #logo{
    width: 80px;
    height: auto;
}

nav#nav-desk #logo-options{
    display: flex;
    align-items: center;
}

nav#nav-desk #logo-options ul{
    list-style: none;
    display: inline-block;
    box-sizing: border-box;
    margin-left: 20px;
}

nav#nav-desk #logo-options ul li{
    display: inline-block;
    margin: 10px;
}

nav#nav-desk #logo-options ul li#fazer-ativo-mensal .msg-ativar{
    color: white;
    background-color: red;
    padding: 10px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

nav#nav-desk #logo-options ul li#fazer-ativo-mensal .msg-ativar img{
    width: 20px;
    height: auto;
}

nav#nav-desk #logo-options ul li a{
    color: var( --text-secondary);
    text-decoration: none;
    font-weight: 400;
}

nav#nav-desk.luxlife-style #logo-options ul li a:hover{
    color: var(--luxlife-primary);
}

nav#nav-desk.vivalux-style #logo-options ul li a:hover{
    color: var(--vivalux-primary);
}

.foco{
    color: var(--luxlife-primary)!important;
}

.foco-2{
    color: var(--vivalux-primary)!important;
}

nav#nav-desk div.perfil img{
    width: 50px;
    height: 50px;
}

div.perfil-info{
    display: flex;
    flex-direction:column;
    width:fit-content;
}

nav#nav-desk div.perfil div.perfil-info h3, span{
    font-family: Arial, Helvetica, sans-serif;
    margin-right: 10px;
    color: var(--text-secondary);
    text-align: end;
}

nav#nav-desk div.perfil span{
    font-size: 16px;
    min-width: 100px;
    color: var(--text-secondary);
    font-weight: 600;
}

nav#nav-desk div.perfil #empresa{
    font-size: 12px;
    color: #0a0;
}
nav#nav-desk div.perfil #vip{
    font-size: 12px;
    color: rgb(238, 182, 0);
}
nav#nav-desk div.perfil #distribuidor{
    font-size: 12px;
    color: rgb(255, 0, 0);
}

div#perfil-options{
    width: 200px;
    min-height: 20px;
    height: fit-content;
    position: absolute;
    right: 20px;
    top: 90px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 2px 5px 0px var(--color-shadow-01);
    -moz-box-shadow: 0px 2px 5px 0px var(--color-shadow-01);;
    box-shadow: 0px 2px 5px 0px var(--color-shadow-01);
    z-index: 2;
}

div.vivalux{
    background-color: var(--vivalux-primary-transparente);
}

div.luxlife{
    background-color: var(--luxlife-primary-transparente);
}

.closed{

    visibility: hidden;
}

nav#mobile{
    display: none;
}
div#perfil-options #triangle{
    width: 0px;
    height: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    right: 15px;
    margin-top: -20px;
    z-index: 2;
}
div.vivalux #triangle{
    
    border-bottom: 20px solid var(--vivalux-primary-transparente);
}
div.luxlife #triangle{
    border-bottom: 20px solid var(--luxlife-primary-transparente);

}
div#perfil-options #perfil-options-content{
    width: 100%;
    height: 100%;
}
div#perfil-options-content .perfil-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    margin: 10px auto 0px auto;
    padding: 10px 0px;
    box-sizing: border-box;

}
div#perfil-options-content .perfil-container a{
    font-weight: 600;
    font-size: 14px;
}
div#perfil-options-content .perfil-container a#royalties{
    display: flex;
    align-items: center;
}
div#perfil-options-content .perfil-container a img#moeda-royalties{
    width: 25px;
    height: auto;
}
div#perfil-options-content .perfil-container span{
    font-weight: bold;
    font-size: 16px;

}
div#perfil-options-content .perfil-container span, a{
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    text-align: center;
    margin: 0px;
}

div#perfil-options-content .perfil-container:not(:last-child){
    border-bottom: 1.5px solid var(--color-grey-01-transparente)
}
.perfil-container img#perfil-foto{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

footer{
    width: 100%;
    height: 300px;
    background: linear-gradient(29deg, rgba(186,0,0,1) 36%, rgba(255,0,0,1) 62%);
    position: relative;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
    
}
footer.sofisticatto{
    background-color: var(--sofisticatto-roxo);
}

.footer-box{
    height: 250px;
    width: 100%;
    background-color:rgba(255, 0, 0, 0);
    display: flex;
    justify-content: space-around;
    padding: 50px 300px;
    box-sizing: border-box;
    color: var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
}
.footer-box.sofisticatto{
    background-color: var(--sofisticatto-roxo);
}

.footer-box .box{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.footer-box .box h3{
    color: white;
}

.footer-box .box a{
    text-decoration: underline;
    font-size: 18px;
    color: white;
    cursor: pointer;
}
.footer-box img{
    width: 150px;
    height: auto;
}
footer span{
    color:white;
    font-size: 18px;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    footer{
        height: inherit;
    }
    .footer-box{
        
        padding: 50px 100px;
    }
    .footer-box .box a{
        font-size: 16px;
    }
    footer span{
        font-size: 16px;
        margin-top: 20px;
        text-align: center;
        padding-bottom: 20px;
    }
    
}
@media (max-width: 1000px) {
    #fazer-ativo-mensal{
        display: block;
        width: 90%;
        margin-left: 5%;
    }
    #fazer-ativo-mensal .msg-ativar{
        color: white;
        background-color: red;
        padding: 10px;
        border-radius: 4px;
        font-weight: 600;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }
    #fazer-ativo-mensal .msg-ativar img{
        width: 20px;
        height: auto;
    }

}
@media (max-width: 900px) {

    nav#nav-desk{
        display: none;
    }
    nav#mobile{
    width: 100%;
    height: 80px;
    -webkit-box-shadow: 2px 6px 20px -14px var(--color-shadow-01);
    -moz-box-shadow: 2px 6px 20px -14px var(--color-shadow-01);
    box-shadow: 2px 6px 20px -14px var(--color-shadow-01);
    padding: 10px;
    box-sizing: border-box;
    position: absolute;
    background-color: var(--color-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 20px;
    top: 0px;
    transition: height 0.8s linear;
    z-index: 5;

    }
    nav#mobile #nav-head {
        width: 100%;
        height: 80px;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        
    }
    nav#mobile #nav-head #logo{
        width: 80px;
        height: auto;
    }
    nav#mobile #nav-head div.perfil{
        display: flex;
        align-items: center;
        height: 60px;
        width: fit-content;
        
    }
    nav#mobile #nav-head div.perfil  #situacao-usuario{
        display: flex;
        align-items: center;
        margin-right: 10px;
    }
    nav#mobile #nav-head div.perfil  #situacao-usuario h2{
        font-weight: 600;
        text-transform: uppercase;
        font-size: 16px;
        padding: 5px 10px;
        border-radius: 2px;
    }
    nav#mobile #nav-head div.perfil  #situacao-usuario h2.m-ativo{
        background-color: #0a0;
        color: white;
    }
    nav#mobile #nav-head div.perfil  #situacao-usuario h2.m-inativo{
        background-color: red;
        color: white;
      
    }
 
    nav#mobile #nav-menu{
        border-top: 1px solid var(--color-grey-01);
        display: none;
        width: 100%;
        overflow: hidden;
    }
    nav#mobile #nav-menu ul {
        padding-left: 0px;
    }
    nav#mobile #nav-menu ul#principal li:first-child{
        border-bottom: 1px solid var(--color-grey-01);
        color: #bbb;
        font-weight: 600;
    }

    nav#mobile #nav-menu ul#principal #empresa_mobile h3{
        color:#0a0;
        font-size: 12px;
    }

    nav#mobile #nav-menu ul#principal #vip_mobile h3{
        color: #ffa600;
        font-size: 12px;
    }

    nav#mobile #nav-menu ul#principal #distribuidor_mobile h3{
        color: #ff0000;
        font-size: 12px;
    }

    nav#mobile #nav-menu ul li{
        width: 100%;
        list-style: none;
        text-align: center;
        display: inline-block;
        padding: 10px;
        box-sizing: border-box;
    }
    nav#mobile #nav-menu ul li#fazer-ativo-mensal .msg-ativar{
        color: white;
        background-color: red;
        padding: 10px;
        border-radius: 4px;
        font-weight: 600;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    nav#mobile #nav-menu ul li#fazer-ativo-mensal .msg-ativar img#aviso{
        width: 20px!important;
        height: auto;
    }

    
    nav#mobile #nav-menu ul li a{
        color: var(--text-color);
        text-decoration: none;
        font-weight: 400;
    }

    nav#mobile.luxlife-style #nav-menu ul li a:hover{
        color: var(--luxlife-primary);
    }
    nav#mobile.vivalux-style #nav-menu ul li a:hover{
        color: var(--vivalux-primary);
    }
    div#perfil-options {
        display: none;
    }
    div#perfil-options #triangle{
        display: none;
    }
    nav#mobile #nav-head div.perfil img{
        border-radius: 50%;
        height: 90%;
        width: auto;
    }

}
@media (max-width: 750px) {
    .footer-box{
        flex-direction: column;
        padding: 50px 0px;
        height: fit-content;
        align-items: center;
        
    }
    .footer-box .box{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .messages-container #message{
        font-size: 1.1rem;
    }
}