html, body{
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
.promos-section{
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 5% 0;
}
.promos-title{
    font-family: "Great Vibes", cursive;
    color: #0f5f3d; 
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 550;
    letter-spacing: 1px;
    margin: 0 0 40px 0;
}

.promos-carousel{
    width: 100%;
    max-width: 1200px;
    height: auto; 
    margin-bottom: 20px;
}

.promos-carousel .swiper-slide{
    border-radius: 14px;
    overflow: hidden;
}

.promos-carousel img{
    width: 100%;
    height: auto;
    object-fit: contain; 
}
.promos-carousel .swiper-pagination-bullet-active{
    background: #ffffff;
    opacity: 1;
    transform: scale(1.3);
}
.promos-carousel .swiper-pagination{
    bottom: 12px !important;
}

.promos-carousel .swiper-pagination-bullet{
    background: #fff;
    opacity: 0.4;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}
@media (max-width: 768px){
    .promos-section{
        padding-top: 10px;
    }

    .promos-carousel{
        height: auto;
    }

    .promos-title{
        margin-bottom: 30px;
        text-align: center;
    }
    .promos-carousel img{
    width: 100%;
}
}
