* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Mukta', sans-serif;
}


.mascara-formulario {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    visibility: hidden;
    transition: visibility 1s linear;
    z-index: 3;
    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%);
}


nav {
    display: flex;
    align-items: center;
    gap: 30px;

}

nav a {
    font-size: 24px;
    color: white;
    cursor: pointer;
    text-decoration: none;

}

nav a:hover {
    color: #fa086d;
    transition: 1s color ease-in-out;
}

.logo-header {
    height: 80px;
    margin: 20px;

}



main {
    display: flex;
    height: 50vh;
    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%;

    position: fixed;
    top: 0;
    z-index: -2;
}

.mascara-video {
    z-index: -1;
    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%);
}


video {
    min-height: 100%;
    min-width: 100%;
    position: fixed;
    top: 0;
}

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;
}

button:hover {
    opacity: 40%;
    background: #fa086d;
    font-size: 14px;
    font-weight: bolder;

}


.logomarca {
    height: 200px;
    margin-top: 127px;
    margin-left: 147px;
}

.mario {
    height: 600px;

}


p {
    color: white;
    font-size: 20px;
}

.sobre-nos {
    max-width: 40%;

}

.fale-conosco {
    background: white;
    display: flex;
    gap: 20px;
    flex-direction: column;
    position: fixed;
    left: -290px;
    transform: translateX(-50%);
    top: 30%;
    padding: 20px;
    border-radius: 5px;
    transition: left 1s linear;
    z-index: 4;

}

element.style {
    left: -335px;
    transform: translateX(0px);
}

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;
}

/*----- Responsive -----*/
@media (max-width: 1150px) {

    p {
        display: none;
    }

    main {
        flex-direction: column;
        padding: 10px;
        height: 50vh;
        align-items: center;
    }
    .mario {
        width: 80%;
        height: auto;
        margin-top: 20px;
    }
    .logomarca {
        height: 220px;
        margin: 11px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }
    nav {

        gap: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 20px;

    }

    .logo-header {
        display: none;
    }

    button .contato {
        width: 115px;
        height: 29px;
        font-size: 20px;
        display: flex;
        align-items: center;
    }
}
nav a {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}