*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

.page2{
    background: linear-gradient(to left, rgb(0, 247, 255), blue);
}

.page3{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: green;
}

section{
    height: 100vh;
    scroll-snap-align: start;
    position: sticky;
    top: 0;
    left: 0;
}

.back{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
}

.back video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -2;
}

.back::after{
    content: '';
    width: inherit;
    height: inherit;
    top: 0;
    left: 0;
    position: absolute;
    background: radial-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 1));
    z-index: -1;
}

header{
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

header .nav{
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav .nav-link{
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    color: white;
}

.nav-link::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 60%;
    height: 1px;
    background: yellow;
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s;
}

.nav-link:hover::after{
    transform: scaleX(1);
    transform-origin: right;
    transition: .4s;
}

.nav li{
    transition: .2s;
}

.nav li:hover{
    transform: translateY(-5px);
}

.main{
    padding: 2px 2px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    width: 100%;
    height: 100%;
    max-width: 1280px;
}

.main .conteudo{
    display: flex;
    justify-content: center;
    gap: 40px;
}

.conteudo p{
    text-align: justify;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgb(177, 177, 1);
    max-width: 550px;
}

.acessos{
    margin-top: 10px;
}

.acessos a{
    font-size: 18px;
    text-decoration: none;
    color: white;
    border-right: solid yellow 1px;
    padding-right: 15px;
}

.acessos a:hover{
    color: rgb(177, 177, 1);
}

.acessos button{
    margin-left: 10px;
    cursor: pointer;
    padding: 2px 10px;
    font-size: 20px;
    border-radius: 20px;
    border: 0;
    background-color: rgb(177, 177, 1);
    transition: .2s;
    transform: skew(-10deg);
}

.acessos button:hover{
    transform: scale(1.05);
}

.interface{
    height: 100vh;
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
}

.cont{
    margin: auto;
    height: 100%; 
}

.cont .flex{
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: inherit;
}

.txt-leads{
    text-align: center;
}

.txt-leads h1{
    color: white;
    font-size: 1.4em;
    font-weight: 500;
}

.txt-leads span{
    font-size: 2em;
    font-weight: 700;
}

.txt-leads p{
    color: white;
    font-size: 1.5em;
}

.txt-leads p{
    font-size: 1.8em;
    font-weight: 600;
}

.txt-leads img{
    width: 420px;
}

form{
    padding: 40px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.486);
    border-radius: 20px;
}

form h2{
    text-align: center;
    color: white;
    font-size: 2em;
    line-height: 20px;
    margin-bottom: 40px;
}

form h2 span{
    font-size: 0.8em;
}

.input-box{
    margin-bottom: 10px;
}

.input-box label{
    display: block;
    color: white;
}

.input-box input{
    width: 100%;
    padding: 10px;
    outline: none;
    border-radius: 10px;
    border: none;
}

.btn-enviar{
    margin-top: 40px;
    text-align: center;
    justify-content: center;
}

.btn-enviar input{
    width: 140px;
    height: 50px;
    border: none;
    background-color: aqua;
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
}

@media screen and (max-height: 875px){
    .acessos{
        margin-top: 2px;
    } 

    .main{
        margin-top: 10px;
    }
}

@media screen and (max-width: 1080px){
    header img{
        display: none;
    }

    .main{
        margin-top: 10px;
    }

    .main .conteudo{
        margin-left: 6%;
        margin-right: 6%;
        flex-direction: column;
        margin-top: 20px;
        gap: 20px;
    }

    .conteudo p{
        font-size: 15px;
        padding-top: 10px;
        padding-left: 4%;
        padding-right: 4%;
        margin-left: auto;
        margin-right: auto;
    }

    header{
        padding: 40px 4%;
        gap: 20px;
    }

    header .nav{
        gap: 20px;
    }

    .nav .nav-link{
        font-size: 15px;
        font-weight: 200;
    }

    .acessos{
        margin-top: 10px;
    } 

    .acessos a{
        font-size: 15px;
    }

    .acessos button{
        padding: 0 10px;
        font-size: 18px;
    }

    section.page2{
        position: relative;
        height: 200vh;
    }

    .cont .flex{
        flex-direction: column;
        justify-content: none;
    }

    .txt-leads p span{
        display: none;
    }

    .form-leads{
        margin: 0 10px;
    }
}