/* =========================================================
   IMAGEM DUPLA + TEXTO
   MOBILE FIRST
   ========================================================= */
.imagem_dupla_texto {
    width: 100%;
    padding: 0;
    background-color: var(--color-destaque);
    position: relative;
    z-index: 0;
}

/* =========================================================
   CONTAINER
   ========================================================= */
.imagem_dupla_texto .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* =========================================================
   CONTEÚDO
   ========================================================= */
.imagem_dupla_texto .conteudo {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* =========================================================
   BLOCO DE IMAGEM
   ========================================================= */
.imagem_dupla_texto .img {
    position: relative;
    width: 100%;
    min-height: 260px;
    overflow: hidden;
}

/* =========================================================
   IMAGEM
   ========================================================= */
.imagem_dupla_texto .img>img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

/* =========================================================
   PRIMEIRA IMAGEM
   ========================================================= */
.imagem_dupla_texto .img:first-child>img {
    object-position: center center;
}

/* =========================================================
   SEGUNDA IMAGEM
   ========================================================= */
.imagem_dupla_texto .img:nth-child(2) {
    display: flex;
    align-items: flex-end;
}

.imagem_dupla_texto .img:nth-child(2)>img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* =========================================================
   TEXTO
   ========================================================= */
.imagem_dupla_texto .img h2 {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 520px;
    margin: 0;
    padding: 28px 24px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
    text-align: left;
    background-color: rgba(9, 69, 47, 0.7);
}

.imagem_dupla_texto .img h2 b {
    color: var(--color-destaque-2);
    font-weight: 700;
}

/* =========================================================
   TABLET
   ========================================================= */
@media only screen and (min-width: 768px) {
    .imagem_dupla_texto .img {
        min-height: 320px;
    }

    .imagem_dupla_texto .img>img {
        min-height: 320px;
    }

    .imagem_dupla_texto .img h2 {
        max-width: 570px;
        padding: 35px 35px;
    }
}

/* =========================================================
   DESKTOP
   ========================================================= */
@media only screen and (min-width: 1024px) {
    .imagem_dupla_texto .conteudo {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }

    .imagem_dupla_texto .img {
        min-height: 340px;
    }

    .imagem_dupla_texto .img>img {
        min-height: 340px;
    }

    /* Primeira imagem */
    .imagem_dupla_texto .img:first-child>img {
        object-position: center center;
    }

    /* Segunda imagem */
    .imagem_dupla_texto .img:nth-child(2) {
        align-items: center;
    }

    .imagem_dupla_texto .img h2 {
        max-width: 500px;
        padding: 40px 35px;
        line-height: 1.25;
    }
}

/* =========================================================
   DESKTOP GRANDE
   ========================================================= */
@media only screen and (min-width: 1200px) {
    .imagem_dupla_texto .img {
        min-height: 355px;
    }

    .imagem_dupla_texto .img>img {
        min-height: 355px;
    }

    .imagem_dupla_texto .img h2 {
        max-width: 560px;
        padding: 45px 40px;
    }
}

/* =========================================================
   DESKTOP EXTRA GRANDE
   ========================================================= */
@media only screen and (min-width: 1400px) {
    .imagem_dupla_texto .img {
        min-height: 360px;
    }

    .imagem_dupla_texto .img>img {
        min-height: 360px;
    }

    .imagem_dupla_texto .img h2 {
        max-width: 600px;
        padding-left: 45px;
    }
}