@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;800&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}

body{
    background: linear-gradient(
        to right,
        #601DBE 0%,
        #601DBE 40%,
        #EFF3F6 40%,
        #EFF3F6 100%
    );
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

header{
    display: flex;
    padding-left: 15%;
    padding-top: 2%;
}

.imgMain{
    height: 80%;
    width: 75%;
}

main{
    display: flex;
    align-items: center;
}

.esquerda{
    display: flex;
    justify-content: flex-end;
}

.direita{
    display: flex;
    justify-content: flex-start;
}

.textos{
    display: flex;
    flex-direction: column;
}

.botoes{
    display: flex;
    flex-direction: row;
}

.linkBotao{
    padding-right: 16px;
}

footer{
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 0.75em;
    color: #9958F4;
    padding-bottom: 2%;
}

footer a{
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.8rem;
    color: #232323;
    font-size: 1rem;
    font-weight: 500;
}

h1{
    font-size: 3.43rem;
    font-weight: 500;
    color: #232323;
}

h5{
    color: #232323;
    font-size: 1rem;
    font-weight: 500;
    padding-top: 2%;
    padding-bottom: 10%;
}

@media (max-width: 1100px) {
    body{
        background: linear-gradient(
            #601DBE 0%,
            #601DBE 40%,
            #EFF3F6 40%,
            #EFF3F6 100%
        );
        justify-content: space-evenly;
        height:120vh;
    }


    main{
        flex-direction: column;
    }

    .esquerda{
        justify-content: flex-start;
    }

    .imgMain{
        width: 100%;
        height: 100%;
    }

    .direita{
        justify-content: flex-start;
        background-color: #EFF3F6;
    }

    .linkBotao{
        padding-right: 0;
        width: 100%;
        background-color: #EFF3F6;
        padding-bottom: 2rem;
    }

    footer{
        background-color: #EFF3F6;
    }
}

@media (max-width: 530px) {
    footer{
        flex-direction: column;
        gap: 1rem;
        text-align: left;
    }

    footer a{
        gap: 0;
    }

    body{
        height: 130vh
    }

    .botoes{
        gap: 2rem
    }
}

@media (max-width: 430px){
    h1{
        font-size: 2.5rem;
    }

    body{
        height: 140vh
    }
    
    .imgMain{
        height: 100%;
        width: 100%;
    }

    .botoes{
        gap: 2rem
    }

}