@charset "UTF-8";
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

body {
    height: 100vh;
}

.caixa-mae {
    display: flex;
    padding: 100px;
    align-items: center;
    justify-content: space-around;
}
.caixa-principal {
    width: 50% ;
    
}
.caixa-video {
    position: fixed;
    top: 0;
    z-index: -1;

}

video {
    min-height: 100%;
    min-width: 100%;
    position: fixed;
    top: 0;
}

img {
    height: 200px;
}

p {
    color: whitesmoke;
}
button {
    background-color: rgb(133, 7, 7);
    color: white;
    border: none;
    border-radius: 3px;
    width: 200px;
    height: 50px;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 30px;

}

button:hover {
    background: red;
    color: rgb(255, 217, 0);
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.5s ease-in-out;
}

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

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

.logo-mario {
    height: 200px;
    margin-left: 10px;
}

.link-whatsapp img{
    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;
    font-size: 24px;
    cursor: pointer;
}

.header a:hover {
    color: #c51111;
    transition: 0.5s ease-in-out;
    font-size: 26px;
}

.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;
    /*
    left: 50%;
    transform: translateX(-50%);
    */
}

input {
    height: 40px;
    border-radius: 5px;
    border: 1px solid gray;
    padding-left: 5px;
    outline-color: yellowgreen;
}

textarea {
    width: 270px;
    height: 100px;
    border-radius: 5px;
    border: 1px solid gray;
    padding-left: 5px;
    outline-color: yellowgreen;
    padding: 10px;
}

.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: visiblity 1s ease-in-out;
}

/* Media query */

/* max -> Valor menor que Npx, aplica o CSS do MEDIA 
   min -> Valor maior que Npx, aplica o CSS do MEDIA
*/

@media(max-width: 1100px){
    
    p {
        display: none;
    }

    .caixa-mae {
        flex-direction:column;
        padding: 10px;
        justify-content: flex-start;
    }

    .caixa-principal {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .imagem-mario-luigi {
        width: 50vw;
        height: auto;
        margin-top: 30px;
    }

    .header {
        margin: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header img{
        display: none;
    }

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

    .logo-mario {
        width: 40vh;
        height: auto;
    }

    .header a:hover {
    color: #c51111;
    transition: 0.5s ease-in-out;
    font-size: 22px;
}
}