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

body{
    font-family: Arial, Helvetica, sans-serif;
}

.logo img{
    position: absolute;
    top: 50px;
    left: 50px;
    width: 200px;
    z-index: 2;
}

.titulo img{
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 1;
}

.plano img{
    position: relative;
    display: flex;
    margin: 200px auto;
    width: 600px;
    z-index: 3;
}

video{
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -100;
    background-size: cover;
}
.capa{
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    mix-blend-mode: overlay;
}

.footer{
    position: absolute;
    width: 100%;
    bottom: 30px;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    background: #009931;
    z-index: 100;
}
