.Home__banners {
    overflow: hidden;
}

.Home__banners--item {
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    /* height: 505px; */
    gap: 20px;
}

.Home__banners--item .text, 
.Home__banners--item .image {
    width: 100%;
}

.Home__banners--item .text h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 28px;
    font-size: 20px;
}

.Home__banners--item .text .price {
    margin: 20px 0 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.Home__banners--item .text .price__initial {
    text-decoration: line-through;
    font-size: 12px;
}

.Home__banners--item .text .price__offer {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.Home__banners--item .text .price__percentual {
    text-transform: uppercase;
    background: #ff0000; /* Fallback para $red */
    color: #ffffff; /* Fallback para $white */
    padding: 2px;
    border-radius: 4px;
    font-size: 10px;
}

.Home__banners--item .text a {
    display: inline-block;
    text-decoration: none;
    border-radius: 8px;
    padding: 8px 16px;
    margin-top: 20px;
    font-size: 16px;
}

.Home__banners--item .image {
    display: flex;
    justify-content: center;
}

.Home__banners--item .image__desktop {
    display: none;
}

.Home__banners--item .image__mobile {
    display: block;
}

.Home__banners--item .image img {
    width: 100%;
    height: auto;
}

/* Slick Dots styling */
.Home__banners .slick-dots {
    position: relative;
    bottom: 0;
}

.Home__banners .slick-dots li {
    margin: 0 5px;
    width: 34px;
    height: 4px;
}

.Home__banners .slick-dots li button {
    width: 34px;
    height: 4px;
    border-radius: 8px;
    background: #e0e0e0; /* Fallback para $gray_line */
    padding: 0;
    transition: all .4s;
}

.Home__banners .slick-dots li button:before {
    display: none;
}

.Home__banners .slick-dots li.slick-active button {
    background: #000000; /* Fallback para $dot_active */
}

/* Media Query Desktop (respond-to: $desktop) */
@media (min-width: 1024px) {
    .Home__banners--item {
        padding: 0 48px;
        gap: 30px;
        height: 400px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .Home__banners--item .text, 
    .Home__banners--item .image {
        max-width: 600px;
    }

    .Home__banners--item .text h2 {
        line-height: 38px;
        font-size: 30px;
    }

    .Home__banners--item .text a {
        padding: 16px;
    }

    .Home__banners--item .image__desktop {
        display: block;
    }

    .Home__banners--item .image__mobile {
        display: none;
    }

    .Home__banners--item .image img {
        width: auto;
    }
}