/* ========================= BANNER PRINCIPAL (STICKY) ========================= */
.banner-bg {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: #000;
}

.banner {
    width: 70%;
    max-height: 260px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

/* LADOS */
.banner-left, .banner-right {
    display: flex;
    align-items: center;
}

.banner-center {
    width: 25%;
    justify-content: flex-start;
}

.banner-left {
    width: 25%;
    justify-content: flex-start;
    margin-left: 20px;
}

.banner-right {
    width: 20%;
    justify-content: flex-end;
    align-self: flex-start;
    margin-right: 20px;
}

.banner-right img {
    max-height: 220px;
    transform: translateY(-35%);
    pointer-events: none;
}

.banner img {
    max-height: 220px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* ========================= BANNER SECUNDARIO (NORMAL) ========================= */
.banner-secundario {
    width: 100%;
    max-height: 250px;
    overflow: hidden;
    background-color: #000;
}

.banner-secundario img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================= RESPONSIVE ========================= */
@media (min-width: 768px) {
    .banner {
        max-height: 320px;
    }
}

@media (max-width: 768px) {
    .banner {
        width: 100%;
        padding: 15px 10px;
    }
    
    .banner img {
        max-height: 160px;
    }
}