* {
    font-family: "Roboto", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    height: 100vh;
    /* background-image: url(img/CAPADEFUNDO.jpg);
    background-repeat: no-repeat;
    background-size: calc(100%);
    background-position: center;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;*/
}

.caixa-video {
    position: fixed;
    top: 0;
    z-index: -1;
}

video {
    width: 100vw;
}


.header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 30px
}

.header img {
    height: 100px;
    border-radius: 60px;
    margin: 10px 20px;
}

.header a {
    color: #c51111;
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
}

.header a:hover {
    color: #fff;
    font-size: 26px;
    transition: 0.6s ease-in-out;
}

.header a:active {
    transform: scale(0.95);
}

.social-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.social-icons img {
    width: 40px;
}

.caixa-mae {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 100px;
    margin: -138px;
    height: 100vh;
}

.caixa-principal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.caixa-principal h1 {
    font-size: 65px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    /* -webkit-text-stroke:3px #ffff;
    font-weight:bold;*/
}

.caixa-principal p {
    text-align: center;
    font-size: 35px;
    color: #181717;
    font-weight: bold;
    text-transform: uppercase
}

button {
    font-size: 16px;
    font-weight: bold;
    background-color: #ff4d4d;
    color: white;
    width: 200px;
    height: 50px;
    border: none;
    border-radius: 10px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e60000;
    transform: scale(1.05);
}

button:active {
    transform: scale(0.95);
}

.botao-formulario-enviar {
    margin-top: 10px;
    /* Dá um espaçamento do textarea */
    padding: 10px 20px;
    border: none;
    background-color: #ff3366;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-left: 35px;
    transition: background-color 0.3s ease;
}

.botao-formulario-enviar:hover {
    background-color: #e60000;
    transform: scale(1.05);
}

.formulario-fale-conosco {
    background-color: rgb(253, 250, 250);
    display: flex;
    gap: 20px;
    flex-direction: column;
    position: fixed;
    left: -300px;
    top: 30%;
    padding: 20px;
    border-radius: 7px;
    transition: left 1s ease-in-out;
}

input {
    height: 40px;
    border-radius: 5px;
    border: 1px solid rgb(141, 140, 138);
    padding-left: 5px;
    outline-color: #df6161;
}

textarea {
    width: 270px;
    height: 100px;
    border-radius: 5px;
    border: 1px solid rgb(141, 140, 138);
    padding-left: 5px;
    outline-color: #df6161;
}

/*Responsividade*/
@media (max-width: 768px) {

    .header {
        flex-direction: column;
        align-items: center;
        gap: 2px;
        margin: 20px 0;
    }

    .header img {
        height: 80px;
        margin: 10px;
    }

    .header a {
        font-size: 18px;
    }

    .caixa-mae {
        flex-direction: column;
        padding: 100px;
        margin: 0;
        margin-top: 10px;
        align-items: center;
        height: 100vh;
        background: linear-gradient(90deg, rgba(36, 0, 0, 1) 8%, rgba(176, 7, 7, 1) 100%);

    }

    .video {
        width: 115vw;
    }

    .caixa-video {
        max-width: 100vh;
    }

    .caixa-principal {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 100vh;
        flex-direction: column;
        position: absolute;
    }

    .caixa-principal h1 {
        display: flex;
        font-size: 24px;
        color: #FFF;
        margin-top: -235px;
    }

    .caixa-principal p {
         display: flex;
        font-size: 24px;
        color: #181616;
        margin-top:0px;
        padding: 10px;
    }

    .Entre-em-contato {
        width: 100%;
        max-width: 250px;
    }

    textarea {
        width: 100%;
    }

    .formulario-fale-conosco {
        background-color: #494848;
        left: -100%;
    }

    .botao-formulario-enviar {
        width: 100%;
        max-width: 250px;
        margin-left: 5PX;
    }
}
