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

.logo-mario {
    height: 200px;

}

button {
    color: white;
    background-color: #c51111;
    border-radius: 3px;
    border: none;
    Width: 200px;
    height: 50px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 30px;
    transition: 0.5s;
}

button:hover {
    background-color: red;
}

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

body {
    Height: 100vh;

}

.caixa-principal {
    width: 40%;
}

.caixa-video {
    position: fixed;
    z-index: -1;
    top: 0;

}

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

}

.mascara {
    height: 100%;
    width: 100%;
    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;
}

.caixa-mae {
    display: flex;
    Height: 100vh;
    align-items: center;
    justify-content: space-around;
    padding: 100px;
}

p {
    color: white;
    font-size: 20px;
    font-family: 'Times New Roman', sans-serif;
    margin-top: 10px;
}

.link-whatsapp img {
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 20px;
}


.header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px;
    transition: 0.5s;
}


.header img {
    height: 60px;
}

.header a {
    color: white;
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
}

.header a:hover {
    color: #c51111;
    font-size: 22px;
    transition: 1s ease-in-out;
}

.formulario-fale-conosco {
    background-color: white;
    display: flex;
    gap: 20px;
    flex-direction: column;
    position: fixed;
    left: -300px;
    top: 35%;
    padding: 20px;
    border-radius: 5px;
    transition: left 1s ease-in-out;
}

button {
    color: white;
    background-color: #c51111;
    border-radius: 3px;
    border: none;
    Width: 200px;
    height: 50px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 30px;
    transition: 0.5s;
}

button:hover {
    background-color: red;
}

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

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

}

.mascara-formulario {
    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%);
    transition: visibility 1s ease-in-out;

}
















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

    .caixa-mae {
        display: flex;
        place-items: center;
        flex-direction: column;
        padding: 10px;

    }

    .caixa-principal {
        display: flex;
        align-items: center;
        flex-direction: column;
        line-height: 4.0;
        justify-content: center;



    }

    .imagem-mario-luigi {
        width: 80vw;
        height: auto;
    }

    .header {
        margin: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header img {
        height: 40px;
    }

    .header a {
        font-size: 13px;
    }

    p {
        display: flex;
        font-size: 12px;
        width: 200%;
        align-items: center;
        text-transform: uppercase;
        font-weight: bold;

    }

    .logo-mario {
        width: 70vw;
        height: auto;
    }


    .texto-longo {
        display: none;
    }

    .texto-pequeno {
        display: none;

    }


    .link-whatsapp img {
        height: 40px;
        position: fixed;
        right: 20px;
        bottom: 20px;

    }

}