* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
}

.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;
}

.principal {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 100px;
}

.logo-mario {
    height: 200px;
}

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

button:hover {
    background-color:blue;
    transition: 0.5s ease-in-out;
}

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

.caixa-principal {
    width: 40%;
}

.caixa-principal p {
    color: white;
    font-size: 22px;
}

.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%;
    position: fixed;
    top:0;
    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%);
}

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

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

.header img{
    height: 60px;
}

.header a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    cursor: pointer;
}
.header a:hover{
    color:#c51111;
    font-size: 26px;
    transition: 0.5s ease-in-out;
}

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

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

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

@media (max-width: 1100px){
    p {
        display: none;
    }
    .principal {
        flex-direction: column;
        padding: 10px;
    }
    .caixa-principal {
        display:flex;
        align-items: center;
        flex-direction: column;

    }
    .imagem-mario-luigi {
        width: 80vw;
        height: auto;
    }
    .header {
        margin: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .header img {
        display: none;
    }

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

