:root{
    --menu_space: 20px;
    --burger-size: 3px;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: main_font;
}

*::selection{
    background-color: #4d4d4d;
    color: #fff;
}

@font-face {
    font-family: title_font;
    src: url(archives/NivaSmallCaps-ExtraBlack.ttf);
}

@font-face {
    font-family: main_font;
    src: url(archives/centurygothic.ttf);
}

body.sec{
    background-color: #000;
    color: #fff;
}

body.sec-page{
    background-image: url(img/bg/bg_fst.png);
    animation: bg-rooming 99999s linear infinite alternate;
}

.title{
    font-family: 'title_font';
    text-align: center;
}

#blacking{
    width: 100%;
    height: 100%;
    background-color: #000000c4;
    position: fixed;
    z-index: -10;
    opacity: 0;
    transition: all .3s;
}

header{
    background-color: #000;
    padding: 20px;
    filter: drop-shadow(0 0 3px #000);
    box-shadow: 0 0 3px #fff;
    top: 0;
    position: sticky;
    z-index: 99;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

#lang, #lang_sm{
    color: #fff;
    font-size: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 2px;
    background-color: #131313;
    border: .5px solid #fff;
    border-radius: 5px;
    user-select: none;
    cursor: pointer;
    transition: all .3s;
}

#lang_sm{
    border: 1px solid #000;
    width: 55px;
    justify-content: center;
    position: absolute;
    left: 40%;
    bottom: 70px;
    display: flex;
    background-color: #fff;
    color: #000;
}

#lang div, #lang_sm div{
    display: flex;
    align-items: center;
}

#lang img, #selectLang img, #lang_sm img, #selectLang_sm .language-sm img{
    height: 20px;
}

#lang:active{
    background-color: #fff;
    color: #000;
}

#selectLang, #selectLang_sm{
    display: flex;
    flex-direction: column;
    color: #000;
    background-color: #fff;
    position: fixed;
    float: right;
    right: 0;
    margin-right: 13px;
    top: 80px;
    transition: all .3s;
    height: 0;
    width: 70px;
}

#selectLang_sm{
    transform-origin: bottom;
    transform: scaleY(0);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    float: left;
    left: 0;
    margin-right: 0;
    margin-left: 35%;
    width: 85px;
    height: 80px;
    filter: drop-shadow(0 0 3px #000);
    top: 550px;
}

p.arrow, p.arrow_mainLang{
    transition: all .3s;
}

.language{
    opacity: 0;
}

.language-sm{
    display: flex;
    flex-direction: row;
    gap: 5px;
    opacity: 0;
    pointer-events: none;
}

#selectLang div, #selectLang_sm div{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px;
    transition: all .7s;
    cursor: pointer;
}

#selectLang div:last-child, #selectLang_sm div:last-child{
    border-top: 1px solid #4d4d4d;
}

#selectLang div:hover{
    background-color: #e1e1e1;
}

#selectLang_sm div:hover{
    background-color: #f1f1f1;
}

.menu_lg{
    display: flex;
    flex-direction: row;
    gap: var(--menu_space);
    font-size: 18px;
    align-items: center;
}

.menu_lg a{
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: all 1s;
}

.menu_lg a.selected{
    --thickness: 2.5px;
    --color: #b9e8ff;
    pointer-events: none;
    cursor: not-allowed;
    padding-bottom: var(--thickness);
    position: relative;
    top: var(--thickness);
    color: var(--color);
    position: relative;
    display: inline-block;
}

.menu_lg a::after{
    content: '';
    display: inline-block;
    width: .8px;
    height: 17px;
    margin-left: var(--menu_space);
    background-color: #fff;
    position: relative;
    top: 3px;
}

.menu_lg a:last-child::after{
    display: none;
}

/* .menu_lg a.selected::after{
    display: none;
} */

.menu_lg a:hover{
    filter: drop-shadow(0 0 1.5px #fff);
}

.logo.sec-page{
    display: flex;
    flex-direction: row;
    gap: 10px;
    color: #fff;
    align-items: center;
}

.logo.sec-page p{
    font-family: title_font;
    font-size: 30px;
}

.logo img{
    height: 70px;
    transform: rotate(-2deg);
    filter: drop-shadow(0 0 1px #fff);
}

#mediasMenu{
    cursor: pointer;
}

#burger{
    display: none;
    flex-direction: column;
    gap: calc(var(--burger-size) * 2);
    border-radius: 40px;
    cursor: pointer;
    transition: all .3s;
}

#burger span{
    width: calc(var(--burger-size) * 10);
    height: var(--burger-size);
    background-color: #fff;
    border-radius: calc(var(--burger-size) * 10);
}

menu{
    z-index: 999;
    height: 100vh;
    width: 300px;
    float: left;
    left: -300px;
    position: fixed;
    top: 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 25px;
    border-right: 10px double #4d4d4d;
    transition: all .5s;
}

menu li{
    list-style-type: none;
    padding: 10px;
    border-bottom: 1px solid #c3c3c3;
    cursor: pointer;
    user-select: none;
    transition: all .5s;
}

menu li:hover{
    background-color: #e4e4e4;
    transition: all .5s;
}

menu li:active{
    background-color: #4d4d4d;
    color: #fff;
}

section#intro{
    background-image: url(img/bg/bg_fst.png);
    background-size: 950px;
    background-attachment: fixed;
    padding: 40px;
    animation: bg-rooming 99999s linear infinite alternate;
    font-size: 1.4em;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

@keyframes bg-rooming {
    from{
        background-position-x: 0;
    }to{
        background-position-x: 9999999px;
    }
}

section#intro h1, section#medias h1, h3{
    font-family: title_font;
}

.subeco{
    perspective: 320px;
}

.subeco_p {
    height: 320px;
    -webkit-user-drag: none;
    pointer-events: none;
    user-select: none;
    position: relative;
    animation: wave_effs 3s ease-in-out infinite alternate, waving 10s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 2px #000);
}

@keyframes wave_effs {
    from{
        top: 0;
    }to{
        top: 20px;
    }
}

@keyframes waving {
    from { transform: scaleX(-1) rotate(-5deg); }
    to { transform: scaleX(-1) rotate(5deg); }
}

section#intro .info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    text-align: center;
    margin: 80px;
}

section#intro .info button{
    background-color: #000;
    border: none;
    border-radius: 10px;
    color: #fff;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all .3s;
    animation: lightning_text 2s ease-in-out infinite alternate;
}

section#intro .info button:hover{
    background-color: #202020;
    transition: all .3s;
}

@keyframes lightning_text{
    from{
        text-shadow: 0 0 0 #fff;
    }to{
        text-shadow: 0 0 3px #fff;
    }
}

section#aboutUs{
    background-color: #000;
    padding: 40px;
    border-top: 15px double #fff;
    filter: drop-shadow(0 0 3px #000);
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

section#aboutUs .info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

section#aboutUs .info button{
    background-color: #fff;
    width: 300px;
    border-radius: 10px;
    color: #000;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    border: none;
}

section#medias{
    font-size: 1.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background-image: url(img/bg/bg_fst.png);
    background-size: 950px;
    background-attachment: fixed;
    animation: bg-rooming-reversed 99999s linear infinite alternate;
}

@keyframes bg-rooming-reversed {
    from{
        background-position-x: 0;
    }to{
        background-position-x: -9999999px;
    }
}

.social_medias{
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-size: 40px;
    color: #000;
}

section#medias h1::before, section#medias h1::after, .logo-footer::before, .logo-footer::after{
    display: inline-block;
    content: '';
    width: 100px;
    height: 3px;
    background-color: #000;
    margin: 7px;
}

.logo-footer{
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-footer img{
    position: relative;
    top: -10px;
}

.logo-footer::before, .logo-footer::after{
    width: 15em;
    height: .5px;
    background-color: #000000;
    border: .3px solid #ffffff96;
}

.social_medias > a {
    color: #000;
}

@keyframes fb_animationColor {
    from{
        color: #000;
    }to{
        color: #00f;
        text-shadow: 0 0 3px #00f;
    }
}

@keyframes ig_animationColor {
    from{
        color: #000;
    }to{
        color: #ff007b;
        text-shadow: 0 0 3px #ff007b;
    }
}

@keyframes wa_animationColor {
    from{
        color: #000;
    }to{
        color: #00cb00;
        text-shadow: 0 0 3px #00cb00;
    }
}

@keyframes yt_animationColor {
    from{
        color: #000;
    }to{
        color: #f00;
        text-shadow: 0 0 3px #f00;
    }
}

.fb{
    animation: fb_animationColor 1s linear 1s infinite alternate;
}.ig{
    animation: ig_animationColor 1s linear 1s infinite alternate;
}.wa{
    animation: wa_animationColor 1s linear 1s infinite alternate;
}.yt{
    animation: yt_animationColor 1s linear 1s infinite alternate;
}

section#otherInfos{
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 30px;
}

.icons{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 80%;
    margin: 20px;
}

section#otherInfos div div a{
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    animation: light_upanddown 5s ease-in-out infinite alternate;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

@keyframes light_upanddown {
    from{
        filter: drop-shadow(0 0 150px #fff);
    }to{
        filter: drop-shadow(0 0 250px #fff);
    }
}

section#otherInfos div img{
    height: 180px;
    user-select: none;
    -webkit-user-drag: none;
}

footer{
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

footer img{
    height: 50px;
}

.lightining_filter{
    filter: drop-shadow(0 0 3px #fff);
}

sup{
    font-size: 8px;
}

footer h3{
    color: #000;
    text-shadow: .8px .8px .8px #fff, -.8px .8px .8px #fff, .8px -.8px .8px #fff, -.8px -.8px .8px #fff;
}

footer p#contact{
    display: flex;
    flex-direction: row;
    gap: 20px;
    font-size: 20px;
}

footer p#contact i{
    cursor: pointer;
}

footer p#contact i:hover{
    text-shadow: 0 0 3px #fff;
}

#copy{
    margin: 50px 0 20px 0;
}

/** responsividade */

@media screen and (max-width: 984px) {
    section#intro{
        font-size: 1.3em;
    }

    section#intro .info button{
        font-size: 17px;
    }
}

@media screen and (max-width: 922px) {
    section#intro{
        font-size: 1.1em;
    }

    section#intro .info button{
        font-size: 15px;
    }

    .subeco img{
        height: 280px;
    }
}

@media screen and (max-width: 840px) {
    section#intro{
        padding: 20px;
    }

    section#intro .info{
        margin: 50px;
    }

    section#intro .info button{
        font-size: 17px;
    }
}

@media screen and (max-width: 750px) {
    .menu_lg{
        display: none;
    }

    .logo img{
        height: 55px;
    }

    #burger{
        display: flex;
    }

    section#medias{
        padding: 40px;
    }
    
    section#otherInfos div img{
        height: 130px;
    }
}

@media screen and (max-width: 670px) {
    section#intro{
        flex-direction: column-reverse;
        align-items: center;
        font-size: 1.5em;
    }
    
    section#otherInfos div img{
        height: 130px;
    }

    .logo-footer::before, .logo-footer::after{
        width: 6em;
    }
}

@media screen and (max-width: 540px) {
    section#intro{
        flex-direction: column-reverse;
        align-items: center;
        font-size: 1.5em;
    }

    .subeco img{
        height: 220px;
    }

    section#intro .info{
        margin: 10px;
    }
    
    section#otherInfos div img{
        height: 130px;
    }

    section#medias h1::before, section#medias h1::after, .logo-footer::before, .logo-footer::after{
        width: 40px;
        margin: 6px;
    }

    section#otherInfos{
        flex-direction: column;
        padding: 30px;
    }

    section#otherInfos h3{
        font-size: 25px;
        margin-bottom: 30px;
    }

    .icons{
        flex-direction: column;
        gap: 50px;
    }
}

@media screen and (max-width: 450px) {
    section#intro{
        font-size: 1.2em;
    }
}

@media screen and (max-width: 430px) {
    section#intro{
        font-size: 1.2em;
    }

    section#medias h1{
        display: flex;
        flex-direction: column;
    }

    section#medias h1::before, section#medias h1::after{
        width: 100%;
    }

    #copy{
        font-size: 12px;
        text-align: center;
    }
}

@media screen and (max-width: 385px) {
    section#intro{
        font-size: 1em;
    }

    section#intro .info button{
        font-size: 14px;
    }

    section#aboutUs .info button{
        width: 300px;
        padding: 15px;
        font-size: 17px;
    }

    section#medias h1, section#otherInfos h3{
        font-size: 22px;
        text-align: center;
    }
}

/**SECONDARY WEBSITES */

html.sec, body.sec-page{
    height: 100%;
}

.logo-center{
    margin: 0 auto;
    display: flex;
    justify-content: center;
    position: relative;
    top: -130px;
    transition: all 1s;
}

.logo-center img{
    height: 100px;
}

#logoLight{
    --dimension: 20px;
    height: var(--dimension);
    width: var(--dimension);
    border-radius: 50%;
    background-color: #ffffff6e;
    position: fixed;
    top: -400px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 1s;
}

section.content-box{
    margin-top: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content{
    width: 90%;
    margin: 20px 20px 0 20px;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
    opacity: 0;
    transition: all 3s;
}

.aniTitle{
    opacity: 0;
    transition: all 1s;
}

.home{
    position: absolute;
    top: 0;
    float: right;
    right: 0;
    margin: 20px;
}

.home img{
    height: 30px;
}

section#prices, section#services{
    background-image: url(img/bg/bg_sec.png);
    padding: 20px;
    margin: 20px;
    height: 80%;
    max-height: 90%;
    overflow-y: auto;
    color: #fff;
    animation: bg-rooming 399999s linear infinite alternate;
    border-radius: 20px;
}

section#prices h1, section#prices h2, section#prices h3, section#services h1, section#services h2, section#services h3{
    border-left: 10px solid #cdcdcd;
    background-image: linear-gradient(45deg, #989898, transparent);
    padding-left: 15px;
    font-family: title_font;
    text-shadow: 2px 2px 2px #000;
    margin: 10px 0;
}

section#services h1, section#services h2, section#services h3{
    text-align: center;
    background-image: linear-gradient(45deg, #989898, transparent, #989898);
    border-left: none;
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

section#prices a{
    color: #b9e8ff;
}

.pricing{
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-family: monospace;
}

.pricing .dots{
    flex-grow: 1;
    border-bottom: 2px dotted #ffffff;
    margin: 2px 5px;
}

.pricing .left, .pricing .right{
    font-family: title_font;
    font-size: 21px;
}

section#services{
    transition: all 1s;
}

.title-service{
    transition: all 1s;
}

section#services .container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

section#services .container div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: bold;
    user-select: none;
    cursor: pointer;
}

section#services .container div img{
    height: 130px;
    -webkit-user-drag: none;
    user-select: none;
    transition: all 1s;
}

#dark{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #00000083;
    z-index: 1000;
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: all .5s;
}

#warning{
    position: fixed;
    z-index: 1001;
    background-color: #fff;
    filter: drop-shadow(0 0 10px #fff);
    padding: 10px;
    border: #d6d6d6 5px double;
    border-radius: 20px;
    transition: all .5s;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    display: block;
}

#closeWarning, #closeInfo{
    --dimension: 19px;
    width: var(--dimension);
    height: var(--dimension);
    border-radius: 50%;
    background-color: #ff0000;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #800;
    user-select: none;
    cursor: pointer;
    position: absolute;
    float: right;
    right: 0;
    top: -10px;
    filter: drop-shadow(0 0 3px #f00);
}

#closeInfo{
    top: 20px;
    margin-right: 20px;
    z-index: 1006;
}

#infodiv{
    position: fixed;
    padding: 20px;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    width: 50%;
    overflow-y: auto;
    text-align: center;
    float: right;
    right: -50%;
    transition: all 1s;
    z-index: 1006;
}

#titleInfo{
    font-family: title_font;
}

body.sec-page h1{
    transition: all 1s;
}

.example{
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 10px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px auto;
    width: 170px;
}

.example img{
    width: 170px;
}

.list{
    text-align: left;
    margin: 10px 0 10px 40%;
}

.warning-txt{
    font-size: 15px;
    color: #f00;
    font-weight: bold;
    text-decoration: dashed;
}

#sure{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border: 3px double #e4e4e4;
    border-radius: 20px;
    padding: 10px;
    font-size: 20px;
    color: #000;
    font-family: main_font;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transition: all 1s;
    z-index: 1003;
    min-width: 300px;
    max-width: 350px;
}

#chooseService{
    font-weight: lighter;
}

#sure button{
    padding: 5px;
    font-size: 25px;
    color: #fff;
    border-radius: 15px;
    border: #000 1.5px solid;
    cursor: pointer;
}

#sure .buttons{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

#sure button.yes{
    background-color: #4c9b4c;
}#sure button.no{
    background-color: #b75353;
}

#sure button.yes:hover{
    background-color: #40b040;
}#sure button.no:hover{
    background-color: #d65151;
}

#mediasPopUp{
    position: fixed;
    width: 100vw;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    font-size: 22px;
    background-color: #e6e6e6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 6px double #4d4d4d;
    bottom: -284.4px;
    filter: drop-shadow(0 0 5px #000);
    transition: all 1s;
}

#mediasPopUp a{
    font-family: title_font;
    text-decoration: none;
}

#mediasPopUp a{
    padding: 10px;
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 10px;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: bold;
    border-bottom: 1px solid #4d4d4d;
}

#mediasPopUp a:first-child{
    padding-top: 0;
}

#mediasPopUp a:last-child{
    border: none;
}

/* #mediasPopUp a.insta{
    background-image: linear-gradient(45deg, #515bd4, #8134af, #dd2a7b, #f58529);
}#mediasPopUp a.whats{
    background-image: linear-gradient(45deg, #18d100, #168c14);
}#mediasPopUp a.ytb{
    background-image: linear-gradient(45deg, #ff0000, #b60000);
} */

#mediasPopUp a.insta{
    text-shadow: 2px 2px 2px #dd2a7b;
}#mediasPopUp a.face{
    text-shadow: 2px 2px 2px #0000ff;
}#mediasPopUp a.whats{
    text-shadow: 2px 2px 2px #27c100;
}#mediasPopUp a.ytb{
    text-shadow: 2px 2px 2px #ff0000;
}#mediasPopUp a.threads{
    text-shadow: 2px 2px 2px #000000;
}


#mediasPopUp a:hover{
    text-shadow: none;
    color: #fff;
}
#mediasPopUp a.insta:hover{
    background-image: linear-gradient(45deg, #515bd4, #8134af, #dd2a7b, #f58529);
}#mediasPopUp a.face:hover{
    background-image: linear-gradient(45deg, #0000d1, #14188c);
}#mediasPopUp a.whats:hover{
    background-image: linear-gradient(45deg, #18d100, #168c14);
}#mediasPopUp a.ytb:hover{
    background-image: linear-gradient(45deg, #ff0000, #b60000);
}#mediasPopUp a.threads:hover{
    background-image: linear-gradient(45deg, #000000, #232323);
}

.down{
    padding: 0;
    color: #4d4d4d;
    border-bottom: 3px #4d4d4d double;
    width: 100%;
    text-align: center;
    cursor: pointer;
}

.down:hover{
    background-color: #b8b8b8;
    color: #fff;
}

/**chat */
  #divChat{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 1s;
    position: fixed;
    top: 93%;
    left: 95%;    
    transform: translate(-50%, -50%) scale(0);
    z-index: 1008;
    border-radius: 20px;
    border: 10px solid #000;
    border-radius: 20px;
    box-shadow: 0 0 1px 1px white;
    /* filter: drop-shadow(0 0 3px #fff); */
    background-color: rgb(0, 0, 0);
    /* animation: vindo 1s ease-in-out infinite alternate; */
  }
  @keyframes vindo {
    from{
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
    }to{
        top: 93%;
        left: 95%;
        transform: translate(-50%, -50%) scale(0);
    }
  }
  #cfgIcon{
    display: inline-block;
    transition: all 1.5s;
  }
  #settings_chat{
    background-color: #000;
    position: absolute;
    z-index: 1009;
    top: 50px;
    right: -10px;
    display: flex;
    flex-direction: column;
    color: #fff;
    transition: all .5s;
    transform: scaleY(0);
    transform-origin: top;
    font-size: 17px;
    border: 1px solid #fff;
    border-top: 0;
  }
  #settings_chat div{
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 5px 10px;
    border-bottom: 1px solid #fff;
    cursor: pointer;
  }
  #settings_chat div:hover{
    background-color: #fff;
    color: #000;
  }
  #settings_chat div:last-child{
    border: none;
  }
  #chat {
    width: 330px;
    height: 400px;
    max-height: 400px;
    background-image: url(img/bg/chatBg.webp);
    background-size: 50px;
    background-position: center;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
  }
  .dlg {
    display: flex;
    margin-bottom: 10px;
    max-width: 80%;
    filter: drop-shadow(0 0 1px #000);
  }
  .sent {
    align-self: flex-end;
    flex-direction: row-reverse;
    user-select: none;
  }
  .received {
    align-self: flex-start;
  }
  .tri-chat, .tri-chat-wpp {
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: auto;
    position: relative;

  }
  .sent > .tri-chat {
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #000000;
    left: -.5px;
  }
  .received > .tri-chat {
    border-width: 10px 10px 10px 0;
    border-color: transparent #ddd transparent transparent;
    right: -.5px;
  }
  .received > .tri-chat-wpp {
    border-width: 10px 10px 10px 0;
    border-color: transparent #25D366 transparent transparent;
  }
  .box {
    background: #4a90e2;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    position: relative;
    font-size: 14px;
  }
  .sent > .box {
    background: #000000;
    border-bottom-right-radius: 0;
  }
  .received > .box {
    background: #ddd;
    color: #333;
    border-bottom-left-radius: 0;
  }
  .footer-chat {
    display: flex;
    justify-content: flex-end;
    font-size: 10px;
    color: #666;
    margin-top: 4px;
  }
  .hora-chat {
    margin: 0;
    user-select: none;
    color: #ccc;
  }
  .received .hora-chat{
    color: #000000;
  }
  #btn-panel {
    margin-top: auto;
    padding: 6px;
    display: flex;
    width: 330px;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 7px;
    justify-content: center;
    user-select: none;
    max-height: 58px;
    background-image: linear-gradient(360deg, #4e4e4e, #fff);
  }
  /* animação digitando */
  .typing {
    font-style: italic;
    font-size: 12px;
    opacity: 0.7;
    position: relative;
  }
  .dots span {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 2px;
    background-color: #666;
    border-radius: 50%;
    animation-name: blink;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }
  .dots span:nth-child(1) {
    animation-delay: 0s;
  }
  .dots span:nth-child(2) {
    animation-delay: 0.2s;
  }
  .dots span:nth-child(3) {
    animation-delay: 0.4s;
  }
  @keyframes blink {
    0%, 80%, 100% { opacity: 0.3; }
    40% { opacity: 1; }
  }
  
.botao-num {
  padding: 10px 15px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s;
}

.botao-num:hover {
  background: #303030;
}

header.chatting{
    background-image: linear-gradient(black 90%, transparent);
    width: 100%;
    color: #f5f5f5;
    padding: 5px;
    padding-bottom: 10px;
    padding: 5px 15px 10px 15px;
    user-select: none;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    filter: drop-shadow(0 5px 5px rgb(0, 0, 0));
    z-index: 1012;
    box-shadow: 0 0 0 transparent;
}

header.chatting div{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

:root{
    --dimension-character: 37px;
}

.character{
    width: var(--dimension-character);
    height: var(--dimension-character);
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character img{
    height: calc(var(--dimension-character) - 5px);
}

footer.chatting{
    background-color: #000;
    color: #f5f5f5;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #000;
    padding: 0;
}

footer.chatting img{
    margin-top: 8px;
    height: 20px;
}

header.chatting div .infoChar{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    font-family: Arial, Helvetica, sans-serif !important;
}

header.chatting div .infoChar .titleChar{
    font-size: 17px;
    font-family: Arial, Helvetica, sans-serif;
}header.chatting div .infoChar .status-chat{
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
}

.settingsChat i{
    cursor: pointer;
    transition: all .3s;
    font-size: 20px;
}
.settingsChat i:hover{
    color: rgb(0, 191, 255);
}
#cfgIcon{
    position: relative;
}
.settingsChat i#cfgIcon:hover{
    color: #fff;
}

.error{
    position: absolute;
    top: 15px;
    width: 330px;
    background-color: #b30000;
    color: #fff;
    font-size: 11px;
    display: block;
    text-align: center;
    padding: 5px;
    z-index: 1009;
    transition: all .5s;
    user-select: none;
}

#avisoChatDel{
    font-size: 15px;
    z-index: 1011;
    font-weight: bold;
}

#blockingChat{
    position: absolute;
    width: 330px;
    height: 400px;
    background-color: #ffffffcf;
    top: 52px;
    left: 0;
    z-index: 1011;
    cursor: not-allowed;
    pointer-events: none;
    display: none;
}

@keyframes growing{
    from{
        transform: scale(1);
    }to{
        transform: scale(1.2);
    }
}

#end.disabled-bin, #repeatChat.disabled, .botao-num.disabled{
    opacity: .4;
    cursor: not-allowed;
    pointer-events: none;
    color: #ff0000;
}

.disabled-bin{
    opacity: 1;
}

#closeChat{
    color: #e40000;
}
#closeChat:hover{
    filter: drop-shadow(0 0 0 transparent);
    color: #ff9696;
}

#errorMT5{
    position: fixed;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    background-image: linear-gradient(360deg, #d42828 70%, transparent);
    z-index: 1008;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: title_font;
    border-radius: 0 0 20px 20px;
    pointer-events: none;
    opacity: 0;
    transition: all 1s ease-in-out;
}

#errorMT5 img{
    height: 200px;
}

#errorMT5 div{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:3px;
    text-align: center;
}

/**widget */
#widgetChat{
    --size-widget: 70px;
    width: var(--size-widget);
    height: var(--size-widget);
    position: fixed;
    bottom: 20px;
    float: right;
    right: 10px;
    z-index: 9999;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 1.5s;
    box-shadow: 0 0 3px #000;
}

#widgetChat:hover{
    animation: dropping 1s ease 1 alternate;
}

@keyframes dropping {
    0%{
        filter: drop-shadow(0 0 0 transparent);
    }2%{
        filter: drop-shadow(0 0 20px #fff);
    }100%{
        filter: drop-shadow(0 0 100px transparent);
    }
}

#widgetChat img{
    height: 60px;
}

#circleWidgetChat{
    --size-circle-widget: 17px;
    border-radius: 50%;
    height: var(--size-circle-widget);
    width: var(--size-circle-widget);
    background-color: #f00;
    position: absolute;
    top: 0px;
    float: right;
    right: 0;
    font-size: 8px;
    font-weight: bold;
    color: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    border: 1px solid #800;
}

/**div temas */
#themes{
    position: absolute;
    padding: 10px;
    z-index: 1010;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 330px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all .5s ease-in-out;
    pointer-events: none;
    opacity: 0;
    border-radius: 10px;
    top: 240px; /**140px */
    filter: drop-shadow(0 0 10px #fff);
}
#themes div.themebase div{
    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: center;
    align-items: center;
}
#themes img{
    height: 100px;
    border-radius: 10px;
}

.wid-removed{
    opacity: 0;
    pointer-events: none;
}

#turnOffLamp{
    position: fixed;
    background-color: #000;
    width: 100%;
    height: 100%;
    z-index: 1001;
    top: 0;
    opacity: 0;
    pointer-events: none;
    transition: all .3s;
}

.scalingLuz{
    animation: acender-luz .5s ease-in-out infinite alternate;
}

@keyframes acender-luz {
    from{
        color: #fff;
        filter: drop-shadow(0 0 0 transparent);
    }to{
        color: #ff0;
        filter: drop-shadow(0 0 3px #ff0);
    }
}

#ativadorChat{
    display: none;
}

@keyframes piscando {
    from {
        transform: translateX(-50%) scale(1);
    }to {
        transform: translateX(-50%) scale(1.15);
    }
}

input[type="radio"]{
    cursor: pointer;
}

#lampada{
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 1s;
}

#fioLampada{
    height: 400px;
    width: 7px;
    background-color: #000;
    border-left: 2px solid #191919;
    border-right: 2px solid #191919;
}

#lampada img{
    height: 170px;
}

#subecoLi{
    background-color: #00000095;
    position: relative;
    color: #fff;
}

#subecoLi::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(97deg, #ffffff, #292929);
    background-size: 200% 200%;
    animation: estelar-suave 2s ease-in-out infinite;
    border-radius: inherit;
    transition: all .3s;
    z-index: -1;
}

#subecoLi:hover{
    background: linear-gradient(97deg, #fff, #b3b3b3);
    background-size: 200% 200%;
    animation: estelar-suave 2s ease-in-out infinite;
    color: #000;
}

#subecoLi:hover .estrelasIA{
    filter: drop-shadow(0 0 1px #fff) invert(0);
}

@keyframes estelar-suave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 63%;
    }
}

.estrelasIA{
    position: absolute;
    top: -10px;
    float: right;
    right: 10px;
    filter: drop-shadow(0 0 1px #fff) invert(1);
}

.estrelasIA.two{
    float: left;
    left: -10px;
    top: inherit;
    bottom: -10px;
}

#avisoFechado{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #800;
    color: #ffc1c1;
    padding: 10px 40px;
    width: 400px;
    text-align: center;
    font-weight: bold;
    z-index: 9999;
    user-select: none;
    display: none;
}