@media (min-width: 700px) and (orientation: landscape) {
    .esquerda {
        display: flex;
        justify-content: left;
        width: 100vw;
    }

    .uniao {
        position: relative;
        width: 72vw;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0vh;
        margin-left: 0vh;
        gap: 2vw;
        box-shadow: 0 0 1vw rgb(32, 32, 32, 0.3);
        border-radius: 10px;
    }

    .capa {
        width: 20vw;
        height: 30vw;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 0 1vw rgb(32, 32, 32, 0.3);
    }

    .Titulo {
        font-size: 20px;
        /* Ajuste o tamanho conforme necessário */
        color: #000;
    }

    .Sinopse p {
        font-size: 18px;
        /* Ajuste o tamanho conforme necessário */
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 50vw;
    }

    .TitSino {
        margin-top: 2vh;
    }

    .Categoria {
        font-size: 18px;
    }


    .Categoria p {
        color: #333;
    }

    .Categoria span {
        color: #41105e;
        /* Cor azul para destacar as categorias */
    }

    .image-stack {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        width: 100vw;
        margin-left: 0vh;
        margin-top: 2vh;
    }

    .image-item {
        position: relative;
        transition: transform 0.3s;
        width: 20vw;
        max-height: 32vw;
        transition: transform 0.5s ease, filter 0.5s ease;
        margin-right: -16vw;
        font-size: 14px;
    }

    .image-item img {
        transition: filter 0.2s ease;
        width: 100%;
        height: 90%;
        border-radius: 10px;
        border: 1px solid #ddd;
        box-shadow: 0 0px 12px rgba(0, 0, 0, 0.3);
        object-fit: cover;
        cursor: pointer;
        filter: brightness(0.8);
    }


    .image-item:hover {
        z-index: 3;
    }

    .image-item img:hover {
        filter: brightness(1);
    }

    .image-item img,
    .image-item .numero {
        color: #000;
        display: block;
    }


    .image-item:hover~.image-item {
        transform: translateX(calc(16vw - 1px));
        z-index: 3;
    }
    
    .image-item p {
        font-size: 14px;
    }
}

@media (max-width: 700px) and (orientation: portrait) {

    .uniao {
        position: relative;
        width: 90vw;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2vw;
        box-shadow: 0 0 1vw rgb(32, 32, 32, 0.3);
        border-radius: 10px;
    }

    .capa {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 0 1vw rgb(32, 32, 32, 0.3);
    }

    .Titulo {
        font-size: 20px;
        /* Ajuste o tamanho conforme necessário */
        color: #000;
    }

    .Sinopse {
        width: 90%;
    }

    .Sinopse p {
        font-size: 20px;
        /* Ajuste o tamanho conforme necessário */
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
    }

    .TitSino {
        margin-top: 2vh;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }


    .Categoria {
        font-size: 20px;
        width: 90%;
    }

    .Categoria p {
        color: #333;
    }

    .Categoria span {
        color: #41105e;
        /* Cor azul para destacar as categorias */
    }

    .image-stack {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
        width: 90vw;
        margin-top: 2vh;
        box-shadow: 0 0 1vw rgb(32, 32, 32, 0.3);
        border-radius: 10px;
    }

    .image-item {
        position: relative;
        width: 40vw;
        height: 72vw;
        font-size: 20px;
        margin: 4vw 0;
    }

    .image-item img {
        width: 100%;
        height: 95%;
        border-radius: 10px;
        border: 1px solid #ddd;
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
        object-fit: cover;
    }




    .image-item img,
    .image-item .numero {
        color: #000;
        display: block;
    }
}