.banner{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 40px;
    height: 680px;
}

.banner-content{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
}

.banner img{
    width: 280px;
    animation: blur 2s;
}

.banner h1{
    width: 78%;
    color: #fff;
    letter-spacing: 2px;
    font-size: 40px;
    line-height: 1.2;
    animation: blur 2s;
}

@keyframes blur {
    0%{
        filter: blur(20px);
        font-size: 45px;
    }
}

.banner p {
    font-size: 18px;
    color: #fff;
    width: 75%;
    margin-bottom: 28px;
    line-height: 1.5;
}

.banner button{
    padding: 13px;
    color: #fff;
    border-radius: 6px;
    border: 0;
    font-family: 'Inter';
    letter-spacing: 1px;
}

.banner button.left{
    background: var(--cor-button-1);
    margin-right: 10px;
}

.banner button.right{
    background: var(--cor-button-2);
}

.banner-video{
    box-shadow: 10px 6px 18px 0px #4a0424d4;
    height: 371px;
}