@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;1,200;1,300;1,400;1,500;1,600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

header{
    position: fixed;
    width: 100%;
    height: 15vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    padding: 20px;
    transition: 0.7s;
    z-index: 1000;
    background: rgba(0,0,0,0.2);
}

header .logo .fas{
    color: #fff;
    font-size: 1.5em;
    margin-right: 10px;
}

header .logo{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    transition: 0.5s;
}

header .logo span{
    color: #fff;
}

header.sticky{
    height: 50px;
    background: #65127a;
}

.navigation{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.navigation li{
    list-style: none;
    padding: 10px;
    transition: 0.5s;
}

.navigation li a{
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}

.navigation li a:hover{
    color: #ff0;
}

.inicio{
    width: 100%;
    height: 120vh;
    background: url(imagens/back-superdig.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 500ms cubic-bezier(0.250, 0.250, 0.540, 0.810);
}


.inicio .container{
    position: relative;
    max-width: 500px;
    min-width: 300px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    bottom: 90px;

}

.inicio .container::before{
    content: '';
    position: absolute;
    width: 480px;
    height: 220px;
    background: rgba(255,255,255,0.5);
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
    transition: 3s;
    z-index: 0;
}

.inicio .container p{
    color: #65127a;
    margin-bottom: 20px;
    text-align: center;
    text-transform: capitalize;
    font-weight: 400;
    z-index: 1;
}

.inicio .container a{
    display: inline-block;
    position: relative;
    padding: 5px 10px;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #fff;
    font-size: 0.8em;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s;
    background: #65127a;
    text-decoration: none;
    z-index: 2;
}

.inicio .container a:hover{
    letter-spacing: 0.5px;
}

.menuToggle{
    display: none;
}
.sobre{
    padding: 50px;
}

.sobre h2{
    margin: 20px 0;
}

.sobre p{
    text-align: justify;
}

.funcionamento{
    padding: 50px;
    background: #65127a;
    background-position: center center;
    background-size: cover;
}

.funcionamento h2{
    margin: 20px 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1.3em;
    color: #fff;
}


.funcionamento .container{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.funcionamento .container .card{
    width: 350px;
    height: 400px;
    padding: 5px;
    margin: 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: 0.5s;
    background: #fff;

}

.funcionamento .container .card img{
    font-size: 4em;
    width:  180px;
    height: 180px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    object-fit: contain;

}

.funcionamento .container .card p{
    text-align: center;
    color: #111;
    font-weight: 400;
    margin-top: 10px;
    padding: 20px;
}

.cadastro{
    width: 100%;
    padding: 50px;
}

.cadastro h2,.cadastro p{
    text-align: center;
}

.cadastro h2{
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.cadastroForm{
    background: #fff;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    width: 100%;
    margin-top: 10px;
    display: flex;;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cadastro .inputBox{
    position: relative;
    width: 45%;
    margin: 20px 10px;
}

.cadastroForm .inputBox i{
    font-size: 18px;
}

.cadastroForm .inputBox label{
    font-weight: 500;
}

.cadastroForm .inputBox input,
.cadastroForm .inputBox select{
    width: 100%;
    border: 1px solid #555;
    padding: 10px;
    color: #111;
    outline: none;
    font-size: 16px;
    font-weight: 300;
    resize: none;
    background: #fff;
}

.cadastroForm .checkBox {
    width: 100%;
    margin-left: 10px;
}

.cadastroForm .checkBox input[type="checkbox"]{
    cursor: pointer;
}

.cadastroForm .inputBox input[type="submit"]{
    font-size: 1em;
    color: #fff;
    background: #65127a;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: 0.5s;
    max-width: 200px;
    font-weight: 500;
    cursor: pointer;
}


footer{
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 100px;
    background: #65127a;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}

footer .container .sec{
    margin-right: 30px;
}

footer .container .sec.aboutus{
    width: 50%;
}

footer .container h2{
    position: relative;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px;
}

footer .container h2::before{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #fff;
}

footer p{
    font-weight: 300;
    color: #fff;
}

.redes{
    margin-top: 20px;
    display: flex;
}

.redes li{
    list-style: none;
}

.redes li a{
    width: 40px;
    height: 40px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.2em;
}

.redes li:nth-child(1) a .fab{
    color: #023e8a;
}.redes li:nth-child(2) a .fab{
    color: #0096c7;
}.redes li:nth-child(3) a .fab{
    color: #ff0054;
    font-size: 1.6em;
}.redes li:nth-child(4) a .fab{
    font-size: 1.6em;
    color: #008000;
}

.redes li a .fab{
    font-size: 1.3em;
    font-weight: 500;
}

.contato{
    width: calc(50% - 60px);
    margin-right: 0 !important;
}

.contato .info{
    position: relative;
}

.contato .info li{
    display: flex;
    margin-bottom: 16px;
}

.contato .info li span:nth-child(1){
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
}

.contato .info li span{
    color: #fff;
}

.contato .info li a{
    color: #fff;
    text-decoration: none;
}

.contato .info li:hover a{
    color: #fff;
}

.copyrightText{
    width: 100%;
    background: #fff;
    padding: 8px 100px;
    text-align: center;
    color: #65127a;
    font-weight: 500;
}

@media (max-width: 991px){
    header{
        height: 15vh;
    }


    .navigation{
        display: none;
    }
    .inicio .container::before {
        width: 90%;
    }

    .inicio .container{
        position: relative;
        max-width: 500px;
        min-width: 300px;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        bottom: 250px;

    }

    .navigation.active{
        position: fixed;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: #65127a;
        font-size: 22px;
    }

    .menuToggle{
        display: flex;
        width: 50px;
        height: 50px;
        background: url(imagens/menu.png);
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
        transition: 0.3s;
        cursor: pointer;
    }

    .menuToggle.active{
        background: url(imagens/close.png);
        background-size: 25px;
        background-repeat: no-repeat;
        background-position: center;
        z-index: 10;
        cursor: pointer;
    }

    .inicio .container {
        position: absolute;
        top: 160px;
    }
    .inicio .container p{
        font-size: 14px;
    }

    .inicio .container a{
        padding: 5px 10px;
    }
    .sobre{
        padding: 20px;
    }

    .sobre h2{
        margin-top: 40px;
    }

    .funcionamento {
        padding: 25px;
    }

    .funcionamento .container .card {
        margin: 10px 0px;
        height: 475px;
    }
    .funcionamento h2 {
        text-align: center;
        margin-top: 40px;
    }

    .cadastro{
        padding: 0px;
    }
    .cadastro h2{
        font-size: 1.4em;
        padding: 20px 0;
        margin-top: 70px;
    }

    .cadastroForm{
        flex-direction: column;
        padding: 0 20px;
    }

    .cadastro .inputBox{
        width: 100%;
        margin: 20px 0px;
    }

    .cadastroForm .inputBox input[type="submit"]{
        max-width: 100%;
    }

    footer{
        padding: 40px;
    }

    footer .sec.aboutus h2{
        margin-top: 70px;
    }

    footer .container{
        flex-direction: column;
    }

    footer .container .sec{
        margin-right: 0;
        margin-bottom: 40px;
    }

    footer .container .sec.aboutus,.contato{
        width: 100%;
    }

    .copyrightText{
        padding: 8px 40px;
    }

}
