@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}
body{
    min-height: 100vh;
    width: 100%;
    position: relative;
    background: url('../img/fundo.jpeg') no-repeat center;
    background-size: cover;
}
body::before {
    content: '';
    position: absolute;
    background-image: inherit;
    background-size: inherit;
    background-attachment: fixed;   
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(5px);
    z-index: -1;
}
body::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: rgba(0, 0, 0, 0.259);
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-thumb{
    background-color: #888; 
}
::-webkit-scrollbar-thumb:hover{
    background-color: #666666; 
}
::-webkit-scrollbar-thumb:active{
    background-color: #585858; 
}
::-webkit-scrollbar-track{
    background-color: rgb(211, 211, 211);
}


header{
    z-index: 3;
    width: 100%;
    display: flex;
    top: 0;
    position: sticky;
    background-color: rgba(1, 1, 20, 0.9);
    justify-content: space-between;
    height: 120px;
    transition: all .3s;
}
.logo-container{
    height: 100%;
    display: flex;
    align-items: center;
}
.logo-container img{
    height: 85%;
}
.linksBar{
    display: flex;
    color: whitesmoke;
    height: 100%;
    align-items: center;
    margin-right: 60px;
}
.linksBar ul{
    display: flex;
    list-style: none;
    font-size: 1.5rem;
    gap: 20px;
}
.linksBar ul li{
    position: relative;
    display: flex;
    justify-content: center;
    transition: opacity .2s ease;
    &:hover{
        cursor: pointer;
    }
    &:active{
        opacity: .8;
    }
}
.linksBar ul li::before{
    content: '';
    position: absolute;
    background-color: transparent;
    width: 0%;
    background-color: white;
    bottom: -2px;
    height: 1px;
    transition: .4s all ease-in-out;
}
.linksBar ul li:hover::before{
    width: 100%;
}
.linksBar ul li a{
    text-decoration: none;
    color: whitesmoke;
}
.menuMobile{
    height: 290px;
    width: 100%;
    background-color: rgba(1, 1, 20, 0.9);
    position: fixed;
    z-index: 4;
    visibility: hidden;
    bottom: -290px;
    transition: .3s all;
}
.menuMobile ul{
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 40px 0px 0px 30px;
    gap: 15px;
}
.menuMobile ul li a{
    color: whitesmoke;
    text-decoration: none;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px;
}
.mobileHeader{
    background-color: rgba(1, 1, 20, 0.9);
    width: 100%;
    height: 60px;
    display: none;
    position: sticky;
    z-index: 5;
    top: 0;
    align-items: center;
    transition: .3s all;
    justify-content: center
}
#upButton, #openMenu-button{
    display: none;
    height: 60px;
    width: 60px;
    font-size: 1.7rem;
    position: fixed;
    bottom: 0;
    text-align: center;
    background-color: #d66a27;
    color: white;
    border: none;
    box-shadow: 0px 0px 7px 1px rgba(0,0,0,0.75);
    border-radius: 10px;
    z-index: 6;
    transition: .2s all;
    &:active{
        background-color: white;
    }
}
#upButton{
    left: 0;
    margin: 0px 0px 10px 10px;
    align-items: center;
    z-index: 3;
    justify-content: center;
    text-decoration: none;
    visibility: hidden;
    transition: .2s ease-out left;
    left: -70px;
}
#openMenu-button{
    right: 0;
    margin: 0px 10px 10px 0px;
}
.mobileLogo{
    height: 90%;
}
.mobileLogo img{
    height: 100%;
}
.progress-container {
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: -5px;
    z-index: 3;
    background-color: rgba(1, 1, 20, 0.527);
}
.progress-bar {
    width: 0%;
    position: relative;
    height: 100%;
    background-color: #4caf50;
}
/* 
.getDown-btn{
    background-color: green;
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4;
    border-radius: 100px;
}
.getDown-btn i{
    color: white;
} */
main{
    display: flex;
    width: 100%;
    justify-content: center;
    flex-direction: column;
}




.simuTittle{
    width: 100%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.formSection{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
form{
    width: 100%;
    z-index: 2;
    display: flex;  
    position: relative;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(1, 1, 20, 0.527);
    padding: 20px;
}
.mapaContainer{
    width: 50rem; 
    height: 35rem;
    min-width: 320px; 
    display: flex;
}
.mapaContainer #map{
    height: 100%;
    width: 100%;
    display: flex;
    margin: 10px;
}
.inputsContainer{
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 100%;
    min-width: 320px;
    width: 800px;
}
.form-group label{
    color: rgb(214, 214, 214);
    font-size: 1rem;
    font-weight: bold;
}
.form-group{
    justify-content: center;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.form-group [type=number]::-webkit-inner-spin-button,
.form-group input[type="number"]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}
.form-group input{
    background-color: transparent;
    width: 100%;
    border: none;
    background-color: rgba(1, 1, 20, 0.6);
    padding: 10px;
    border-radius: 10px;
    outline: none;
    font-size: 1.3rem;
    color: white;
    border: 1px solid transparent;
    transition: .5s;
    &:focus{
        border: 1px solid white;
    }
}
.radiosContainer{
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}
.getInfoSistemas{
    right: -25px;
    top: 30px;
    position: absolute;
    display: inline-block;
}
.fa-xmark{
    font-size: 1.5rem;
    color: darkgray;
    border-radius: 5px;
    border: 2px solid darkgray;
    width: 1.8rem;
    height: 1.8rem;
    text-align: center;
    cursor: pointer;
    &:active{
        background-color: rgba(0, 0, 0, 0.159);
    }
}
.getInfoSistemas  i{
    background-color: whitesmoke;
    color: black;
    border-radius: 100px;
    text-align: center;
    padding-top: 5px;
    font-size: 11px;
    width: 17px;
    height: 17px;
    transition: .2s all;
    &:hover{
        background-color:#ff7c2b;
        color: white;
        cursor: pointer;
    }
}
#infoSistemas_content{
    background-color: white;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    color:black;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 2;
    justify-content: center;
    top: 30%;
    left: 0;
    padding: 20px;
    margin: 20px;
    width: 48%;
    font-size: 0.8rem;
    text-align: justify;
    transition: opacity 0.3s ease, visibility 0s linear;
}
.infoSistemas_content div{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: end;
}

 /* ------------------------------------ radio ------------------------------------ */
.typeSwitch{
    margin-top: 5px;
    position: relative;
}
.typeSwitch div {
    display: flex;
}
.typeSwitch input[type="radio"] {
    clip: rect(0 0 0 0);
    clip-path: inset(100%);
    visibility: hidden;
}
.typeSwitch input[type="radio"]:checked + span{
    border: 1px solid whitesmoke;
}
.typeSwitch label span {
    display: block;
    border: 1px solid transparent;
    cursor: pointer;
    background-color: rgba(1, 1, 20);
    position: relative;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: whitesmoke;
    transition: .25s ease-in ;
}

label:first-child span {
    border-radius: .375em 0 0 .375em;
}

label:last-child span {
    border-radius: 0 .375em .375em 0;
}
.labelForTypeSwitch{
    position: absolute;
    color: white;
    font-size: 17px;
    margin-bottom:10px;
}

 /* ------------------------------------ checkbox ------------------------------------ */
.checkbox-container{
    display: inline-block;
    cursor: pointer;
    align-items: center;
    margin-top: 10px;
    display: flex;
    width: 250px;
}
.checkbox-container input{
    display: none;
}
.checkbox-container div{
    width: 80px;
    height: 40px;
    background-color: transparent;
    border: 1px solid #999;
    border-radius: 5px;
    position: relative;
    transition: 0.3s ease;
}
.checkbox-container div div{
    width: 70%;
    height: 70%;
    border-radius: 3px;
    background-color: transparent;
    position: absolute;
    top: 48%;
    left: 51%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.3s ease;
}
.checkbox-container div div::before,
.checkbox-container div div::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: rgb(255, 255, 255);
    top: 49%;
    left: 0;
}
.checkbox-container div div::before{
    transform: rotate(45deg);
}
.checkbox-container div div::after{
    transform: rotate(-45deg);
}
.checkbox-container input:checked + .checkbox-custom div{
    transform: translate(-50%, -50%) scale(1);
    border: none;
}
.checkbox-container span{
    color: white;
    margin-right: 10px;
    font-size: .87rem;
    
}


/* ------------------------------------ submit ------------------------------------ */
.footerForm{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
}
.containerBtnSubmit{
    width: 100%;
    display: flex;
}

.btn-primary{
    padding: 5px;
    width: 300px;
    min-width: 150px;
    color: white;
    background-color: green;
    font-size: 1.7rem;
    height: 60px;
    font-weight: bold;
    transition: 0.3s;
    border: none;
    border-radius: 50px;
}
.button_interactive{
    cursor: pointer;
    &:hover{
        background-color: darkgreen;
    }
    &:active{
        background-color: green;
    }
}
.disabled_button{
    background-color: darkgreen;
    color: gray;
    cursor: not-allowed;
}

/* ------------------------------------ Error msg ------------------------------------ */
.danger-error{
    background-color: rgb(255, 54, 54);
    width: 320px;
    display: flex;
    justify-content: center;
    color: white;
    border-radius: 3px;
    padding: 10px;
}
.danger-error b{
    margin-right: 3px;
}



.aboutUsContainer{
    background-color: white;
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}
.aboutUsContainer article{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-grow: 1;
    gap: 30px;
    position: relative;
    padding-bottom: 50px;
}
.aboutUsContainer h1{
    margin-top: 100px;
    text-align: center;
    font-size: 2.9rem;
    margin-bottom: 30px;
    color: rgba(1, 1, 20);;
}
.fadein-side{
    background: rgba(1, 1, 20, 0.9);
    border-radius: 10px;
    padding: 20px;
    font-size: .97rem;
    text-align: justify;
    color: white;
    display: flex;
    align-items: center;
    width: 700px;
    min-width: 300px;
    transition: all 0.7s ease-in-out;
    box-shadow: 0px 35px 60px -10px rgba(0,0,0,0.36);
}
#aboutUsImg1{
    background: url('../img/ctismImg.jpg') no-repeat center;
    background-size: cover;
    padding: 0;
}
#aboutUsImg2{
    background: url('../img/foto_equipe.jpeg') no-repeat center;
    background-size: cover;
    padding: 0;
}
.rightContainer{
    transform: translateX(200px);
    opacity: 0;
}
.leftContainer{
    transform: translateX(-200px);
    opacity: 0;
}




.integrantesContainer{
    background-color: #ff7c2b;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}
.integrantesContainer .nd{
    transition-delay: .2s;
}
.integrantesContainer .rd{
    transition-delay: .4s;
}
.integrantesContainer h1{
    margin-top: 50px;
    font-size: 3rem;
    color: white;
    text-align: center;
}
.integrantesContainer article{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 100px;
    margin-bottom: 100px;
}
.personaContainer{
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    height: 350px;
    width: 250px;
    transform: translateY(100px);
    transition: .5s all ease-in-out;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*    background-color: white;*/
/*    box-shadow: 0px 0px 15px 6px rgba(0, 0, 0, 0.2)*/
}
.personaContainer p{
    padding: 10px;
    text-align: center;
    font-size: 1.4rem;
}
.perfil{
    display: flex;
    flex-direction: column;
}
.imgContainer{
    background: no-repeat center;
    background-size: cover;
    width: 150px;
    height: 150px;
    border-radius: 100px;
    margin-top: 20px;
}
#torrico{
    background-image: url('../img/foto_torras.jfif');
    
}
#iza{
    background-image: url('../img/foto_iza.jpeg');
}
#enzo{
    background-image: url('../img/foto_enzo.jpeg');
}
#rian{
    background-image: url('../img/foto_rian.jpeg');
}
#bruno{
    background-image: url('../img/foto_bruno.jpg');
}
#ismael{
    background-image: url('../img/foto_ismael.jpg');
}
#fernando{
    background-image: url('../img/foto_fernando.jpg');
}
#lucas{
    background-image: url('../img/foto_lucas.jpg');
}
#luciana{
    background-image: url('../img/foto_luciana.jpg');
}
.nomeDev{
    text-align: center;
    font-size: 1.7rem;
    margin-top: 10px;
}
.infoDev{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    align-items: center;
    gap: 20px;
}
.infoDev div{
    display: flex;
    align-items: center;
}
.infoDev div a{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #303030;
    font-size: 1.5rem;
    transition: .2s all linear;
    &:hover{
        color:#a65428;
    }   
    &:active{
        color:#d66a30;
        transition: 0s all linear;
    }
}
.infoDev i{
    font-size: 2.6rem;
    margin-right: 10px;
}




.helpContainer{
    background-color: white;
    min-height: 100vh;
    width: 100%;
    margin-top: 100px;
    z-index: 2;
    padding-left: 20px;
    padding-right: 20px;
}
.helpContainer article{
    display: flex;  
    margin-top: 40px;
    flex-direction: column;
    align-items: center;
}
.helpContainer article h1{
    color: black;
    font-size: 3rem;
    font-weight: 600;
    padding: 10px;
    margin-bottom: 30px;
}
.tutorialContainer{
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}
.tutorial_step{
    display: flex;
    gap: 30px;
}
.tutorial_step .text_tutorial{
    max-width: 500px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: justify;
}
.tutorial_step .text_tutorial ul,
.tutorial_step .text_tutorial ol{
    margin-left: 25px;
}
.tutorial_step .img_tutorial{
    width: 600px;
    height: 250px;
    display: flex;
    justify-content: center;
    background-color: #99ceff;
}
.tutorial_step .img_tutorial img{
    max-height: 100%;
    max-width: 100%;
}


.fade-in{
    opacity: 1;
    transform: translate(0px);
}

.footerContainer{
    width: 100%;
    min-height: 60vh;
    height: 70vh;
    z-index: 2;
    background-color: rgba(1, 1, 20);
    display: flex;
    position: relative;
    justify-content: space-evenly;
}
.apoioContainer{
    width: 700px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
}
.apoioContainer .logosContainer{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.apoioContainer .logosContainer div{
    background-color: white;
    width: 130px;
    height: 130px;
    padding: 20px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 10px;
}
.apoioContainer .logosContainer div img{
    width: 100%;
}
.apoioContainer h3{
    color: whitesmoke;
    font-size: 2rem;
    margin-bottom: 30px;
}
.webSiteInfos{
    margin-top: 100px;
    max-width: 500px;
    margin-left: 30px;
    margin-right: 30px;
}
.webSiteInfos h2{
    color:#a65428;
    text-align: center;
}
.webSiteInfos p{
    color: whitesmoke;
    margin-top: 50px;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-align: justify;
    overflow-wrap: break-word;
}




@media screen and (max-width: 1800px){

    #aboutUsImg1, #aboutUsImg2{
        height: 400px;
    }
    .rightContainer{
        transform: translateX(0px);
    }
    .leftContainer{
        transform: translateX(0px);
    }
}
@media screen and (max-width: 1200px){
    .radiosContainer{
        justify-content: baseline;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .integrantesContainer article{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .tutorial_step{
        max-height: 20vw;
        height: 20vw;
    }
    .text_tutorial{
        max-width: 300px;
        font-size: 1.3vw;
    }
    .img_tutorial{
        max-height: 100%;
        max-width: 400px;
    }
}
@media screen and (max-width: 800px){
    .formSection{
        flex-direction: column;
    }
    #infoSistemas_content{
        width: 90%;
    }
    form{
        height: 100%;
    }
    .footerContainer{
        justify-content: center;
        flex-direction: column;
    }
    .apoioContainer{
        max-width: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
        margin-top: 50px;
        border: none;
    }
    .webSiteInfos{
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
        margin-top: 60px;
    }
    .webSiteInfos p{
        width: 90%;
    }
    .helpContainer article .sistema{
        width: 100%;
        font-size: 0.9rem;
    }
    .form-group input{
        font-size: 1.1rem;
    }
    .mapaContainer{
        height: 400px;
        width: 100%;
    }
    .fadein-side{
        margin: 10px;
    }
    #aboutUsImg1, #aboutUsImg2{
        height: 200px;
    }
    .textAbout{
        font-size: 1rem;
        opacity: 1;
    }
    header{
        display: none;
    }
    .menuMobile{
        visibility:visible;
    }
    .mobileHeader{
        display: flex;
    }
    #openMenu-button{
        display: block;
    }
    #upButton{
        display: flex;
        visibility: visible;
    }

    .tutorialContainer{
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .tutorial_step{
        width: 100%;
        max-height: 500px;
        height: 500px;
        align-items: center;
        justify-content: baseline;
        flex-direction: column;
        margin-top: 50px;
    }
    #t2, #t4{
        flex-direction: column-reverse;
    }

    .text_tutorial{
        max-width: 300px;
        font-size: .9rem;
    }
    .text_tutorial{
        max-width: 100%;
        width: 100%;
    }
    .img_tutorial{
        height: 340px;
        max-height: 340px;
        max-width: 100%;
    }

}
@media screen and (max-width: 620px){
    .eletricWeb option{
        font-size: 1.2rem;
    }
    #aboutUsImg1, #aboutUsImg2{
        height: 200px;
    }
    .footerContainer{
        min-height: 150vh;
    }
    .tutorial_step{
        margin-top: 75px;
    }
}
@media screen and (max-width: 500px){
    .personaContainer{
        width: 300px;
    }
    .mapaContainer{
        height: 300px;  
    }
    .helpContainer article h1{
        font-size: 2.2rem;
    }
    .eletricWeb option{
        font-size: 1rem;
    }
    .footerContainer{
        min-height: 190vh;
    }
}

