* {
    box-sizing: border-box;
    font-family: "Mukta", sans-serif;
}




body {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: space-evenly;
    overflow: hidden;
}

.logo {
    width: 200px;



}

.boneco-container {
    display: flex;
    justify-content: flex-end;
    /* joga o boneco para a direita */
}

.boneco {
    width: 600px;
}


.caixa {
    width: 25%;

}

.vd {

    position: fixed;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;

}

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

.ver {

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

}


p {
    color: white;
    font-size: 90%;
}

button {
    height: 30px;
    width: 200px;
    background: yellow;
    border: none;
    border-radius: 5px;
    color: rgb(0, 0, 0);
    cursor: pointer;

}

.fale {
    background: white;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    gap: 20px;
    position: fixed;
    left: -330px;
    transition: left 1s linear;
    z-index: 4;
}

.ff {
    color: rgb(15, 0, 148);
}

input {
    height: 30px;
    border-radius: 10px;
    border: 1px solid gray;
    outline-color: rgb(15, 0, 148);
    padding-left: 10px;
}

textarea {
    height: 100px;
    width: 300px;
    border-radius: 10px;
    border: 1px solid gray;
    outline-color: rgb(15, 0, 148);
    padding: 10px;
}

.mascaraa{
    visibility: hidden;
    height: 100vh;
    width: 100vw;
    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;
    z-index: 3;
}

.fechar {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    z-index: 5;
    transition: color 0.3s;
}

.fechar:hover {
    color: yellow;
}


