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



.mascara-form {
    visibility: hidden;
    transition: visibility 1s linear;
    z-index: 3;
    position: fixed;
    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%);
}

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

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

header a:hover{
    color: #C51111;
    transition: 0.5s color ease-in-out;
}
.logo-header {
    height: 80px;
    margin: 20px;
}

.container {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: space-evenly;
}

.background {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100vh;
}

.conteudo-background {
    height: auto;
    width: auto;
    min-width: 100%;
    max-width: 100%;
    position: fixed;
    top: 0;
}

.mascara-video {
    z-index: 2;
    position: fixed;
    top: 0;
    width: 100%;
    height: 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%);
}



button {
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;
    text-transform: uppercase;
    border: 0;
    padding: 10px 0;
    border-radius: 3px;
    background-color: #C51111;
    width: 200px;
    height: 50px;
    color: white;
    cursor: pointer;
    margin-top: 30px;
}

.logo {
    height: 200px;
}

.mario {
    height: 60%;
}

p {
    color: white;
    font-size: 20px;
}

.sobre-nos {
    max-width: 40%;
}

.fale-conosco {
    position: fixed;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px;
    border-radius: 10px;
    gap: 20px;
    left: -330px;
    transition: left 1s linear;
    z-index: 4;
    /* transform: translateX(0); */
}

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

textarea {
    height: 80px;
    width: 300px;
    border-radius: 5px;
    border: 1px solid gray;
    padding-left: 10px;
    outline-color: #18D80F;
    padding: 10px;
}

.whatsapp {
    position: fixed;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
}

.whatsapp img {
    height: 60px;
}

@media (max-width: 1000px) {
    p {
        display: none;
    }

    .caixa-mae {
        flex-direction: column;
        padding: 10px;
    }

    .caixa-principal {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .header {
        margin: 20px;
        justify-content: center;

    }

    .header img {
        display: none;
    }

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

}