* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Mukta', sans-serif;
}

button {
    background: linear-gradient(95deg, rgba(209, 55, 17, 1) 20%, rgba(17, 214, 60, 0.96) 90%);
    width: 200px;
    height: 50px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    margin-top: 30px;
}

.logo-mario {
    width: 350px;
}

.logo-mario-luigi {
    height: 500px;

}

.caixa-esquerda {
    width: 40%;
}

body {
    height: 100vh;

}

main {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 100px;
    height: 100vh;


}

.caixa-video {
    position: fixed;
    top: 0;
    z-index: -1;
}

video {
    min-width: 100vw;
    min-height: 100vh;
}

.mascara-video {
    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;
    width: 100%;
    height: 100%;

}

p {
    color: white;
    font-size: 20px;
}

.cabecalho {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px;
    cursor: pointer;
}

.cabecalho img {
    width: 70px;
}

.cabecalho a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    cursor: pointer;


}

.cabecalho a:hover {
    color: rgba(209, 55, 17, 1);
    transition: 0.5s ease-in-out;

}

.caixa-link-whatsapp {
    position: fixed;
    bottom: 15px;
    right: 13px;
    cursor: pointer;

}

.link-whatsapp img {
    width: 70px;

}

.link-whatsapp a {
    cursor: pointer;

}

form {
    background-color: white;
    position: fixed;
    top: 40%;
    left: -345px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 3px;
    width: 350px;
    z-index: 1;
    transition: 0.5s left ease-in-out;


}

form input {
    height: 40px;
    padding-left: 5px;
    border-radius: 5px;
    border: 1px solid gray;
    outline-color: #18d80f;
}

form textarea {
    padding-left: 5px;
    border-radius: 5px;
    border: 1px solid gray;
    outline-color: #18d80f;
    height: 100px;
}

.mascara-formulario {
    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%);
     visibility: hidden;
     transition: 0.5s visibility ease-in-out;
}

