/* #region sessao */
.sessao5 {
    background: #000000;
    width: 100vw;
    height: auto;

    padding-top: 5rem;
    padding-bottom: 5rem;
}

.sessao5 .wrap {
    /* background-color: orange; */
    width: 35%;
    height: 100%;

    margin-left: auto;
    margin-right: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    text-align: center;
}

.sessao5 .wrap span {
    color: var(--branco);
}

.sessao5 .wrap .cards {
    /* background-color: purple; */
    width: 100%;
    margin-top: 1rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sessao5 .wrap .cards .card {
    /* background-color: purple !important; */
    background-color: var(--branco);
    width: 100%;
    min-height: 12.5rem;
    max-height: 12.5rem;

    display: flex;
    justify-content: flex-start;
    align-items: center;

    border-radius: 1rem;
}

.sessao5 .wrap .cards .card .imagem {
    /* background-color: orange; */
    width: 100%;
    height: 100%;
}

.sessao5 .wrap .cards .card .imagem img {
    /* height do tamanho da height do .card */
    height: 12.5rem;
    width: 14rem;
    display: block;
    object-fit: cover !important;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    margin-left: auto !important;
}

.sessao5 .wrap .cards .card .conteudo {
    /* background-color: orange; */
    padding: 3rem;
    /* width: 100%; */

    /* workaround */
    width: 140%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.5rem;
}

.sessao5 .wrap .cards .card .conteudo span:nth-child(1) {
    /* background-color: orange; */
    color: var(--preto);
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
}

.sessao5 .wrap .cards .card .conteudo span:nth-child(2) {
    /* background-color: orange; */
    color: var(--preto);
    font-size: 0.9rem;
    text-align: left;
}

.sessao5 .wrap .cards .card .conteudo a {
    /* background-color: orange; */
    color: var(--secundaria);
    font-size: 0.85rem;
    text-transform: uppercase;
    text-align: left;
}

/* #endregion */

/* #region media_queries */
@media (max-width:1920px) {
    .sessao5 .wrap {
        /* background-color: orange; */
        width: 50%;
    }
}

/* hi-res laptops and desktops */
@media (max-width:1281px) {
    .sessao5 .wrap {
        /* background-color: orange; */
        width: 60%;
    }
}

/* big landscape tablets, laptops, and desktops */
@media (max-width:1025px) {
    .sessao5 .wrap {
        /* background-color: orange; */
        width: 90%;
    }
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (max-width:801px) {
    .sessao5 .wrap .cards .card {
        /* background-color: purple !important; */
        min-height: 15rem !important;
    }

    .sessao5 .wrap .cards .card .imagem {
        display: none;
    }
}

/* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
@media (max-width:600px) {}

/* smartphones, Android phones, landscape iPhone */
@media (max-width:480px) {}

/* #endregion */