.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: 0px;
    font-size: 40px;
    line-height: 1.2;
    animation: blur 2s;
    font-weight: 600;
}

@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 a {
    padding: 13px;
    color: #fff;
    border-radius: 6px;
    border: 0;
    font-family: 'Inter';
    letter-spacing: 1px;
}

.banner a.left {
    background: var(--cor-button-1);
    margin-right: 10px;
}

.banner a.right {
    background: var(--cor-button-2);
}

.banner-video {
    box-shadow: 10px 6px 18px 0px #4a0424d4;
    width: 660px;
    height: 371px;
}

iframe {
    width: 660px;
    height: 371px;
}

@media (max-width: 1440px) {
    .banner-content {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 81%;
    }

    iframe {
        width: 530px;
        height: 300px;
    }

    .banner-video {
        box-shadow: 10px 6px 18px 0px #4a0424d4;
        width: 530px;
        height: 300px;
    }
}

@media (max-width: 1280px) {
    .banner-content {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 81%;
    }

    iframe {
        width: 455px;
        height: 255px;
    }

    .banner-video {
        box-shadow: 10px 6px 18px 0px #4a0424d4;
        width: 455px;
        height: 255px;
    }
}

@media (max-width: 1024px) {
    .banner {
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 40px;
        height: auto;
        padding-top: 70px;
        padding-bottom: 100px;
    }

    .banner-content {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90%;
        flex-direction: column;
        row-gap: 40px;
        text-align: center;
    }

    .banner h1 {
        width: 100%;
    }

    .banner p {
        width: 100%;
    }

}

@media (max-width: 600px) {
    .banner-content {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 81%;
    }

    iframe {
        width: 320px;
        height: 178px;
    }

    .banner-video {
        box-shadow: 10px 6px 18px 0px #4a0424d4;
        width: 320px;
        height: 178px;
    }

    .banner a.left {
        display: block;
        background: var(--cor-button-1);
        margin-right: 10px;
        margin-bottom: 15px;
    }

    .banner a.right {
        display: block;
    }
}