/* #region sessao */
.sessao1 {
    /* background-color: orange; */
    position: relative;
    width: 100vw;
    height: 100vh;
}

.sessao1 .wrap {
    /* background-color: orange; */
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.sessao1 .wrap .slider .slItems .slItem {
    /* display: none !important; */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    display: flex;
}

.sessao1 .wrap .slider .slItems .slItem .conteudo {
    /* background-color: purple !important; */
    width: 50%;
    height: 100%;

    padding-left: 7.5%;
    padding-bottom: 8rem;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 2rem;
}

.sessao1 .wrap .slider .slItems .slItem .conteudo {
    /* background-color: orange !important; */
    width: 40%;
    height: 100%;

    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sessao1 .wrap .slider .slItems .slItem .conteudo img {
    /* background-color: orange; */
    width: 4rem;
    margin-bottom: 1rem;
}

.sessao1 .wrap .slider .slItems .slItem .conteudo .titulo {
    /* background-color: orange; */
    display: flex;
    flex-direction: column;

    font-size: 2.5rem;
    font-weight: 700;
    line-height: 4rem;
    color: var(--branco);
}

.sessao1 .wrap .slider .slItems .slItem .conteudo .titulo .efeito {
    background-color: var(--branco);
    color: var(--principal);
    padding: 0.15rem 0.7rem;
    border-radius: 0.5rem;
    white-space: nowrap;
}

.sessao1 .wrap .slider .slItems .slItem .conteudo .descricao {
    /* background-color: orange; */
    display: flex;
    flex-direction: column;

    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2rem;
    opacity: 0.875;
    color: var(--branco);
}

.sessao1 .wrap .slider .slItems .slItem .conteudo .descricaoAlt {
    /* background-color: orange; */
    width: 90%;

    font-weight: 600;
    font-style: italic;
    opacity: 0.875;
    color: var(--branco);
    text-align: right;
}

.backgroundVideo {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

/* #endregion */

/* #region media_queries */
/* hi-res laptops and desktops */
@media (max-width:1366px) {
    .sessao1 .wrap .slider .slItems .slItem .conteudo {
        /* background-color: purple !important; */
        width: 50%;

        padding-left: 7.5%;
        padding-bottom: 4rem;
    }

    .sessao1 .wrap .slider .slItems .slItem .conteudo .titulo {
        /* background-color: orange; */
        font-size: 1.8rem;
        font-weight: 700;
        line-height: 3.5rem;
    }

    .sessao1 .wrap .slider .slItems .slItem .conteudo .descricao {
        /* background-color: orange; */
        font-size: 1.25rem;
        font-weight: 400;
        line-height: 2rem;
    }
}

/* hi-res laptops and desktops */
@media (max-width:1281px) {
    .sessao1 .wrap .slider .slItems .slItem .conteudo {
        /* background-color: purple !important; */
        width: 60%;
    }
}

/* big landscape tablets, laptops, and desktops */
@media (max-width:1025px) {
    .sessao1 .wrap .slider .slItems .slItem .conteudo .titulo {
        /* background-color: orange; */
        font-size: 1.7rem;
        font-weight: 600;
        line-height: 3rem;
    }

    .sessao1 .wrap .slider .slItems .slItem .conteudo .descricao {
        /* background-color: orange; */
        font-size: 1.1rem;
        font-weight: 400;
        line-height: 2rem;
    }
}

/* tablet, landscape iPad, lo-res laptops ands desktops */
@media (max-width:801px) {
    .sessao1 .wrap .slider .slItems .slItem {
        /* display: none !important; */
        background-repeat: no-repeat;
        background-position: right;
        background-size: cover;
    }

    .sessao1 .wrap .slider .slItems .slItem .conteudo {
        /* background-color: purple !important; */
        width: 92.5%;

        padding-left: 7.5%;
        padding-bottom: 5rem;
    }

    .sessao1 .wrap .slider .slItems .slItem .conteudo img {
        /* background-color: orange; */
        width: 2.75rem;
        margin-bottom: 0.5rem;
    }

    .sessao1 .wrap .slider .slItems .slItem .conteudo .titulo {
        /* background-color: orange; */
        font-size: 1.5rem;
        font-weight: 600;
        line-height: 2.5rem;
    }

    .sessao1 .wrap .slider .slItems .slItem .conteudo .descricao {
        /* background-color: orange; */
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.8rem;
    }
}

/* 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 */