* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-image: url('img/backgroud.jpeg');
   /* overflow: hidden; /*Desabilita scrol do mouse */
    height: 100%; /* Vh quer Tela inteira */

   
}

.caixa-mae {
    display: flex; /*Deixas todos elementos um do lado do outro */
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    width: 100%;
}



.caixa-principal {
    width: 60%;
   
}

.logo-mario {
    padding-left: 50px;
    height: 150px;
}

.imagem-MarioeLuide {   
        
    height: 400px;
}

.caixa-video {
    top: 0; /* Onde posicionar o video */
    position: fixed; /*Posição fixa */
    z-index: -1; /*Deixar video atras do elementos */
}

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

}

.mascara {
    height: 100%;
    width: 100%;
    background: linear-gradient(109deg, #262d3dfc 15%, #394458b3 50%, #4c5770fc 85%);
    position: fixed;
    top: 0;
}

button {
    margin-left: 50px;
    margin-top: 20px;
    background-color: #C51111;
    color: white;
    width: 200px;
    height: 50px;
    border-radius: 3px;
    border: none; /* Tirar borda */
    cursor: pointer;
    text-transform: uppercase; /* Deixar o testo em Maiusculo*/
    font-weight: bold; /* bold e negrito */
}


button:hover {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.733);
    background-color: blue;
    transition: 0.8s ease-in-out;
}
p {
    padding-left: 60px;
    text-align: justify;
    width: 500px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

.logo-whatsapp {
    height: 50px;
    position: fixed;
    right: 20px; /*Jogando todo img para direita */
    bottom: 20px ; /*Jogando toda para baixo */
   
}

header {
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px; /*Distanciamento entre itens */
}

header img {
    max-height: 60px;
}


header a {
    text-decoration: none;
    cursor: pointer;
    font-size: 20px;
    color: white;

}

header a:hover {
    color: #C51111;
    font-size: 21px;
    transition: 0.8s ease-in-out; /* Tempo que vai demorar */
} 



   
.formulario {
    background-color: white;
    display: flex;
    flex-direction: column; /*direção dos items */
    position: fixed;
    border-radius: 8px; 
    top: 20%;
    left: -280px;
    transform: translateX(-40);
    transition: left 1s ease-in-out;
    gap: 15px; /*Espaçamento dos itens*/
    padding: 20px;
   
}


input {
    border-radius: 5px;
    border: 1px solid gray;
    font-size: 15px;
    padding-left: 5px;
    height: 50px;
    outline-color: #289a3bc0;
}


textarea {
    height: 100px;
    width: 250px;
    border-radius: 5px;
    border: 1px solid gray;
    font-size: 15px;
    padding-left: 5px;
    outline-color: #289a3bc0;
}

.mascara-formulario {
    visibility: hidden;
    position: fixed;
    background: linear-gradient(109deg, rgba(10, 12, 15, 0.99) 15%, rgba(9, 10, 13, 0.7) 50%, rgba(7, 9, 12, 0.99) 85%);
    top: 0;
   min-height: 100%;
   min-width: 100%;
   transition: visibility 1s ease-in-out;
}

#button-form {
    margin-left: 50px;
    margin-top: 30px;
    background-color: #C51111;
    color: white;
    width: 200px;
    height: 50px;
    border-radius: 3px;
    border: none; /* Tirar borda */
    cursor: pointer;
    text-transform: uppercase; /* Deixar o testo em Maiusculo*/
    font-weight: bold; /* bold e negrito */

}

#button-form:hover {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.733);
    background-color: green;
    transition: 0.8s ease-in-out;
}

/* 
    max - valor menor npx, aplica o css do media
    min - valor maior npx, aplica o css do media 

*/

@media(max-width: 1100px) {

    p {
        display: none;
    }

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

    .logo-mario {
        padding-left: 0px;
        width: 80vw;
        height: auto;
    }

    button {
        margin-left: 30px;
        margin-top: 14px;
        margin-bottom: 30px;
    }

    .caixa-principal {
        width: 40vh;
        height: auto;
    }

    .imagem-MarioeLuide {
        height: 80vw;
    }

    header {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    header img {
        display: none;
    }

    header a {
        font-size: 14px;
        font-weight: bold;
    }
}