@import url(style.css);

main{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
main div.container-1{
    width: 100%;
    height: 70vh;
    margin-bottom: 15vh;

    display: flex;
    align-items: center;
    justify-content: space-evenly;


    /* background-color: purple; */

}
main div.container-1 div.text-shoyo{
    width: 40%;
    height: 50vh;
    background-color: var(--preto);
    color: var(--branco);

    margin-left: 50px;
    padding: 20px;
}

main div.container-1 div.text-shoyo h3{
    font-weight: bolder;
    font-size: 2em;
}

main div.container-1 div.text-shoyo p{
    text-align: left;
    width: 80%;
    height: auto;
    font-weight: normal;
    font-size: 1.1em;
    margin-top: 10px;

    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    

    /* background-color: green; */
}

main div.container-1 div.imgs-shoyo{    
    width: 50%;
    height: 60vh;
    display: flex;
    position: relative;

}
main div.container-1 div.imgs-shoyo div{
    width: 15vw;
    height: auto;
    position: absolute;
}
main div.container-1 div.imgs-shoyo div:nth-child(1){
    right:20%;
    top:10%
}

main div.container-1 div.imgs-shoyo div:nth-child(2){
    top: 30%;
    left: 10%;
}

main div.container-1 div.imgs-shoyo div:nth-child(3){
    right: 20%;
    top: 70%;
}

main div.container-1 div.imgs-shoyo div img{
    width: 100%;
    height: auto;
    background-position: center;
    background-size: contain;
    border: 2px solid black;
}

main div.container-2{
    width: 100%;
    height: 60vh;
    background-color: var(--laranja);
    color: var(--preto);
}

main div.container-2 h1{
    font-size: 5em;
    margin-left: 2vw;
    margin-top: 2vh;
}

main div.container-2 p{
    margin-top: 2vh;
    font-size: 2em;
    text-align: left;
    
    margin-left: 2vw;   
}

main div.container-3{
    width: 100%;
    height: 40vh;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
main div.container-3 p{
    font-size: 1.7em;
    text-align: center;
    width: 80%;
    height: auto;
    font-weight: bolder;
    margin-bottom: 2vh;

}

main div.container-3 button{
    width: 15vw;
    height: 8vh;
    background-color: var(--preto);
    color: var(--laranja);
    border: var(--laranja) solid 2px;
    font-size: 1.4em;

    transition: .5s;
}
/* main div.container-3 button::before{
    content: "";
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
main div.container-3 button::before:hover{
    transform: translate3d(100%, 0, 0);
} */


main div.container-3 button:hover{
    color: var(--preto);
    background-color: var(--laranja);

    cursor: pointer;

    
    transition: .3s;
}


/* main div.invi{
    width: 100%;
    height: 10vh;
    background-color: none;
} */



@media screen and (min-width:1440px) {

    main div.container-1 div.imgs-shoyo div{
        max-width: 10vw;
    }
  
    main div.container-1 div.imgs-shoyo div:nth-child(1){
        right:10%;
        top:10%
    }
    
    main div.container-1 div.imgs-shoyo div:nth-child(2){
        top: 30%;
        left: 10%;
    }
    
    main div.container-1 div.imgs-shoyo div:nth-child(3){
        right: 20%;
        top: 70%;
    }   
    
    main div.container-1 div.text-shoyo p{
        font-size: 1.1em;
    }
    main div.container-2{
        height: 80vh;
    }
    main div.container-2 p{
        font-size: 2em;
    }
}

@media screen and (max-width: 1024px){
    main div.container-1 div.text-shoyo p{
        font-size: 0.8em;
    }
    main div.container-1 div.imgs-shoyo div:nth-child(1){
        right: 10%;
        top:0%

    }
    
    main div.container-1 div.imgs-shoyo div:nth-child(2){
        top: 30%;
        left: 10%;
    }
    
    main div.container-1 div.imgs-shoyo div:nth-child(3){
        right: 20%;
        top: 70%;
    }   

    main div.container-2 p{
        font-size: 1.2em;
        font-weight: bold;
    }

    main div.container-3 button{
        font-size: 1em;
    }
    main div.container-3 button:hover{
        
        transition: .3s linear;
        transform: translateY(-5px);
    }

    main div.container-3 button:active{
        transition: .3s linear;
        transform: translateY(3px);
    }

}

@media screen and (max-width: 780px){

  
    main div.container-1{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: flex;
        margin-bottom: 20px;
        margin-top: 20vh;

        height: auto;
        padding-bottom: 5vh;
    }

    main div.container-1 div.text-shoyo{
        max-width: 90vw;
        width: 90vw;
        height: 40vh;
        margin: 10px;

        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;


        text-align: center;
        margin: 0;
    }
    main div.container-1 div.text-shoyo p{
        font-size: 1em;
    }
    main div.container-1 div.imgs-shoyo{
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 90vw;
        height: auto;
        margin-bottom: 10vh;

    }
    main div.container-1 div.imgs-shoyo div{
        width: 20vw;
        margin: 10px;
        position: static;
    }
    main div.container-1 div.imgs-shoyo div img{
        width: 100%;
        height: auto;
    }
    main div.container-2{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        
        height: auto;
        padding-bottom: 5vh;
    }
    main div.container-2 p{
        text-align: center;
        font-size: 1em;
    }

    main div.container-3 p{
        font-size: 1em;
    }
    main div.container-3 button{
        width: 50vw;
    }

    
}
@media screen and (max-width: 500px){

    main div.container-1{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: flex;
        margin-bottom: 20px;
        margin-top: 0;
        width: 100vw;
        height: auto;
        padding-bottom: 5vh;
    }

    main div.container-1 div.text-shoyo{
        max-width: 90vw;
        width: 90vw;
        height: auto;
        margin: 10px;
        
        padding-bottom: 5vh;

        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;


        text-align: center;
        margin: 0;

        
        
    }

    main div.container-1 div.text-shoyo h3{
        font-size: 2.5em;
    }
    main div.container-1 div.text-shoyo p{
        font-size: 1em;
        text-align: center;
    }
    main div.container-1 div.imgs-shoyo{
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 90vw;
        height: auto;
        margin-bottom: 2vh;
        margin-top: 2vh;

        
    }
    /* main div.container-1 div.imgs-shoyo{
    } */
    main div.container-1 div.imgs-shoyo div{
        width: 50vw;
        margin: 10px;
        position: static;
        height: auto;
    }
    main div.container-1 div.imgs-shoyo div img{
        width: 100%;
        height: auto;
    }
    main div.container-2{
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        height: auto;

    }
    main div.container-2 h1{
        font-size: 3em;
    }
    main div.container-2 p{
        text-align: center;
        font-size: 1em;
    }
    main div.container-3{
        height: auto;
        padding-top: 2vh;
        padding-bottom: 3vh;
    }
    main div.container-3 p{
        font-size: 1em;
    }
    main div.container-3 button{
        width: 50vw;
        font-size: 1.2em;
    }


}