﻿body {
}
.swiper-container {
    width: auto;
    /*max-width: 1050px;*/
    /*height: 150px;*/
    position: relative;
    /*overflow-y: hidden;
                    overflow-x: hidden;*/
    overflow: hidden;
    background-color: white;
}


.overlay-text {
    white-space: nowrap; /* Evitar que o texto quebre para uma nova linha */
}

.swiper-pagination-bullet {
    display: none !important;
}

.swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 0px;
}

    .swiper-slide img {
        width: 100%;
        height: auto;
        object-fit: cover; /* Ensures the image covers the entire slide area */
    }


.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    position: absolute;
    top: 27%;
    width: 40px;
    height: 50px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next {
    right: 5px;
}

.swiper-button-prev {
    left: 5px;
}