/* SECTION */
.problem-section {
    padding: 100px 20px;
    background: var(--color-litght);
}

.container-problem-custom{
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;

}
/* HEADER */

.problem-header {
    text-align: center;
    margin-bottom: 60px;
}

.problem-header h2 {
    font-size: 40px;
    color: var(--color-text-dark);
    margin: 15px 0;
}

.problem-header p {
    color: var(--color-text-dark);
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

/* GRID */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* CARD */
.problem-card {
    background: #ffffff;
    border: 1px solid rgba(23, 22, 22, 0.05);
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
}

.problem-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

/* ICON */
.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
}

/* TEXT */
.problem-card h3 {
    color: var(--color-text-dark);
    font-size: 18px;
    margin-bottom: 10px;
}

.problem-card p {
    color: var(--color-text-dark);
    font-size: 14px;
    line-height: 1.6;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .problem-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .problem-section {
        padding: 60px 15px;
    }

    .problem-header h2 {
        font-size: 28px;
    }

    .problem-card {
        padding: 20px;
    }
}