.conflito {
    display: flex;
    justify-content: center;
}

.conflito__content {
    max-width: 55rem;
    width: 100%;
}

.conflito__title {
    font-size: var(--fs-1);
    font-weight: 400;
    line-height: var(--lh-1);
    margin-bottom: 5rem;
}

.conflito__text {
    font-size: var(--fs-1);
    font-weight: 400;
    line-height: var(--lh-1);
}

.conflito__feeling {
    display: grid;
    column-gap: 5rem;
    row-gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 5rem;
}

.conflito__item {
    align-items: center;
    background-color: var(--color-1);
    border-radius: 10px;
    display: flex;
    padding: 0.4rem 0.6rem;
}

.conflito__item-img {
    background-color: white;
    border-radius: 50px;
    fill: var(--color-2);
    height: 40px;
    margin-right: 1rem;
    width: 40px;
    padding: 0.1rem 0.1rem;
}

.conflito__item-text {
    color: white;
    font-weight: bold;
    font-size: var(--fs-1);
}

@media only screen and (max-width: 600px) {

    .conflito {
        padding: 0 0.5rem;
    }

    .conflito__feeling {
        grid-template-columns: minmax(100px, 500px);
        justify-content: center;
    }

    .conflito__title {
        font-size: var(--fs-1);
        font-weight: 400;
        line-height: var(--lh-1);
        margin-bottom: 5rem;
    }
    
    .conflito__text {
        font-size: var(--fs-1);
        font-weight: 400;
        line-height: var(--lh-1);
    }

    .conflito__item-text {
        color: white;
        font-weight: bold;
        font-size: var(--fs-base);
    }

}