.texto_duplo {
    width: 100%;
    padding: 45px 0;
    background-color: #f8f8f8;
}

.texto_duplo .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.texto_duplo .conteudo {
    width: 100%;
    padding: 24px 18px 22px;
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 28px rgba(0, 0, 0, .06);
}

.texto_duplo .title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
    margin-bottom: 22px;
}

.texto_duplo .title .img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50%;
    overflow: hidden;
}

.texto_duplo .title .img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.texto_duplo .title .titulo_principal {
    position: relative;
    margin: 0;
    padding-right: 42px;
    color: var(--color-destaque-3);
    font-family: var(--font-family-bold);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    width: max-content;
    max-width: calc(100% - 75px);
}

.texto_duplo .title .titulo_principal b {
    color: var(--color-destaque);
    font-size: 24px;
    display: inline;
}

.texto_duplo .title .titulo_principal::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 28px;
    height: 2px;
    transform: translateY(-50%);
    background-color: #e4c600;
}

.texto_duplo .textos {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 18px;
}

.texto_duplo .descricao_principal {
    width: 100%;
    min-width: 0;
}

.texto_duplo .descricao_principal figure.table {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    border-radius: 7px;
}

.texto_duplo .descricao_principal table {
    width: 100%;
    min-width: 520px;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.texto_duplo .descricao_principal table td {
    padding: 9px 10px;
    color: #333;
    vertical-align: middle;
    border: 0;
}

/* primeira coluna */
.texto_duplo .descricao_principal table td:first-child {
    width: 28%;
}

/* segunda coluna */
.texto_duplo .descricao_principal table td:last-child {
    width: 72%;
}

.texto_duplo .descricao_principal table tr:first-child td {
    color: #fff;
    background-color: var(--color-destaque);
    font-weight: 700;
}

.texto_duplo .descricao_principal table tr:first-child td:first-child {
    border-radius: 7px 0 0 0;
}

.texto_duplo .descricao_principal table tr:first-child td:last-child {
    border-radius: 0 7px 0 0;
}

.texto_duplo .descricao_principal table tr:nth-child(odd):not(:first-child) td {
    background-color: #f7f7f7;
}

.texto_duplo .descricao_principal table tr:nth-child(even) td {
    background-color: #eeeeee;
}

.texto_duplo .descricao_principal table tr:last-child td:first-child {
    border-radius: 0 0 0 7px;
}

.texto_duplo .descricao_principal table tr:last-child td:last-child {
    border-radius: 0 0 7px 0;
}

@media only screen and (min-width: 768px) {
    .texto_duplo {
        padding: 55px 0;
    }

    .texto_duplo .container {
        padding: 0 30px;
    }

    .texto_duplo .conteudo {
        padding: 28px 24px 25px;
    }

    .texto_duplo .title {
        margin-bottom: 24px;
    }

    .texto_duplo .title .img {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .texto_duplo .title .titulo_principal,
    .texto_duplo .title .titulo_principal b {
        font-size: 28px;
    }
}

/* =========================================================
   DESKTOP
   ========================================================= */
@media only screen and (min-width: 1024px) {
    .texto_duplo {
        padding: 60px 0;
    }

    .texto_duplo .container {
        padding: 0 40px;
    }

    .texto_duplo .conteudo {
        padding: 30px 26px 26px;
        border-radius: 16px;
    }

    .texto_duplo .title {
        margin-bottom: 20px;
        gap: 14px;
    }

    .texto_duplo .title .img {
        width: 56px;
        height: 56px;
        flex-basis: 56px;
    }

    .texto_duplo .title .titulo_principal,
    .texto_duplo .title .titulo_principal b {
        font-size: 30px;
    }

    .texto_duplo .textos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .texto_duplo .descricao_principal figure.table {
        overflow: hidden;
    }

    .texto_duplo .descricao_principal table {
        min-width: 0;
    }

    .texto_duplo .descricao_principal table td {
        padding: 8px 10px;
    }
}

@media only screen and (min-width: 1200px) {
    .texto_duplo .conteudo {
        padding: 32px 28px 28px;
    }

    .texto_duplo .title .img {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .texto_duplo .title .titulo_principal,
    .texto_duplo .title .titulo_principal b {
        font-size: 31px;
    }

    .texto_duplo .textos {
        gap: 24px;
    }

    .texto_duplo .descricao_principal table td {
        padding: 9px 11px;
    }
}

@media only screen and (min-width: 1400px) {
    .texto_duplo .conteudo {
        padding-left: 30px;
        padding-right: 30px;
    }

    .texto_duplo .textos {
        gap: 26px;
    }
}