.container {
    width: 60vw;
    height: 100vh;
    background-color: rgb(34, 34, 34);
    position: relative;
    box-sizing: border-box;
    padding-block: 10vh 0;
    padding-left: 5vw;
}

.container h1{

    font-size: 3em;
    width: 25vw;
    margin-bottom: 5vh;

}

.container::before {
    content: "";
    position: absolute;
    width: 15vw;
    height: 150%;
    background-color: rgb(34, 34, 34);
    left: 50vw;
    top: -30vh;
    z-index: 2;
    transform: rotate(5deg);
    filter: drop-shadow(10vw 100px 40px rgba(0, 0, 0, 0.3));
}

body{

    overflow: hidden;
    display: flex;

}

.foto {
    width: 40vw;
    height: 100vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.foto {
    position: relative;
    z-index: 0; /* Aumenta */
}

.container-up {
    position: absolute;
    z-index: 9999; /* Bem acima */
}


.background {
    margin-top: 7vh;
    height: 100vh;
    filter: blur(5px);
}

.container-up{

    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 30vw;
    height: 60vh;
    background-color: rgb(34, 34, 34);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5vh 5vw;
    box-sizing: border-box;
    justify-content: space-around;

}

.container-up h1{

    font-size: 3em;
    text-align: center;
    margin: 0;

}

.btn1{

    width: 100%;
    height: 15vh;
    z-index: 1000;

}

.container-up-mobile{

    display: none;
    width: 100vw;
    height: 60vh;
    background-color: rgb(34, 34, 34);
    flex-direction: column;
    align-items: center;
    padding: 5vh 5vw;
    box-sizing: border-box;
    justify-content: space-around;
    margin-top: 20vh;

}

@media (max-width: 768px){
    *{

        box-sizing: border-box;

    }

    body{

        flex-direction: column;
        overflow-y: scroll;
        min-width: none;
        background-color: rgb(34, 34, 34);

    }

    .foto{

        display: none;

    }

    .container{

        width: 100%;
        height: auto;
        align-items: center;
        display: flex;
        flex-direction: column;
        padding: 0;
        box-sizing: border-box;
        padding: 5vw;

    }

    .container::before{

        display: none;

    }

    .container h1{

        text-align: center;
        width: 100%;

    }

    .slider{

        width: 100%;

    }

    .container-up-mobile{

        display: flex;
        width: 100%;

    }
        
}