* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button {
    background-color: #C51111;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 200px;
    height: 50px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 30px;
}

button:hover {
    background-color: rgb(4, 88, 4);
    transition: 0.5s ease-in-out;
}


.logo-mario {
    width: 300px;
    height: auto;
}

.logo-mario-luigi {
    width: 400px;
    height: auto;
}

body {
    height: 100vh;
}

.caixa-mae {
    display: flex;
    height: 100vh;
    justify-content: space-around;
    align-items: center;
    padding: 100px;
}

.caixa-principal {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    border-radius: 10px;
}

.caixa-video {
    position: fixed;
    top: 0;
    z-index: -1;
}

video {
    min-height: 100%;
    min-width: 100%;
    position: fixed;
    top: 0;
}

.mascara {
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
}

p {
    color: white;
    font-size: 25px;
}

.link-whatsapp img {
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 20px;
}

.header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px;

}

.header img {
    width: 50px;
    height: 60px;
}

.header a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.header a:hover {
    color: #C51111;
    font-size: 26px;
    transition: 0.5s ease-in-out;
}

.formulario-fale-conosco {
    display: flex;
    flex-direction: column;
    background-color: white;
    position: fixed;
    top: 30%;
    left: -300px;
    padding: 20px;
    border-radius: 10px;
    gap: 20px;
    transform: translateX(-50%);
    transition: 0.8s ease-in-out;
}

input {
    height: 30px;
    padding: 10px;
    border: 1px solid #C51111;
    border-radius: 5px;
    outline-color: rgb(7, 156, 7);
}

textarea {
    width: 200px;
    height: 100px;
    padding: 10px;
    border: 1px solid #C51111;
    border-radius: 5px;
    outline-color: rgb(7, 156, 7);

}

.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 0.5s ease-in-out;
}

@media (max-width: 1100px) {
    .caixa-mae {
        flex-direction: column;
        padding: 10px;
    }

    .caixa-principal {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 90%;
        padding: 20px;
    }

    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin: 10px;
    }

    .header img {
        width: 40px;
        height: 50px;
    }

    .header a {
        font-size: 20px;
    }

    .formulario-fale-conosco {
        width: 80%;
        left: -90%;
        top: 20%;
    }

    input,
    textarea {
        width: 100%;
    }

    button {
        width: 100%;
    }

    .logo-mario-luigi {
        width: 80%;
        height: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 10px;
    }

    .header img {
        width: 40px;
        height: 50px;
    }
}