* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    color: white;
    font-family: "Madimi One", sans-serif;
}

body {
    overflow: hidden;
}

header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px;
}

.logo-header {
    height: 80px;
}

.link-logo-mario {
    cursor: pointer;
}

.link-header {
    cursor: pointer;
    font-size: 24px;
    text-decoration: none;
}

.link-header:hover {
    color: #C51111;
    font-size: 26px;
    transition: 0.5s ease-in-out;
}

.logo-mario {
    height: 200px;
}

.home-button {
    background: #C51111;
    border-radius: 3px;
    width: 200px;
    height: 50px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-top: 30px;
}

.home-button:hover {
    background: #1839e7;
    font-size: 14px;
    width: 205px;
    height: 55px;
    transition: 0.3s ease-in-out;
}

p {
    font-size: 18px;
    margin: 40px 0px;
}

.p-cima {
    font-size: 30px;
    font-weight: 500;
}

.p-baixo {
    font-size: 20px;
    font-weight: 100;
}

.img-mario-luigi {
    height: 500px;
}

body {
    height: 100vh;
}

.caixa-mae {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100vw;
    height: 100vh;
    padding: 100px;
    margin-top: -100px;
}

.caixa-esquerda {
    width: 40%;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

video {
    min-height: 100%;
    min-width: 100%;
    position: fixed;
    top: 0;
}

.mascara {
    height: 100vh;
    width: 100vw;
    background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
    position: fixed;
    top: 0;
}

.whatsapp {
    position: fixed;
    right: 10px;
    bottom: 10px;
}

.link-whats {
    width: 70px;
}

form {
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: fixed;
    top: 30%;
    left: -300px;
    padding: 20px;
    border-radius: 10px;
    z-index: 1;
    transition: left 0.5s ease-in-out;
}

input {
    color: black;
    height: 40px;
    border-radius: 5px;
    border: 1px solid gray;
    padding-left: 5px;
    outline-color: #18D80F;
}

textarea {
    color: black;
    height: 100px;
    width: 270px;
    border-radius: 5px;
    border: 1px solid gray;
    padding-left: 5px;
    outline-color: #18D80F;
}

.form-button {
    background: #C51111;
    border-radius: 3px;
    width: 200px;
    height: 50px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin: 30px auto 0px auto;
    display: block;
}

.form-button:hover {
    background: #1839e7;
    font-size: 14px;
    width: 205px;
    height: 55px;
    transition: 0.3s ease-in-out;
}

.mascara-form {
    visibility: hidden;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(109deg, rgba(10, 12, 16, 0.99) 15%, rgba(10, 12, 16, 0.7) 50%, rgba(10, 12, 16, 0.99) 85%);
}

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

    p {
        display: none;
    }

    .caixa-mae {
        padding: 10px;
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 100px;
    }

    .mascara {
        width: 200vw;
        height: 200vh;
    }

    .header {
        width: 100vw;
    }

    .caixa-esquerda {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .video-bg {
        left: -70%;
    }

    .img-mario-luigi {
        width: 70vw;
        height: auto;
        margin: 30px auto;
    }

    header {
        gap: 20px;
        margin: 30px 0px;
        justify-content: center;
    }

    header img {
        display: none;
    }

    .link-header {
        font-size: 30px;
        margin: 0 10px;
    }

}

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

    .caixa-mae {
        margin-top: 50px;
    }

    header {
        display: none;
    }

    .logo-header {
        height: 60px;
    }

    .img-mario-luigi {
        width: 80vw;
    }

    .home-button {
        margin: 50px 0 20px 0;
    }
}