body {
    background: black;
    font-family: 'Montserrat';
    color: #D2FF01;
}
    
.lp {
    background: url(/imgs/bg-lp.webp) center top/cover;
    position: relative;
    padding: 0 30px;
}

.blur {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: url(/imgs/bg-lp.webp) center top/cover;
    filter: blur(10px);
    opacity: 0.5;
    display: none;
}

@media (min-height: 1150px){
    .blur {
        display: block;
    }
    
    .lp {
        max-width: 3000px;
        width: 100%;
        height: 1150px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 64px;
        
        .container-fluid {
            min-height: 100% !important;
        }
    }
    
    .logo p, .logo li {
        font-size: 14px !important;
    }
}

.container-fluid {
    max-width: 1800px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: end;
    
    .boas-vindas {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        pointer-events: none;
        user-select: none;
        
        .logo {
            position: absolute;
            width: 27%;
            bottom: 12%;
            left: 8%;
            
            p {
                font-weight: 500;
                margin: 0;
                font-size: 1.6vh;
            }
            
            blockquote {
                border-left: 4px solid #D2FF01;
                padding-left: 1.6vh;
                margin-top: 10px;
                
                ul {
                    margin: 0 !important;
                    padding: 0 0 0 1.6vh !important;
                }
                
                li {
                    font-size: 1.6vh;
                }
            }
        }
    
        .mockup {
            width: 50%;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translatex(-50%);
        }
        
        img {
            width: 100%;
        }
    }
    
    .intro {
        width: 33%;
        
        .viva {
            width: 90%;
            margin: 0 0 10px -30px;
            display: block;
        }
        
        .start {
            text-align: center;
            
            h1 {
                font-size: 16px;
                font-weight: bold;
                text-transform: uppercase;
            }
            
            h2 {
                font-size: 20px;
                text-transform: uppercase;
                font-weight: 400;
            }
        }
        
        .form {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 30px;
            
            .input-email {
                position: relative;
                width: 100%;
                
                input {
                    background: none;
                    border: none;
                    outline: none;
                    box-shadow: none;
                    font-family: 'Montserrat';
                    font-weight: bold;
                    text-align: center;
                    color: white;
                    
                    &::placeholder {
                        color: #fff;
                        opacity: 0.7;
                    }
                }
                
                &:after, &:before {
                    content: '';
                    width: 100%;
                    height: 4px;
                    border-radius: 10px;
                    background: #D2FF01;
                    position: absolute;
                    bottom: -10px;
                    left: -15px;
                    transform: rotate(-0.4deg);
                    pointer-events: none;
                }
                
                &:before {
                    width: 105%;
                    left: -20px;
                    transform: rotate(1deg);
                }
            }
            
            button {
                background: none;
                font-weight: bold;
                cursor: pointer !important;
                border: none !important;
                outline: none !important;
                box-shadow: none;
                position: relative;
                color: black;
                
                i {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: #D2FF01;
                    display: block;
                    border-radius: 3px;
                    transform: rotate(2deg) scale(1.1);
                    transition: .27s ease;
                    box-shadow: inset 0 0 0 100px rgba(0,0,0,0);
                }
                
                &:hover i {
                    transform: rotate(-1deg) scale(1.2);
                    box-shadow: inset 0 0 0 100px rgba(0,0,0,0.1);
                }
                
                span {
                    position: relative;
                    z-index: 2;
                    font-size: 18px;
                }
            }
        }
        
        .insta {
            margin-top: 48px;
            h3 {
                font-size: 18px;
                text-transform: uppercase;
                font-weight: bold;
            }
            
            a.insta-btn {
                display: inline-flex;
                align-items: center;
                position: relative;
                gap: 6px;
                text-decoration: none;
                font-weight: bold;
                font-size: 18px;
                color: #D2FF01;
                transition: .27s ease;
                
                i {
                    font-size: 26px;
                    color: #f556b1;
                }
                
                span {
                    display: block;
                    width: calc(100% + 20px);
                    height: 4px;
                    border-radius: 10px;
                    background: #D2FF01;
                    position: absolute;
                    bottom: -4px;
                    left: -10px;
                    transform: rotate(-0.4deg);
                    pointer-events: none;
                    transition: .27s ease;
                }
                
                &:hover {
                    transform: scale(1.1);
                    
                    span {
                        transform: rotate(2deg);
                    }
                }
            }
        }
    }
}

.boas-vindas-mobile, .sobre-mobile {
    display: none;
}

@media (max-width: 1200px) {
    .boas-vindas {
        display: none !important;
    }
    
    .lp {
        padding: 0 15px;
    }
    
    .boas-vindas-mobile, .sobre-mobile {
        display: block;
        
        img {
            width: 100%;
        }
        
        .logo img {
            max-width: 200px;
            margin: 50px 0 20px;
        }
        
        .mockup img {
            max-width: 500px !important;
            margin: 0 auto !important;
            display: block;
        }
    }
    
    .sobre-mobile {
        margin-top: 100px;
        
        p, li {
            font-size: 15px;
            font-weight: 500;
        }
        
        blockquote {
            border-left: 4px solid #D2FF01;
            padding-left: 10px;
            margin-top: 10px;
        }
    }
    
    .container-fluid {
        justify-content: center !important;
        flex-direction: column;
        
        .intro {
            width: 100%;
            max-width: 600px;
            
            .viva {
                margin: 0 0 10px !important;
            }
            
            .form {
                flex-direction: column;
                max-width: 400px;
                margin: 30px auto 0;
                button {
                    margin-top: 10px;
                }
            }
        }
        
        .sobre {
            margin-bottom: 40px;
        }
    }
}

.sucesso {
    position: relative;
    padding: 10px 0;
    margin-top: 30px;
    
    p {
        position: relative;
        font-weight: bold;
        margin: 0;
    }
    
    &:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: #111;
        transform: scale(1.1) rotate(1deg);
    }
}