/* #region sessao */
.sessao2 {
    background-image: url(/src/assets/images/backgrounds/background_4.webp);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;

    width: 100vw;
    height: fit-content;
    text-align: center;

    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 5rem;
    padding-right: 5rem;
}

.sessao2 .wrap {
    /* background-color: orange; */
    width: 100%;
    height: 100%;

    margin-left: auto;
    margin-right: auto;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;

    text-align: center;
}

.sessao2 .wrap .efeito-lateral-4 {
    /* background-color: orange; */
    position: absolute;
    right: 0;
    top: 0;
}

.sessao2 .wrap .efeito-lateral-4 img {
    height: 50rem;
}

.sessao2 .wrap .efeito-lateral-5 {
    /* background-color: orange; */
    position: absolute;
    left: 0;
    bottom: 0;
}

.sessao2 .wrap .efeito-lateral-5 img {
    height: 40rem;
}

.sessao2 .wrap span {
    color: var(--branco);
}

.sessao2 .wrap .cards {
    /* background-color: orange !important; */
    margin-top: 3.5rem;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10rem;
    row-gap: 4rem;
}

.sessao2 .wrap .cards .divCard {
    /* background-color: purple; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: fit-content;
}

.sessao2 .wrap .cards .divCard button {
    background-color: var(--branco);
    border-radius: 0.5rem;
    border: none;
    width: fit-content;
}

.sessao2 .wrap .cards .divCard button span {
    color: var(--principal);
}

.sessao2 .wrap .cards .divCard .card {
    /* background-color: purple !important; */
    max-width: fit-content;
    display: flex;
    flex-direction: column;
}

.sessao2 .wrap .cards .divCard .card img {
    width: 30rem;
    filter: brightness(95%);

    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
    transition: box-shadow 0.1s, transform 0.1s;
}

.sessao2 .wrap .cards .divCard .card img:hover {
    cursor: pointer;
}

/* #endregion */

/* #region media_queries */
@media (max-width:1920px) {}

/* hi-res laptops and desktops + */
@media (max-width:1366px) {
    .sessao2 .wrap .cards {
        /* background-color: orange !important; */
        gap: 7rem;
        row-gap: 4rem;
    }
}

/* hi-res laptops and desktops */
@media (max-width:1281px) {
    .sessao2 .wrap .efeito-lateral-4 {
        display: none;
    }

    .sessao2 .wrap .efeito-lateral-5 {
        display: none;
    }
}

/* big landscape tablets, laptops, and desktops */
@media (max-width:1025px) {
    .sessao2 .wrap .cards .divCard .card img {
        width: 22.5rem;
    }
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (max-width:801px) {

    .sessao2 {
        padding-top: 5rem;
        padding-bottom: 0rem;
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .sessao2 .wrap {
        /* background-color: orange; */
        width: 90%;
    }

    .sessao2 .wrap .cards {
        /* background-color: orange !important; */
        margin-top: 1rem;
        row-gap: 2.75rem;
    }

    .sessao2 .wrap .cards .divCard .card img {
        width: 17.5rem;
    }

    .sessao2 .wrap .cards .divCard button {
        padding-left: 0rem;
        padding-right: 0rem;
        font-size: 1rem;
        line-height: 1rem;
    }
}

/* 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 */