body{
    padding: 0;
    margin: 0;
    background: linear-gradient(45deg, rgb(79, 156, 228), rgba(10, 66, 196, 0.753));
    height: 100vh;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

h1{
    color:aliceblue;
    transform: scale(1.5);
    background-color: rgb(84, 93, 226);
    box-shadow: 5px 3px black;
    padding: 10px;
    cursor: pointer;
    border-style:outset;
}

a{
    text-decoration: none;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(208, 208, 212, 0.205);
    padding: 35px;
}

.lista{
    display: flex;
    gap: 30px;
}


.lista li{
    list-style: none;
    border-radius: 3px;
    background-color: #ffd900d2;
    padding: 4px;
    box-shadow: 5px 3px black;
    border-style:outset;
    position: relative;

    transition-property: transform, background-color;
    transition-duration: 0.2s;
    transition-timing-function: ease-in-out;

    /* animation: indo 8s ease-in-out infinite; */
}

.lista li a{
    text-decoration: none;
    color: #2245e2;
    font-weight: lighter;

    transition: color 0.2s ease-in-out;
}

.lista li::after{
    position: absolute;
    content: "";
    height: 5px;
    width: 0px;
    background-color: rgba(36, 23, 219, 0.911);
    bottom: -10px;
    left: 0px;

    transition: width 0.2s ease-in;
}


.lista li:hover{
    background-color: rgb(255, 238, 4);
    transform: scale(1.1);
}

.lista li a:hover{
    transform: scale(1.1);
}

.lista li:hover::after{
    width: 100%;
}

.logo{
    position: relative;

    transition: all 0.3s ease-out;
}

.logo:hover{
    transform: scale(1.03);
}


@keyframes indo{
    0%{
        transform: translateX(-100px);
    }

    50%{
        transform: translateX(100px);
    }

    100%{
        transform: translateX(-100px);
    }
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.856);
    flex-direction: column;
}



.parte1{
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    width: 80%;
    align-items: center;
}



.bloco1{
    margin-top: 100px;
    background-color: rgb(81, 161, 214);
    border-radius: 15px;
    text-align: center;
    width: 600px;
    height: 310px;
    color: rgba(26, 17, 17, 0.699);
    border: dashed 6px rgb(243, 243, 243);
    overflow: auto;
}

.bloco2{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.89);
}


.bloco3{
    margin-top: 90px;
    text-align: center;
    width: 700px;
    background-color: #c6e443;
    border: dashed 6px white;
    border-radius: 15px;
    overflow: auto;
}

h2{
    text-align: center;
}

.parte3{
    margin-top: 80px;
    display: flex;
    background-color: aquamarine;
    flex-direction: column;
    width: 100%;
}

.bloco4{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.bloco4 img{
    width: 450px;
    border: 6px dashed white;
    object-fit: cover;
}

.parte4{
    background-color: rgb(59, 202, 154);
    width: 100%;
    display: flex;
    justify-content: center;
}

.bloco5{
    width: 700px;
}

footer{
    display: flex;
    justify-content: center;
    padding: 20px;
}

.termos{
    background-color: rgb(108, 228, 188);
    width: 100%;
    text-align: center;
}

#caixa{
    display: none;
}

.hamburguer{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hamburguer span{
    position: relative;

    transition: all 0.5s ease-out;
}

.hamburguer span::after{
    position: absolute;
    content: "";
    height: 5px;
    width: 50px;
    border-radius: 30%;
    background-color: rgb(196, 24, 24);
}

.baixar{
    display: block;
    color: rgb(250, 250, 250);
    background-color: #2245e2;
    border: solid 2px black;
    border-radius: 5px;
    padding: 5px;
    cursor: pointer;
    width: 15%;
 
    
    transition: all 0.5s ease;
}

.baixar:hover{
    transform: scale(1.2);
}


.cadastro{
    background: linear-gradient(45deg, rgb(79, 156, 228), rgba(77, 120, 221, 0.753))
}

form{
    margin-top: 60px;
    text-align: center;
    width: 40%;
    background-color: rgb(130, 190, 214);
    border: solid 5px white;
    border-radius: 18px;
    margin-bottom: 30px;
}

input{
    border-radius: 3px;
    width: 80%;
}

.enviar{
    border-radius: 5px;
    background-color: #89e7e2e0;
    box-shadow: 5px 3px rgba(0, 0, 0, 0.438);
    padding: 5px;
    font-weight:bold;

    transition: transform 0.3s ease;
}

.enviar:hover{
    transform: translateY(3px);
    background-color: #aae2e2;
}

.parabens{
    margin-top: 50px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 80%;
}

@media(max-width: 600px){
 
    header{
        display: flex;
    }

    h1{ 
        position: absolute;
        top: 0;
        left: -50px;
    }

    nav{
        position: absolute;
        right: 70px;
    }
    
    .lista{
        display: none;
    }


    .parte1{
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    .bloco1{
        margin-top: 0px;
        width: 90%;
    }

    .parte2{
        display: flex;
        justify-content: center;
    }

    .bloco2{
        margin-top: 50px;
        width: 90%;
    }

    .bloco3{
        width: 90%;
    }

    .im1{
        width: 380px;
    }

    .im2{
        width: 380px;
    }
    
    .bloco4{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
    }

    .bloco4 img{
        width: 300px;
    }

    .bloco5{
        width: 85%;
    }

    footer{
        display: flex;
        align-items: center;
        padding: 14px;
        background-color: rgba(96, 144, 240, 0.89);
    }

    .now{
        display: flex;
        align-items: center;
        padding: 14px;
        background-color: rgba(96, 144, 240, 0.89);
        position: fixed;
        width: 100%;
        bottom: 0;
    }

    .now2{
        display: flex;
        align-items: center;
        padding: 14px;
        background-color: rgba(96, 144, 240, 0.89);
        position: fixed;
        width: 100%;
        bottom: 0;
    }

    .img_apresentacao{
        width: 310px;
        height: 285px;
    }

    .baixar{
        display: block;
        color: rgb(255, 255, 255);
        background-color: #2245e2;
        border: solid 2px black;
        border-radius: 5px;
        padding: 5px;
        cursor: pointer;
        width: 20%;
 
        transition: all 0.5s ease;
    }

    .baixar:hover{
        transform: scale(1.2);
    }


    footer p{
        text-align: center;
        font-size: 12px;      
        color: rgb(8, 10, 10);
    }

    #caixa:checked + .hamburguer span:nth-child(1){
        transform: translateY(20px) rotate(-45deg) translateX(3px);
    }

    #caixa:checked + .hamburguer span:nth-child(2){
        transform: translateY(20px) rotate(-45deg) translateX(3px);
    }

    #caixa:checked + .hamburguer span:nth-child(3){
        transform: translateY(-32px) rotate(45deg) translateX(8px);
    }

    

    .hamburguer span{
        position: fixed;
    }

    #caixa:checked ~ .lista{
        position: fixed;
        display: flex;
        flex-direction: column;
        left: 0;

    }

    .lista li{
        width: 50%;
    }
}


@media(min-width: 601px) and (max-width: 797px){
    header{
        position: relative;
    }

    .img_apresentacao{
        width: 460px;
        height: 415px;
    }

    .parte1{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bloco1{
        margin-top: 15px;
        width: 90%;
    }

    .bloco2{
        margin-top: 80px;
    }

    .parte2{
        display: flex;
        justify-content: center;
    }

    .bloco3{
        width: 80%;
    }

    .im1{
        width: 430px;
    }
    
    .bloco4{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bloco5{
        width: 89%;
    }

    footer{
        display: flex;
        align-items: center;
        padding: 14px;
        background-color: rgba(96, 144, 240, 0.89);
    }

    footer p {
        font-size: 13px;
    }

    .lista{
        display:none;
        position: absolute;
    }


    #caixa:checked + .hamburguer span:nth-child(1){
        transform: translateY(20px) rotate(-45deg) translateX(3px);
    }

    #caixa:checked + .hamburguer span:nth-child(2){
        display: none;
    }

    #caixa:checked + .hamburguer span:nth-child(3){
        transform: translateY(-32px) rotate(45deg) translateX(8px);
    }

    #caixa:checked ~ .lista{
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: rgb(99, 144, 233);
        bottom: -178%;
        left: 10px;
        width: 90%;  
        padding: 20px;
    }

    .lista li{
        text-align: center;
        width: 70%;
        padding: 5px;

    }

    .now{
        display: flex;
        padding: 14px;
        background-color: rgba(96, 144, 240, 0.89);
        position: fixed;
        width: 100%;
        bottom: 0;
        text-align: center;
    }

    .now2{
        display: flex;
        padding: 14px;
        background-color: rgba(96, 144, 240, 0.89);
        position: fixed;
        width: 100%;
        bottom: 0;
        text-align: center;
    }

}

@media(min-width: 798px){
    .hamburguer{
        display: none;
    }

    .bloco4{
        display: flex;
        flex-wrap: wrap;
    }

    .img_apresentacao{
        width: 463px;
        height: 418px;
    }

    .now{
        display: flex;
        padding: 14px;
        background-color: rgba(96, 144, 240, 0.89);
        position: fixed;
        width: 100%;
        bottom: 0;
        text-align: center;
    }

    .now2{
        display: flex;
        padding: 14px;
        background-color: rgba(96, 144, 240, 0.89);
        position: fixed;
        width: 100%;
        bottom: 0;
        text-align: center;
    }
}