/* --- SECCIÓN 2: PROBLEMA VS SOLUCIÓN (AHORA CON FONDO CLARO) --- */
#problem-solution {
    background-color: var(--color-fondo-claro);
    color: var(--color-texto-oscuro);
}

#problem-solution h2,
#problem-solution h3 {
    color: var(--color-primario-vivo);
}

#video-section {
    margin: 40px auto 60px auto;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
}

#video-section iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

.two-columns-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    text-align: center;
    align-items: start;
}

article {
    width: 100%;
    text-align: center;
    text-justify: auto;

}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .two-columns-grid {
        flex-direction: column;
        /* Apilar en móvil */
        align-items: center;
    }

    #video-section {
        margin: 30px auto;
        width: 100%;
        /* Asegurar que no desborde */
    }
}