/* paleta de cores: Azul: #440BBF, #3B0AA6, #340B8C  | Branco: #F2F2F2  */

/* Estilização do Documento */
    html{
        overflow-x: hidden;
        scroll-behavior: smooth;
        font-size: 2.5rem;
        color: rgb(255, 255, 255); 
        font-family: 'Archivo Black', sans-serif !important;
        text-shadow: 
        0 0 5px #00f;
    }

    *{
        margin: 0px;
        padding: 0px;
        border: 0px;
        box-sizing: border-box;
        list-style-type: none;
        gap: 0;
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }

    body{
        box-sizing: border-box;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        background-color: black;
        overflow: hidden;
    }

    a{
        color: rgb(255, 255, 255); 
        text-shadow: 
        0 0 20px #00f;
    }
    
   
/* Estilização do cabeçalho "header" */

    header{
        width: 100%;
        height: 10vh;
        position: fixed;
        z-index: 1000;
    }

    #navegation_up{
        height: 100%;
        width: 100%;
        display: grid;
        grid-template-columns: 25% 75%;
        grid-template-rows: 100%;
        gap: none;
        border: none;
        background-color: #3f09ac;
    }

    #navegation_up>div{
        display: flex;
        justify-content: center;
        align-items: center;
        overflow-y: hidden;
    }

    #navegation_up>div>a>img{
        width: 40%;
        margin-left: 10%;
        height: auto;
        padding-top: 10%;
        border: none;
    }

    #botao_sanduiche{
        display: none;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        width: 35%;
        height: 32.5%;
        cursor: pointer;
        transition: scale 0.2s linear;
    }

    #botao_sanduiche>div{
        height: 4px;
        background-color:white;
        width: 80%;
        transition: 0.3s ease-in-out;
        border-radius: 5px;
    }

    #botao_sanduiche:hover{
        scale: 1.2;
    }

    .up_li_cl{
        width: 80%;
        height: auto;
        display: flex;
        justify-content:flex-end;
        align-items: center;
        font-size: 0.5rem !important;
    }

    .up_li_cl>li{
        margin-inline: 2.5%;
        transition: scale 0.2s linear, border-bottom 0.1s linear;
    }

    .up_li_cl>li:hover{
        scale: 1.2;
        border-bottom: 2px solid;
    }

    .up_li_cl>li>a{
        text-decoration: none;
    }

    #up_link_responsivo{
        display: none;
    }

/* conteudo do meio */

    #conteudo_meio{
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: minmax(60vh, auto) 40vh;
        gap: 0;
        background-color: black;
    }

/* Estilização do Meio "main" */

    main{
        background-color: rgb(0, 0, 0);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    main>section{
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: rgb(0, 0, 0);
        background-image: url(imagens/fundo.png);
    }

    #background_img{
        padding-top: 15%;
        margin: 0;
        width: 100%;
        display: flex;
    }

    #inicio_left{
        width: 55%;
        margin-bottom: 20%;
        text-align: center;
    }

    #inicio_left>h1{
        font-size: 1rem ;
    }

    #botao_welcome{
        margin-top: 5%;
        width: 80%;
        font-size: 0.5rem;
        background-color: transparent;
        transition: background-color 0.5s ease;
        transition: scale 0.2s linear;
        animation: balancar 0.5s infinite linear;
    }

    @keyframes balancar {
        0%{
            transform:rotatez(0deg);
        }

        25%{
            transform:rotatez(2deg);
        }

        50%{
            transform:rotatez(0deg);
        }

        75%{
            transform:rotatez(-2deg);
        }

        100%{
            transform:rotatez(0deg);
        }
    }

    #botao_welcome:hover{
        background-color: #3f09ac;
        scale: 1.2;
    }

    #inicio_right{
        margin-top: 0%;
        width: 45%;
        height: 100%;
        flex-direction: column;
        overflow: hidden;
    }

    #icones{
        width: 55%;
        position: relative;
        right: -15%;
        animation: icones_animation 5s infinite linear;
    }
    
    @keyframes icones_animation {
        0%{
            top: 0;
        }

        50%{
            top: 10%;
        }

        100%{
            top: 0%;
        }
    }

    #mao{
        width: 90%;
        position: relative;
        right: -15%;
        top: -10%;
        animation: mao_animation 5s infinite linear;
    }

    @keyframes mao_animation {
        0%{
            transform: rotateZ(0deg)
        }

        50%{
            transform: rotateZ(10deg)
        }
    }

    #about{
        flex-direction: column;
        padding-top: 12.5%;
        padding-bottom: 12.5%;
        justify-content: center;
        align-items: center;
    }

    #about>h1{
        width: 90%;
        font-size: 0.8rem;
        text-align: center;
    }

    #about>div{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 80%;
        margin-top: 2%;
    }

    #about>div>img{
        width: 22.5%;
        height: auto;
        margin: 2%;
        border-radius: 5%;
        border: 2px solid rgb(255, 255, 255);
        cursor: pointer;
        /*box-shadow: 0 0 10px #00f; */
        transition: scale 0.2s linear;
    }

    #about>div>img:hover{
        scale: 1.1;
    }

    #solutions_sector{
        display: flex;
        flex-direction: column;
        font-size: 0.5rem;
        padding-top: 9%;
        padding-bottom: 9%;
        justify-content: center;
        background-color: #3f09ac;
    }

    #solutions_sector ul{
        width: 100%;
        margin-top: 7%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #solutions_sector li{
        border: 2px solid;
        border-radius: 10%;
        padding-top: 2%;
        margin: 1%;
        font-size: 0.5rem;
        width: 22.5%;
        height: 100%;
        text-align: center;
        cursor: pointer;
        transition: transform 0.2s linear;
    }

    #solutions_sector li:hover{
        transform: translateY(-25px);
    }

    #solutions_sector img{
        border-radius: 35%;
        background-color: white;
        width: 80%;
        height: auto;
        margin-top: 5%;
    }

    #solutions{
        font-size: 0.7rem;
        display: flex;
        flex-direction: column;
        margin-bottom: 5%;
        background-image: none;
    }

    .solutions_section01{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        padding: 10%;
        background-image: url(imagens/fundo.png);
    }

    .solutions_section01>h1{
        padding-bottom: 8%;
    }


    .solutions_section01>div{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    #solutions>section{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 10%;
        background-image: url(imagens/fundo.png);
    }
    
    .img_solutions{
        height: auto;
        width: 40%;
        border-radius: 10%;
        border: 2px solid ;
    }

    .h_p{
        width: 45%;
        text-align: center;
    }

    .h_p>h2{
        margin-bottom: 2.5%;
    }

    .h_p>p{
        text-align: justify;
    }

    .h_p>p>strong{
        border-bottom: 1px solid;
        color: rgb(255, 30, 0);
        text-shadow: 0 0 20px #00f;
    }

    #inscricao_form{
        padding-top: 8%;
        width: 50%;
        height: auto;
        margin-bottom: 15%;
    }

    #inscricao_form>h1{
        font-size: 0.6rem;
        text-align: center;
        animation: pulso 1.5s linear infinite;
    }

    @keyframes pulso {
        0%{
            transform: scale(1.1);
        }

        100%{
            transform: scale(1.2)
        }
    }

    #inscricao_form>fieldset{
        border: 2px solid white;
        background-color: #3f09ac;
        margin-top: 5%;
        border-radius: 30px;
        padding-bottom: 2%;
        font-size: 0.4rem ;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #inscricao_form>fieldset>label {
        margin-top: 1%;
        display: flex;
        width: 60%;
        font-size: 0.35rem;
    }

    #inscricao_form>fieldset>input {
        background-color: transparent;
        color: white;
        border-bottom: 2px solid;
        margin-top: 0.5%;
        margin-bottom: 0.5%;
        width: 60%;
        height: 40px;
        font-size: 0.35rem;
        cursor: pointer;
        transition: border 0.2s linear, border-radius 0.2s linear;
    }

    #inscricao_form>fieldset>input:hover{
        border: 1px solid;
        border-radius: 10px;
    }

    #inscricao_form>fieldset>h3{
        width: 60%;
        font-size: 0.4rem;
        margin-top: 2%;
        align-self: center;
    }

    #opcoes_radio{
        display: flex;
        justify-content: space-between;
        font-size: 0.35rem;
        width: 60%;
    }

    #opcoes_radio>label , #opcoes_radio>label>input{
        cursor: pointer;
        margin: 0;
        transition: scale 0.2s linear, border-bottom 0.1s linear;
    }

    #opcoes_radio>label:hover, #opcoes_radio>label>input:hover{
        scale: 1.15;
        border-bottom: 1px solid;
    }

    textarea{
        width: 60%;
        height: 100px;
        overflow-y: auto;
        resize:none;
        background-color: transparent;
        color: white;
        border: 2px solid ;
        border-radius: 10px;
        font-size: 0.35rem;
    }

    #termo_uso{
        margin-top: 1%;
        font-size: 0.4rem;
        animation: pulso 1.5s linear infinite;
        cursor: pointer;
    }

    #termo_uso:hover{
        border-bottom: 2px solid;
    }

    label>span{
        margin-left: 5%;
    }

    #botoes_form{
        margin-top: 2%;
        display: flex;
        justify-content: space-evenly;
        width: 50%;
    }


    #termos_condicoes , #termos_condicoes>input{
        cursor: pointer;
        transition: scale 0.2s linear;
    }


    #termos_condicoes:hover{
        scale: 1.1;
    }
    

    .botoes{
        cursor: pointer;
        width: 20%;
        font-size: 0.4rem !important;
        padding: 1%;
        border-radius: 5px;
        font-size: 0.5rem;
        border: 2px solid white;
        background-color:#3f09ac;
        font-family: 'Archivo Black', sans-serif;
        color: rgb(255, 255, 255); 
        text-shadow: 
        0 0 20px #00f;
        transition: scale 0.2s linear;
    }

    .botoes:hover{
        scale: 1.2;
    }
    
    #limpar{
        width: 30%;
        background-color: rgb(240, 42, 16); 
    }



    


/* Estilização do rodapé "footer" */

    #sitemap{
        text-align: center;
        font-size: 0.4rem;
        border-top: 2px solid white;
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 90% 10%;
        grid-row: 2;
    }

    #section_final{
        display: grid;
        grid-template-columns: 30% 33% 33%;
        grid-template-rows: 100%;
        gap: 2px;
        align-items:center;
        justify-content: center;
    }

    #section_final>a{
        height: 100%;
    }
    
    #section_final>a>img{
        height: 100%;
        width: auto;
        border: none;
    }

    #section_final>section{
        margin-top: 5%;
        font-size: 0.65rem;
    }

    #section_final>section>ul>li{
        margin: 2% 0;
        text-align: center;
    }

    #section_final>section>ul>li>a{
        color: rgb(255, 255, 255); 
        text-shadow: 
        0 0 20px #00f;
        text-decoration: none;
        transition: border-bottom 0.2s linear;
        transition: scale 0.2s linear;
    }

    #section_final>section>ul>li>a:hover{
        border-bottom: 2px solid;
        scale: 1.2;
    }

    #direitos_footer{
        background-color: #3f09ac;
        display: flex;
        font-size: 0.5rem;
        justify-content: center;
        align-items: center;
        padding-bottom: 1%;
        padding-top: 1%;
    }

/* Modal Termos*/

    #modal_termos{
        display: none;
        z-index: 99999;
        position: fixed;
        top: 12.5%;
        left: 20%;
        width: 60%;
        height: 80%;
        background-color: #3f09ac;
        background-image: url(imagens/fundo.png);
        border-radius: 20px;
        font-size: 0.5rem;
        flex-direction: column;
        align-items: center;
    }

    
    
    #modal_termos::before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }


    #modal_termos>h1{
        text-align: center;
        width: 60%;
        border-bottom: 2px solid;
    }

    #termos_escritos{
        border: 2px solid;
        margin-top: 2%;
        width: 60%;
        height: 70%;
        border-radius: 10px;
        overflow-x: hidden;
        text-align: justify;
    }

    #termos_escritos::-webkit-scrollbar {
        width: 12px; /* Largura da barra de rolagem */
    }

    #termos_escritos::-webkit-scrollbar-thumb{
        background-color: white;
        border-radius: 50px;;
    }

    #termos_escritos>p{
        text-align: justify;
        margin-top: 2%;
        position: relative;
        width: 80%;
        left: 10%;
    }

    #botoes_termos{
        width: 60%;
        margin-top: 2%;
        display: flex;
        justify-content: center;
    }

    #moda_termos>p{
        text-align: justify;
    }


