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

.logo-mario {
    width: 350px;

}

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

.logo-luidi-mario {
    height: 500px;
}

.caixa-infor-texto{
    width: 40%;
}


body{
    height: 100vh;
}

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

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

video{
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.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%
    );
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

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

.cabecalho {
    display: flex;
    align-items: center; 
    gap: 30px;
    padding: 20px;

}

.cabecalho img {
    width: 70px;

}

.cabecalho a {
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.cabecalho a:hover {
    color: #c51111;
    transition: 0.5s ease-in-out;
}

.link-whatsapp img {
    width: 60px;
    
}

.caixa-link-whatsapp {
    position: fixed;
    bottom: 15px;
    right: 12px;
    cursor: pointer;

}

form {
    background-color: white;
    position: fixed;
    top: 40%;
    left: -340px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
    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 {
    height: 100px;
    padding-left: 5px;
    border-radius: 5px;
    border: 1px solid gray;
    outline-color: #18d80f;
}

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

}

@media (min-width: 1100px) {
    .caixa-infor-texto{
        width: 40%;
    }

}