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

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

button:hover {
    font-size: 17px;
    background: rgb(255, 255, 255);
    color: black;
    border-radius: 5px;
    transition: 0.5s ease-in-out;
}

body {
    height: 100vh;
}

p {
    color: white;
    margin-right: 200px;
    text-align: center;
    margin-top: 10px;
}

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

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

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

.caixa-principal {
    width: 40%;
    margin-bottom: 200px;
}

.imagem-logo { 
    height: 200px;
}

.imagem-mario {
    height: 400px;
    margin-right: 150px;
    margin-bottom: 200px;
}

.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;
}

.link-whats img {
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 20px;
}

.caixa-link img {
    height: 60px;
    margin-top: 5px;
    margin-left: 5px;

}

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

.caixa-link {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px;
}

.caixa-link a:hover {
    color:#C51111;
    font-size: 26px;
    transition: 0.7s ease-in-out;
}

.fale-conosco {
    background: white;
    display: flex;
    gap: 20px;
    flex-direction: column;
    position: fixed;
    top: 50px;
    left: 50px;
    padding: 20px;
    border-radius: 5px;
    top: 30%;
    left: -350px;
    transition: left 1s ease-in-out;
}

.button-form {
    margin-right: 50px;
}

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

textarea {
    height: 100px;
    width: 320px;
    border-radius: 5px;
    border: 1px solid gray;
    padding-left: 5px;
    outline-color: #18D80F;
}

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

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

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

    .caixa-principal {
        display: flex;
        align-items: center;
        flex-direction: column;
        margin-top: 10px;
    }

    .imagem-mario {
        width: 70vw;
        height: auto;
        margin: 0 auto; /* Centraliza horizontalmente */
        margin-top: -150px;

    }

    .caixa-link img{
        display: none;
    }

    .imagem-logo {
        height: 25vh;
    }

    .caixa-link {
        margin: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 15px;
    }

    .caixa-link a{
        font-size: 17px;
        margin: 8px;
        margin-top: 8px;
    }
    .link-whats img {
        height: 35px;
        position: fixed;
        right: 20px;
        bottom: 20px;
    }

    .fale-conosco {
        gap: 0px;
    }

    button {
        margin-top: 10px;
        margin-left: 0px;
    }

    .button-form {
        margin-left: 70px;
        width: 155px;
        height: 45px;
    }
}