/* ─── SEÇÃO 2: O PROBLEMA PRIMÁRIO ─── */
.v2-problem {
    padding: var(--section-py) 0;
    background: var(--bg-cream);
    position: relative;
    color: var(--text-dark);
}

.v2-problem::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.v2-problem-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.v2-problem-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.v2-problem-label::before {
    content: '';
    display: block;
    width: 32px; height: 1px;
    background: var(--gold-dark);
}

.v2-problem-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0;
    line-height: 0.95;
    letter-spacing: 0.02em;
}

.v2-problem-body { max-width: 640px; }

.v2-problem-text {
    font-size: 1.02rem;
    color: var(--text-dark-muted);
    margin-bottom: 20px;
    line-height: 1.85;
}

.v2-problem-text:last-child { margin-bottom: 0; }

@media (min-width: 960px) {
    .v2-problem-inner {
        grid-template-columns: 380px 1fr;
        gap: 80px;
        align-items: start;
    }
    .v2-problem-title { position: sticky; top: 40px; }
    /* Depoimento ocupa as 2 colunas */
    .v2-problem-inner > .v2-mini-proof {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .v2-problem-inner { padding: 0 20px; }
}

@media (max-width: 480px) {
    .v2-problem-inner { padding: 0 16px; }
}
