.case-explorer {
    display: flex;
    margin: auto;
    max-width: 1254px;
    box-shadow: 0px 30px 90px #0000001A;
    height: 800px;
    overflow: hidden;
    border-radius: 0px 0px 8px 8px;
    margin-top: 150px;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}
.case-explorer.visible {
    transform: translateY(0);
    opacity: 1;
}
.case-explorer-backImg {
    position: absolute;
    width: 100%;
    max-width: 1254px;
    height: 800px;
}
/* Definindo a estrutura do contêiner principal */
.image-slider {
    position: absolute;
    width: 100%;
    height: 755px;
    overflow: hidden;
    max-width: 1254px;
    margin-top: 45px;
    border: 1px solid #c5c5c5;
    border-radius: 0px 0px 8px 8px;
    border-top: none;
}

/* Estilo para cada imagem */
.case-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

/* Certifique-se de que ambas as imagens sejam visíveis */
.explorer-img-right {
    clip-path: inset(0 50% 0 0); /* Isso faz com que a metade da direita fique escondida */
}

.explorer-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem cobrir todo o espaço */
}

.case-explorer-slider {
    display: flex;
    justify-self: center;
    position: absolute;
    left: 50%; /* Inicialmente, a linha fica no meio */
    width: 1px;
    height: 100%;
    cursor: ew-resize;
}

.explorer-handle {
    position: relative;
    width: 2px;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    background-color: #FC743F;
    display: flex;
    justify-content: center;
}

.case-explores-button {
    display: flex;
    gap: 18px;
    position: absolute;
    top: 50%;
    box-shadow: 0px 5px 5px #0000001A;
    border: 1px solid #FFFFFF99;
    border-radius: 27px;
    opacity: 1;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    align-items: center;
    padding: 17px 14px;
    width: 62px;
    height: 48px;
}
.case-explores-button > img {
    width: 7px;
    height: 12px;
}

@media (max-width: 769px) {
    .case-explorer {
        max-width: 320px;
        height: 500px;
        box-shadow: 0px 30px 90px #0000001A;
        margin-top: 100px;
    }
    .case-explorer-slider {
        max-width: 320px;
        height: 500px;
    }
    .case-explorer-backImg {
        max-width: 320px;
        height: 500px;
    }
    .image-slider {
        height: 500px;
        max-width: 320px;
    }
}

