/* screen css */
#splash-screenSs {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 1s ease-in-out; /* Transição para o fade in e fade out */
}

#splash-screenSs img {
    max-width: 100%;
    height: auto;
}

#main-contentSs {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* Transição para o fade in do conteúdo principal */
}
