/* ============================================================
   PROBLEMA (DARK) — IDEX Home
   Prefixo: .problema-*
   ============================================================ */

.problema {
    z-index: -1;
    position: relative;
    background-color: #0d0d0d;
    background-image: url('../../../../img/page-home/problema-bg-modelo.png');
    background-size: cover;
    background-position: center;
    padding: 178px 54px 44px;
    overflow: hidden;
}

.problema__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 0;
}

.problema__container {
    position: relative;
    z-index: 1;
    max-width: 544px;
    margin: 0 auto;
    text-align: left;
    margin-left: 53%;
}

.problema__titulo {
    font-size: 58px;
    font-weight: 500;
    color: #fff;
    line-height: 58px;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}

.problema__descricao {
    font-size: 16px;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 415px;
    margin: 0;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 768px) {
    .problema {
        padding: 64px 20px;
    }

    .problema__container {
        margin-left: auto;
    }

    .problema__titulo {
        font-size: 26px;
        line-height: 32px;
    }

    .problema__descricao {
        font-size: 15px;
    }
}