
.DEMB{
    --sliderWidth: 350px;
    --aspectRatio: 16 / 10;
}

.DETabletContent .DEMB{
    --sliderWidth: 442px;
}

.DEPhoneContent .DEMB{
    --sliderWidth: 352px;
}

html.sap-phone .DEMB {
    --sliderWidth: 90vw;
}


/* ------------------------------------------- */
/* Configuração do Slider e Scroll-Timeline    */
/* ------------------------------------------- */
.DEMBSlider {
    width: var(--sliderWidth);
    aspect-ratio: var(--aspectRatio);
    margin-top: 0.8em !important;
    max-height: 80vh;
    margin: 0 0; /* Centraliza o slider na página */
    overflow-x: scroll;
    overflow-y: hidden;
    background-color: white;
    scroll-snap-type: x mandatory;    
    
    /* Opcional: Para esconder a barra de rolagem (WebKit) */
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-radius: 10px;

}

.DEMBSlider::-webkit-scrollbar {
    display: none;
}

.DEMBSlides {
    /* Garante que as imagens fiquem lado a lado */
    display: flex;
    width: fit-content; 
    height: 100%;
}


.DEMBSlides img {
    /* Define o tamanho de cada imagem */
    width: var(--sliderWidth);
    aspect-ratio: var(--aspectRatio);
    object-fit: cover;
    scroll-snap-align: center;    
}

.DEMBButtonsBarHolder{
    width: var(--sliderWidth);
}
.DEMBButtonsBar{
    width: fit-content;
    margin: 8px auto; /* Centraliza o slider na página */
}

.DEMBButtonsBar button{
    background-color: white;
    border: 0.5px solid grey;
    border-radius: 0.4em;
    border-bottom: 2px solid grey;
    font-family: 'GothamRnd-Book';
    padding: 0.4em;
}

.DEMBButtonsBar button:active{
    background-color: grey;
}
