.banner-video {
    position: relative;
    width: 100%;
    height: 720px;
    min-height: 500px;
    overflow: hidden;
    color: #ffffff;
    font-family: 'BradescoSans', sans-serif;
}

.banner-video__bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 720px;
    z-index: 1;
}

.banner-video__video {
    width: 100%;
    height: 720px;
    object-fit: cover;
    display: none;
}

.banner-video__video--desktop {
    display: block;
}

.banner-video__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 720px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
}

.banner-video__container {
    position: relative;
    z-index: 3;
    max-width: 85%;
    margin: 0 auto;
    height: 720px;
    display: flex;
    flex-direction: column;
    padding: 20px 60px;
}

.banner-video__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 20px;
}

.banner-video__logo-left img {
    height: 40px;
    width: auto;
}

.banner-video__nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.banner-video__logos-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.banner-video__logos-right img {
    height: auto;
    width: 112px;
}

.banner-video__divider {
    width: 1px;
    height: 30px;
    background-color: #ffffff;
}

/* Hamburger Menu */
.banner-video__hamburger {
    position: relative;
    display: none;
    /* Hidden by default on desktop */
}

.banner-video__hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 100;
    position: relative;
}

.banner-video__hamburger-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.banner-video__hamburger-btn.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.banner-video__hamburger-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.banner-video__hamburger-btn.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.banner-video__menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 300px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 100px 40px;
    transition: right 0.3s ease;
    z-index: 90;
}

.banner-video__menu.is-active {
    right: 0;
}

.banner-video__menu-header {
    display: flex;
    align-items: center;
    padding: 0 24px;
    height: 38px;
}

.banner-video__menu-logo img {
    height: 24px;
    width: auto;
    display: block;
}

.banner-video__menu-divider-line {
    height: 1px;
    background-color: #A7A8AC;
    margin: 16px 0 36px;
}

.banner-video__menu-list {
    list-style: none;
    padding: 0;
    margin: 0 24px;
}

.banner-video__menu-item {
    margin-bottom: 25px;
}

.banner-video__menu-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;

    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color .3s;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 32px;
}

.banner-video__menu-link:hover {
    color: #cc092f;
}

.banner-video__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 625px;
}

.banner-video__title {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 24px;
    font-family: 'BradescoSans-Regular', sans-serif;
    line-height: 1.1;
}

.banner-video__description {
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
    font-family: 'BradescoSans-Light', sans-serif;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-video {
        height: 720px;
    }

    .banner-video__video--desktop {
        display: none;
    }

    .banner-video__video--mobile {
        display: block;
    }

    .banner-video__container {
        padding: 24px 0px;
        justify-content: space-between;
    }

    .banner-video__header {
        padding-top: 0;
    }

    .banner-video__logo-left {
        display: flex;
        align-items: center;
    }

    .banner-video__logo-left img {
        height: 24px;
        width: auto;
        display: block;
    }

    .banner-video__logos-right {
        display: flex;
        position: absolute;
        top: 84px;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
        gap: 28px;
        width: 100%;
    }

    .banner-video__logos-right img {
        width: min(42vw, 119px);
    }

    .banner-video__divider {
        display: none;
    }

    .banner-video__hamburger {
        display: block !important;
    }

    .banner-video__hamburger-btn.is-active {
        position: fixed;
        top: 22px;
        right: 20px;
    }

    .banner-video__menu {
        right: -100%;
        width: 100%;
        padding: 22px 0px 40px;
        background-color: #000000;
    }

    .banner-video__content {
        max-width: 100%;
        text-align: center;
        justify-content: flex-start;
        align-items: center;
        padding-top: 180px;
        padding-bottom: 40px;
        margin-bottom: 0;
    }

    .banner-video__title {
        font-size: 28px;
        margin-top: 15%;

    }

    .banner-video__description {
        font-size: 16px;
        margin-top: auto;
        line-height: 20px;
        /* max-width: 312px; */
        max-width: 96%;

    }
}
