
@import url('https://fonts.googleapis.com/css2?family=Medula+One&family=Mochiy+Pop+One&family=Oswald:wght@400;700&family=Poppins:wght@300;400;500&family=Righteous&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


:root{

    --color--white: #fff;
    --color--dark1: #272727;
    --color--dark2: #2d2d2d;
    --color--dark3: #414141;
    --color--dark4: #1c1c1c;
    --color--dark5: #343434;
    --color--purple: #b040ff;
    --color----tema: #483D8B;
    --color--azul_escuro: #002088;
    --color--azul_escuro_plus: #001761;
    --color--vermelho_sangue: #b40000;
    --color-texto-destaque: #ffc400;
    --retrocon--azul--claro: #448ed7;
    --retrocon--azul--escuro: #082475;
    --retrocon--amarelo: #f1ff18
}


body{
   
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(to right,black,
     var(--color----tema), black);
    color: #000;
    transition: 0.5s;
    animation: opac 2s;
    animation-fill-mode: forwards;
    user-select: none;
    overflow-x: hidden; /*trava a tela horizontal*/
}


@keyframes opac{

    0%{
       opacity: 0;
    }
    100%{
        opacity: 1;
    }

}


.container-main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.formulario-cadastro{

    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

 

.container{

    position: relative;
    max-width: 900px;
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 6px;
    margin: auto;
    background-image: linear-gradient(to right,#FFF, var(--color----tema),
     var(--retrocon--azul--escuro));
    box-shadow: 6px 6px 2px rgba(0, 0, 0, 0.1);
}


.container header{

    font-size: 20px;
    font-weight: 600;
    color: #000;
}


.subtitulo-header{

    font-family: "Anton", serif;
    color: #1600a5;
    font-size: 16px;
}



.container-cabecalho-evento{

    display: flex;
    justify-content: space-between;
}


.direita{
    display: flex;
    flex-direction: column;
    padding: 5px;
    align-items: end;
}


.direita img{
    width: 100px;
}


.esquerda{
    text-align: start;
}



.container section{

    position: relative;
    width: 100%;
    margin-top: 16px;
    min-height: 490px;
    padding: 10px;
    background-color: #f8f8f8;
    border-radius: 4px;
}


.container section .details{

    margin-top: 30px;
}
.container section .ID{

    margin-top: 10px;
}

.container section .title{
    font-family: 'Poppins', cursive;
    display: block;
    margin-bottom: 8px;
    font-size: 19px;
    font-weight: 500;
    margin: 6px 0;
    color: #000;
}


.container section .fields{

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}






section .fields .input-field{

    display: flex;
    width: calc(100% / 3 - 15px);
    flex-direction: column;
    margin: 4px 0;
}


.input-field label{

    font-size: 12px;
    font-weight: 500;
    color: #000;
    text-align: start;
}



.input-field input{

    outline: none;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    border: 1px solid #aaa;
    color: #000;
    height: 42px;
    margin: 8px 0;
    padding: 0 15px;
}



.input-field input:is(:focus, :valid){

    box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.13);
}


.input-field input[type="date"]{

    color: rgb(43, 64, 255);
}
.input-field input[type="date"]:valid{

    color:#000;
}


.btn-enviar{

    display: flex;
    flex-direction: column;
    margin-top: 30px;
    padding: 0 50px;      
}


.btn-enviar button{
    font-family: 'Poppins', cursive;
    background-color: rgb(87, 87, 255);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    color: #FFF;
    transition: 0.3s;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 2px 2px 3px #1600a5;
}


.btn-enviar button:hover{

    background-color: rgb(145, 145, 255);
    color: #000;
}



.dp{

    display: flex;
    flex-direction: row;
    gap: 5px ;
}




select{

    padding: 3px;
    margin: 0 20px;
    background-color: rgb(87, 87, 255);
    color: #FFF;
    border-radius: 3px;
    border: none;
}


.footer{

    width: 100%;
    height: 50px;
    background-color: #0b0055;
    margin: 30px 0;
    text-align: center;
    padding: 10px;
}

.footer a{
   font-size: 12px;
   color: #FFF;
   text-decoration: none;
   transition: 0.5s;
}

.footer a:hover{
   
    color: rgb(87, 87, 255);
    
 }


 .container-spinner{

    position: fixed;
    width: 100%;
    margin-top: 200px;
    align-items: center;
    z-index: 1;
    display: none;
    
 }
 
  
.spinner{
        
    width: 10em;
    height: 10em;
    border-top: 1em solid red;
    border-right: 1em solid transparent;
    border-radius: 50%;
    margin: 0 auto;
    animation: spinner .3s linear infinite;
    align-items: center;
    text-align: center;
    
}
@keyframes spinner{

    100%{
        transform: rotate(360deg);
    }
}


.bg{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .7);
    position: fixed;   
  }

  .bg_m_d{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    z-index: 1; 
    
  }





/*------------login-------------*/
/*------------login-------------*/
/*------------login-------------*/
/*------------login-------------*/


.titulo-login{

    font-family: 'Poppins', cursive;
    text-align: center;
    font-size: 19px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.txt-esqueci-senha{

    text-align: center;
    margin: 0;
    font-size: 13px;
    margin-top: -13px;
}



.conjunto-user{

    background-color: rgba(255, 255, 255, 0.5);
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: 1px 1px 3px #000;
}





/*----------------------------HEADER-----------------------------------*/
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/


.logo-header{
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 20px;
    align-items: center;
}



.img_logo{
    
    width: 50px;
    opacity: 0.3;
}


.header,
.navigation_header{
    font-family: "Anton", serif;
    display: flex;
    flex-direction: row;
    align-items: center;
    z-index: 10;
}


.header{

    background-image: linear-gradient(to bottom, var(--retrocon--azul--escuro),
     var(--retrocon--azul--claro), var(--retrocon--azul--escuro));
   
    justify-content: space-between;
    padding: 5px 10%;
    width: 100%;
    height: 80px;
    color: #FFF;
}



.header .logo{
    width: 30%;
}

/*
.header .logo_sec{

        display: flex;
        flex-direction: row;
        position: absolute;
        left: -160px;
        opacity: 0.1;
        z-index: -1;

}*/


.header p{
    text-shadow: 2px 2px 2px #000;
   
}


.navigation_header{

    gap: 2em;
    z-index: 2;

}

.navigation_header a{

    text-decoration: none;
    color: var(--color--white);
    transition: 0.5s;
    text-shadow: 1px 1px 2px #000;
}

.navigation_header a:hover{

    background-color: var(--color--dark3);
    padding: 10px;
    border-radius: 6px;
    color: var(--color--white);
    text-shadow: 2px 2px 2px #000;
        
}


.active{

    background-color: var(--retrocon--azul--escuro);
    padding: 10px;
    border-radius: 6px;
    color: var(--color--white);
}




.content{
    text-align: center;
    padding: 10px;
    height: 100vh;
    transition: 1s;
    display: none;
}


.content-av{
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 10px;
    transform: translate(-50%, -50%); 
    width: 600px;
    height: 230px;
    background-color: var(--retrocon--azul--claro);
    border-radius: 30px 0px;
    box-shadow: 2px 2px 4px var(--color-texto-destaque);
    text-align: center;
    display: none;
}


.container-btn-conf-em{
    margin-top: 20px;
}

.container-btn-conf-em button{
    border: none;
    padding: 5px 20px;
    border-radius: 4px;
}

.container-btn-conf-em button:active{
    background-color: #000;
    color: #FFF;
}


.txt-n-r-e{
    font-family: 'Poppins', cursive;
    color: var(--color-texto-destaque);
}



.cont-btn-canc-ema{
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}





.content-inter{
    font-family: "Anton", serif;
    text-align: center;
}


.btn_icon_header{
    display: none;
    background-color: transparent;
    border: none;
    color: var(--color--white);
    cursor: pointer;


}


@media screen and (max-width: 768px){
    .btn_icon_header{
        display: block;
    }
    .navigation_header{

        position: absolute;
        flex-direction: column;
        top: 0;
        background-color: var(--color--dark5);
        height: 100%;
        width: 45vw;
        padding: 16px;
        animation-duration: 0.7s;
        margin-left: -100vw;
    }


    .content-av{
        width: auto;
        height: auto;
    }
}



@keyframes showSideBar{

    from{
        margin-left: -100vw;
    }
    top{
        margin-left: -10vw;
    }

}

@keyframes showSideBarBack{
    from{
        margin-left: -10vw;}
    top{
        margin-left: -100vw;}

}


.subcabecalho{
    width: 100%;
    height: 500px;
    box-shadow: 8px 8px 4px var(--color--dark4); 
}


.subcabecalho img{
   width: 70%;
   margin-top: 50px;
   border-radius: 6px;
   box-shadow: 2px 2px 4px 4px rgb(31, 31, 31);
   
}


/*----------------------------HEADER-----------------------------------*/
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/
/*---------------------------------------------------------------------*/



.input-field-check{
    font-size: 11px;
    text-align: center;
    margin: auto;
    margin-top: 35px;
    align-items: center;
   
}

.pq-info{
    color: #184eff;
    font-weight: 900;
    cursor: pointer;
}

.input-field-check button{
    border: none;
    color: #184eff;
    cursor: pointer;
    margin-left: 10px;
}



.container-cabecalho-evento-logado{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.titulo-esquerda{
    font-family: 'Poppins', cursive;
    font-size: 13px;
}

.nome_usuario{
    color: #001761;
    border-radius: 4px;
    width: auto;
    font-size: 11px;
}


.icone-self{
    display: flex;
    gap: 10px;
}

.email_usuario{
    font-size: 11px;
    font-weight: bold;
}


.conjunto-user{
    display: flex;
    gap: 10px;
}



/*---------------------------usuario logado------------------------*/
/*---------------------------usuario logado------------------------*/
/*---------------------------usuario logado------------------------*/
/*---------------------------usuario logado------------------------*/
/*---------------------------usuario logado------------------------*/
/*---------------------------usuario logado------------------------*/


.container-primario{

    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: rgba(24, 78, 255, 0.1);
    background-image: linear-gradient(to top, var(--retrocon--azul--claro), var(--retrocon--azul--escuro));
    padding: 20px;
}


.container-primario-esquerda img{
    width: 260px;
    margin: 30px;
}


.titulo-evento{
    font-family: 'Poppins', cursive;
    font-size: 25px;
    background-color: var(--retrocon--azul--claro);
    padding: 5px 35px;
    border-radius: 4px;
    color: #c6d3ff;
    text-shadow: 2px 2px 4px #000;
    box-shadow: 3px 3px 4px #001761;
    margin-bottom: 10px;
}



.container-primario-direita{
    display: none;
}



.data-evento, .dia-semana{
    color: #FFF;
    margin: 3px;
    text-align: start;
}

.cont-valor{
    display: flex;
    text-align: start;
    margin: 3px;
    gap: 5px;
    justify-content: end;
}


.valor-ingresso-unitario{
    font-family: "Anton", serif;
    color: #FFF;
    letter-spacing: 1px;
    background-color: var(--color----tema);
    padding: 1px 10px;
    border-radius: 4px;
    box-shadow: 1px 1px 3px #000;
    font-size: 15px;
}



.container-cpdp{
    margin: auto;
    margin-top: 30px;
    border: solid 1px #b3b3b3;
    max-width: 80%;
    padding: 12px;
    border-radius: 6px;
}


.txt-cpdp{
    font-size: 13px;
    font-weight: bold;
}


.container-cpdp button{
    background-color: var(--retrocon--azul--escuro);
    color: #FFF;
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.container-cpdp button:hover{
    background-color: var(--retrocon--azul--claro);
    color: #000;
}

.container-cpdp button:active{
    background-color: #fff;
    color: #000;
}


.container-secundario{

    margin-top: 30px;
}


.txt-center-numero{
    background-color: var(--color----tema);
    padding: 5px;
    margin: 20px;
    border-radius: 4px;
    box-shadow: 2px 2px 4px #1600a5;
    display: none;
}


label{
    user-select: none;
}
p{
    user-select: none;
}
a{
    user-select: none;
}


.txt-field-insc{
    width: 100%;
    font-size: 10px;
    margin-top: -5px;
    text-align: end;
    margin-left: -4px; 
}






.txt-field-insc-p{
    width: 100%;
    font-size: 10px;
    text-align: end;
    margin-left: -4px; 
}


.txt-field-cad-senha{

    width: 100%;
    font-size: 11px;
    margin-top: -8px;
    text-align: end;
    margin-left: -4px;
    color: #ff0000;
    
}





.btn-calcular-valor button{

    background-color: #9ab2ff;
    border: none;
    padding: 8px 20px;
    margin: 10px;
    border-radius: 4px;
    color: #fff;
    box-shadow: 2px 2px 4px #002088;
    transition: 0.5s;
    cursor: pointer;
   
}


.btn-calcular-valor button:hover{

    background-color: #406cff;
    box-shadow: 2px 2px 4px #000;
    
}


.cupom-desc-cont{

    margin-top: 20px;
}





.info-ticket{
    font-family: 'Poppins', cursive;
    background-color: var(--retrocon--azul--escuro);
    font-size: 12px;
    margin: auto;
    padding: 6px 15px;
    color: #FFF;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    box-shadow: 1px 1px 2px #FFF;
}


.info-p-r{
    font-family: 'Poppins', cursive;
    background-color: var(--color-texto-destaque);
    font-size: 12px;
    margin: auto;
    padding: 6px 15px;
    color: #000;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    box-shadow: 1px 1px 2px #FFF;
}


button:active{
    background-color: #FFF;
    color: #000;
    box-shadow: none;
}



.cont-p-r-bt{
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   gap: 15px;
}





.txt-2-cancelar{

    text-align: center;
    color: #FFF;
    background-color: #406cff;
    padding: 3px; 
    margin: 10px;  
}



.logo-menor-race{

    text-align: start;
    margin: 0;
}


.txt-info-abertura{
    font-family: 'Poppins', cursive;
    text-align: start;
    font-size: 15px;
    margin-bottom: 10px;
}


.txt-tip-ing{
    font-family: "Anton", serif;
    color: #ffc400;
}



.cont-dias-int-med{
    border: 1px solid #FFF;
    padding: 4px;
    border-radius: 3px;
    margin-top: 5px;
}

.txt-plus-alimento{
    margin: auto;
    margin-top: 3px;
    font-size: 13px;
    color: #ffc400;
}



.valor-total-pagar{
    font-family: "Anton", serif;
    font-size: 25px;
    letter-spacing: 3px;
    background-image: linear-gradient(to right, var(--color----tema), white);
    text-shadow: 2px 2px 3px #fff;
}

.valor-total-pagar-tx{
    font-family: "Anton", serif;
    font-size: 16px;
    letter-spacing: 3px;
    background-image: linear-gradient(to right, var(--color--azul_escuro), white);
    text-shadow: 2px 2px 3px #fff;
}



.valor-total-pagar-convid{
    font-family: 'Poppins', cursive;
    font-size: 15px;
    background-image: linear-gradient(to right, var(--retrocon--azul--escuro),
     var(--retrocon--azul--claro));
    font-weight: bold;
    color: #ffc400;
    text-shadow: 1px 1px 2px #000;
}



.conj-us-btns{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: left;
}




.btn-finalizar-pedido button{
    font-family: 'Poppins', cursive;
    background-color: #9ab2ff;
    border: none;
    padding: 8px 20px;
    margin: 10px;
    border-radius: 4px;
    color: #fff;
    box-shadow: 2px 2px 4px #002088;
    transition: 0.5s;
    cursor: pointer;
    font-size: 11px;
}

.btn-finalizar-pedido button:hover{

    background-color: #406cff;
    box-shadow: 2px 2px 4px #000;
    
}

.btn-deslogar{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-around;
}

.c-d-bbb-c-u{
    display: flex;
    flex-direction: row;
    justify-content: left;
}



#c_txt_ev_u_p_o_u_d{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px;   
}


.btn-deslogar button{
    font-family: 'Poppins', cursive;
    background-color: #9ab2ff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    color: #fff;
    box-shadow: 2px 2px 4px #002088;
    transition: 0.5s;
    cursor: pointer;
    margin-top: 8px;
}

.btn-deslogar button:hover{

    background-color: #406cff;
    box-shadow: 2px 2px 4px #000;
    
}



.container-pagamento{
    
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    gap: 20px;
    

}

.container-pix{
    
    display: flex;
    padding: 10px;
    background-image: linear-gradient(to right, var(--color----tema), transparent);
    border-radius: 10px;
    margin: 8px;
}

.container-cartao{

    display: flex;
    padding: 10px;
    background-image: linear-gradient(to right, var(--color----tema), transparent);
    border-radius: 10px;
    margin: 8px;
      
}


.txt1-c{
    font-family: "Anton", serif;
}


.txt1{
    font-family: "Anton", serif;
    max-width: 80%;
    margin: auto;
    margin-top: 20px;
    border: 1px solid #b9b9b9;
    padding: 8px;
    border-radius: 4px;
    
}


.container-pagamento img{

    width: 150px;
    border-radius: 8px;
    box-shadow: 2px 2px 5px #000;
}


.txt-aviso{
    margin-top: 10px;
    font-family: "Anton", serif;
    text-align: center;
    color: #000;
}


.txt-info-b{
    font-size: 13px;
    line-height: 13px;
    color: #000;
}

.txt-a-s-o-b-b{
    margin: auto;
    background-color: var(--color----tema);
    padding: 6px;
    max-width: 280px;
    border-radius: 8px;
    font-size: 10px;
    color: #FFF;
    line-height: 13px;
}


.c-c-i-t-p-c{
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}

.b-p-s-m-c-i{
    color: #FF0000;
    font-size: 11px;
    cursor: pointer;
    user-select: none;
}

.b-p-s-m-c-i:hover{
    color: var(--color--azul_escuro);
}

.c-c-p-j-c-i{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}






/*---------------------menu terceiro-------------------------------*/
/*---------------------menu terceiro-------------------------------*/
/*---------------------menu terceiro-------------------------------*/
/*---------------------menu terceiro-------------------------------*/
/*---------------------menu terceiro-------------------------------*/
/*---------------------menu terceiro-------------------------------*/



.t-p{

    font-family: "Anton", serif;
    background-color: #0b006d;
    margin: 30px;
    color: var(--color-texto-destaque);
    padding: 5px;
    text-shadow: 1px 1px 2px #000;
    font-size: 20px;
}



.container-secundario{

    display: none;
}


.container-terceiro{
    display: none;
}



.container-terceiro-divisao{

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px;
    gap: 20px;
}


.divisao-esquerda{

    max-width: 360px;
    background-image: linear-gradient(to top, #FFF, var(--retrocon--azul--claro));
    padding: 10px;
    border-radius: 4px;
    box-shadow: 2px 2px 4px #002088;
    height: auto;
}

.c-b-g-f-c-i{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}



.esquerda header{
    font-family: 'Poppins', cursive;
}


.txt-divisao-esquerda-sub{

    font-size: 11px;
    margin-top: -10px;
    text-align: center;
    background-image: linear-gradient(to right, transparent, #001761,transparent );
    color: #fff;
}


.divisao-esquerda  button{

    background-color: rgb(87, 87, 255);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    color: #FFF;
    transition: 0.3s;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 2px 2px 3px #1600a5;
}


.divisao-esquerda button:hover{

    background-color: rgb(145, 145, 255);
    color: #000;
}


.txt-divisao-esquerda{

    text-align: justify;
    font-size: 13px;
    padding: 5px;
    color: #000;
    margin-bottom: 20px;
}


.divisao-direita{
    position: relative;
    display: inline-block;
    background-color: rgba(24, 78, 255, 0.3);
    padding: 10px;
    border-radius: 4px;
    box-shadow: 2px 2px 4px #002088;
    height: auto;
    max-width: 340px;
}


.txt-divisao-esquerda-sub-direita{
    font-family: "Anton", serif;
    font-size: 18px;
    margin-top: 2px;
    text-align: center;
    color: #000;
    padding: 6px;
    margin: 10px;
    margin-top: -20px;
}


.divisao-direita button{

    background-color: rgb(87, 87, 255);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    color: #FFF;
    transition: 0.3s;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 2px 2px 3px #1600a5;
}


.divisao-direita button:hover{

    background-color: rgb(145, 145, 255);
    color: #000;
}



.txt-aviso-email{
    color: #000;
    font-size: 11px;
    margin-top: -13px;
    
}


.input-field-nome input{
    outline: none;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    border: 1px solid #aaa;
    color: #000;
    width: 100%;
    height: 42px;
    margin: 8px 0;
    padding: 0 15px;
    margin-top: 7px;
}



.txt-quantidade-conv{
    margin-top: 10px;
    background-color: #0b006d;
    color: #fff;
    padding: 3px;
    border-radius: 4px;
    font-size: 14px;
}


.indica-dias-lote{
    font-size: 11px;
}


.txt-ult{
    font-size: 12px;
}



.listaDependentes{
    font-family: "Anton", serif;
    margin-bottom: 10px;
    text-align: center;
    align-items: center;
    color: var(--color-texto-destaque);
    text-shadow: 1px 1px 2px #000;
}


.sub-aviso-input{
    font-size: 11px;
    color: #000;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
}



.txt-valor{
    font-size: 13px;
    font-weight: bold;
}



.gost-tr-ing{
    background-color: #184eff;
    box-shadow: 1px 1px 2px #000;
    border-radius: 6px;
    padding: 5px 15px;
    font-size: 12px;
    cursor: pointer;
    color: #FFF;
    line-height: 14px;
    margin-top: 8px;
    margin-bottom: 20px;
}

.gost-tr-ing:hover{
    color: #000;
    box-shadow: none;
}

.gost-tr-ing:active{
    background-color: #FFF;
    color: #000;
}




/*-----------------------------------RODAPE------------------------------------------*/
/*-----------------------------------RODAPE------------------------------------------*/
/*-----------------------------------RODAPE------------------------------------------*/
/*-----------------------------------RODAPE------------------------------------------*/
/*-----------------------------------RODAPE------------------------------------------*/
/*-----------------------------------RODAPE------------------------------------------*/
/*-----------------------------------RODAPE------------------------------------------*/

.footer{

    height: auto;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding-top: 10px;
    color: #FFF;
}



.footer-content{
   
    width: 100%;
    background-color: var(--retrocon--azul--claro);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}


.footer-content h3{
    
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 3rem;
    color: #FFF;
    font-weight: 900;
    margin-top: 30px;
}



.footer-content p{

    font-family: 'Poppins', sans-serif;
    max-width: 500px;
    margin: 5px auto;
    line-height: 28px;
    font-size: 14px;
    color: #FFF;
}



.social{

    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem 0 3rem 0;
}



.social li{

    margin: 0 40px;
}


.social a{

    text-decoration: none;
    color: #FFF;
}


.social a i{

    font-size: 1.1rem;
    transition: color .4s ease;
}


.social a:hover i{

    color: #FF0000;
}



.footer-botton{

    padding: 5px;
    background-color: var(--retrocon--azul--escuro);
}


.footer-botton p,a{

    font-family: 'Poppins', sans-serif ;
    color: #FFFFFF;
    text-align: center;
    justify-content: center;
    font-size: 12px;
}


.footer-content h1{
    color: #FFF;
}


.titulo_logo img{
    width: 150px;
}


/*-----------------------------------RODAPE------------------------------------------*/
/*-----------------------------------RODAPE------------------------------------------*/
/*-----------------------------------RODAPE------------------------------------------*/
/*-----------------------------------RODAPE------------------------------------------*/
/*-----------------------------------RODAPE------------------------------------------*/
/*-----------------------------------RODAPE------------------------------------------*/
/*-----------------------------------RODAPE------------------------------------------*/








  /*------------------------divisao lote------------------*/
  /*------------------------divisao lote------------------*/
  /*------------------------divisao lote------------------*/
  /*------------------------divisao lote------------------*/
  /*------------------------divisao lote------------------*/




.container-novo-lote{
    background-color: #7092ff;
    padding: 5px;
    width: 100%;
    margin: auto;
    box-shadow: 2px 2px 3px #1600a5;
    display: none;    
}


.container-novo-lote .txt-titulo{
    font-family: "Anton", serif;
    color: var(--color-texto-destaque);
    font-size: 20px;
    text-shadow: 1px 1px 2px #000;
}


.container-nova-compra .txt-titulo{
    font-family: "Anton", serif;
    color: var(--color-texto-destaque);
    font-size: 20px;
    text-shadow: 1px 1px 2px #000;
}




  .divisao-lote{
    background-color: rgba(24, 78, 255, 0.3);
    padding: 10px;
    border-radius: 4px;
    box-shadow: 2px 2px 4px #002088;
    height: auto;
    max-width: 80%;
    text-align: center;
    margin: auto;
    margin-top: 20px;
    display: none;
    animation: fadeInAnimationClot 0.6s ease-in-out forwards;
}

@keyframes fadeInAnimationClot {
    from {
        opacity: 0; 
    }
    to {
        opacity: 1; 
    }
}


.divisao-lote button{

    background-color: rgb(87, 87, 255);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    color: #FFF;
    transition: 0.3s;
    cursor: pointer;
    margin-bottom: 15px;
    box-shadow: 2px 2px 3px #1600a5;
}


.divisao-lote button:hover{

    background-color: rgb(145, 145, 255);
    color: #000;
}


.divisao-lote button:active{
    background: #FFF;
}



.container-numero-ingresso{
    background-color: #184eff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 2px 2px 4px #1600a5;
    font-size: 13px;
}


.valor-total-lote{
    background-color: rgba(255, 255, 255, .7);
    width: 90%;
    margin: auto;
}

.valor-total-lote-t{
    background-color: rgb(255, 255, 255);
    width: 90%;
    margin: auto;
}


.txt-aviso-lote{
    font-family: "Anton", serif;
    color: var(--color-texto-destaque);
    text-shadow: 1px 1px 2px #000;
    font-size: 19px;
}




.valor-lote{
    font-family: "Anton", serif;
    font-size: 30px;
    color: #FFF;
    text-shadow: 2px 2px 2px #000;
    text-align: center;
}




.quantidade-conv-lote{
    margin-top: 10px;
    text-align: center;
    color: #FFF;
    background-color: #1600a5;
    box-shadow: 1px 1px 2px #001761;
}

.btns-pgto-lote{

    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px;
    
}

.btns-pgto-lote .pix-lote{

    color: FFF;
    background-color: #008000;
    padding: 10px 25px;
    box-shadow: 2px 2px 2px #002088;
}

.btns-pgto-lote .cc-lote{

    color: FFF;
    background-color: #830000;
    padding: 10px 25px;
    box-shadow: 2px 2px 2px #002088;
}


.bol-l{
    color: FFF;
    background-color: #3b00c4;
    padding: 10px 25px;
    box-shadow: 2px 2px 2px #FFF; 
}




.cont-ll{
    position: relative;
}



/*------------------------divisao lote------------------*/
/*------------------------divisao lote------------------*/
/*------------------------divisao lote------------------*/
/*------------------------divisao lote------------------*/
/*------------------------divisao lote------------------*/


/*------------------------modal Meus D------------------*/
/*------------------------modal Meus D------------------*/
/*------------------------modal Meus D------------------*/
/*------------------------modal Meus D------------------*/
/*------------------------modal Meus D------------------*/
/*------------------------modal Meus D------------------*/


.container-md-m-d{
    position: fixed;
    width: 360px;
    height: 660px;
    background-color: #184eff;
    background-image: linear-gradient(to bottom, #184eff, #FFF);
    border-radius: 6px;
    box-shadow: 2px 2px 3px #FFF;
    z-index: 3;
    top: 50%;
    left: 50%;
    padding: 10px;
    transform: translate(-50%, -50%); 
    display: none;   
}

.img_m_d{
    width: 40px;
    margin: auto;
    margin-top: 10px;
}

.titulo_m_d{
    font-family: "Anton", serif;
    color: #FFF;
    text-align: center;
    font-weight: 300;
    font-size: 22px;
}

.sub-titulo-m-d{
    color: #FFF;
    font-size: 13px;
    text-align: center;
}


.input-field_m_d{

    display: flex;
    flex-direction: column;
    margin: 10px;
}

.input-field_m_d label{
    font-size: 10px;
    color: #000;
    margin-left: 5px;
} 


.input-field_m_d input{
   padding: 13px;
   border: none;
   border-radius: 4px;
   font-size: 16px;
} 


.btns-m-d{
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 50px;
    margin: 30px;
}

.btn-salvar{

    background-color: #184eff;
    border: none;
    padding: 6px 15px;
    border-radius: 4px;
    color: #FFF;
    cursor: pointer;
}

.btn-salvar:hover{
    background-color: #7494ff;   
}

.btn-salvar:active{
    background-color: #FFF;
    color: #000;   
}

.btn-cancelar{
    border: none;
    color: #FF0000;
}

.btn-cancelar:hover{
    border: none;
    color: #000;
}

.btn-cancelar:active{
    color: #FFF;
}


.foot-txt{
    font-size: 11px;
    text-align: center;
}

.email-cont{
    border: 1px solid #000;
    border-radius: 4px;
    padding: 4px;
    margin: 4px;
}






/*-----------------------container DIAS-----------------*/
/*-----------------------container DIAS-----------------*/
/*-----------------------container DIAS-----------------*/
/*-----------------------container DIAS-----------------*/
/*-----------------------container DIAS-----------------*/
/*-----------------------container DIAS-----------------*/
/*-----------------------container DIAS-----------------*/


.container-escolha-do-dia{

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}


.titulo-esc-d{
    font-family: 'Poppins', cursive;
    background-color: #483D8B;
    padding: 10px;
    font-size: 20px;
    margin-top: 10px;
    color: #FFF;
    text-shadow: 2px 2px 3px #000;
}

.container-radio-dias{
    margin: auto;
    max-width: 700px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}


.container-v-e-rr{
    font-family: 'Poppins', cursive;
    background-color: #FF0000;
    padding: 8px;
    color: #FFF;
    border-radius: 6px;
    border: solid 2px #b80000;
    width: 70%;
    margin: auto;
}

.container-v-e-sa{
    font-family: 'Poppins', cursive;
    background-color: var(--retrocon--azul--claro);
    padding: 8px;
    color: var(--color-texto-destaque);
    border-radius: 6px;
    border: solid 2px var(--retrocon--azul--escuro);
    width: 70%;
    margin: auto;
    margin-top: 20px;
}



.av-pres{
    font-family: 'Poppins', cursive;
    max-width: 80%;
    margin: auto;
    line-height: 20px;
    margin-top: 20px;
    color: #000;
}



.ticket-container{
    margin: auto;
    max-width: 700px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    margin-top: 15px;
    gap: 10px;
}



.dia-esc{
    position: relative;
    background-color: #557dff;
    background-image: linear-gradient(to bottom, 
    var(--retrocon--azul--claro), var(--retrocon--azul--escuro));
    box-shadow: 1px 1px 2px #000;
    padding: 6px;
    border-radius: 3px;
    color: #000;
    cursor: pointer;
}


.dia-esc-press{
    background-color: #FF0000;
    box-shadow: 1px 1px 2px #000;
    padding: 3px;
    border-radius: 3px;
    color: #FFF;
    
}

.inp-dia{
    cursor: pointer;
}


.dia-esc input{
    width: 20px;
    height: 20px;
}


.dia-esc:hover{
    background-color: #7494ff;
    border-radius: 3px;
    box-shadow: 1px 1px 2px #FFF;
}


.txt-exp-ingr{
    max-width: auto;
    font-size: 13px;
    line-height: 14px;
    word-spacing: 6px;
    color: var(--retrocon--amarelo);
    padding: 5px;
    line-height: 1.1;
    text-align: center;
}

.tit-box{
    font-family: "Anton", serif;
    text-align: center;
    color: #000;
    cursor: pointer;
}

.container-explic-dia-esc{
    font-family: "Anton", serif;
    font-size: 14px;
    margin-top: 10px;
    line-height: 18px;
    text-align: center;
}


.txt-avi-cp-desc{
    font-family: "Anton", serif;
    margin-top: 30px;
    font-size: 14px;
    border: 1px solid var(--retrocon--azul--claro);
    padding: 3px;
    border-radius: 3px;
}




/*------------------------------tooltip------------------*/
/*------------------------------tooltip------------------*/
/*------------------------------tooltip------------------*/
/*------------------------------tooltip------------------*/
/*------------------------------tooltip------------------*/
/*------------------------------tooltip------------------*/
/*------------------------------tooltip------------------*/




.card-escolha_tipo{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
    gap: 30px;
    border: 1px solid #000;
    border-radius: 4px;
    padding: 15px;
}


.cont-esc{
    font-family: 'Poppins', cursive;
    width: 170px;
    height: 80px;
    /*background-color: var(--retrocon--azul--claro);*/
    background-image: linear-gradient(to right, var(--retrocon--azul--claro), transparent);
    border-radius: 4px;
    padding: 8px;
    cursor: pointer;
    box-shadow: 2px 2px 3px #000;
    
}


.cont-esc.pulinho {
    transform: scale(1.2);
}


/*

.pac{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f2d648;
    position: relative;
}

.pac-olho{
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    top: 7px;
    right: 20px;
    position: absolute;
}

.pac-boca{
    background-color: #f8f8f8;
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: polygon(100% 74%, 44% 48%, 100% 21%);
    animation-name: comer;
    animation-duration: 0.3s;
    animation-iteration-count: infinite;
}

.pac-bala{
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #000;
    top: 35%;
    left: 80px;
    animation: comida 0.5s infinite;
}

@keyframes comer{
    0%{
        clip-path: polygon(100% 74%, 44% 48%, 100% 21%);
    }
    25%{
        clip-path: polygon(100% 60%, 44% 48%, 100% 40%);
    }
    50%{
        clip-path: polygon(100% 50%, 44% 48%, 100% 50%);
    }
    75%{
        clip-path: polygon(100% 59%, 44% 48%, 100% 35%);
    }
    100%{
        clip-path: polygon(100% 74%, 44% 48%, 100% 21%);
    }
}


@keyframes comida{
    0%{
        transform: translateX(0);
        opacity: 1;
    }
    5%{
        transform: translateX(0);
        opacity: 0.6;
    }
    100%{
        transform: translateX(-50px);
        opacity: 0;
    }
}*/




.btn-botao-upgrade-convid{

    background-color: #008000;
}




.av-s-fr{
    font-size: 11px;
    line-height: 11px;
    max-width: 250px;
    text-align: center;
    margin: auto;
    margin-bottom: 8px;
    font-weight: bold;
    
}





.btn-cal{
    background-color: #dbdbdb;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    user-select: none;
}

.btn-cal:active{
    background-color: #0000FF;
    color: #FFF;
}





.imp-res{
    width: 30px;
    height: 25px;
    text-align: center;
}


.container-incre .btn-cal-lot{
    cursor: pointer;
    color: #000;
    font-size: 20px;
    border-radius: 50%;
    user-select: none;
}


.c-p-c-d-i-d-u-c{
    font-family: "Anton", serif;
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate( -50%, -70% );
    margin: auto;
    text-align: center;
    border: 1px solid #d8d8d8;
    padding: 20px;
    width: 40%;
    height: auto;
    border-radius: 12px;
    background-color: #FFF;
    transition: 0.5s;
    z-index: 2;
    animation: fadeInAnimationTd 0.6s ease-in-out forwards;
}

@keyframes fadeInAnimationTd {
    from {
        opacity: 0; 
    }
    to {
        opacity: 1; 
    }
}





.cont-prn-cel{
    font-family: "Anton", serif;
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate( -50%, -70% );
    margin: auto;
    text-align: center;
    border: 1px solid #d8d8d8;
    padding: 20px;
    width: 60%;
    height: auto;
    border-radius: 12px;
    background-color: #FFF;
    transition: 0.5s;
    z-index: 2;
    /*animation: tamanho 0.2s linear;*/
}

@keyframes tamanho{
    0%
    {
        transform: scale(0.9)
    }
    50%
    {
        transform: scale(1.10)
    }
    100%
    {
        transform: scale(1)
    }
}

.cont-prn-cel .cont-btn-prn-cel{

    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
}


.btn-prn-cel{
    padding: 4px 20px;
    border: none;
    background-color: #0000FF;
    color: #FFF;
    border-radius: 6px;
}



.prn-n-cel{
    font-family: 'Poppins', sans-serif ;
    margin-top: 8px;
    user-select: none;
}

.btn-prn-cel:hover{
    background-color: #9595ff;
    color: #000;
    
}

.btn-prn-cel:active{
    background-color: #FFF;
    color: #000;
}


.btn-prn-cel-can{
    padding: 4px 20px;
    border: none;
    background-color: #FF0000;
    color: #FFF;
    border-radius: 6px;
}

.btn-prn-cel-can:hover{
    background-color: #ff7c7c;
    color: #000;
    
}

.btn-prn-cel-can:active{
    padding: 4px 20px;
    border: none;
    background-color: #FFF;
    color: #000;
    border-radius: 6px;
}






/*----------------TOOLTIP--------------------*/
/*----------------TOOLTIP--------------------*/
/*----------------TOOLTIP--------------------*/
/*----------------TOOLTIP--------------------*/
/*----------------TOOLTIP--------------------*/
/*----------------TOOLTIP--------------------*/
/*----------------TOOLTIP--------------------*/
/*----------------TOOLTIP--------------------*/


#tooltip{
    position: relative;
    cursor: pointer;
    padding: 7px;
}
#tooltipText{
    font-family: 'Poppins', sans-serif ;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background-color: #000;
    color: #FFF;
    font-size: 14px;
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: 7px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.7s ease;
}
#tooltipText::before{
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: #000  #0000 #0000 #0000;
}
#tooltip:hover #tooltipText{
    top: -100%;
    visibility: visible;
    opacity: 1;
}






.cont-ex-ap-conv-st{

    margin: auto;
    width: 80%;
    height: auto;
    padding: 5px;
    border: 1px solid #dedede;
    border-radius: 4px;
}


.cont-esc-cat-cad{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content:space-around;
    flex-direction: row;
    margin-top: 20px;
}


.txt-cat-cad-esc{

    margin-top: 15px;
    background-color: #a4e2ff;
    color: #000;
    padding: 4px;
    border-radius: 3px;
}

.btn-cat-desm-esc{
    background-color: #184eff;
    color: #FFF;
    border: none;
    padding: 6px;
    border-radius: 6px;
}





.cont-log-us-credent{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}



.sbm-lt-pl{
    color: #000;
    width: 110px;
    margin: auto;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}


.sbm-lt-pl:hover{
    color: var(--color-texto-destaque);
}


.con-l-set{
    display: flex;
    flex-direction: row;
    justify-content: center;
}


.arrow {
    width: 0;
    height: 0;
    margin-top: 3px;
    margin-right: 5px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 15px solid var(--color-texto-destaque); /* Adjust color as needed */
    animation: moveArrow 0.7s ease-in-out infinite;
  }

  @keyframes moveArrow {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }


.t-av-s-p-c-d-i{
    width: 80%;
    margin: auto;
    background-color: var(--color--azul_escuro);
    border-radius: 6px;
    margin-top: 5px;
    font-size: 12px;
    color: #FFF;
    user-select: none;
    margin-top: 20px;
}

.b-a-s-b-s-n-c{
    border: none;
    margin-top: 8px;
    padding: 4px;
    margin-bottom: 8px;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
}

.b-a-s-b-s-n-c:active{
    background-color: #000;
    color: #FFF;
}


#b_c_i_c_t_p_conv{
    border: none;
    padding: 6px 40px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 1px 1px 2px #000;
}


#b_d_c_o_p_c_c{
    border: none;
    background-color: #0000FF;
    padding: 6px 40px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 1px 1px 2px #000;
    color: #FFF;
    
}


#c_ch{
    position: relative;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    background-color: rgba(24, 78, 255, 0.3);
    padding: 10px;
    border-radius: 4px;
    box-shadow: 2px 2px 4px #002088;
    height: 400px;
    max-width: 90%;
}

#sub_c_r{
    font-family: "Anton", serif;
    font-size: 25px;
    text-align: start;
}

#c_msg input{
    position: absolute;
    bottom:7px;
    left: 5px;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    border-radius: 5px;
    border: 1px solid #aaa;
    color: #000;
    width: 90%;
    height: 32px;
    margin: 8px 0;
    padding: 0 15px;
}

#b_e_m_p_a{
    position: absolute;
    bottom: 15px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 255px;
    background-color: #FFF;
    background-image: url('../../img/ic_enviar.png');
    background-size: 65%;
    background-position: center;
    background-repeat: no-repeat;
}

#b_e_m_p_a:hover{
    background-color: #7e9cff;
}

#b_e_m_p_a:active{
    background-color: #000;
    
}







.balao {
   
    position: relative;
    max-width: 47%; /* Largura do balão */
    padding: 10px; /* Espaçamento interno */
    background-color: #ffffff; /* Cor de fundo do balão */
    border-radius: 20px; /* Raio das bordas do balão */
    text-align: left;
}

.balao::before,
.balao::after {
    content: '';
    position: absolute;
    bottom: -9px; /* Posição da ponta do balão */
    border-style: solid;
}

.balao::before {
    left: 17px; /* Posição horizontal da ponta do balão */
    border-width: 10px 8px 0; /* Tamanho da ponta do balão */
    border-color: #ffffff transparent transparent transparent; /* Cores da ponta do balão */
}

.balao::after {
    left: 17px; /* Posição horizontal da ponta do balão */
    border-width: 10px 8px 0; /* Tamanho da ponta do balão */
    border-color: #ffffff transparent transparent transparent; /* Cores da ponta do balão */
}


.balao-resp {
    font-family: "Anton", serif;
    position: relative;
    width: 45%; /* Largura do balão */
    padding: 10px; /* Espaçamento interno */
    background-color: #ffc400; /* Cor de fundo do balão */
    border-radius: 20px; /* Raio das bordas do balão */
    margin-left: 50%;
    text-align: left;
}

.balao-resp::before,
.balao-resp::after {
    content: '';
    position: absolute;
    bottom: -9px; /* Posição da ponta do balão */
    border-style: solid;
}

.balao-resp::before {
    left: 86%; /* Posição horizontal da ponta do balão */
    border-width: 10px 8px 0; /* Tamanho da ponta do balão */
    border-color: #ffc400 transparent transparent transparent; /* Cores da ponta do balão */
}

.balao-resp::after {
    left: 86%; /* Posição horizontal da ponta do balão */
    border-width: 10px 8px 0; /* Tamanho da ponta do balão */
    border-color: #ffc400 transparent transparent transparent; /* Cores da ponta do balão */
}


.txt-m-m{
    position: absolute;
    width: 100%;
    font-size: 10px;
    color: #FFF;
    text-align: end;
    bottom: 0;
    right: 60px;
    font-weight: 0;
}



.c-t-s-c{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}

#t_s_t_c_p{
    font-size: 12px;
    text-align: end;
    max-width: 200px;
    color: #FFF;
}

.s-p-b-p-r{
   
    font-family: 'Poppins', cursive;
    background-color: var(--color-texto-destaque);
    font-size: 12px;
    padding: 6px 10px;
    color: #000;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    box-shadow: 1px 1px 2px #FFF;       
}


.b-p-r-c-s-t{
    color: #000;
    text-decoration: none;
}

.s-p-b-p-r:hover{
    font-weight: bold;
}


.scroll-travado {
    overflow: hidden;
}


#c_v_s_e_c_i{
    font-family: "Anton", serif;
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate( -50%, -70% );
    margin: auto;
    text-align: center;
    border: 1px solid #d8d8d8;
    padding: 20px;
    width: 60%;
    height: auto;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    background-color: #FFF;
    transition: 0.5s;
    z-index: 3;
    animation: opacMod 2.5s;
}


/*@keyframes opacMod{
    0%{
       opacity: 0;
    }
    100%{
        opacity: 1;
    }
}*/

@keyframes opacMod{
    0% {
        top: 0;
    }
    50% {
        transform: translateX(-50%);
    }
    50% {
        top: 30%;
    }
}


.indicador {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid #0000FF;
    position: absolute;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
    animation: pulando 0.5s ease infinite alternate;
}

@keyframes pulando {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
    }
}



#p_s_e_u_i_o_{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

#tx_q_a_i_c{
    margin-top: 40px;
}


#c_v_s_e_c_i_i_s_d{
    font-family: "Anton", serif;
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate( -50%, -70% );
    margin: auto;
    text-align: center;
    border: 1px solid #d8d8d8;
    padding: 20px;
    width: 40%;
    height: auto;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    background-color: #FFF;
    transition: 0.5s;
    z-index: 3;
}



.c-btns-s-a-c{
    display: flex; justify-content:space-around; margin-top: 30px;
}


.btn-c-a-d-c{
    background-color: #FF0000;
    border: none;
    padding: 5px 15px;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
}


.btn-c-a-d-c:active{
    background-color: #FFF;
    color: #000;
}


.btn-s-a-d-c{
    background-color: #0000FF;
    border: none;
    padding: 5px 15px;
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
}

.btn-s-a-d-c:active{
    background-color: #FFF;
    color: #000;
}



.input-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    margin-bottom: 20px;
    margin-top: 5px; 
}

.input-container label {
    font-weight: bo200ld;
    font-size: 13px;
}

.input-container input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}



.c-c-c-c-p-j-t-d-i{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInAnimation 1s ease-in-out forwards;
}

@keyframes fadeInAnimation {
    from {
        opacity: 0; 
    }
    to {
        opacity: 1; 
    }
}


.cont-d-b-d-c{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
}


#p_q_txt_e_d_i{
    color: #0000FF;
    cursor: pointer;
}

#p_q_txt_e_d_i:hover{
    color: #000;
    font-weight: bold;
}



#b_q_c_a_t_d_d{
    background-color: #FF0000;
    margin-top: 30px;
    box-shadow: 2px 2px 3px #000;
}






.senha-container {
    position: relative;
}

#senha {
    padding-right: 30px; 
}

.olho {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 29px;
    height: 20px;
    background-image: url('/img/pass_off.png'); 
    background-size: cover;
    cursor: pointer;
}

.olho.visivel {
    background-image: url('/img/pass_on.png'); 
}




.cont-warp-dia{
    position: relative; 
    display: none;
}

.baloon{
    position: absolute;
    width: 130px;
    font-family: 'Anton', sans-serif ;
    background-color: #FFF;
    padding: 12px;
    font-size: 12px;
    border: 1px solid #000;
    border-end-start-radius: 50px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    bottom: 0;
    right: 130px;
}

.cont-warp-dia img{
    height: 200px;
}





#s_b_i_c{
    color: #0000FF;
    margin-left: 3px;
    font-weight: bold;
    cursor: pointer;
}

#s_b_i_c:hover{
    color: #FF0000;
}



.bt{
    margin-top: 30px;
}


.bt-3c{
    margin-top: 5px;
}




.countdown {
    display: flex;
    gap: 10px;
    text-align: center;
    
   
}
.box {
    background-color: white;
    padding: 12px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    min-width: 80px;
    margin: auto;
}
.label-ct {
    font-size: 0.8rem;
    margin-top: 10px;
}


#txt_av_cd{
    font-size: 13px;
    font-weight: bold;
    margin-top: 5px;
    text-align: center;
}


.est-cid{
    padding: 20px;
    margin: auto;
}

#cont_info_tshirt{
    background-color: #E0E0E0;
    width: 90%;
    margin: auto;
    margin-top: 70px;
    margin-bottom: 70px;
    border-radius: 8px;
    padding: 16px;
}

.shirt-img{
    position: absolute;
    right: -10px;
    bottom: -20px;
}
.shirt-img img{
    width: 50px;
}

.shit-g-txt{
    text-align: center;
    line-height: 18px;
    color: #ffd900;
    font-weight: bold;
    margin: auto;
    max-width: 200px;
}

.av-ts-tm{
    color: #FF0000;
    font-weight: bold;
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 8px;
}

.txt-tsht-f{
    margin-top: 10px;
    line-height: 16px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: #0000FF;

}

.dia-c{
    color: #FFF;
}

#p_s_e_u_i_o_conv{
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
}


#p_s_e_u_i_o_conv_3c_sex_sab_dom{
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
}



 


/*--------------------divisao nova compra----------------------*/
/*--------------------divisao nova compra----------------------*/
/*--------------------divisao nova compra----------------------*/
/*--------------------divisao nova compra----------------------*/
/*--------------------divisao nova compra----------------------*/
/*--------------------divisao nova compra----------------------*/
/*--------------------divisao nova compra----------------------*/


.container-nova-compra{
    
    background-color: #7092ff;
    padding: 5px;
    width: 100%;
    margin: auto;
    box-shadow: 2px 2px 3px #1600a5;
}

#container_radio_dias_3_compra{
    
    margin-top: 50px;
}
 

.dia-esc-3-compra{
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #557dff;
    background-image: linear-gradient(to bottom, 
    var(--retrocon--azul--claro), var(--retrocon--azul--escuro));
    box-shadow: 1px 1px 2px #000;
    padding: 6px;
    border-radius: 3px;
    color: #000;
    cursor: pointer;
    user-select: none;    
}

.c-3-c-d{
    display: flex;
    flex-direction: row;  
    justify-content: end;
    gap: 20px;

}

.btn-3-compra{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3px;
}


.txt-exp-ingr-3-compra{
    display: flex;
    flex-direction: column;
    max-width: auto;
    font-size: 13px;
    line-height: 14px;
    word-spacing: 6px;
    color: var(--retrocon--amarelo);
    padding: 5px;
    line-height: 1.1;
    text-align: center;
}

.btn-cal-3compra{
   background-color: #0000FF;
   color: #FFF;
   padding: 5px;
   border-radius: 255px;
   width: 30px;
   height: 30px;
   user-select: none;
   border: none;
}

.btn-cal-3compra:active{
    background-color: #FFF;
    color: #000;
 }

 #cont_v_t_c_3_c{
    font-family: 'Anton', cursive;
    padding: 10px;
    width: 90%;
    background-color: #FFF;
    border: 1px solid #0000FF;
    margin-bottom: 10px;
    border-radius: 8px;
    user-select: none;
 }


 #cont_m_t_v_t{
    font-family: 'Anton', cursive;
    padding: 3px;
    width: 45%;
    background-color: #FFF;
    border: 1px solid #0000FF;
    margin-bottom: 3px;
    border-radius: 8px;
    font-size: 11px;
    text-align: left;
    padding-left: 6px;
    user-select: none;
 }

#cont_m_t_v_t_{
    font-family: 'Anton', cursive;
    padding: 3px;
    width: 35%;
    background-color: #FFF;
    border: 1px solid #0000FF;
    margin-bottom: 3px;
    border-radius: 8px;
    font-size: 13px;
    text-align: left;
    padding-left: 6px;
    user-select: none;
}



 .cont-v-btn-c{
    display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
 }

.img-canc-3comp img{
            width: 30px;
            height: 30px;
            cursor: pointer;
            transition: transform 0.2s ease;
}

.img-canc-3comp.anime {
    transform: scale(1.2); /* Aumenta o tamanho do botão */
}


#cont_rep_c{
    margin: auto;
    margin-top: 30px;
    padding: 3px;
    width: 90%;
    background-color: #FFF;
    border: 1px solid #0000FF;
}

.txt-t-r-c{
    font-family: 'Anton', cursive;
    border-bottom: 1px solid #9b9bff;
    padding: 6px;
    
}

.con-d-t-o-i{
    font-family: 'Poppins', cursive;
    margin-top: 20px;
}

.rep-d{
    margin-top: 10px;
    padding: 3px;
    border-bottom: 1px solid #9b9bff;
    display: none;
}


.p-a-g-3{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 40px;
    justify-content: space-between;
}

.container-pix-3c{
    display: flex;
    padding: 10px;
    background-color: var(--color----tema);
    border-radius: 6px;
    margin: 8px;
    width: 30%;
}



.container-cartao-3c{
    display: flex;
    padding: 10px;
    background-color: var(--color----tema);
    border-radius: 6px;
    margin: 8px;
    width: 30%;
}



.divisao-lote-3-c{
    background-color: rgba(24, 78, 255, 0.3);
    padding: 10px;
    border-radius: 4px;
    box-shadow: 2px 2px 4px #002088;
    height: auto;
    max-width: 60%;
    text-align: center;
    margin: auto;
    margin-top: 20px;
    display: none;
    animation: fadeInAnimationClot 0.6s ease-in-out forwards;
}


.txt1-c-3{
    
    font-size: 12px;
    color: #FFF;
}


#cont_v_t_c_3_c_2_v{
    font-family: 'Anton', cursive;
    padding: 10px;
    width: 90%;
    margin: auto;
    margin-top: 20px;
    background-color: #FFF;
    border: 1px solid #0000FF;
    border-radius: 8px;
    user-select: none;
}


#cont_g_d_i_3_c{
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    margin-top: 30PX;
}



.txt-tit-3-c-p-dia{
    font-family: "Anton", serif;
    font-size: 23px;
    margin-top: 2px;
    text-align: center;
    color: #FF0000; 
    text-shadow: 2px 2px 2px #000;
}




.txt-av-3c-b-g{
    font-family: 'Poppins', cursive;
    font-size: 11px;
    color: #000;
    margin-top: -10px;
    margin-bottom: 15px;
}



#p_sex_a_p_c{
    position: absolute;
    background-color: #0000FF;
    width: 75px;
    height: 75px;
    border-radius: 255px;
    padding: 8px; 
    right: -30px;
    top: -20px;
    display: flex;
    align-items: center; 
    justify-content: center; 
}

#p_sex_a_p_c_t{
    font-family: "Anton", serif;
    color: #FFF;
    text-align: center;
    font-size: 13px;
    margin-top: 10px;
}


#p_dom_a_p_c{
    position: absolute;
    background-color: #0000FF;
    width: 75px;
    height: 75px;
    border-radius: 255px;
    padding: 8px; 
    right: -30px;
    top: -20px;
    display: flex;
    align-items: center; 
    justify-content: center;
}

#p_dom_a_p_c_t{
    font-family: "Anton", serif;
    color: #FFF;
    text-align: center;
    font-size: 13px;
    margin-top: 10px;
}

#p_sab_a_p_c{
    position: absolute;
    background-color: #0000FF;
    width: 75px;
    height: 75px;
    border-radius: 255px;
    padding: 8px; 
    right: -30px;
    top: -20px;
    display: flex;
    align-items: center; 
    justify-content: center;
}

#p_sab_a_p_c_t{
    font-family: "Anton", serif;
    color: #FFF;
    text-align: center;
    font-size: 13px;
    margin-top: 10px;
}

#p_sab_dom_a_p_c{
    position: absolute;
    background-color: #0000FF;
    width: 75px;
    height: 75px;
    border-radius: 255px;
    padding: 8px; 
    right: -30px;
    top: -20px;
    display: flex;
    align-items: center; 
    justify-content: center;
}

#p_sab_dom_a_p_c_t{
    font-family: "Anton", serif;
    color: #FFF;
    text-align: center;
    font-size: 13px;
    margin-top: 10px;
}


#p_sex_sab_dom_a_p_c{
    position: absolute;
    background-color: #0000FF;
    width: 75px;
    height: 75px;
    border-radius: 255px;
    padding: 8px; 
    right: -30px;
    top: -20px;
    display: flex;
    align-items: center; 
    justify-content: center;
}

#p_sex_sab_dom_a_p_c_t{
    font-family: "Anton", serif;
    color: #FFF;
    text-align: center;
    font-size: 13px;
    margin-top: 10px;
}

.cont-b-v-shir{
    position: relative;
    display: flex;
    flex-direction: row;
    font-size: 14px;
    color: #FFF;
    text-align: left;
    gap: 10px;

}

.cont-b-v-shir img{
    width: 70px;
}


.banner-expl-ingr{
    background-color: #a7cafd;
    padding: 4px;
}


.btn-faq-explic-ingress{
    background-color: var(--color-texto-destaque);
    color: #000;
    text-decoration: none;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}





#checkboxContainer {
    display: flex;
    gap: 20px; /* Espaçamento entre os elementos */
    justify-content: center; /* Centralizar horizontalmente */
    font-size: 18px;
  }

  .checkbox-item {
    display: flex;
    flex-direction: column; /* Empilhar label acima do checkbox */
    align-items: center; /* Centralizar alinhamento */
  }

  .checkbox-label {
    
    font-weight: bold; /* Deixar os nomes em negrito */
  }



  .container-rec-patr{
    margin: auto;
    background-color: #90a9fc;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
    
  }


  .txt-info-rev-dig{
    font-size: 12px;
    font-weight: bold;
    color: #000;
    margin-top: 10px;
  }


  #c_account{
    position: absolute;
    text-align: center;
    right: 18px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    text-decoration: none;
  }


  .c_account_desl{
    text-align: center;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }

  .c_account_desl :hover {
    color: #FF0000;
  }



  

  

  




































































@media (max-width: 850px){

    .nome_usuario{
        color: #001761;
        border-radius: 4px;
        width: auto;
        max-width: 190px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .email_usuario{
        font-size: 9px;
        font-weight: bold;
        max-width: 190px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #c_v_s_e_c_i{
        width: 70%;
    }

    #c_v_s_e_c_i_i_s_d{
        width: 80%;
    }

    .indicador {
               left: 46%;
              
    }
    .btn-cal{
        width: 45px;
        height: 45px;
        font-size: 28px;
    }
    .imp-res{
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    .p-a-g-3{
        justify-content: center;
     }
     .container-pix-3c{
          width: 45%;
     }   
     .container-cartao-3c{
       width: 45%;
     }

 }




 @media (max-width:700px){

    .container section{
        overflow-y: scroll;
    }

    .container section::-webkit-scrollbar{
        display: none;
    }

    section .fields .input-field{
        width: calc(100% /2 - 15px);
    }
    .direita img{
        width: 60px;
       
    }

    .direita{
        display:block;
        text-align: end;
    }


    .container-troca-de-conta{
        width: 80%;
    }

    .c-p-c-d-i-d-u-c{
        width: 80%;
    }

    .balao-resp::before {
        left: 75%; /* Posição horizontal da ponta do balão */
        border-width: 10px 8px 0; /* Tamanho da ponta do balão */
        border-color: #ffc400 transparent transparent transparent; /* Cores da ponta do balão */
    }
    
    .balao-resp::after {
        left: 75%; /* Posição horizontal da ponta do balão */
        border-width: 10px 8px 0; /* Tamanho da ponta do balão */
        border-color: #ffc400 transparent transparent transparent; /* Cores da ponta do balão */
    }


    #c_v_s_e_c_i{
        width: 70%;
    }

    #c_v_s_e_c_i_i_s_d{
        width: 80%;
    }

    .indicador {
               left: 46%;
    } 
    .p-a-g-3{
        justify-content: center;
     }
     .container-pix-3c{
          width: 45%;
     }   
     .container-cartao-3c{
       width: 45%;
     }        
 }






 
 @media (max-width: 550px){
    section .fields .input-field{
        width: 100%;
    }

    .container-radio-dias{
        max-width: 310px;
    }
    .dia-esc{
        text-align: left;
    }
    .cont-cont-btns{
        gap: 20px;
    }
    .log-troc img{
        width:500px;
        opacity: 0.1;
    }
    .log-troc{
        top: 180px;
    }
    .container-troca-de-conta{
        width: 80%;
    }
    .c-p-c-d-i-d-u-c{
        width: 80%;
    }

    .balao-resp::before {
        left: 73%; /* Posição horizontal da ponta do balão */
        border-width: 10px 8px 0; /* Tamanho da ponta do balão */
        border-color: #ffc400 transparent transparent transparent; /* Cores da ponta do balão */
    }
    
    .balao-resp::after {
        left: 73%; /* Posição horizontal da ponta do balão */
        border-width: 10px 8px 0; /* Tamanho da ponta do balão */
        border-color: #ffc400 transparent transparent transparent; /* Cores da ponta do balão */
    }

    #c_v_s_e_c_i{
        width: 70%;
    }

    #c_v_s_e_c_i_i_s_d{
        width: 80%;
    }

    .indicador {
               left: 46%;
    }
  
    .indicador {
        margin-top: -15px;
    }

    .cont-warp-dia img{
        height: 170px;
    }
    

    .baloon{
        width: 260px;
        height: 30px;
        bottom: 20px;
        right: 90px;
        padding: 2px;
        border-end-start-radius: 15px;
        border-top-left-radius: 15px;
        border-bottom-right-radius: 15px;
    }

    .cont-warp-dia{
        position: relative;
        margin-left: 10px; 
    }

    .cont-warp-dia img{
        margin-top: 30px;
        height:150px;
    }

    .txt-valor{
        border-bottom: 1px solid #FFF;
    }

    .divisao-lote-3-c{
       max-width: 96%;
    }

    .p-a-g-3{
       justify-content: center;
    }
    .container-pix-3c{
         width: 45%;
    }   
    .container-cartao-3c{
      width: 45%;
    }


    .container-primario-esquerda img{
        width: 170px;
        margin: 10px;
}
   
    .dia-c{
        font-size: 8px;
    }
    
 }
