/* #region sessao */
.sessao6 {
    background-image: url(/src/assets/images/backgrounds/background_5.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    width: 100vw;
    height: 25rem;

    padding-top: 5rem;
    padding-bottom: 5rem;
}

.sessao6 .wrap {
    /* background-color: orange; */
    width: 50%;
    height: 100%;

    margin-left: auto;
    margin-right: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;

    text-align: left;
}

.sessao6 .wrap span {
    color: var(--branco-alt);
}

/* #endregion */

/* #region media_queries */
@media (max-width:1920px) {}

/* hi-res laptops and desktops */
@media (max-width:1281px) {}

/* big landscape tablets, laptops, and desktops */
@media (max-width:1025px) {
    .sessao6 {
        height: auto;
    }
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (max-width:801px) {

    .sessao6 .wrap {
        /* background-color: orange; */
        width: 90%;

        display: flex;
        align-items: center;
        text-align: center;
    }
}

/* 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 */