.banner-promocional-wrapper {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.banner-background {
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1;
}

.banner-promocional-wrapper .container {
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banner-text {
    display: flex;
    flex-direction: column;
}

.banner-text p {
    margin: 0px;
}
/* Estiliza a primeira linha (título) */
.banner-text .banner-title {
    font-size: 18px;
    color: #000;
}

/* Estiliza a segunda linha (subtítulo) */
.banner-text .banner-subtitle {
    font-weight: normal;
    font-size: 13px;
    line-height: 1.5;
    color: #000;
    opacity: 0.7;
}

/* Esconde a versão mobile por padrão */
.banner-mobile {
    display: none;
}

/* Estilo básico para o Slick Carousel */
.banner-mobile .slick-slide {
    padding: 0 10px;
}

.banner-mobile .banner-content {
    justify-content: center;
    text-align: center;
    flex-direction: row;
    gap: 8px;
}

.banner-mobile .banner-content img {
    max-width: 40px;
    height: auto;
}

@media (max-width: 767px) {

    /* Esconde a versão desktop */
    .banner-desktop {
        display: none;
    }

    /* Mostra a versão mobile */
    .banner-mobile {
        display: block;
    }

    /* Ajusta o container para evitar overflow */
    .banner-promocional-wrapper .container {
        padding: 15px 10px;
    }

    /* Mantém o fundo */
    .banner-background {
        background-color: #ffffff;
        position: absolute;
        top: 0;
        left: 50%;
        width: 100vw;
        height: 100%;
        transform: translateX(-50%);
        z-index: -1;
    }

    /* Ajusta o texto para telas menores */
    .banner-mobile .banner-text .banner-title {
        font-size: 15px;
        line-height: 1.4;
    }

    .banner-mobile .banner-text .banner-subtitle {
        font-size: 13px;
        line-height: 1.4;
    }

    .banner-subtitle{
        display: none;
    }
}

@media (min-width: 768px) {

    /* Garante que a versão mobile esteja escondida */
    .banner-mobile {
        display: none;
    }

    /* Mantém a versão desktop visível */
    .banner-desktop {
        display: block;
    }
}

@media (min-width: 1000px) {
    .banner-tamanho {
        width: 1140px;
    }

    .banner-distributed {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-right: 0px;
        margin-left: 0px;
    }

    .banner-column {
        display: flex;
    }

    .banner-left {
        margin-right: 5%;
        padding-left: 0px;
    }

    .banner-center {
        margin-left: 10%;
        margin-right: 10%;
        padding-left: 0px;
        padding-right: 0px;
        position: relative;
    }

    .banner-right {
        margin-left: 5%;
        padding-right: 0px;
    }

    .banner-left .banner-content {
        justify-content: flex-start;
    }

    .banner-center .banner-content {
        justify-content: center;
    }

    .banner-right .banner-content {
        justify-content: flex-end;
    }

    .banner-center::before {
        content: '';
        position: absolute;
        left: -105px;
        top: 50%;
        transform: translateY(-50%);
        height: 50px;
        width: 1px;
        background-color: #000;
    }

    .banner-center::after {
        content: '';
        position: absolute;
        right: -105px;
        top: 50%;
        transform: translateY(-50%);
        height: 50px;
        width: 1px;
        background-color: #000;
    }
}